/* A Medical Agency · brand stylesheet */

:root {
  --pine: #1c2230;
  --pine-2: #293040;
  --pine-3: #343d52;
  --porcelain: #f6f2ea;
  --porcelain-2: #ede6d8;
  --stone: #b9b2a4;
  --mist: #8e95a6;
  --sage: #a9b3c4;
  --brass: #cfae62;
  --brass-2: #e3cb8c;
  --brass-3: #8d7743;
  --white: #ffffff;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-2: cubic-bezier(.65, 0, .35, 1);
  --gutter: clamp(20px, 5vw, 80px);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--pine);
  color: var(--porcelain);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--brass); color: var(--pine); }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2 * var(--gutter), 980px); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brass); color: var(--pine); padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 16px; }

.eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--brass); font-weight: 400; display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); opacity: .8; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--brass); opacity: .8; }

.display { font-size: clamp(42px, 6.2vw, 92px); }
.h2 { font-size: clamp(36px, 4.6vw, 66px); }
.h3 { font-size: clamp(26px, 2.6vw, 36px); }
.lead { font-size: clamp(18px, 1.4vw, 21px); line-height: 1.65; color: var(--stone); }
.muted { color: var(--mist); }
.center { text-align: center; }
em.brass { font-style: italic; color: var(--brass-2); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 400;
  border: 1px solid rgba(207, 174, 98, .55); color: var(--porcelain); overflow: hidden;
  transition: color .5s var(--ease), border-color .5s var(--ease); isolation: isolate;
}
.btn::before { content: ""; position: absolute; inset: 0; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); z-index: -1; }
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--pine); border-color: var(--brass); }
.btn svg { width: 16px; height: 16px; transition: transform .5s var(--ease); }
.btn:hover svg { transform: translateX(6px); }
.btn.solid { background: var(--brass); color: var(--pine); border-color: var(--brass); }
.btn.solid::before { background: var(--porcelain); }
.btn.solid:hover { color: var(--pine); border-color: var(--porcelain); }
.btn.dark { color: var(--pine); border-color: rgba(28, 34, 48, .35); }
.btn.dark:hover { color: var(--porcelain); }
.btn.dark::before { background: var(--pine); }
.btn.phone { gap: 10px; }

.link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }
.link span { position: relative; }
.link span::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.link:hover span::after { transform: scaleX(1); transform-origin: left; }
.link svg { width: 14px; height: 14px; transition: transform .5s var(--ease); }
.link:hover svg { transform: translateX(5px); }

/* ---------- Brand mark ---------- */
.mark { color: var(--brass); }

/* ---------- Preloader ---------- */
.loader { position: fixed; inset: 0; z-index: 1000; background: var(--pine); display: grid; place-items: center; transition: opacity .9s var(--ease-2), visibility .9s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader .mark { width: 70px; height: 70px; opacity: 0; animation: flare 1.6s var(--ease) forwards; }
.loader .logo { width: min(320px, 70vw); height: auto; opacity: 0; animation: flare 1.6s var(--ease) forwards; }
.loader .word { margin-top: 0; font-family: var(--sans); font-weight: 300; font-size: 20px; letter-spacing: .5em; text-transform: uppercase; color: var(--porcelain); opacity: 0; animation: rise 1.2s .35s var(--ease) forwards; text-align: center; padding-left: .5em; }
.loader .line { width: 0; height: 1px; background: var(--brass); margin-top: 22px; animation: grow 1.4s .5s var(--ease) forwards; }
@keyframes flare { to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes grow { to { width: 140px; } }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 26px 0; transition: padding .5s var(--ease), transform .6s var(--ease); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(207, 174, 98, .35), transparent); opacity: 0; transition: opacity .5s; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(28, 34, 48, .84); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); opacity: 0; transition: opacity .5s var(--ease); }
.site-header.solid { padding: 14px 0; }
.site-header.solid::before, .site-header.solid::after { opacity: 1; }
.site-header.hide { transform: translateY(-110%); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand img { height: 34px; width: auto; display: block; }
.site-footer .brand img { height: 40px; }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--sans); font-size: 17px; letter-spacing: .34em; text-transform: uppercase; color: var(--porcelain); font-weight: 300; white-space: nowrap; }
.brand .sub { font-size: 9px; letter-spacing: .5em; text-transform: uppercase; color: var(--brass); margin-top: 7px; padding-left: 1px; white-space: nowrap; }

