/* =====================================================================
   FK North America Holdings — Marketing Site
   Design tokens + components + responsive
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:        #0a1a30;
  --navy-deep:   #06101f;
  --navy-2:      #0e2848;
  --navy-3:      #14335c;
  --gold:        #c79a3b;
  --gold-bright: #e0b75e;
  --gold-soft:   #d8b876;
  --cream:       #f3f2ee;
  --cream-2:     #e9e7df;
  --ink:         #16202e;
  --ink-soft:    #41506a;

  /* Text */
  --on-dark:        #eef1f5;
  --on-dark-muted:  #a6b6c9;
  --on-light:       #16202e;
  --on-light-muted: #54637a;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 84px;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Effects */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 18px 50px -20px rgba(6, 16, 31, 0.45);
  --shadow-soft: 0 12px 36px -18px rgba(6, 16, 31, 0.30);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.45s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--sans);
  color: var(--on-light);
  background: var(--navy);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--gold); color: var(--navy-deep); padding: 0.7rem 1.2rem;
  border-radius: var(--radius); font-weight: 600; transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Shared layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-block;
  max-width: 100%;
}
.eyebrow--center { display: block; text-align: center; }

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--on-light-muted); max-width: 56ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 1rem 1.7rem; border-radius: var(--radius);
  transition: all var(--t); position: relative; cursor: pointer;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }
.btn--ghost { border: 1px solid rgba(238,241,245,0.5); color: var(--on-dark); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(199,154,59,0.08); }
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(199,154,59,0.6); }
.btn--dark { border: 1px solid rgba(22,32,46,0.25); color: var(--ink); }
.btn--dark:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold-line { border: 1px solid var(--gold); color: var(--gold-bright); }
.btn--gold-line:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

/* ---------- Brand lockup ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.85rem; line-height: 1; }
.brand__mark {
  font-family: var(--serif); font-weight: 700; font-size: 2.1rem; color: var(--gold);
  letter-spacing: -0.02em;
}
.brand__divider { width: 1px; height: 2.1rem; background: rgba(199,154,59,0.55); }
.brand__name {
  font-family: var(--sans); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--on-dark); line-height: 1.35; white-space: nowrap;
}
.brand--dark .brand__name { color: var(--ink); }
.brand--dark .brand__divider { background: rgba(22,32,46,0.3); }

/* =====================================================================
   Header / Nav
   ===================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; width: 100%; }
.header.is-scrolled {
  background: rgba(8, 18, 33, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.6);
  border-bottom-color: rgba(199,154,59,0.18);
  height: 72px;
}
.header .brand__mark { font-size: 1.85rem; }
.header .brand__divider { height: 1.85rem; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.9vw, 2.1rem); }
.nav__link {
  position: relative; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--on-dark); text-transform: uppercase; padding: 0.4rem 0; transition: color 0.3s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-bright); }

.nav__cta {
  margin-left: 0.4rem; padding: 0.7rem 1.3rem; border: 1px solid var(--gold);
  color: var(--gold-bright); border-radius: var(--radius); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; transition: all var(--t);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold); color: var(--navy-deep); }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 1200; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--on-dark);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 0.4rem; padding: 5rem 2rem 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.3rem); font-weight: 500;
  color: var(--on-dark); padding: 0.35rem 0; letter-spacing: 0.01em; transition: color 0.3s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.is-active { color: var(--gold-bright); }
.mobile-menu .mobile-menu__cta { margin-top: 1.4rem; font-family: var(--sans); font-size: 0.85rem; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--on-dark); overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-2));
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1444723121867-7a241cacace9?w=2000&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center 60%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,16,31,0.92) 0%, rgba(6,16,31,0.72) 38%, rgba(6,16,31,0.32) 70%, rgba(6,16,31,0.55) 100%),
    linear-gradient(0deg, rgba(6,16,31,0.85) 0%, rgba(6,16,31,0.05) 45%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: var(--header-h); }
.hero__content { max-width: 760px; }
.hero h1 {
  font-family: var(--sans); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.01em;
  margin: 0.4rem 0 1.6rem;
}
.hero h1 .accent { color: var(--gold-bright); }
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--on-dark-muted); max-width: 50ch; margin-bottom: 2.4rem; }
.hero__cues {
  position: absolute; left: var(--gutter); bottom: 2rem; z-index: 2;
  display: flex; align-items: center; gap: 0.8rem; color: var(--on-dark-muted);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__cues .line { width: 46px; height: 1px; background: var(--gold); animation: cueLine 2.6s var(--ease) infinite; transform-origin: left; }
@keyframes cueLine { 0%,100% { transform: scaleX(0.4); opacity: 0.5; } 50% { transform: scaleX(1); opacity: 1; } }

/* =====================================================================
   Stats band
   ===================================================================== */
