/* =============================================================
   WhiteRock Consulting Group — Stylesheet
   Editorial-luxury system: Navy + Gold + Cream
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* -- Design tokens ------------------------------------------- */
:root {
  /* Brand palette — anchored to the company profile colours */
  --navy-900: #061328;
  --navy-800: #0a1f3d;
  --navy-700: #122a52;
  --navy-600: #1d3b6b;
  --gold-500: #c9a35c;
  --gold-400: #d8b777;
  --gold-300: #e6cc97;
  --gold-100: #f3e7cf;
  --cream:    #faf7f2;
  --paper:    #ffffff;
  --ink:      #0e1525;
  --ink-soft: #2a3344;
  --muted:    #6b7280;
  --line:     #e7e2d8;
  --line-dk:  rgba(255,255,255,.12);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spatial */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 9vw, 140px);

  --radius: 2px;          /* almost-sharp corners — editorial */
  --radius-lg: 6px;
  --shadow-soft: 0 30px 60px -30px rgba(10,31,61,.25);
  --shadow-md:   0 18px 40px -20px rgba(10,31,61,.35);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* -- Reset / base -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
hr { border: 0; height: 1px; background: var(--line); margin: 0; }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* -- Typography ---------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.08;
  margin: 0;
  color: var(--navy-900);
  font-variation-settings: "opsz" 144;
}
h1 { font-size: clamp(40px, 6.2vw, 84px); letter-spacing: -.025em; }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -.02em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -.01em; line-height: 1.2; }
h4 { font-size: 16px; font-family: var(--sans); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-800); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.on-dark::before { background: var(--gold-400); }

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--navy-800);
  border-left: 2px solid var(--gold-500);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
}

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* -- Layout -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--navy {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  position: relative;
  overflow: hidden;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.72); }

.section--navy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(201,163,92,.12), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(29,59,107,.5), transparent 60%);
  pointer-events: none;
}

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.split > * { min-width: 0; }
.split--center { align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 880px) { .split, .split--reverse > :first-child { grid-template-columns: 1fr; order: unset; } }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* -- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border: 1px solid var(--navy-800);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.btn::after {
  content: "→";
  font-family: var(--sans);
  transition: transform .35s var(--ease);
}
.btn:hover { background: var(--navy-900); color: #fff; }
.btn:hover::after { transform: translateX(4px); }

.btn--primary {
  background: var(--navy-900); color: #fff; border-color: var(--navy-900);
}
.btn--primary:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }

.btn--gold {
  background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500);
}
.btn--gold:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

.link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.link::after { content: "→"; transition: transform .3s var(--ease); }
.link:hover { color: var(--gold-500); }
.link:hover::after { transform: translateX(4px); }
.link.on-dark { color: #fff; }
.link.on-dark:hover { color: var(--gold-400); }

/* -- Top bar ------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  letter-spacing: .06em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 10px;
  gap: 16px; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); border-bottom: 1px solid transparent; transition: border-color .3s; }
.topbar a:hover { border-color: var(--gold-400); }
.topbar .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); display: inline-block; margin: 0 10px; vertical-align: middle; }

/* -- Header / Nav -------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .02em;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 10px; height: 10px;
  background: var(--gold-500);
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--navy-900);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 6px;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink); position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links .nav-cta {
  margin-left: 14px;
  padding: 12px 22px;
  background: var(--navy-900); color: #fff;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold-500); color: var(--navy-900); }
/* keep CTA legible when it's also the active page — invert to gold */
.nav-links .nav-cta.is-active { background: var(--gold-500); color: var(--navy-900); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.menu-toggle span {
  display: block; width: 18px; height: 1px; background: var(--navy-900);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--navy-900);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--line);
    transform: translateY(calc(-100% - 96px));
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s var(--ease);
    box-shadow: 0 40px 60px -30px rgba(10,31,61,.25);
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-of-type { border-bottom: 0; }
  .nav-links .nav-cta { margin: 16px 0 0; text-align: center; justify-content: center; }
  .nav-links.is-open { transform: translateY(0); visibility: visible; }
}

