/* ============================================================
   Patagonia Americas — Sections
   Section-scoped styles for index, about, and contact pages.
   Phase 1 — Foundation. Each section will be progressively
   rewritten against the new tokens in phases 2–9.
   ============================================================ */

/* ============================================================
   ANIMATIONS — shared across sections
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes rise-centered {
  from { opacity: 0; transform: translate(-50%, 28px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(-2px); opacity: 0.7; }
  50%      { transform: translateY(3px);  opacity: 1; }
}
@keyframes hub-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.65); opacity: 1; }
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.45; }
  50%      { transform: scale(2.2); opacity: 0; }
}
@keyframes arc-draw {
  0%   { stroke-dashoffset: 600;  opacity: 0; }
  15%  { opacity: 0.95; }
  60%  { stroke-dashoffset: 0;    opacity: 0.95; }
  85%  { stroke-dashoffset: -600; opacity: 0; }
  100% { stroke-dashoffset: -600; opacity: 0; }
}

/* ============================================================
   INDEX — HERO (slideshow — original design)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--ticker-h));
  color: var(--color-text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 100% 80% at 30% 50%, #3A4D40 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 40%, #2D3F33 0%, transparent 60%),
    linear-gradient(135deg, #1A2620 0%, #1F2D24 50%, #1A1F1A 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  z-index: 0;
}
.hero-bg.loaded { opacity: 0.70; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,24,.6) 0%, rgba(20,28,24,.35) 30%, rgba(20,28,24,.92) 95%),
    linear-gradient(90deg, rgba(20,28,24,.7) 0%, transparent 60%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(72px, 10vh, 150px) 0 clamp(56px, 7vh, 110px);
  max-width: 780px;
  text-align: left;
}
.hero-eyebrow {
  margin-bottom: 36px;
  color: var(--color-accent-gold-bright);
  animation: rise 1s var(--ease) .1s both;
}
.hero-eyebrow::before { background: var(--color-accent-gold-bright); }
.hero h1 {
  font-size: clamp(48px, 7.2vw, 96px);
  font-weight: 400;
  margin-bottom: 36px;
  animation: rise 1.1s var(--ease) .25s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
  font-weight: 400;
}
.hero-divider {
  width: 72px;
  height: 1px;
  background: var(--color-accent-gold);
  margin-bottom: 32px;
  transform-origin: left;
  animation: grow 1.3s var(--ease) .9s both;
}
.hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 500px;
  color: rgba(245,237,216,.82);
  margin-bottom: 44px;
  animation: rise 1.1s var(--ease) .55s both;
}

/* ---------- Hero slideshow ---------- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}
.hero-slide.is-active { opacity: 0.70; }
.hero-slide.fade-warm { filter: saturate(1.08) contrast(1.02); }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(245,237,216,.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .4s var(--ease), width .4s var(--ease);
}
.hero-dot:hover { background: rgba(245,237,216,.6); }
.hero-dot.is-active {
  background: var(--color-accent-gold-bright);
  width: 26px;
}
.hero-dot:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 4px;
}

/* ============================================================
   INDEX — WHAT WE DO (Integrated Solutions / Pillars)
   ============================================================ */
.what {
  background:
    linear-gradient(180deg,
      #1A1F1A 0px,
      rgba(26,31,26,0.55) 25px,
      rgba(26,31,26,0.15) 55px,
      transparent 80px
    ) top / 100% 80px no-repeat,
    linear-gradient(180deg,
      transparent 0px,
      transparent 140px,
      rgba(31,45,36,0.04) 196px,
      rgba(200,168,101,0.04) 230px,
      rgba(31,45,36,0.15) 247px,
      rgba(31,45,36,0.50) 263px,
      #1F2D24 280px
    ) bottom / 100% 280px no-repeat,
    var(--color-bg-cream);
  padding: var(--space-section-y) 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
}
.section-head h2 em {
  font-style: italic;
  color: #A6864F;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #E2DAC4;
}
.pillar {
  padding: 0;
  position: relative;
  transition: background .5s var(--ease);
  border-right: 1px solid #E2DAC4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent-gold);
  transition: width .6s var(--ease);
  z-index: 4;
}
.pillar:hover { background: var(--color-bg-cream-soft); }
.pillar:hover::before { width: 100%; }