.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 34px; }
.nav-links a { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--porcelain); position: relative; padding: 6px 0; opacity: .85; transition: opacity .3s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; }
.nav-cta .btn { padding: 13px 22px; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--porcelain); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1160px) { .nav-links { gap: 22px; } .nav-links a { font-size: 11px; letter-spacing: .16em; } .brand img { height: 30px; } }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: fixed; inset: 0; background: var(--pine); z-index: -2; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease); }
  .nav-menu.open { opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: center; gap: 20px; }
  .nav-links a { font-family: var(--serif); font-size: 32px; letter-spacing: .04em; text-transform: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 160px 0 90px; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28, 34, 48, .55) 0%, rgba(28, 34, 48, .15) 35%, rgba(28, 34, 48, .78) 75%, var(--pine) 100%), linear-gradient(90deg, rgba(28, 34, 48, .7) 0%, rgba(28, 34, 48, 0) 60%); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: end; }
.hero .display { margin: 26px 0 30px; max-width: 16ch; font-size: clamp(40px, 5.6vw, 84px); }
.hero .display .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero .display .line span { display: inline-block; transform: translateY(110%); transition: transform 1.3s var(--ease); }
.hero.in .display .line span { transform: none; }
.hero.in .display .line:nth-child(2) span { transition-delay: .12s; }
.hero.in .display .line:nth-child(3) span { transition-delay: .24s; }
.hero .display em { font-style: italic; color: var(--brass-2); }
.hero .lead { max-width: 54ch; color: rgba(246, 242, 234, .82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-aside { justify-self: end; text-align: right; max-width: 400px; }
.hero-aside .quote { font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); font-style: italic; line-height: 1.35; color: var(--porcelain); }
.hero-aside .who { margin-top: 18px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); }
.hero .reveal-late { opacity: 0; transform: translateY(24px); transition: opacity 1.2s .5s var(--ease), transform 1.2s .5s var(--ease); }
.hero.in .reveal-late { opacity: 1; transform: none; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: rgba(246, 242, 234, .7); }
.hero-badges span { display: inline-flex; align-items: center; gap: 10px; }
.hero-badges span::before { content: ""; width: 6px; height: 6px; background: var(--brass); transform: rotate(45deg); }

.scroll-cue { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(246, 242, 234, .6); }
.scroll-cue span { writing-mode: vertical-rl; }
.scroll-cue i { width: 1px; height: 54px; background: linear-gradient(180deg, var(--brass), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--porcelain); transform: translateY(-100%); animation: drip 2.4s var(--ease-2) infinite; }
@keyframes drip { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }
@media (max-height: 640px), (max-width: 900px) { .scroll-cue { display: none; } }
@media (max-width: 900px) { .hero { padding: 140px 0 100px; } .hero-grid { grid-template-columns: 1fr; gap: 36px; } .hero-aside { justify-self: start; text-align: left; } }

.hero.sub { min-height: 82svh; }

/* ---------- Stats ---------- */
.stats { background: var(--pine); border-top: 1px solid rgba(207, 174, 98, .18); border-bottom: 1px solid rgba(207, 174, 98, .18); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 30px; border-right: 1px solid rgba(207, 174, 98, .18); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: clamp(40px, 4.2vw, 62px); color: var(--porcelain); line-height: 1; }
.stat .num sup { font-size: .5em; color: var(--brass); vertical-align: top; margin-left: 2px; }
.stat .num small { font-size: .42em; color: var(--brass); letter-spacing: .1em; margin-left: 6px; }
.stat .lbl { margin-top: 12px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--mist); }
@media (max-width: 900px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 30px 20px; border-right: 0; border-bottom: 1px solid rgba(207, 174, 98, .18); }
  .stat:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(207, 174, 98, .18); }
  .stat:nth-child(n+3) { border-bottom: 0; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(90px, 10vw, 150px) 0; }