/* -- HERO ---------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  min-height: clamp(620px, 90vh, 880px);
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, rgba(6,19,40,.92) 0%, rgba(6,19,40,.78) 45%, rgba(6,19,40,.55) 100%),
    url("../imgs/pom.jpeg");
  background-size: cover;
  background-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 600px at 90% 10%, rgba(201,163,92,.18), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(29,59,107,.5), transparent 60%);
  mix-blend-mode: screen;
}
.hero__diag {
  position: absolute; right: 0; bottom: 0;
  width: 38%; height: 100%;
  background: linear-gradient(180deg, rgba(201,163,92,.0) 0%, rgba(201,163,92,.2) 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: 80px; }
.hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-400);
}
.hero p.lead {
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__meta {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 28px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.hero__meta .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144;
}
.hero__meta .num span { color: var(--gold-400); }
.hero__meta .label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.hero__rule {
  position: absolute; left: var(--gutter); bottom: 32px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 14px;
  z-index: 2;
}
.hero__rule::before { content: ""; width: 40px; height: 1px; background: var(--gold-500); }

/* -- Page hero (interior) ------------------------------------ */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  padding: clamp(120px, 14vw, 180px) 0 clamp(70px, 9vw, 110px);
}
.page-hero__bg {
  position: absolute; inset: 0;
  opacity: .35;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--navy-900) 30%, rgba(6,19,40,.7) 100%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: -.025em;
  margin: 18px 0 22px;
}
.page-hero p { color: rgba(255,255,255,.78); font-size: clamp(18px, 1.6vw, 22px); max-width: 64ch; }
.page-hero .crumb {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-400);
}
.page-hero .crumb a { color: rgba(255,255,255,.6); margin-right: 10px; }
.page-hero .crumb a:hover { color: var(--gold-400); }

/* -- Cards --------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--gold-500); box-shadow: var(--shadow-soft); }
.card h3 { margin-top: 14px; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 16px; }

.card--num { padding-top: 56px; }
.card .num-tag {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold-500);
}
.card .num-tag::before { content: "—"; margin-right: 6px; color: var(--gold-500); }

.card--feature {
  padding: 0;
  overflow: hidden;
  display: grid; grid-template-rows: auto 1fr;
}
.card--feature .img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  position: relative;
}
.card--feature .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,19,40,0) 50%, rgba(6,19,40,.4) 100%);
}
.card--feature .body { padding: 28px 30px 32px; }

.list-tick { display: flex; flex-direction: column; gap: 14px; }
.list-tick li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}
.list-tick li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 18px; height: 1px; background: var(--gold-500);
}
.list-tick.on-dark li { color: rgba(255,255,255,.82); }

.section-title { margin-bottom: 24px; }

/* -- Marquee headline (editorial flourish) ------------------- */
.marquee {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 7vw, 100px);
  letter-spacing: -.02em;
  color: var(--navy-900);
  line-height: 1.05;
  padding-block: 60px;
  text-align: center;
  border-block: 1px solid var(--line);
}
.marquee span { color: var(--gold-500); font-style: normal; font-weight: 400; }

/* -- Service strip ------------------------------------------- */
.service-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 32px; align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.service-row:hover { padding-left: 12px; }
.service-row:last-child { border-bottom: 0; }
.service-row .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  color: var(--gold-500);
  font-style: italic;
}
.service-row h3 { margin: 0 0 6px; }
.service-row p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.service-row .arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.service-row:hover .arrow { background: var(--navy-900); color: #fff; border-color: var(--navy-900); transform: rotate(-45deg); }
@media (max-width: 720px) {
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row .arrow { display: none; }
}

/* -- Image with frame --------------------------------------- */
.framed {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.framed::before {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}
.framed--wide { aspect-ratio: 16/10; }
.framed--gold-accent::after {
  content: "";
  position: absolute;
  bottom: -22px; right: -22px;
  width: 60%; height: 60%;
  border: 1px solid var(--gold-500);
  z-index: -1;
  border-radius: var(--radius);
}
.framed-wrap { position: relative; }

/* -- Stat block ---------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .figure {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 60px);
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.stat .figure span { color: var(--gold-500); }
.stat .label { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* -- Profile / Leadership ------------------------------------ */
.profile {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .profile { grid-template-columns: 1fr; } }
.profile__portrait {
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(6,19,40,.05), rgba(6,19,40,.5)),
    url("../imgs/jtupiri.jpeg");
  background-size: cover; background-position: center 25%;
}
.profile__portrait::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid rgba(255,255,255,.4);
}
.profile__portrait::after {
  content: "JST";
  position: absolute; left: -28px; bottom: 32px;
  background: var(--gold-500);
  color: var(--navy-900);  
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  padding: 14px 22px;
  letter-spacing: .04em;
}
.cv {
  display: grid; gap: 18px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.cv__row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  align-items: baseline;
}
.cv__row .role { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold-500); font-size: 17px; }
.cv__row .org { color: var(--ink); font-weight: 500; }
.cv__row p { font-size: 15px; color: var(--muted); margin: 4px 0 0; }
@media (max-width: 720px) { .cv__row { grid-template-columns: 1fr; gap: 6px; } }