.stats {
  background: var(--navy-deep); color: var(--on-dark);
  border-top: 1px solid rgba(199,154,59,0.16); border-bottom: 1px solid rgba(199,154,59,0.16);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: clamp(2rem, 4vw, 3rem) 1rem; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: rgba(238,241,245,0.12); }
.stat__num { font-family: var(--sans); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--gold-bright); line-height: 1; letter-spacing: -0.01em; font-variant-numeric: lining-nums tabular-nums; }
.stat__label { margin-top: 0.7rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); }

/* =====================================================================
   About
   ===================================================================== */
.about-band {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  color: var(--on-dark); overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-deep));
}
.about-band__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1500534623283-312aade485b7?w=2000&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.about-band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,16,31,0.85) 0%, rgba(6,16,31,0.55) 60%, rgba(6,16,31,0.7) 100%); }
.about-band__inner { position: relative; z-index: 2; padding-block: clamp(4rem, 8vw, 6rem); }
.about-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; max-width: 16ch; }
.about-band .accent-rule { width: 70px; height: 3px; background: var(--gold); margin-top: 1.8rem; }

.about-detail { background: var(--cream); color: var(--ink); text-align: center; }
.about-detail h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); margin: 0.3rem 0 1.6rem; line-height: 1.1; }
.about-detail p { max-width: 64ch; margin-inline: auto; color: var(--on-light-muted); font-size: clamp(1.05rem, 1.5vw, 1.18rem); }
.about-detail__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.2rem; text-align: left; }
.about-card { background: #fff; padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--cream-2); box-shadow: var(--shadow-soft); }
.about-card h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.about-card p { font-size: 0.98rem; margin: 0; color: var(--on-light-muted); }

/* =====================================================================
   What We Do — pillars
   ===================================================================== */
.wwd { position: relative; color: var(--on-dark); overflow: hidden; background: var(--navy-deep); }
.wwd__bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.wwd__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(6,16,31,0.96) 0%, rgba(6,16,31,0.85) 45%, rgba(6,16,31,0.55) 100%); }
.wwd__inner { position: relative; z-index: 2; }
.wwd h2 { font-family: var(--serif); font-weight: 600; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: 0.01em; line-height: 1; }
.wwd__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--gold-bright); margin-top: 0.5rem; }
.pillars { margin-top: 3rem; display: grid; gap: 0.4rem; max-width: 880px; }
.pillar {
  display: grid; grid-template-columns: minmax(140px, 200px) 1fr; gap: 1.5rem; align-items: baseline;
  padding: 1.5rem 0 1.5rem 1.6rem; border-left: 2px solid var(--gold);
  border-bottom: 1px solid rgba(238,241,245,0.08); transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.pillar:hover { background: rgba(199,154,59,0.06); padding-left: 2.1rem; }
.pillar__name { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.pillar__desc { color: var(--on-dark-muted); font-size: 1rem; }

/* =====================================================================
   Vision
   ===================================================================== */
.vision { position: relative; min-height: 86vh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; background: linear-gradient(135deg, #2a1a12, var(--navy-deep)); }
.vision__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1547234935-80c7145ec969?w=2000&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.vision__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,16,31,0.9) 0%, rgba(6,16,31,0.55) 55%, rgba(10,26,48,0.45) 100%); }
.vision__inner { position: relative; z-index: 2; }
.vision h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.0; max-width: 15ch; margin-bottom: 1.8rem; }
.vision p { max-width: 46ch; color: var(--on-dark-muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* =====================================================================
   Values
   ===================================================================== */
.values { background: var(--cream); color: var(--ink); }
.values__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.values__head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0.2rem 0 1rem; line-height: 1.08; }
.values__head p { color: var(--on-light-muted); }
.values__grid { margin-top: 3.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value {
  background: #fff; padding: 2.2rem 1.9rem; border-radius: var(--radius-lg);
  border: 1px solid var(--cream-2); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(199,154,59,0.4); }
.value__icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-2), var(--navy)); color: var(--gold-bright); margin-bottom: 1.3rem;
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin-bottom: 0.5rem; }
.value p { color: var(--on-light-muted); font-size: 0.98rem; margin: 0; }