.section.porcelain { background: var(--porcelain); color: var(--pine); }
.section.porcelain .lead { color: #4a5061; }
.section.porcelain .muted { color: #6b7284; }
.section.porcelain .eyebrow { color: var(--brass-3); }
.section.porcelain .eyebrow::before, .section.porcelain .eyebrow::after { background: var(--brass-3); }
.section.porcelain-2 { background: var(--porcelain-2); color: var(--pine); }
.section.porcelain-2 .lead { color: #4a5061; }
.section.porcelain-2 .eyebrow { color: var(--brass-3); }
.section.porcelain-2 .eyebrow::before, .section.porcelain-2 .eyebrow::after { background: var(--brass-3); }
.section.pine-2 { background: var(--pine-2); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.figure { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.figure img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.figure.wide { aspect-ratio: 16 / 11; }
.figure .frame { position: absolute; inset: 18px; border: 1px solid rgba(207, 174, 98, .6); pointer-events: none; }
.figure .cap { position: absolute; left: 30px; bottom: 30px; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--porcelain); background: rgba(28, 34, 48, .55); padding: 8px 14px; backdrop-filter: blur(6px); }
.figure-stack { position: relative; }
.figure-stack .figure.small { position: absolute; right: -8%; bottom: -12%; width: 46%; aspect-ratio: 4 / 5; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55); border: 6px solid var(--porcelain); }
.section.pine-2 .figure-stack .figure.small, .section:not(.porcelain):not(.porcelain-2) .figure-stack .figure.small { border-color: var(--pine); }
@media (max-width: 900px) { .figure-stack .figure.small { display: none; } }

.statement { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 50px); line-height: 1.18; font-weight: 400; }
.statement em { font-style: italic; color: var(--brass); }
.section.porcelain .statement em, .section.porcelain-2 .statement em { color: var(--brass-3); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: clamp(50px, 6vw, 90px); }
.pillar { padding: 40px 34px 44px; background: rgba(255, 255, 255, .55); border: 1px solid rgba(28, 34, 48, .06); position: relative; overflow: hidden; transition: transform .6s var(--ease), background .6s var(--ease); }
.pillar::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.pillar:hover { transform: translateY(-6px); background: var(--white); }
.pillar:hover::after { transform: scaleX(1); }
.pillar .idx { font-family: var(--serif); font-size: 15px; color: var(--brass-3); letter-spacing: .1em; }
.pillar h3 { font-size: 28px; margin: 18px 0 14px; }
.pillar p { color: #5b6172; font-size: 16px; }
@media (max-width: 900px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } .pillars { grid-template-columns: 1fr; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid rgba(207, 174, 98, .18); border-bottom: 1px solid rgba(207, 174, 98, .18); padding: 22px 0; background: var(--pine); }
.marquee .track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-size: 22px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); padding: 0 34px; display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; }
.marquee span::after { content: ""; width: 6px; height: 6px; background: var(--brass); transform: rotate(45deg); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Video band ---------- */
.band { position: relative; min-height: 78vh; display: grid; place-items: center; text-align: center; overflow: hidden; isolation: isolate; padding: 120px 0; }
.band-media { position: absolute; inset: 0; z-index: -2; }
.band-media video, .band-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(28, 34, 48, .68); }
.band .h2 { max-width: 20ch; margin: 24px auto 26px; }
.band .lead { max-width: 62ch; margin-inline: auto; color: rgba(246, 242, 234, .8); }
.band .hero-actions { justify-content: center; }
.band.left { text-align: left; place-items: stretch; min-height: 0; }
.band.left .h2 { margin-inline: 0; }
.band.left .lead { margin-inline: 0; }
.band.left .hero-actions { justify-content: flex-start; }

/* ---------- Services ---------- */
.services-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: clamp(44px, 5vw, 70px); }
.service { position: relative; padding: 38px 30px 40px; background: rgba(255, 255, 255, .6); border: 1px solid rgba(28, 34, 48, .06); overflow: hidden; transition: transform .6s var(--ease), background .6s var(--ease); min-height: 260px; display: flex; flex-direction: column; }
.service::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); }
.service:hover { transform: translateY(-6px); background: var(--white); }
.service:hover::after { transform: scaleX(1); }
.service .glyph { width: 40px; height: 40px; color: var(--brass-3); }
.service .glyph svg { width: 100%; height: 100%; }
.service h3 { font-size: 26px; margin: 22px 0 10px; }
.service p { color: #5b6172; font-size: 15px; flex: 1; }
.service .idx { position: absolute; top: 22px; right: 24px; font-family: var(--serif); font-size: 14px; letter-spacing: .12em; color: rgba(141, 119, 67, .7); }
.service .tag { display: inline-block; margin-top: 18px; font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-3); padding-top: 12px; border-top: 1px solid rgba(141, 119, 67, .25); }
.service .tag.funded { color: #3b4f7a; }
.zone-lines { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 30px; }
.zone-line { padding: 22px 24px; background: rgba(255, 255, 255, .55); border: 1px solid rgba(28, 34, 48, .06); }
.zone-line small { display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-3); margin-bottom: 6px; }
.zone-line a { font-family: var(--serif); font-size: 26px; color: var(--pine); }
.zone-line a:hover { color: var(--brass-3); }
@media (max-width: 560px) { .zone-lines { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } .service { min-height: 0; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: clamp(50px, 6vw, 90px); border-top: 1px solid rgba(207, 174, 98, .25); }
.step { padding: 36px 26px 10px 0; border-right: 1px solid rgba(207, 174, 98, .18); margin-right: 26px; position: relative; }
.step:last-child { border-right: 0; margin-right: 0; }
.step .idx { font-family: var(--serif); font-size: 42px; color: var(--brass); line-height: 1; }
.step h4 { font-size: 25px; margin: 16px 0 10px; }
.step p { color: var(--stone); font-size: 15px; }
.step .who { display: inline-block; margin-top: 14px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); }
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, 1fr); } .step:nth-child(2n) { border-right: 0; margin-right: 0; } }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } .step { border-right: 0; margin-right: 0; border-bottom: 1px solid rgba(207, 174, 98, .18); padding-bottom: 30px; } }