.pillar-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #3A4D40 60%, #A6864F 140%);
}
.pillar-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out), transform 6s var(--ease-out);
}
.pillar-media img.loaded { opacity: 0.95; }
.pillar:hover .pillar-media img { transform: scale(1.06); }
.pillar-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,45,36,.12) 0%, rgba(31,45,36,.45) 100%),
    linear-gradient(135deg, rgba(200,168,101,.08), transparent 60%);
  pointer-events: none;
}
.pillar-media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.pillar.p-global    .pillar-media { background: linear-gradient(135deg, #1F2D24 0%, #2D3F33 50%, #3A5448 100%); }
.pillar.p-logistics .pillar-media { background: linear-gradient(135deg, #2D3F33 0%, #3A4D40 60%, #A6864F 140%); }
.pillar.p-commitment .pillar-media { background: linear-gradient(135deg, #A6864F 0%, #C8A865 60%, #D9B978 130%); }

.pillar-body {
  padding: 44px 40px 52px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-icon-wrap {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--color-accent-gold);
}
.pillar-icon {
  width: 44px; height: 44px;
  transition: transform .6s var(--ease);
}
.pillar:hover .pillar-icon { transform: rotate(8deg) scale(1.05); }

.pillar h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--color-text-dark);
  line-height: 1.15;
}
.pillar p {
  font-size: 16.5px;
  color: #384241;
  line-height: 1.72;
  font-weight: 400;
}

/* ============================================================
   INDEX — PRODUCTS / PREMIUM COMMODITIES
   ============================================================ */
.products {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-section-y) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.products::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,168,101,.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(200,168,101,.06) 0%, transparent 35%);
  pointer-events: none;
}
.products::after {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -8%;
  width: 66%;
  aspect-ratio: 2 / 1;
  background: url('../images/world-dots.svg') no-repeat;
  background-size: 100% 100%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.products-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.products-inner.expanded {
  grid-template-columns: 1fr;
  gap: 60px;
}
.products-inner.expanded .products-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.products-inner.expanded .products-intro .eyebrow {
  /* centered eyebrow: dashes on both sides */
  justify-content: center;
}
.products-inner.expanded .products-intro .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-accent-gold);
}
.products-inner.expanded .products-intro p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}
.products-intro .eyebrow { margin-bottom: 28px; }
.products-intro h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--color-text-light);
}
.products-intro h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.products-intro p {
  color: rgba(245,237,216,.88);
  font-size: 16.5px;
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 360px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-card {
  position: relative;
  background: var(--color-bg-secondary);
  overflow: hidden;
  color: inherit;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s var(--ease);
  z-index: 4;
}
.product-card:hover::before { transform: scaleX(1); }

.product-visual {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  position: relative;
  overflow: hidden;
}
.product-illust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-illust { transform: scale(1.05); }

.product-meta {
  background: var(--color-bg-cream-soft);
  color: var(--color-text-dark);
  padding: 20px 22px 22px;
  min-height: 78px;
  display: flex;
  align-items: center;
  position: relative;
}
.product-meta h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31,45,36,.95) 0%, rgba(31,45,36,.55) 45%, rgba(31,45,36,0) 75%);
  display: flex;
  align-items: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-desc {
  color: var(--color-text-light);
  transform: translateY(14px);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.product-card:hover .product-desc { transform: translateY(0); }
.product-desc .desc-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-gold-bright);
  font-weight: 500;
}
.product-desc .desc-value {
  font-size: 13.5px;
  color: rgba(245,237,216,.92);
  font-weight: 400;
}

/* 8-card product grid variant (Soybean Complex / Wheat-Corn-Grains /
   Sugar-Molasses / Oilseeds / Specialty / Fats & Oils / Metals / Urea) */