/* =====================================================================
   Journey — timeline
   ===================================================================== */
.journey { background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; }
.journey::before { content: ''; position: absolute; top: -20%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(199,154,59,0.08), transparent 65%); z-index: 0; }
.journey__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.journey__intro { position: sticky; top: calc(var(--header-h) + 1rem); }
.journey__intro h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.04; margin-bottom: 0.6rem; }
.journey__intro .tag { font-family: var(--serif); font-style: italic; color: var(--gold-bright); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.2; margin-bottom: 1.6rem; }
.journey__intro p { color: var(--on-dark-muted); max-width: 38ch; }

.timeline { position: relative; padding-left: 2.4rem; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 70px; width: 2px; background: linear-gradient(var(--gold), rgba(199,154,59,0.25)); }
.tl-item { position: relative; padding-bottom: 2.6rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.4rem; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold); box-shadow: 0 0 0 4px rgba(10,26,48,1);
}
.tl-year { color: var(--gold-bright); font-weight: 600; letter-spacing: 0.04em; font-size: 1.05rem; margin-bottom: 0.3rem; }
.tl-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }
.tl-desc { color: var(--on-dark-muted); font-size: 0.98rem; max-width: 44ch; }
.tl-next { position: relative; margin-top: 0.5rem; padding: 1.8rem 0 0 2.4rem; }
.tl-next::before {
  content: '★'; position: absolute; left: -3.15rem; top: 8px; width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: 50%; color: var(--navy-deep);
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 5px rgba(10,26,48,1), 0 0 28px 4px rgba(224,183,94,0.55); font-size: 1.1rem;
  animation: starGlow 3s ease-in-out infinite;
}
@keyframes starGlow { 0%,100% { box-shadow: 0 0 0 5px rgba(10,26,48,1), 0 0 22px 2px rgba(224,183,94,0.4); } 50% { box-shadow: 0 0 0 5px rgba(10,26,48,1), 0 0 34px 8px rgba(224,183,94,0.7); } }
.tl-next .eyebrow { margin-bottom: 0.5rem; }
.tl-next h3 { font-family: var(--sans); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1; letter-spacing: -0.01em; }
.tl-next p { color: var(--on-dark-muted); margin-top: 0.5rem; }

/* =====================================================================
   Team
   ===================================================================== */
.team { background: var(--cream); color: var(--ink); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.team__intro h2 { font-family: var(--sans); font-weight: 800; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.0; letter-spacing: -0.01em; }
.team__intro h2 .dot { color: var(--gold); }
.team__intro p { margin-top: 1.4rem; color: var(--on-light-muted); max-width: 42ch; }
.team__media { position: relative; }
.team__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.team__media::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(199,154,59,0.3); pointer-events: none; }

.team__pillars { margin-top: 3.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tpillar { display: flex; gap: 1.1rem; padding: 1.6rem; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--cream-2); }
.tpillar__icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold-bright); }
.tpillar__icon svg { width: 22px; height: 22px; }
.tpillar h4 { font-size: 1.1rem; font-weight: 700; }
.tpillar .role { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0.2rem 0 0.6rem; }
.tpillar p { font-size: 0.92rem; color: var(--on-light-muted); margin: 0; }

/* =====================================================================
   Portfolio
   ===================================================================== */