/* ---------- Languages ---------- */
.languages { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.lang-word { font-family: var(--serif); font-size: clamp(56px, 8vw, 128px); line-height: 1; color: var(--porcelain); font-style: italic; min-height: 1.1em; }
.lang-word #lang-rotate { display: inline-block; transition: opacity .42s var(--ease), transform .42s var(--ease); }
.lang-word #lang-rotate.out { opacity: 0; transform: translateY(18px); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chip { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; padding: 10px 16px; border: 1px solid rgba(207, 174, 98, .4); color: var(--porcelain); transition: background .4s, color .4s; }
.chip:hover { background: var(--brass); color: var(--pine); }
.chip.more { border-style: dashed; color: var(--brass); }
@media (max-width: 900px) { .languages { grid-template-columns: 1fr; } }

/* ---------- Coverage ---------- */
.coverage { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.zones { display: grid; gap: 0; border-top: 1px solid rgba(28, 34, 48, .12); }
.zone { display: grid; grid-template-columns: 60px 1fr auto; gap: 20px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(28, 34, 48, .12); transition: padding .4s var(--ease); }
.zone:hover { padding-left: 10px; }
.zone .idx { font-family: var(--serif); font-size: 15px; color: var(--brass-3); letter-spacing: .12em; }
.zone h3 { font-size: 30px; }
.zone p { color: #5b6172; font-size: 15px; margin-top: 4px; }
.zone .tag { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-3); white-space: nowrap; }
@media (max-width: 900px) { .coverage { grid-template-columns: 1fr; } .zone { grid-template-columns: 40px 1fr; } .zone .tag { grid-column: 2; } }

/* ---------- Standards ---------- */
.standards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(50px, 6vw, 80px); }
.std { padding: 40px 34px; background: rgba(255, 255, 255, .03); border: 1px solid rgba(207, 174, 98, .22); position: relative; transition: transform .6s var(--ease), border-color .6s var(--ease); }
.std:hover { transform: translateY(-6px); border-color: rgba(207, 174, 98, .6); }
.std .glyph { width: 44px; height: 44px; color: var(--brass); }
.std .glyph svg { width: 100%; height: 100%; }
.std h3 { font-size: 27px; margin: 22px 0 12px; }
.std p { color: var(--stone); font-size: 15px; }
@media (max-width: 1100px) { .standards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .standards { grid-template-columns: 1fr; } }

/* ---------- Choice cards ---------- */
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: clamp(50px, 6vw, 80px); }
.choice { position: relative; padding: 50px 46px; background: var(--white); border: 1px solid rgba(28, 34, 48, .08); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.choice:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -40px rgba(28, 34, 48, .35); }
.choice .glyph { width: 48px; height: 48px; color: var(--brass-3); }
.choice .glyph svg { width: 100%; height: 100%; }
.choice h3 { font-size: 34px; margin: 22px 0 10px; }
.choice .lead { font-size: 17px; margin-bottom: 26px; }
.choice ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.choice li { display: flex; gap: 14px; align-items: baseline; font-size: 16px; color: #2b3140; }
.choice li::before { content: ""; flex: none; width: 7px; height: 7px; background: var(--brass); transform: rotate(45deg) translateY(-2px); }
.choice .tag { position: absolute; top: 24px; right: 24px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-3); }
@media (max-width: 900px) { .choices { grid-template-columns: 1fr; } }