@media (min-width: 1080px) {
  .product-grid.product-grid-8 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1080px) {
  .product-grid.product-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid.product-grid-8 { grid-template-columns: 1fr; }
}

/* ============================================================
   INDEX — STATS
   ============================================================ */
.stats {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  padding: var(--space-section-sm) 0;
  border-top: 1px solid rgba(200,168,101,.15);
  border-bottom: 1px solid rgba(200,168,101,.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--color-accent-gold-bright);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.stat-num em {
  font-size: 0.55em;
  color: var(--color-accent-gold);
  font-style: normal;
  vertical-align: super;
  margin-left: 2px;
}
.stat-count {
  display: inline-block;
  min-width: 1ch;
}
.stat-underline {
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-accent-gold);
  margin: 14px auto 0;
  transition: width 1s var(--ease) .3s;
}
.stat.counted .stat-underline { width: 44px; }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,237,216,.65);
}

/* ============================================================
   INDEX — PRIORITY (Your Success / Our Priority — slated for removal)
   ============================================================ */
.priority {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 340px;
}
.priority-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #3A4D40 50%, #A6864F 130%);
  min-height: 340px;
}
.priority-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  z-index: 1;
}
.priority-img img.loaded { opacity: 0.92; }
.priority-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,45,36,.25), rgba(200,168,101,.1));
  z-index: 2;
  pointer-events: none;
}
.priority-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(31,45,36,.55) 65%, var(--color-bg-primary) 100%);
  z-index: 3;
  pointer-events: none;
}
.priority-img.right::after {
  background: linear-gradient(270deg, transparent 0%, rgba(31,45,36,.55) 65%, var(--color-bg-primary) 100%);
}
.priority-center {
  padding: 80px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.priority-icon {
  width: 40px; height: 40px;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
  animation: float-slow 6s ease-in-out infinite;
}
.priority h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 400;
  margin-bottom: 20px;
}
.priority h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.priority p {
  max-width: 460px;
  color: rgba(245,237,216,.9);
  font-size: 16.5px;
  line-height: 1.72;
}

/* ============================================================
   INDEX — WHO WE ARE + PULL QUOTE
   ============================================================ */
.who {
  background:
    linear-gradient(180deg,
      transparent 0px,
      transparent 140px,
      rgba(26,31,26,0.04) 196px,
      rgba(200,168,101,0.04) 230px,
      rgba(26,31,26,0.15) 247px,
      rgba(26,31,26,0.50) 263px,
      #1A1F1A 280px
    ) bottom / 100% 280px no-repeat,
    var(--color-bg-cream-soft);
  padding: var(--space-section-y) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 88px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.who-divider {
  background: #E2DAC4;
  align-self: stretch;
}
.who-col .eyebrow { margin-bottom: 28px; }
.who-col h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 400;
  margin-bottom: 28px;
}
.who-col p {
  font-size: 17px;
  line-height: 1.72;
  color: #384241;
  margin-bottom: 40px;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
  color: var(--color-text-dark);
  letter-spacing: -0.015em;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 78px;
  color: var(--color-accent-gold);
  line-height: 0.7;
  display: block;
  margin-bottom: 16px;
  font-style: normal;
}
.quote em { color: #A6864F; }
.quote-attr {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-top: 28px;
  display: block;
}
.botanical {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   INDEX — STRATEGIC POSITIONING (dream-portal addition)
   ============================================================ */
.strategic {
  background: var(--color-bg-cream-soft);
  padding: var(--space-section-y) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.strategic::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,168,101,.35) 50%, transparent);
}
.strategic-head {
  text-align: center;
  margin-bottom: 80px;
}
.strategic-head .eyebrow { margin-bottom: 24px; }
.strategic-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto;
}
.strategic-head h2 em {
  font-style: italic;
  color: #A6864F;
}
.strategic-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
  margin-bottom: 90px;
}
.strategic-text p {
  color: #384241;
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.strategic-text p:last-child { margin-bottom: 0; }
.strategic-image { position: relative; }
.strategic-image img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  box-shadow: 0 40px 80px -40px rgba(31,45,36,.4);
  display: block;
}
.strategic-image::after {
  content: "CONTROL UNION CERTIFIED";
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: rgba(31,45,36,.78);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 2px solid var(--color-accent-gold);
}

