/**
 * Plateau Homepage Styles
 * Scope: .wp-plateau
 *
 * Shared utilities/components now live in plateau-elements-shared.css
 */

/* Hero */
.wp-plateau.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
  overflow: hidden;
}

.wp-plateau .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wp-plateau.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 75%, var(--pe-black) 100%);
}

.wp-plateau .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.wp-plateau.hero h1 {
  font-family: var(--pe-font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--pe-white);
  margin-bottom: 28px;
  animation: pe-fade-up 0.8s ease both 0.2s;
}

.wp-plateau.hero h1 em {
  font-style: normal;
  color: var(--pe-amber);
}

.wp-plateau .hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--pe-grey-light);
  max-width: 580px;
  margin-bottom: 16px;
  animation: pe-fade-up 0.8s ease both 0.35s;
}

.wp-plateau .hero-tagline {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pe-amber);
  margin-bottom: 40px;
}

.wp-plateau .hero-ctas {
  display: flex;
  gap: 16px;
}

.wp-plateau .hero-side {
  position: absolute;
  right: 48px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  z-index: 2;
}

.wp-plateau .hero-side .vert-text {
  writing-mode: vertical-rl;
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pe-grey-dark);
}

.wp-plateau .scroll-indicator {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--pe-amber), transparent);
}

/* Trust metrics */
.wp-plateau.trust-metrics {
  background: var(--pe-charcoal);
  border-top: 1px solid rgba(232, 168, 36, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0;
}

.wp-plateau .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wp-plateau .metric-item {
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.wp-plateau .metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.wp-plateau .metric-icon {
  display: none;
}

.wp-plateau .metric-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--pe-amber);
  stroke-width: 1.5;
  fill: none;
}

.wp-plateau .metric-number {
  font-family: var(--pe-font-display);
  font-size: 45px;
  letter-spacing: 2px;
  color: var(--pe-amber);
  line-height: 1;
  margin-bottom: 8px;
}

.wp-plateau .metric-label {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-grey-light);
}

/* Who We Are */
.wp-plateau.who-we-are {
  padding: 140px 0;
  position: relative;
  background: var(--pe-black-warm);
}

.wp-plateau .who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .who-image {
  position: relative;
  aspect-ratio: .97;
  overflow: hidden;
}

.wp-plateau .who-image-inner {
  width: 100%;
  height: 100%;
}

.wp-plateau .who-image-inner:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pe-amber);
  z-index: 2;
}

.wp-plateau .who-image::before,
.wp-plateau .who-image::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--pe-amber);
  z-index: 2;
}

.wp-plateau .who-image::before {
  top: -12px;
  left: -12px;
  border-right: none;
  border-bottom: none;
}

.wp-plateau .who-image::after {
  bottom: -12px;
  right: -12px;
  border-left: none;
  border-top: none;
}

.wp-plateau .who-paragraphs {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

/* Core Values */
.wp-plateau.core-values {
  padding: 120px 0;
  background: var(--pe-charcoal);
  position: relative;
  overflow: hidden;
}

.wp-plateau .core-values-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wp-plateau.core-values .pe-container {
  position: relative;
  z-index: 1;
}

.wp-plateau .values-header {
  text-align: center;
  margin-bottom: 80px;
}

.wp-plateau .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wp-plateau .value-card {
  padding: 56px 48px;
  background: var(--pe-charcoal);
  position: relative;
  overflow: hidden;
}

.wp-plateau .value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pe-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wp-plateau .value-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.wp-plateau .value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-plateau .value-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--pe-amber);
  fill: none;
  stroke-width: 1.5;
}

.wp-plateau .value-card h3 {
  font-family: var(--pe-font-display);
  font-size: 35px;
  letter-spacing: 2px;
  color: var(--pe-white);
  line-height: 1;
  margin-bottom: 0;
}

.wp-plateau .value-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pe-grey-light);
}

/* Homepage Markets cards */
.wp-plateau.markets {
  padding: 140px 0;
  background: var(--pe-black);
}

.wp-plateau .markets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.wp-plateau .markets-header-left {
  max-width: 560px;
}

.wp-plateau .markets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.wp-plateau .market-card {
  position: relative;
  aspect-ratio: 3/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--pe-charcoal);
}

.wp-plateau .market-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.4) saturate(0.7);
}