/* ---------- Stories ---------- */
.stories-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.scroll-nav { display: flex; gap: 10px; }
.scroll-nav button { width: 54px; height: 54px; border: 1px solid rgba(207, 174, 98, .4); display: grid; place-items: center; color: var(--porcelain); transition: background .4s, color .4s; }
.scroll-nav button:hover { background: var(--brass); color: var(--pine); }
.scroll-nav svg { width: 18px; height: 18px; }
.stories { margin-top: clamp(44px, 5vw, 70px); display: grid; grid-auto-flow: column; grid-auto-columns: min(80vw, 460px); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; scrollbar-width: none; cursor: grab; }
.stories::-webkit-scrollbar { display: none; }
.stories.dragging { cursor: grabbing; scroll-snap-type: none; }
.story { scroll-snap-align: start; position: relative; background: var(--pine-2); border: 1px solid rgba(207, 174, 98, .16); overflow: hidden; display: flex; flex-direction: column; }
.story .media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.story .media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.4s var(--ease); }
.story:hover .media img { transform: scale(1.09); }
.story .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(28, 34, 48, .8)); }
.story .loc { position: absolute; left: 22px; bottom: 18px; z-index: 1; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--porcelain); }
.story .body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.story .quote { font-family: var(--serif); font-size: 24px; line-height: 1.3; font-style: italic; color: var(--porcelain); flex: 1; }
.story .who { margin-top: 20px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); }
.stories-foot { margin-top: 26px; color: var(--mist); font-size: 13px; }