.strategic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-card {
  background: var(--color-bg-cream-soft);
  border: 1px solid #E2DAC4;
  padding: 44px 36px 38px;
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.sc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent-gold);
  transition: width .55s var(--ease);
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(31,45,36,.22);
  border-color: rgba(200,168,101,.4);
}
.sc-card:hover::before { width: 100%; }
.sc-icon {
  width: 38px; height: 38px;
  color: var(--color-accent-gold);
  margin-bottom: 26px;
  display: block;
}
.sc-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--color-text-dark);
  line-height: 1.2;
}
.sc-card p {
  color: #384241;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   INDEX — OPERATIONAL EXECUTION BANNER
   ============================================================ */
.ops-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.ops-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ops-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,45,36,.92) 0%, rgba(31,45,36,.55) 40%, rgba(31,45,36,.92) 100%),
    linear-gradient(90deg, rgba(31,45,36,.5), transparent 50%, rgba(31,45,36,.5));
}
.ops-banner-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-text-light);
  padding: 0 24px;
}
.ops-banner-text .eyebrow {
  color: var(--color-accent-gold-bright);
  margin-bottom: 18px;
}
.ops-banner-text .eyebrow::before { background: var(--color-accent-gold-bright); }
.ops-banner-text h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 400;
  max-width: 760px;
}
.ops-banner-text h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}

/* ============================================================
   INDEX — FLOW DIAGRAM (Global Supply + Local Execution)
   ============================================================ */