.wp-plateau .market-card:hover .market-card-bg {
  transform: scale(1.08);
  filter: brightness(0.55) saturate(0.9);
}

.wp-plateau .market-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
  z-index: 2;
}

.wp-plateau .market-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  z-index: 1;
}

.wp-plateau .market-card h3 {
  font-family: var(--pe-font-display);
  font-size: 25px;
  letter-spacing: 1px;
  color: var(--pe-white);
  margin-bottom: 10px;
  min-height: 2.2em;
  line-height: 1.1;
  transition: text-shadow 0.6s;
}

.wp-plateau .market-card:hover h3 {
  text-shadow: 0 0 25px rgb(0 0 0 / 75%);
}

.wp-plateau .market-card p {
  font-size: 15px;
  line-height: 1.4;
  color: var(--pe-grey-light);
  min-height: 4lh;
  margin-bottom: 0px;
  transition: color 0.3s, text-shadow 0.3s;
}

.wp-plateau .market-card:hover p {
  color: var(--pe-white);
  text-shadow: 0 0 25px rgb(0 0 0 / 75%);
}

.wp-plateau .market-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-top: 12px;
  flex-shrink: 0;
  border: 1px solid var(--pe-grey-mid);
  transition: all 0.3s;
}

.wp-plateau .market-card:hover .market-card-arrow {
  border-color: var(--pe-amber);
  background: var(--pe-amber);
}

.wp-plateau .market-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--pe-grey-light);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.wp-plateau .market-card:hover .market-card-arrow svg {
  stroke: var(--pe-black);
}

/* Scale & Capacity */
.wp-plateau.scale {
  padding: 140px 0;
  background: var(--pe-charcoal);
  overflow: hidden;
}

.wp-plateau .scale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .scale-block {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.wp-plateau .scale-block-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 168, 36, 0.05), rgba(10, 10, 10, 0.8)),
    url('/wp-content/uploads/2026/03/home-scale-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-plateau .scale-visual .scale-block-inner:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pe-amber);
  z-index: 2;
}

.wp-plateau .scale-stat-overlay {
  text-align: center;
}

.wp-plateau .scale-stat-overlay .big-number {
  font-family: var(--pe-font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--pe-amber);
  letter-spacing: -2px;
}

.wp-plateau .scale-stat-overlay .big-label {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pe-grey-light);
  margin-top: 8px;
  text-shadow: 0 0 10px rgb(0 0 0 / 100%);
}

.wp-plateau .scale-content .body-text {
  margin-bottom: 20px;
}

/* Safety */
.wp-plateau.safety {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(87deg, rgba(0, 0, 0, .9) 35%, rgba(0, 0, 0, .3) 100%),
    url(/wp-content/uploads/2026/04/DSC00565.webp) center/cover no-repeat;
  overflow: hidden;
}

.wp-plateau .safety-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.wp-plateau .safety-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .safety-content .body-text {
  margin-bottom: 20px;
}

.wp-plateau .safety-emphasis {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 20px;
  color: var(--pe-amber);
  border-left: 3px solid var(--pe-amber);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.5;
}

.wp-plateau .safety-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wp-plateau .safety-stat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--pe-charcoal);
}

.wp-plateau .safety-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-plateau .safety-stat-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--pe-amber);
  fill: none;
  stroke-width: 1.5;
}

.wp-plateau .safety-stat h3 {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pe-white);
  margin-bottom: 4px;
}

.wp-plateau .safety-stat p {
  font-size: 15px;
  color: var(--pe-grey-light);
  line-height: 1.5;
}

/* Careers */
.wp-plateau.careers {
  padding: 120px 0;
  background: var(--pe-black);
  overflow: hidden;
}

.wp-plateau .careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .careers-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.wp-plateau .careers-image-inner {
  width: 100%;
  height: 100%;
}

.wp-plateau .careers-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pe-amber);
  z-index: 2;
}

.wp-plateau .careers-content .section-heading {
  margin-bottom: 24px;
}

.wp-plateau .careers-content .body-text {
  margin-bottom: 40px;
}

