:root {
  --navy: #0f3e50;
  --navy-2: #092d3b;
  --teal: #2f8c88;
  --teal-light: #dfeeed;
  --gold: #c7a65d;
  --gold-soft: #eadfc3;
  --sand: #f7f3eb;
  --ice: #eef5f5;
  --white: #ffffff;
  --ink: #1b2c32;
  --muted: #5f7076;
  --line: rgba(15, 62, 80, 0.14);
  --shadow: 0 24px 70px rgba(9, 45, 59, 0.14);
  --shadow-soft: 0 14px 36px rgba(9, 45, 59, 0.1);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.section-light { background: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 243, 235, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 243, 235, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(9,45,59,.06);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; width: min(440px, 46vw); text-decoration: none; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: .02em;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(15,62,80,.18);
}
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 105px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47,140,136,.08), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(199,166,93,.14), transparent 26%),
    var(--sand);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -16% -240px 33%;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(47,140,136,.14);
  box-shadow: inset 0 0 0 58px rgba(47,140,136,.025), inset 0 0 0 116px rgba(47,140,136,.02);
  transform: rotate(-8deg);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; top: -250px; left: -160px; background: rgba(47,140,136,.08); }
.hero-glow-two { width: 330px; height: 330px; bottom: -180px; right: -100px; background: rgba(199,166,93,.12); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 76px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.2rem, 6.2vw, 6.25rem); max-width: 900px; }
.hero h1 em { color: var(--teal); font-weight: 500; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: #41565f; font-size: 1.18rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 13px 30px rgba(15,62,80,.2); }
.button-primary:hover { background: var(--navy-2); box-shadow: 0 16px 34px rgba(15,62,80,.25); }
.button-secondary { background: rgba(255,255,255,.62); border-color: rgba(15,62,80,.18); color: var(--navy); }
.button-secondary:hover { background: var(--white); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 27px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; min-width: 0; }
.route-card {
  position: relative;
  border-radius: 34px;
  padding: 24px;
  min-height: 570px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(15,62,80,.11);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent 45%);
}
.route-topline { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: .83rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.route-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(199,166,93,.14); }
.route-map { width: 100%; height: auto; margin-top: 42px; }
.proof-card {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  background: rgba(15,62,80,.93);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(9,45,59,.22);
  backdrop-filter: blur(8px);
}
.proof-card strong { display: block; font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.proof-card span { display: block; margin-top: 6px; color: rgba(255,255,255,.78); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.proof-card-one { left: 18px; bottom: 25px; }
.proof-card-two { right: 22px; bottom: 105px; background: rgba(47,140,136,.95); }
.proof-card-three { right: 50px; top: 85px; background: rgba(199,166,93,.96); color: var(--navy); }
.proof-card-three span { color: rgba(15,62,80,.72); }

.proof-strip { background: var(--navy); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-stat { min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 24px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.proof-stat:last-child { border-right: 0; }
.proof-stat strong { font-family: var(--serif); font-size: 2.15rem; line-height: 1; }
.proof-stat span { margin-top: 7px; color: rgba(255,255,255,.7); font-size: .74rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 88px; align-items: center; }
.portrait-wrap { position: relative; }
.portrait-card { position: relative; max-width: 425px; margin-inline: auto; padding: 28px 28px 22px; border-radius: 34px; background: var(--sand); box-shadow: var(--shadow-soft); }
.portrait-card::before { content: ""; position: absolute; width: 135px; height: 135px; left: -32px; top: -34px; border-radius: 50%; background: var(--teal-light); z-index: -1; }
.portrait-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 8px solid var(--white); box-shadow: 0 15px 35px rgba(9,45,59,.16); }
.portrait-caption { display: flex; flex-direction: column; align-items: center; margin-top: 18px; }
.portrait-caption strong { color: var(--navy); font-family: var(--serif); font-size: 1.28rem; }
.portrait-caption span { color: var(--teal); font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.portrait-wrap blockquote { position: relative; max-width: 485px; margin: 24px auto 0; padding: 25px 30px; color: var(--white); background: var(--navy); border-radius: 18px; font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.55; box-shadow: var(--shadow-soft); }
.portrait-wrap blockquote::before { content: "“"; position: absolute; top: -17px; left: 17px; color: var(--gold); font-size: 4.6rem; line-height: 1; }
.about-copy h2, .section-heading h2, .contact-copy h2 { font-size: clamp(2.55rem, 4.4vw, 4.6rem); }
.about-copy > p:not(.eyebrow) { margin: 24px 0 0; color: #485d64; font-size: 1.05rem; }
.value-callout { display: grid; gap: 8px; margin-top: 30px; padding: 24px 26px; border-left: 5px solid var(--gold); background: var(--ice); border-radius: 0 16px 16px 0; }
.value-label { color: var(--teal); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.value-callout strong { color: var(--navy); font-size: 1.08rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 90px; }
.pillar-card { position: relative; padding: 34px 30px 32px; border-radius: 22px; background: var(--sand); border: 1px solid rgba(15,62,80,.08); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.pillar-card::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; right: -60px; bottom: -70px; background: rgba(47,140,136,.08); }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pillar-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; color: var(--teal); background: var(--white); box-shadow: 0 8px 20px rgba(9,45,59,.08); }
.pillar-icon svg { width: 32px; height: 32px; fill: currentColor; }
.pillar-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 1.48rem; }
.pillar-card p { margin: 13px 0 0; color: var(--muted); }

.audience-section { color: var(--white); background: var(--navy); position: relative; overflow: hidden; }
.audience-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -350px; top: -240px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 0 0 80px rgba(255,255,255,.018), inset 0 0 0 160px rgba(255,255,255,.012); }
.audience-section::after { content: ""; position: absolute; width: 360px; height: 360px; right: -160px; bottom: -190px; border-radius: 50%; background: rgba(199,166,93,.08); }
.section-heading { max-width: 840px; position: relative; z-index: 2; }
.section-heading h2 { color: inherit; }
.section-heading > p:last-child { margin: 22px 0 0; max-width: 760px; color: inherit; opacity: .76; font-size: 1.08rem; }
.audience-section .eyebrow { color: var(--gold); }
.audience-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; margin-top: 62px; position: relative; z-index: 2; align-items: center; }
.audience-chart-card { padding: 38px; border-radius: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.age-donut {
  width: min(360px, 82vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(
    #2d7fb2 0 24.8%,
    #f28b30 24.8% 47.4%,
    #2da34a 47.4% 82%,
    #da3030 82% 93%,
    #8f61b5 93% 100%
  );
  box-shadow: 0 26px 50px rgba(0,0,0,.22);
}
.age-donut::before { content: ""; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--navy); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.age-donut-center { position: absolute; display: flex; flex-direction: column; align-items: center; text-align: center; }
.age-donut-center strong { font-family: var(--serif); font-size: 3.4rem; line-height: .9; }
.age-donut-center span { margin-top: 12px; color: rgba(255,255,255,.7); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.age-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 28px; }
.age-legend span { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .83rem; }
.age-legend i { width: 10px; height: 10px; border-radius: 3px; }
.age-legend b { color: var(--white); }
.age-a { background: #2d7fb2; }.age-b { background: #f28b30; }.age-c { background: #2da34a; }.age-d { background: #da3030; }.age-e { background: #8f61b5; }
.audience-value { display: grid; gap: 16px; }
.audience-value-block { padding: 25px 27px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); }
.mini-kicker { display: block; margin-bottom: 7px; color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.audience-value-block strong { font-family: var(--serif); font-size: 1.72rem; }
.audience-value-block p { margin: 7px 0 0; color: rgba(255,255,255,.7); }
.intent-path { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 58px; position: relative; z-index: 2; }
.intent-step { min-height: 158px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.intent-step span { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.intent-step strong { margin-top: 7px; font-family: var(--serif); font-size: 1.42rem; }
.intent-step p { margin: 5px 0 0; color: rgba(255,255,255,.67); font-size: .9rem; }
.intent-arrow { color: var(--gold); font-size: 1.8rem; }

.work-section .section-heading { color: var(--navy); }
.case-study { display: grid; grid-template-columns: .96fr 1.04fr; gap: 52px; align-items: center; margin-top: 58px; padding: 34px; border-radius: 30px; background: var(--ice); border: 1px solid rgba(15,62,80,.09); }
.case-visual { position: relative; }
.case-visual img { border-radius: 24px; box-shadow: var(--shadow-soft); }
.case-badge { position: absolute; left: 18px; top: 18px; padding: 8px 12px; border-radius: 999px; color: var(--navy); background: rgba(247,243,235,.92); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.case-copy h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.08; }
.case-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); }
.case-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 26px; }
.case-metrics div { padding: 17px 12px; border-radius: 14px; text-align: center; background: var(--white); border: 1px solid rgba(15,62,80,.08); }
.case-metrics strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.45rem; line-height: 1; }
.case-metrics span { display: block; margin-top: 6px; color: var(--teal); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-takeaway { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; padding: 18px 20px; border-radius: 14px; color: var(--white); background: var(--navy); }
.case-takeaway strong { font-family: var(--serif); font-size: 1.2rem; }
.case-takeaway span { color: rgba(255,255,255,.72); font-size: .9rem; }
.portfolio-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 72px; }
.portfolio-toolbar h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 2rem; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 14px; border: 1px solid rgba(15,62,80,.14); border-radius: 999px; color: var(--navy); background: transparent; font-size: .82rem; font-weight: 800; }
.filter-button:hover, .filter-button:focus-visible, .filter-button.is-active { color: var(--white); background: var(--navy); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.story-card { overflow: hidden; border-radius: 22px; background: var(--white); border: 1px solid rgba(15,62,80,.08); box-shadow: 0 14px 34px rgba(9,45,59,.07); transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.story-card.is-hidden { display: none; }
.story-art { height: 180px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; color: var(--white); background-color: var(--navy); }
.story-art::before, .story-art::after { content: ""; position: absolute; border-radius: 50%; }
.story-art::before { width: 210px; height: 210px; right: -80px; top: -105px; border: 1px solid rgba(255,255,255,.35); box-shadow: inset 0 0 0 36px rgba(255,255,255,.04); }
.story-art::after { width: 180%; height: 90px; left: -40%; bottom: -56px; background: rgba(255,255,255,.14); transform: rotate(-7deg); }
.story-art span { position: relative; z-index: 2; font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.art-waterfront { background: linear-gradient(135deg, #0f3e50, #2f8c88); }
.art-nightlife { background: linear-gradient(135deg, #372a3f, #93494d); }
.art-treats { background: linear-gradient(135deg, #9d5a4b, #c7a65d); }
.art-dining { background: linear-gradient(135deg, #264a3e, #6d8657); }
.art-dessert { background: linear-gradient(135deg, #5c346b, #c774a6); }
.art-breakfast { background: linear-gradient(135deg, #704b2e, #d3a96d); }
.story-body { padding: 24px; }
.story-type { color: var(--teal); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.story-body h3 { min-height: 56px; margin: 9px 0 0; color: var(--navy); font-family: var(--serif); font-size: 1.35rem; line-height: 1.22; }
.story-metric { display: flex; align-items: baseline; gap: 7px; margin-top: 19px; }
.story-metric strong { color: var(--navy); font-family: var(--serif); font-size: 2rem; }
.story-metric span { color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-body p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

.partnerships-section { background: linear-gradient(180deg, var(--sand), #f0e9dc); }
.partnerships-section .section-heading { color: var(--navy); }
.partner-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 48px; }
.partner-types span { padding: 10px 15px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.75); border: 1px solid rgba(15,62,80,.1); font-size: .82rem; font-weight: 800; }
.collaboration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.collaboration-card { position: relative; min-height: 250px; padding: 34px 30px; border-radius: 24px; background: var(--white); border: 1px solid rgba(15,62,80,.08); box-shadow: 0 14px 34px rgba(9,45,59,.06); }
.collaboration-card.featured { color: var(--white); background: var(--navy); transform: translateY(-8px); }
.card-number { color: var(--gold); font-size: .74rem; font-weight: 900; letter-spacing: .18em; }
.collaboration-card h3 { margin: 48px 0 0; color: var(--navy); font-family: var(--serif); font-size: 1.75rem; }
.collaboration-card.featured h3 { color: var(--white); }
.collaboration-card p { margin: 14px 0 0; color: var(--muted); }
.collaboration-card.featured p { color: rgba(255,255,255,.72); }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 70px; }
.deliverables-panel, .process-panel { padding: 38px; border-radius: 26px; background: var(--white); border: 1px solid rgba(15,62,80,.09); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #42575f; font-size: .94rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 900; }
.process-step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.process-step:last-of-type { border-bottom: 0; }
.process-step > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal); font-weight: 900; }
.process-step strong { color: var(--navy); font-family: var(--serif); font-size: 1.15rem; }
.process-step p { margin: 3px 0 0; color: var(--muted); font-size: .9rem; }
.terms-note { margin: 18px 0 0; padding: 16px 18px; border-radius: 14px; color: var(--navy); background: var(--ice); font-size: .84rem; font-weight: 700; }

.contact-section { background: var(--navy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.contact-copy .eyebrow { color: var(--gold); }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.contact-direct { margin-top: 34px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-direct > span { display: block; color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.contact-direct a { display: inline-block; margin-top: 7px; color: var(--white); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.7rem); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.copy-button { margin-top: 12px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); background: transparent; font-size: .78rem; font-weight: 800; }
.copy-button:hover { background: rgba(255,255,255,.08); }
.copy-status { min-height: 22px; margin: 6px 0 0; color: var(--gold); font-size: .78rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 24px; }
.contact-links a { color: rgba(255,255,255,.82); font-weight: 800; text-underline-offset: 4px; }
.inquiry-form { padding: 36px; border-radius: 28px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.inquiry-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--navy); font-size: .78rem; font-weight: 850; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(15,62,80,.15);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfc;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47,140,136,.12); }
.inquiry-form textarea { resize: vertical; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.site-footer { padding: 48px 0; color: rgba(255,255,255,.76); background: var(--navy-2); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .7fr 1.15fr; gap: 40px; align-items: start; }
.site-footer strong { color: var(--white); font-family: var(--serif); font-size: 1.35rem; }
.site-footer p { margin: 6px 0 0; max-width: 340px; font-size: .88rem; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 700; font-size: .88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-meta { display: grid; gap: 7px; justify-items: end; text-align: right; font-size: .8rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 34px, 960px); }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: .84rem; }
  .hero-grid, .about-grid, .audience-grid, .case-study, .contact-grid { gap: 42px; }
  .proof-card { min-width: 130px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .collaboration-grid { gap: 16px; }
  .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 88px 0; }
  .brand { width: min(390px, 72vw); }
  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(15,62,80,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.7);
  }
  .menu-button span:not(.sr-only) { display: block; width: 21px; height: 2px; border-radius: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 13px; }
  .site-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero { padding: 78px 0 86px; }
  .hero-grid, .about-grid, .audience-grid, .case-study, .contact-grid, .deliverables-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 760px; }
  .route-card { min-height: 510px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-stat:nth-child(2) { border-right: 0; }
  .proof-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .pillars, .collaboration-grid { grid-template-columns: 1fr; }
  .collaboration-card.featured { transform: none; }
  .intent-path { grid-template-columns: 1fr; }
  .intent-arrow { transform: rotate(90deg); text-align: center; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .case-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { justify-items: start; text-align: left; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); }
  .header-inner { min-height: 72px; }
  .brand { width: min(310px, 70vw); }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-trust { display: grid; }
  .route-card { min-height: 435px; padding: 18px; }
  .route-map { margin-top: 55px; }
  .proof-card { min-width: 112px; padding: 12px 13px; }
  .proof-card strong { font-size: 1.35rem; }
  .proof-card span { font-size: .62rem; }
  .proof-card-one { left: 12px; bottom: 16px; }
  .proof-card-two { right: 12px; bottom: 78px; }
  .proof-card-three { right: 16px; top: 66px; }
  .proof-stat { min-height: 106px; padding: 20px 16px; }
  .proof-stat strong { font-size: 1.7rem; }
  .about-copy h2, .section-heading h2, .contact-copy h2 { font-size: clamp(2.3rem, 11vw, 3.5rem); }
  .portrait-card { padding: 20px; }
  .portrait-wrap blockquote { font-size: 1rem; }
  .pillars { margin-top: 60px; }
  .audience-chart-card { padding: 24px 18px; }
  .age-legend { grid-template-columns: 1fr; }
  .case-study { padding: 20px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .portfolio-toolbar { align-items: flex-start; flex-direction: column; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .story-body h3 { min-height: auto; }
  .partner-types { justify-content: flex-start; }
  .deliverables-panel, .process-panel, .inquiry-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-direct a { overflow-wrap: anywhere; }
}

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

/* Launch refinements: hidden-gem positioning and bridge hero */
.hero h1 { max-width: 760px; }
.hero-photo-card {
  position: relative;
  min-height: 570px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(15,62,80,.12);
  box-shadow: var(--shadow);
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(9,45,59,.35) 100%);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: 55% center;
}
.hero-photo-label {
  position: absolute;
  z-index: 4;
  left: 24px;
  top: 24px;
  max-width: 290px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(247,243,235,.9);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(9,45,59,.14);
  backdrop-filter: blur(8px);
}
.hero-photo-label span { display:block; color: var(--teal); font-size:.69rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.hero-photo-label strong { display:block; margin-top:4px; font-family:var(--serif); font-size:1.08rem; line-height:1.25; }
.pillars { grid-template-columns: repeat(4, 1fr); }
.trust-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.trust-section::before { content:""; position:absolute; inset:0; opacity:.22; background-image: radial-gradient(circle at 20% 20%, rgba(47,140,136,.45), transparent 30%), radial-gradient(circle at 85% 80%, rgba(199,166,93,.28), transparent 26%); }
.trust-section .section-heading { color: var(--white); position:relative; z-index:2; }
.trust-section .eyebrow { color: var(--gold); }
.trust-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:52px; }
.trust-card { min-height:250px; padding:30px 26px; border-radius:22px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); }
.trust-card span { color:var(--gold); font-size:.72rem; font-weight:900; letter-spacing:.18em; }
.trust-card h3 { margin:38px 0 0; color:var(--white); font-family:var(--serif); font-size:1.55rem; }
.trust-card p { margin:12px 0 0; color:rgba(255,255,255,.72); }
@media (max-width: 1060px) {
  .pillars, .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-photo-card { min-height: 500px; }
  .hero-photo { height: 500px; }
}
@media (max-width: 620px) {
  .pillars, .trust-grid { grid-template-columns: 1fr; }
  .hero-photo-card { min-height: 430px; }
  .hero-photo { height: 430px; object-position: 62% center; }
  .hero-photo-label { left:14px; top:14px; right:14px; max-width:none; }
}