/* -- Insight cards (editorial) ------------------------------ */
.insight {
  display: grid; grid-template-rows: auto 1fr;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  cursor: pointer;
}
.insight .img { aspect-ratio: 16/10; background-size: cover; background-position: center; margin-bottom: 24px; transition: transform .6s var(--ease); }
.insight:hover .img { transform: scale(1.02); }
.insight .meta { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 12px; }
.insight h3 { font-size: 24px; line-height: 1.25; margin-bottom: 10px; transition: color .35s var(--ease); }
.insight:hover h3 { color: var(--gold-500); }
.insight p { font-size: 15px; color: var(--ink-soft); }

/* -- Forms --------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__group { display: grid; gap: 8px; }
.form label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-800);
}
.form input, .form select, .form textarea {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,163,92,.15);
}
.form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form .row-2 { grid-template-columns: 1fr; } }
.form .submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form small { color: var(--muted); font-size: 12px; }

/* -- Contact panels ----------------------------------------- */
.contact-panel {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 44px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(201,163,92,.4);
  border-radius: 50%;
}
.contact-panel h3 { color: #fff; font-size: 28px; margin-bottom: 20px; }
.contact-panel a { color: var(--gold-400); border-bottom: 1px solid rgba(201,163,92,.3); padding-bottom: 2px; }
.contact-panel a:hover { color: #fff; border-bottom-color: #fff; }
.contact-panel .row {
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: center;
}
.contact-panel .row:first-of-type { border-top: 1px solid rgba(255,255,255,.18); margin-top: 14px; }
.contact-panel .row .k { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact-panel .row .v { font-family: var(--serif); font-weight: 400; font-size: 19px; color: #fff; }
@media (max-width: 640px) {
  .card { padding: 28px 22px; }
  .contact-panel { padding: 34px 24px; }
  .contact-panel .row { grid-template-columns: 1fr; gap: 4px; }
  .contact-panel .row .v { font-size: 17px; overflow-wrap: anywhere; }
}

/* -- CTA Band ------------------------------------------------ */
.cta-band {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 40px; align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-band h2 { color: #fff; font-weight: 300; font-size: clamp(28px, 3.5vw, 44px); }
.cta-band h2 em { color: var(--gold-400); font-style: italic; font-weight: 300; }
@media (max-width: 720px) { .cta-band .container { grid-template-columns: 1fr; } }

/* -- Footer -------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.65);
  padding: 80px 0 24px;
  font-size: 14px;
  position: relative;
}
.footer .brand-name { color: #fff; }
.footer .brand-name small { color: var(--gold-400); }
.footer h4 { color: #fff; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,.7); transition: color .3s; }
.footer a:hover { color: var(--gold-400); }
.footer p { color: rgba(255,255,255,.55); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}

/* -- Reveal animation --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1; transform: none;
}
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -- Helpers ------------------------------------------------- */
.text-right { text-align: right; }
.center { text-align: center; }
.muted { color: var(--muted); }
.gold { color: var(--gold-500); }
.divider { width: 60px; height: 2px; background: var(--gold-500); margin: 0 0 28px; }
.divider--center { margin: 0 auto 28px; }