/* Responsive — 1024px */
@media (max-width: 1024px) {
  .wp-plateau.hero {
    min-height: 460px;
    padding: 64px 0;
  }

  .wp-plateau.hero h1 {
    font-size: clamp(42px, 5.5vw, 68px);
  }

  .wp-plateau .hero-sub {
    font-size: 16px;
  }

  .wp-plateau .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-plateau .metric-item {
    padding: 36px 28px;
  }

  .wp-plateau .metric-item:nth-child(2)::after {
    display: none;
  }

  .wp-plateau .metric-number {
    font-size: 38px;
  }

  .wp-plateau.who-we-are {
    padding: 100px 0;
  }

  .wp-plateau .who-grid,
  .wp-plateau .scale-inner,
  .wp-plateau .safety-inner,
  .wp-plateau .careers-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .wp-plateau.core-values {
    padding: 80px 0;
  }

  .wp-plateau .values-header {
    margin-bottom: 56px;
  }

  .wp-plateau .value-card {
    padding: 40px 36px;
  }

  .wp-plateau.markets {
    padding: 100px 0;
  }

  .wp-plateau .markets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wp-plateau .market-card h3 {
    font-size: 20px;
  }

  .wp-plateau.scale {
    padding: 100px 0;
  }

  .wp-plateau .scale-stat-overlay .big-number {
    font-size: 96px;
  }

  .wp-plateau.safety {
    padding: 120px 0;
  }

  .wp-plateau .safety-stat {
    padding: 24px;
  }

  .wp-plateau.careers {
    padding: 80px 0;
  }
}

/* Responsive — 768px */
@media (max-width: 768px) {
  .wp-plateau .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-plateau .metric-item {
    padding: 28px 24px;
  }

  .wp-plateau .markets-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .wp-plateau .markets-grid {
    grid-template-columns: 1fr;
  }

  .wp-plateau .market-card {
    aspect-ratio: 16/9;
  }

  .wp-plateau .market-card h3 {
    min-height: auto;
  }

  .wp-plateau .market-card-content {
    padding: 24px 20px;
  }

  .wp-plateau .market-card-arrow {
    margin-top: 10px;
  }

  .wp-plateau .hero-side {
    display: none;
  }

  .wp-plateau .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .wp-plateau .hero-tagline {
    margin-bottom: 28px;
  }

  .wp-plateau .values-grid {
    grid-template-columns: 1fr;
  }

  .wp-plateau .values-header {
    margin-bottom: 36px;
  }

  .wp-plateau .value-card {
    padding: 32px 28px;
  }

  .wp-plateau .who-image::before,
  .wp-plateau .who-image::after {
    width: 48px;
    height: 48px;
  }

  .wp-plateau .who-image::before {
    top: -8px;
    left: -8px;
  }

  .wp-plateau .who-image::after {
    bottom: -8px;
    right: -8px;
  }

  .wp-plateau .scale-stat-overlay .big-number {
    font-size: 72px;
  }

  .wp-plateau.who-we-are {
    padding: 72px 0;
  }

  .wp-plateau.core-values {
    padding: 64px 0;
  }

  .wp-plateau.markets {
    padding: 72px 0;
  }

  .wp-plateau.scale {
    padding: 72px 0;
  }

  .wp-plateau.safety {
    padding: 80px 0;
  }

  .wp-plateau.careers {
    padding: 64px 0;
  }
}

/* Responsive — 480px */
@media (max-width: 480px) {
  .wp-plateau.hero h1 {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .wp-plateau .hero-sub {
    font-size: 15px;
  }

  .wp-plateau .hero-ctas {
    align-items: stretch;
  }

  .wp-plateau .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  .wp-plateau .metric-number {
    font-size: 32px;
  }

  .wp-plateau .metric-label {
    font-size: 13px;
  }

  .wp-plateau .value-card {
    padding: 28px 24px;
  }

  .wp-plateau .value-card h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .wp-plateau .market-card h3 {
    font-size: 18px;
  }

  .wp-plateau .scale-stat-overlay .big-number {
    font-size: 56px;
  }

  .wp-plateau .safety-stat {
    padding: 20px;
    gap: 16px;
  }

  .wp-plateau .safety-stat h3 {
    font-size: 18px;
  }

  .wp-plateau.who-we-are {
    padding: 56px 0;
  }

  .wp-plateau.core-values {
    padding: 48px 0;
  }

  .wp-plateau.markets {
    padding: 56px 0;
  }

  .wp-plateau.scale {
    padding: 56px 0;
  }

  .wp-plateau.safety {
    padding: 64px 0;
  }

  .wp-plateau.careers {
    padding: 48px 0;
  }
}