/* ---------- Leadership ---------- */
.leaders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); margin-top: clamp(50px, 6vw, 80px); }
.leader { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: start; }
.leader .photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.leader .photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform 1.2s var(--ease); }
.leader:hover .photo img { transform: scale(1.06); }
.leader .photo::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(207, 174, 98, .6); }
.leader h3 { font-size: 34px; }
.leader .role { margin: 8px 0 18px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-3); }
.leader p { color: #4a5061; font-size: 15px; }
@media (max-width: 1100px) { .leaders { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .leader { grid-template-columns: 1fr; } .leader .photo { max-width: 300px; } }

/* ---------- Careers band ---------- */
.careers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.perks { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.perks li { display: flex; gap: 14px; align-items: baseline; font-size: 16px; color: var(--porcelain); }
.perks li::before { content: ""; flex: none; width: 7px; height: 7px; background: var(--brass); transform: rotate(45deg) translateY(-2px); }
@media (max-width: 900px) { .careers { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { margin-top: clamp(40px, 5vw, 70px); border-top: 1px solid rgba(28, 34, 48, .12); }
.faq details { border-bottom: 1px solid rgba(28, 34, 48, .12); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 0; font-family: var(--serif); font-size: clamp(22px, 2vw, 28px); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 28px; color: var(--brass-3); transition: transform .4s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 0 28px; color: #4a5061; max-width: 70ch; font-size: 16px; }

/* ---------- Contact ---------- */
.contact { background: var(--pine); overflow: hidden; }
.contact .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 110px); }
.contact .info { display: grid; gap: 30px; margin-top: 40px; }
.contact .info a, .contact .info span { display: block; font-family: var(--serif); font-size: 28px; color: var(--porcelain); }
.contact .info small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.contact .info a:hover { color: var(--brass-2); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--mist); margin-bottom: 10px; }
.field input, .field select, .field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(207, 174, 98, .35); color: var(--porcelain); font: inherit; font-size: 17px; padding: 10px 0 12px; outline: none; transition: border-color .4s; border-radius: 0; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 30px; }
.field select option { color: var(--pine); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.form .actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 10px; }
.form .note { font-size: 13px; color: var(--mist); max-width: 46ch; }
.form-msg { grid-column: 1 / -1; font-size: 15px; color: var(--brass-2); min-height: 1.5em; }
.hp { position: absolute; left: -9999px; opacity: 0; }
@media (max-width: 900px) { .contact .grid { grid-template-columns: 1fr; } .form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #141925; padding: 70px 0 40px; border-top: 1px solid rgba(207, 174, 98, .18); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(207, 174, 98, .14); }
.foot-top .about { color: var(--mist); font-size: 14px; max-width: 40ch; margin-top: 20px; }
.foot-top h4 { font-family: var(--sans); font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; font-weight: 400; }
.foot-top ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-top li a, .foot-top li { font-size: 14px; color: var(--stone); }
.foot-top li a:hover { color: var(--porcelain); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; font-size: 12px; color: var(--mist); letter-spacing: .04em; }
.foot-bottom a:hover { color: var(--porcelain); }
.foot-bottom .legal { display: flex; gap: 22px; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }

/* ---------- Banner ---------- */
.banner { display: grid; grid-template-columns: 1fr auto; gap: 30px 50px; align-items: center; padding: clamp(30px, 4vw, 50px); border: 1px solid rgba(207, 174, 98, .4); background: rgba(207, 174, 98, .05); }
.banner h3 { font-size: clamp(26px, 2.6vw, 36px); }
.banner p { color: var(--stone); margin-top: 8px; }
@media (max-width: 900px) { .banner { grid-template-columns: 1fr; } }

/* ---------- Callout ---------- */
.callout { margin: clamp(40px, 5vw, 60px) 0 0; padding: 30px 34px; border-left: 2px solid var(--brass); background: rgba(207, 174, 98, .06); font-size: 17px; line-height: 1.7; }
.callout strong { font-weight: 500; color: var(--brass-2); }
.section.porcelain .callout, .section.porcelain-2 .callout { background: rgba(141, 119, 67, .08); }
.section.porcelain .callout strong, .section.porcelain-2 .callout strong { color: var(--brass-3); }

/* ---------- Simple page (privacy, 404) ---------- */
.page { padding: 180px 0 120px; }
.page h1 { font-size: clamp(40px, 5vw, 70px); margin-bottom: 30px; }
.page h2 { font-size: clamp(26px, 2.6vw, 34px); margin: 50px 0 16px; }
.page p, .page li { color: var(--stone); }

/* ---------- Reveal system ---------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="clip"] { opacity: 1; transform: none; transition: none; }
[data-reveal="clip"] > img { clip-path: inset(0 0 100% 0); transition: clip-path 1.4s var(--ease); }
[data-reveal="clip"].in > img { clip-path: inset(0 0 0 0); }
[data-reveal="clip"] > .frame, [data-reveal="clip"] > .cap { opacity: 0; transition: opacity 1s .6s var(--ease); }
[data-reveal="clip"].in > .frame, [data-reveal="clip"].in > .cap { opacity: 1; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: .1s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .2s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .3s; }
[data-stagger].in > *:nth-child(5) { transition-delay: .4s; }
[data-stagger].in > *:nth-child(6) { transition-delay: .5s; }
[data-stagger].in > *:nth-child(7) { transition-delay: .6s; }
[data-stagger].in > *:nth-child(8) { transition-delay: .7s; }
[data-stagger].in > *:nth-child(9) { transition-delay: .8s; }
[data-stagger].in > *:nth-child(10) { transition-delay: .9s; }
[data-stagger].in > *:nth-child(11) { transition-delay: 1s; }
[data-stagger].in > *:nth-child(12) { transition-delay: 1.1s; }

.words .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.words .w span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); }
.words.in .w span { transform: none; }

/* cursor */
.cursor { position: fixed; left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--brass); pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width .3s, height .3s, opacity .3s; opacity: 0; }
.cursor.on { opacity: 1; }
.cursor.big { width: 44px; height: 44px; }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal], [data-stagger] > *, .words .w span, .hero .display .line span, .hero .reveal-late { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* ---------- Logo square motif on the hero quote ---------- */
.hero-aside { position: relative; padding: 34px 34px 34px 0; }
.hero-aside::before { content: ""; position: absolute; top: 0; right: -22px; width: 78%; height: 100%; border: 1px solid rgba(207, 174, 98, .55); border-left: 0; pointer-events: none; }
.hero-aside::after { content: ""; position: absolute; top: 0; right: -22px; width: 1px; height: 26%; background: rgba(207, 174, 98, .55); }
@media (max-width: 900px) { .hero-aside { padding: 26px 0 0; } .hero-aside::before, .hero-aside::after { display: none; } }

.section.pine-2 .zone-line, .section:not(.porcelain):not(.porcelain-2) .zone-line { background: rgba(255, 255, 255, .03); border-color: rgba(207, 174, 98, .22); }
.section.pine-2 .zone-line small, .section:not(.porcelain):not(.porcelain-2) .zone-line small { color: var(--brass); }
.section.pine-2 .zone-line a, .section:not(.porcelain):not(.porcelain-2) .zone-line a { color: var(--porcelain); }
.section.pine-2 .zone-line a:hover { color: var(--brass-2); }