.flow-diagram {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-section-y) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.flow-diagram::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(200,168,101,.10) 0%, transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(200,168,101,.07) 0%, transparent 40%);
  pointer-events: none;
}
.flow-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.flow-head .eyebrow {
  color: var(--color-accent-gold-bright);
  margin-bottom: 18px;
}
.flow-head .eyebrow::before,
.flow-head .eyebrow::after { background: var(--color-accent-gold-bright); }
.flow-head h2 {
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-light);
}
.flow-head h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.flow-svg-wrap,
.flow-wrap {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.flow-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.flow-svg .flow-node { cursor: default; }
.flow-svg .flow-node circle {
  fill: var(--color-accent-gold);
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-pulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(200,168,101,.5));
}
.flow-svg .flow-node.center circle {
  fill: var(--color-accent-gold-bright);
  animation-delay: .9s;
}
.flow-svg .flow-node .ring {
  fill: none;
  stroke: rgba(200,168,101,.35);
  stroke-width: 1;
  animation: ring-pulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.flow-svg .flow-node.center .ring { animation-delay: .9s; }
.flow-svg .flow-connector {
  fill: none;
  stroke: var(--color-accent-gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  opacity: 0;
  animation: arc-draw 5s var(--ease) infinite;
}
.flow-svg .flow-connector:nth-child(2) { animation-delay: 1.4s; }
.flow-svg .node-title {
  fill: var(--color-text-light);
  font-family: var(--font-display);
  font-size: 19px;
  text-anchor: middle;
  font-weight: 400;
}
.flow-svg .node-sub {
  fill: var(--color-accent-gold-bright);
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-anchor: middle;
}
.flow-svg .node-desc {
  fill: rgba(245,237,216,.74);
  font-family: var(--font-body);
  font-size: 12px;
  text-anchor: middle;
}

/* ============================================================
   INDEX — OPS CAPABILITIES (Six Disciplines tiles)
   ============================================================ */
.ops-capabilities {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  padding: var(--space-section-y) 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.15);
}
.ops-capabilities .section-head { margin-bottom: 60px; }
.ops-capabilities .section-head .eyebrow { color: var(--color-accent-gold-bright); }
.ops-capabilities .section-head .eyebrow::before,
.ops-capabilities .section-head .eyebrow::after { background: var(--color-accent-gold-bright); }
.ops-capabilities h2 { color: var(--color-text-light); }
.ops-capabilities h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,168,101,.18);
  border: 1px solid rgba(200,168,101,.18);
}
.cap-tile {
  background: var(--color-text-dark);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s var(--ease);
}
.cap-tile:hover { background: #1F2D24; }
.cap-icon {
  width: 30px; height: 30px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}
.cap-tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.3;
}
.cap-tile p {
  color: rgba(245,237,216,.7);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============================================================
   INDEX — TRADE MAP (Origin → Destination)
   ============================================================ */
.trade-map {
  background: var(--color-bg-cream-soft);
  padding: var(--space-section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.trade-map::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200,168,101,.06), transparent 70%);
  pointer-events: none;
}
.trade-map .section-head { margin-bottom: 56px; }
.trade-map h2 em {
  color: #A6864F;
  font-style: italic;
}
.world-map-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.world-map {
  width: 100%;
  height: auto;
  display: block;
  background: var(--color-bg-cream-soft);   /* ocean */
}
.world-map .land path {
  fill: var(--color-bg-primary);            /* forest land */
  stroke: rgba(200, 168, 101, 0.22);        /* subtle gold country borders */
  stroke-width: 0.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
/* Origin hubs — solid gold, larger, with gold halo */
.world-map .hub {
  fill: var(--color-accent-gold);
  r: 7;
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-pulse 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(200, 168, 101, 0.7));
}
/* Destination hubs — cream fill with gold ring, smaller, no halo */
.world-map .hub.dest {
  fill: var(--color-text-light);
  stroke: var(--color-accent-gold);
  stroke-width: 1.5;
  r: 5;
  filter: none;
  animation-delay: .8s;
}
.world-map .arc {
  fill: none;
  stroke: var(--color-accent-gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  opacity: 0;
  animation: arc-draw 5s var(--ease) infinite;
}
.world-map .arc:nth-child(2) { animation-delay: 1.4s; }
.world-map .arc:nth-child(3) { animation-delay: 2.8s; }
.world-map .arc:nth-child(4) { animation-delay: 0.7s; stroke: var(--color-accent-gold-bright); }
.world-map .arc:nth-child(5) { animation-delay: 2.1s; stroke: var(--color-accent-gold-bright); }
.trade-map .hub-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
}
.trade-map .hub-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trade-map .hub-legend i {
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
}
.trade-map .hub-legend i.origin {
  background: var(--color-accent-gold);
  width: 10px; height: 10px;
}
.trade-map .hub-legend i.dest {
  background: var(--color-text-light);
  border: 1.5px solid var(--color-accent-gold);
  width: 9px; height: 9px;
}

/* ============================================================
   INDEX — GROWTH (Closing band)
   ============================================================ */
.growth {
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
  padding: var(--space-section-y) 0;
  text-align: center;
  background: var(--color-bg-primary);
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.growth::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../images/wp-grains-mosaic.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.85);
}
.growth::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(31,45,36,.45), rgba(31,45,36,.95) 80%);
}
.growth .container {
  position: relative;
  z-index: 2;
}
.growth .eyebrow {
  color: var(--color-accent-gold-bright);
  justify-content: center;
  margin-bottom: 28px;
}
.growth .eyebrow::before,
.growth .eyebrow::after { background: var(--color-accent-gold-bright); }
.growth h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 30px;
  line-height: 1.2;
}
.growth h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.growth blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(245,237,216,.92);
  max-width: 760px;
  margin: 0 auto 30px;
}
.growth p {
  color: rgba(245,237,216,.78);
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 720px;
  margin: 0 auto;
}
.growth-divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent-gold);
  margin: 32px auto;
}

/* ============================================================
   INDEX — CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  padding: var(--space-section-sm) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,168,101,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(200,168,101,.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  flex: 1;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}

/* ============================================================
   INDEX — FOOTER (multi-column)
   ============================================================ */