.portfolio { background: var(--navy); color: var(--on-dark); }
.portfolio__head { max-width: 820px; }
.portfolio__title { font-family: var(--serif); font-weight: 600; text-transform: uppercase; color: var(--gold); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; letter-spacing: 0.01em; }
.portfolio__subtitle { font-family: var(--sans); font-weight: 700; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.15; margin: 0.7rem 0 1.4rem; }
.portfolio__body { color: var(--on-dark-muted); max-width: 72ch; margin-bottom: 1rem; }
.portfolio__body strong { color: var(--gold-bright); font-weight: 600; }
.portfolio__grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pcard { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: rgba(238,241,245,0.03); border: 1px solid rgba(199,154,59,0.16); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(199,154,59,0.4); }
.pcard__img { aspect-ratio: 16/11; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard__img { transform: scale(1.05); }
.pcard__body { text-align: center; padding: 1.5rem 1.1rem 1.9rem; }
.pcard__body h3 { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.05rem; }
.pcard__rule { display: block; width: 54px; height: 2px; background: var(--gold); margin: 0.75rem auto; }
.pcard__type { display: block; color: var(--gold-bright); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.pcard__year { display: block; color: var(--on-dark-muted); font-size: 0.9rem; margin-top: 0.2rem; }
.portfolio__caption { text-align: center; color: var(--on-dark-muted); max-width: 62ch; margin: 3rem auto 0; }
.portfolio__cta { margin-top: 1.6rem; display: flex; justify-content: center; }

/* =====================================================================
   Contact + Footer
   ===================================================================== */
.contact { background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy-deep) 100%); color: var(--on-dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact__info h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; margin: 0.3rem 0 1.2rem; }
.contact__info > p { color: var(--on-dark-muted); max-width: 42ch; }
.contact__channels { margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.channel { display: flex; gap: 1rem; align-items: flex-start; }
.channel__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(199,154,59,0.12); border: 1px solid rgba(199,154,59,0.3); color: var(--gold-bright); }
.channel__icon svg { width: 20px; height: 20px; }
.channel h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.channel a, .channel p { color: var(--on-dark); font-size: 1.02rem; }
.channel a:hover { color: var(--gold-bright); }

.contact__form { background: rgba(238,241,245,0.04); border: 1px solid rgba(238,241,245,0.1); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; padding: 0.9rem 1rem; background: rgba(6,16,31,0.45); border: 1px solid rgba(238,241,245,0.16);
  border-radius: var(--radius); color: var(--on-dark); font: inherit; font-size: 0.98rem; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(166,182,201,0.5); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(6,16,31,0.7); }
.field textarea { resize: vertical; min-height: 120px; }
.contact__form .btn { width: 100%; justify-content: center; }
.form-note { margin-top: 1rem; font-size: 0.82rem; color: var(--on-dark-muted); text-align: center; }

/* Footer */
.footer { background: var(--navy-deep); color: var(--on-dark); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.footer__brand .brand__mark { font-size: 3.2rem; }
.footer__brand .brand__divider { height: 3rem; }
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--on-dark); margin-top: 1.4rem; }
.footer__col h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer__col ul { display: grid; gap: 0.85rem; }
.footer__col a { color: var(--on-dark-muted); font-size: 0.98rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-bright); }
.footer__contact .with-icon { display: flex; align-items: center; gap: 0.6rem; }
.footer__contact .with-icon svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }
.footer__bottom { border-top: 1px solid rgba(238,241,245,0.1); padding-block: 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.85rem; color: var(--on-dark-muted); }
.footer__legal { display: flex; gap: 1.2rem; align-items: center; }
.footer__legal a { font-size: 0.85rem; color: var(--on-dark-muted); }
.footer__legal a:hover { color: var(--gold-bright); }
.footer__legal .sep { color: rgba(238,241,245,0.25); }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 980px) {
  .journey__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .journey__intro { position: static; }
  .team__grid { grid-template-columns: 1fr; }
  .team__media { order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(238,241,245,0.12); }
  .about-detail__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .team__pillars { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --gutter: 1.25rem; }
  .eyebrow { letter-spacing: 0.17em; font-size: 0.7rem; }
  .pillar { grid-template-columns: 1fr; gap: 0.4rem; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat::before { display: none !important; }
  .stat { border-top: 1px solid rgba(238,241,245,0.1); }
  .stat:first-child { border-top: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__cues { display: none; }
}

/* Offline / no-image fallback already covered by base gradients on every band. */
@media print { .header, .mobile-menu, .nav-toggle, .hero__cues { display: none !important; } }