.footer {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-section-sm) 0 32px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-gold) 50%, transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo-block { max-width: 280px; }
.footer-logo-block .logo { margin-bottom: 20px; }
.footer-logo-block p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(245,237,216,.6);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(245,237,216,.72);
  transition: color .25s var(--ease);
}
.footer-col li:hover { color: var(--color-text-light); }
.footer-col li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-col li.simple a { align-items: center; }
.footer-icon {
  width: 14px; height: 14px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-col li.simple .footer-icon { margin-top: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245,237,216,.1);
  font-size: 12px;
  color: rgba(245,237,216,.5);
}
.footer-bottom-links a {
  margin-left: 28px;
  transition: color .25s var(--ease);
}
.footer-bottom-links a:hover { color: var(--color-accent-gold-bright); }

/* ============================================================
   ABOUT — Hero + Section shells
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 70vh;
  color: var(--color-text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--color-bg-primary);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.92);
}
.about-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,28,24,.35) 0%, rgba(20,28,24,.78) 100%),
    linear-gradient(90deg, rgba(20,28,24,.5) 0%, transparent 60%);
  z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-content { max-width: 820px; }
.about-hero .eyebrow {
  margin-bottom: 30px;
  color: var(--color-accent-gold-bright);
}
.about-hero .eyebrow::before { background: var(--color-accent-gold-bright); }
.about-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  margin-bottom: 28px;
}
.about-hero h1 em { color: var(--color-accent-gold-bright); }
.about-hero .lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  color: rgba(245,237,216,.85);
}

.about-section {
  padding: var(--space-section-y) 0;
  position: relative;
}
.about-section.tone-paper  { background: var(--color-bg-cream-soft); }
.about-section.tone-forest {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.18);
}
.about-section.tone-ink {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  box-shadow: inset 0 1px 0 rgba(200,168,101,0.15);
}

.tone-forest .section-head .eyebrow,
.tone-ink .section-head .eyebrow { color: var(--color-accent-gold-bright); }
.tone-forest .section-head .eyebrow::before,
.tone-forest .section-head .eyebrow::after,
.tone-ink .section-head .eyebrow::before,
.tone-ink .section-head .eyebrow::after { background: var(--color-accent-gold-bright); }
.tone-forest .section-head h2,
.tone-ink .section-head h2 { color: var(--color-text-light); }
.tone-forest .section-head h2 em,
.tone-ink .section-head h2 em { color: var(--color-accent-gold-bright); }

/* ---------- About — Philosophy ---------- */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.phil-text p {
  font-size: 16.5px;
  line-height: 1.78;
  color: #384241;
  margin-bottom: 22px;
}
.phil-quote {
  margin-top: 32px;
  padding: 30px 32px;
  border-left: 2px solid var(--color-accent-gold);
  background: rgba(200,168,101,.04);
}
.phil-quote em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--color-text-dark);
  line-height: 1.4;
  display: block;
}
.phil-quote em strong {
  color: #A6864F;
  font-weight: 400;
}
.phil-quote-attr {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
}
.phil-image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(31,45,36,.35);
}

/* ---------- About — Strategic prose + cards ---------- */
.strat-prose {
  max-width: 880px;
  margin: 0 auto 70px;
}
.strat-prose p {
  font-size: 17px;
  line-height: 1.78;
  color: #384241;
  margin-bottom: 22px;
}
.strat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strat-card {
  background: var(--color-bg-cream-soft);
  border: 1px solid #E2DAC4;
  padding: 44px 36px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative;
}
.strat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent-gold);
  transition: width .55s var(--ease);
}
.strat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(31,45,36,.22);
  border-color: rgba(200,168,101,.4);
}
.strat-card:hover::before { width: 100%; }
.strat-card .sc-icon {
  width: 38px; height: 38px;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}
.strat-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--color-text-dark);
}
.strat-card p {
  color: #384241;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- About — Experience (proven market) ---------- */
.exp-prose {
  max-width: 880px;
  margin: 0 auto 70px;
}
.exp-prose h3 {
  font-size: 26px;
  margin: 40px 0 16px;
  color: var(--color-text-light);
}
.exp-prose h3:first-child { margin-top: 0; }
.exp-prose p {
  color: rgba(245,237,216,.85);
  font-size: 16.5px;
  line-height: 1.78;
  margin-bottom: 16px;
}
.exp-prose ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.exp-prose li {
  color: rgba(245,237,216,.85);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.exp-prose li::before {
  content: "";
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  margin-top: 9px;
}
.exp-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1020px;
  margin: 0 auto;
}
.exp-images img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  transition: filter .5s var(--ease), transform .5s var(--ease);
  filter: brightness(0.92) saturate(0.95);
}
.exp-images img:hover {
  filter: none;
  transform: scale(1.02);
}

/* ---------- About — Why local (4 cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--color-bg-cream-soft);
  border: 1px solid #E2DAC4;
  padding: 44px 40px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent-gold);
  transition: width .55s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(31,45,36,.22);
  border-color: rgba(200,168,101,.4);
}
.why-card:hover::before { width: 100%; }
.why-card .wc-icon {
  width: 36px; height: 36px;
  color: var(--color-accent-gold);
  margin-bottom: 26px;
}
.why-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--color-text-dark);
}
.why-card p {
  color: #384241;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- About — Closing ---------- */
.closing {
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
  text-align: center;
  padding: 130px 0 120px;
  background: var(--color-bg-primary);
}
.closing::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../images/wp-port-cranes.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.9);
}
.closing::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(31,45,36,.4), rgba(31,45,36,.95) 80%);
}
.closing .container {
  position: relative;
  z-index: 2;
}
.closing .eyebrow {
  color: var(--color-accent-gold-bright);
  justify-content: center;
  margin-bottom: 26px;
}
.closing .eyebrow::before,
.closing .eyebrow::after { background: var(--color-accent-gold-bright); }
.closing h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.2;
  color: var(--color-text-light);
}
.closing h2 em {
  font-style: italic;
  color: var(--color-accent-gold-bright);
}
.closing p {
  color: rgba(245,237,216,.82);
  font-size: 16px;
  line-height: 1.72;
  max-width: 700px;
  margin: 0 auto 36px;
}

/* ---------- About — Footer (single-row variant) ---------- */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-inner .logo .logo-text .lead { font-size: 15px; }
.footer-inner .logo .logo-text .sub  { font-size: 8.5px; margin-top: 4px; }
.footer-inner .logo-mark { width: 32px; height: 32px; }
.footer-mini-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,216,.65);
}
.footer-mini-links a:hover { color: var(--color-accent-gold-bright); }

/* About-page footer overrides the index .footer to be slimmer */
.about-page-footer.footer { padding: 50px 0 32px; }
.about-page-footer .footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(245,237,216,.08);
  font-size: 12px;
  color: rgba(245,237,216,.5);
  text-align: center;
  justify-content: center;
}

/* ============================================================
   CONTACT — Layout
   ============================================================ */
.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--color-bg-cream-soft);
}

/* ---------- Contact — Brand panel ---------- */
.contact-brand {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: 90px 70px 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 86px);
}
.contact-brand::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.contact-brand::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,168,101,.18), transparent 65%);
  pointer-events: none;
}
.contact-brand-inner {
  position: relative;
  z-index: 2;
  max-width: 460px;
}
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-gold-bright);
  margin-bottom: 36px;
}
.contact-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--color-accent-gold);
}
.contact-brand h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 400;
  margin-bottom: 32px;
}
.contact-brand .lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,237,216,.82);
  margin-bottom: 56px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,237,216,.12);
}
.detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.detail-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(200,168,101,.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold-bright);
}
.detail-icon svg { width: 16px; height: 16px; }
.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-gold-bright);
}
.detail-value {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.5;
}
.detail-value a:hover { color: var(--color-accent-gold-bright); }

.brand-footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,237,216,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,.5);
}
.brand-footer a { color: var(--color-accent-gold-bright); }
.brand-footer a:hover { color: var(--color-accent-gold); }

/* ---------- Contact — Form panel ---------- */
.contact-form-wrap {
  padding: 90px 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(200,168,101,.06), transparent 60%),
    var(--color-bg-cream-soft);
}
.form-head {
  margin-bottom: 56px;
  max-width: 520px;
}
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}
.form-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--color-accent-gold);
}
.form-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
}
.form-head p {
  color: var(--color-text-dark-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.contact-form-wrap form {
  max-width: 560px;
  width: 100%;
}

/* ============================================================
   REDUCED-MOTION OVERRIDES — section-specific
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { opacity: 0.70; }
  .world-map .arc { opacity: 0.65; stroke-dashoffset: 0; }
  .world-map .hub { transform: scale(1); }
  .flow-svg .flow-connector { opacity: 0.65; stroke-dashoffset: 0; }
  .flow-svg .flow-node circle { transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 56px; }
  .products-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .strategic-cards { grid-template-columns: 1fr; }
  .strat-cards     { grid-template-columns: 1fr; }
  .contact-page    { grid-template-columns: 1fr; }
  .contact-brand   { min-height: auto; padding: 70px 50px 60px; }
  .contact-form-wrap { padding: 70px 50px; }
}
@media (max-width: 880px) {
  .pillars      { grid-template-columns: 1fr; border-top: 1px solid #E2DAC4; }
  .pillar       { border-right: none; border-bottom: 1px solid #E2DAC4; }
  .pillar:last-child { border-bottom: none; }
  .pillar-media { height: 200px; }
  .pillar-body  { padding: 36px 32px 44px; }
  .priority     { grid-template-columns: 1fr; }
  .priority-img { min-height: 220px; }
  .priority-img::after { background: linear-gradient(180deg, transparent 30%, var(--color-bg-primary) 100%) !important; }
  .who-grid     { grid-template-columns: 1fr; gap: 64px; }
  .who-divider  { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom-links a { margin: 0 14px; }
  .what, .products, .who { padding: 90px 0; }
  .products::after { width: 80%; opacity: 0.12; }
  .strategic       { padding: 100px 0; }
  .strategic-grid  { grid-template-columns: 1fr; gap: 50px; margin-bottom: 64px; }
  .strategic-image img { aspect-ratio: 1.2 / 1; }
  .cap-grid     { grid-template-columns: 1fr 1fr; }
  .flow-diagram { padding: 90px 0; }
  .ops-capabilities { padding: 80px 0 90px; }
  .phil-grid    { grid-template-columns: 1fr; gap: 40px; }
  .why-grid     { grid-template-columns: 1fr; }
  .about-section { padding: 80px 0; }
  .about-hero    { padding: 100px 0 70px; min-height: 56vh; }
  .section-head  { margin-bottom: 50px; }
}
@media (max-width: 720px) {
  .trade-map { padding: 90px 0; }
  .trade-map .hub-legend { gap: 24px; font-size: 10px; }
  .ops-banner { height: 240px; }
  .growth     { padding: 90px 0; }
  .exp-prose ul { grid-template-columns: 1fr; }
  .exp-images   { grid-template-columns: 1fr; }
  .contact-brand    { padding: 56px 28px 50px; }
  .contact-form-wrap { padding: 56px 28px; }
  .field-row    { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-note    { max-width: none; text-align: center; }
  .submit-btn   { justify-content: center; }
  .logo-text .sub { display: none; }
  .brand-footer { flex-direction: column; gap: 14px; align-items: flex-start; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid   { grid-template-columns: 1fr; gap: 48px; }
  .hero         { min-height: calc(100svh - var(--ticker-h)); }
  .hero-dots    { bottom: 92px; }
  .cap-grid     { grid-template-columns: 1fr; }
}
