/* VITRO — site styles v2 · quiet luxury
   Navy (Pantone 296 C approx. #003057 — confirm against brand artwork), white, ivory, muted antique gold as a hairline accent.
   Jost stands in for the brand's rounded geometric sans until the exact font is confirmed. */

:root {
  --navy: #003057;
  --navy-deep: #001a31;
  --navy-mid: #0a2c4d;
  --white: #ffffff;
  --ivory: #f6f2eb;
  --ivory-2: #ece5d9;
  --ink: #0c1a26;
  --ink-soft: #46535e;
  --gold: #c4a86f;        /* on navy */
  --gold-ink: #8a6b31;    /* on white/ivory, text-safe */
  --gold-line: rgba(196, 168, 111, .55);
  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(0, 48, 87, .12);
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --font: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-slow: cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-weight: 350; font-size: 17px; line-height: 1.7;
  color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: 300; line-height: 1.08; margin: 0; letter-spacing: -0.015em; }
p { margin: 0 0 1em; } p:last-child { margin-bottom: 0; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--white); color: var(--navy); padding: 10px 14px; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Page transition ---------- */
@media (prefers-reduced-motion: no-preference) {
  body { animation: page-in .9s var(--ease) both; }
  body.leaving { opacity: 0; transition: opacity .35s var(--ease); }
}
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; font-weight: 400; color: var(--gold-ink);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .8; }
.on-dark .eyebrow, .band-navy .eyebrow, .band-deep .eyebrow, .hero .eyebrow { color: var(--gold); }
.display { font-size: clamp(46px, 7.6vw, 112px); font-weight: 300; letter-spacing: -.03em; line-height: .98; }
.h1 { font-size: clamp(40px, 5.6vw, 78px); letter-spacing: -.025em; }
.h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -.02em; }
.h3 { font-size: clamp(21px, 1.8vw, 27px); font-weight: 350; line-height: 1.25; letter-spacing: -.005em; }
.lede { font-size: clamp(18px, 1.55vw, 21px); line-height: 1.6; max-width: 34em; font-weight: 300; }
.muted { color: var(--ink-soft); }
.band-navy .muted, .band-deep .muted, .hero .muted { color: rgba(255,255,255,.7); }
.gold { color: var(--gold-ink); } .band-navy .gold, .band-deep .gold { color: var(--gold); }
.statement { font-size: clamp(28px, 3.5vw, 50px); font-weight: 300; line-height: 1.22; letter-spacing: -.015em; max-width: 21em; }
.statement em { font-style: normal; color: var(--ink-soft); }
.band-navy .statement em, .band-deep .statement em { color: rgba(255,255,255,.5); }
.measure { max-width: 38em; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Bands ---------- */
.band { padding: clamp(84px, 11vw, 160px) 0; position: relative; }
.band-tight { padding: clamp(60px, 7vw, 100px) 0; }
.band-navy { background: var(--navy); color: var(--white); }
.band-deep { background: var(--navy-deep); color: var(--white); }
.band-ivory { background: var(--ivory); }
.band-white { background: var(--white); }
.hairline { height: 1px; background: var(--gold-line); border: 0; margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; color: var(--white);
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 92px; transition: height .5s var(--ease); }
.site-header.scrolled, .site-header.solid {
  background: rgba(0, 26, 49, .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--gold-line);
}
.site-header.scrolled .wrap { height: 72px; }
.wordmark { font-size: 15px; font-weight: 300; letter-spacing: .6em; margin-right: -.6em; text-decoration: none; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav > a, .nav-drop > button {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  background: none; border: 0; padding: 8px 0; cursor: pointer; position: relative; opacity: .85;
}
.nav > a::after, .nav-drop > button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.nav > a:hover, .nav-drop > button:hover, .nav > a[aria-current="page"], .nav-drop.current > button { opacity: 1; }
.nav > a:hover::after, .nav > a[aria-current="page"]::after, .nav-drop:hover > button::after, .nav-drop.current > button::after { transform: scaleX(1); }
.nav-drop > button .chev { display: inline-block; margin-left: 8px; font-size: 9px; transition: transform .4s var(--ease); }
.nav .nav-cta { border: 1px solid var(--gold-line); padding: 12px 22px; opacity: 1; }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 22px); left: 50%; width: 620px; transform: translate(-50%, 8px);
  background: var(--navy-deep); border: 1px solid var(--gold-line); padding: 12px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), transform .5s var(--ease), visibility .4s;
}
.drop-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -24px; height: 24px; }
.nav-drop:hover .drop-panel, .nav-drop.open .drop-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-drop:hover .chev, .nav-drop.open .chev { transform: rotate(180deg); }
.drop-item { text-decoration: none; display: block; padding: 10px; transition: background .3s; }
.drop-item:hover { background: rgba(255,255,255,.04); }
.drop-item .ph { aspect-ratio: 4/3; margin-bottom: 14px; }
.drop-item strong { display: block; font-weight: 400; font-size: 16px; letter-spacing: .02em; }
.drop-item span { display: block; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.45; margin-top: 4px; }

.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 10px 0; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .menu-btn { display: block; position: relative; z-index: 60; }
  .nav {
    position: fixed; inset: 0; background: var(--navy-deep); flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 0; padding: 120px var(--gutter) 40px; overflow-y: auto;
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  }
  body.menu-open .nav { opacity: 1; visibility: visible; }
  .nav > a, .nav-drop > button {
    font-size: 26px; letter-spacing: -.01em; text-transform: none; font-weight: 300; padding: 18px 0;
    border-bottom: 1px solid var(--line-dark); width: 100%; text-align: left; opacity: 1;
  }
  .nav > a::after, .nav-drop > button::after { display: none; }
  .nav-drop > button { display: flex; justify-content: space-between; align-items: center; }
  .nav .nav-cta { margin-top: 32px; text-align: center; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; padding: 18px; border-bottom: 1px solid var(--gold-line); }
  .drop-panel {
    position: static; width: auto; transform: none; opacity: 1; visibility: visible; border: 0; padding: 0;
    grid-template-columns: 1fr; gap: 0; display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease);
    background: transparent;
  }
  .drop-panel > .drop-inner { overflow: hidden; }
  .nav-drop.open .drop-panel { grid-template-rows: 1fr; transform: none; }
  .nav-drop:hover .drop-panel { transform: none; }
  .drop-item { padding: 14px 0 14px 18px; border-left: 1px solid var(--gold-line); }
  .drop-item .ph { display: none; }
}
@media (min-width: 1101px) { .drop-panel > .drop-inner { display: contents; } }

/* ---------- Image placeholders ---------- */
/* A .ph holds an <img>. If the file is missing, the img removes itself and the labelled frame shows. */
.ph {
  position: relative; overflow: hidden; background: linear-gradient(160deg, #0d3558 0%, #062443 55%, #031a33 100%);
  color: rgba(255,255,255,.55);
}
.ph.light { background: linear-gradient(160deg, #efe9de 0%, #e6ddcd 100%); color: rgba(0,48,87,.55); }
.ph::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--gold-line); pointer-events: none; z-index: 1;
}
.ph::after {
  content: attr(data-ph); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: calc(100% - 60px); text-align: center; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; line-height: 1.8;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform 1.6s var(--ease-slow); }
.ph.has-img::before, .ph.has-img::after { display: none; }
.r-45 { aspect-ratio: 4/5; } .r-43 { aspect-ratio: 4/3; } .r-11 { aspect-ratio: 1/1; } .r-169 { aspect-ratio: 16/9; } .r-32 { aspect-ratio: 3/2; } .r-34 { aspect-ratio: 3/4; }
.zoom:hover .ph img, a:hover > .ph img { transform: scale(1.045); }

/* ---------- Hero slideshow ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white);
  background: var(--navy-deep); overflow: hidden; padding: 150px 0 clamp(50px, 7vw, 96px);
}
.hero.short { min-height: min(78svh, 760px); }
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.slide.active { opacity: 1; }
.slide .ph { position: absolute; inset: 0; }
.slide .ph::after { top: 118px; left: auto; right: calc(var(--gutter) + 6px); transform: none; width: auto; max-width: 46%; text-align: right; }
@media (max-width: 760px) { .slide .ph::after { top: 96px; max-width: 70%; font-size: 9.5px; } }
@media (prefers-reduced-motion: no-preference) {
  .slide .ph img, .slide .ph::after { transform-origin: center; }
  .slide.active .ph img { animation: kenburns 9s linear both; }
}
@keyframes kenburns { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,18,36,.55) 0%, rgba(0,18,36,.05) 35%, rgba(0,18,36,.35) 60%, rgba(0,18,36,.92) 100%);
}
.hero .wrap { position: relative; z-index: 4; }
.hero-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.slide-ctrl { display: flex; gap: 10px; align-items: center; padding-bottom: 10px; }
.slide-dot { width: 54px; height: 22px; background: none; border: 0; padding: 0; cursor: pointer; position: relative; }
.slide-dot::before, .slide-dot i { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,.3); }
.slide-dot i { background: var(--gold); transform: scaleX(0); transform-origin: left; }
.slide-dot.active i { transform: scaleX(1); transition: transform 6.5s linear; }
.slide-caption { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); min-width: 12em; text-align: right; margin-right: 8px; }
@media (max-width: 760px) { .hero-grid { grid-template-columns: 1fr; } .slide-caption { display: none; } }

.hero-foot {
  margin-top: clamp(40px, 6vw, 76px); padding-top: 22px; border-top: 1px solid var(--gold-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 40px;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.75);
}
.hero-in > * { opacity: 0; transform: translateY(24px); animation: rise 1.4s var(--ease-slow) forwards; }
.hero-in > *:nth-child(2) { animation-delay: .15s; } .hero-in > *:nth-child(3) { animation-delay: .3s; } .hero-in > *:nth-child(4) { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-in > * { opacity: 1; transform: none; animation: none; } }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; z-index: 4; width: 1px; height: 46px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue::after { content: ""; position: absolute; left: 0; top: -46px; width: 1px; height: 46px; background: var(--gold); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { to { top: 46px; } }
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; cursor: pointer;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  padding: 18px 30px; border: 1px solid currentColor; background: transparent; color: inherit; position: relative; overflow: hidden;
  transition: color .5s var(--ease), border-color .5s;
}
.btn span { position: relative; z-index: 1; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); transition: transform .55s var(--ease); }
.btn:hover::before { transform: none; }
.btn:hover { color: var(--navy-deep); border-color: var(--gold); }
.btn .arr { transition: transform .5s var(--ease); } .btn:hover .arr { transform: translateX(5px); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.link-line {
  display: inline-flex; gap: 12px; align-items: center; text-decoration: none; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 6px; background: linear-gradient(var(--gold), var(--gold)) left bottom / 100% 1px no-repeat; transition: background-size .5s var(--ease);
}
.link-line:hover { background-size: 40% 1px; }

/* ---------- Layout ---------- */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 7vw, 120px); align-items: start; }
.split.even { grid-template-columns: 1fr 1fr; align-items: center; }
.split.rev > :first-child { order: 2; }
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 70px); }
@media (max-width: 880px) { .split, .split.even { grid-template-columns: 1fr; } .split.rev > :first-child { order: 0; } }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px); }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease-slow), transform 1.2s var(--ease-slow); }
  .rv.in { opacity: 1; transform: none; }
  .rv-d1 { transition-delay: .12s; } .rv-d2 { transition-delay: .24s; } .rv-d3 { transition-delay: .36s; }
  .mask > * { clip-path: inset(100% 0 0 0); transition: clip-path 1.5s var(--ease-slow); }
  .mask.in > * { clip-path: inset(0 0 0 0); }
  .mask .ph img { transform: scale(1.15); transition: transform 2.2s var(--ease-slow); }
  .mask.in .ph img { transform: scale(1); }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); padding: 22px 0; background: var(--navy-deep); color: rgba(255,255,255,.8); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 48s linear infinite; }
.marquee-track span { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; white-space: nowrap; padding: 0 34px; display: inline-flex; align-items: center; gap: 34px; }
.marquee-track span::after { content: "◆"; font-size: 7px; color: var(--gold); letter-spacing: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line-light); }
.band-navy .acc, .band-deep .acc { border-color: var(--line-dark); }
.acc-item { border-bottom: 1px solid var(--line-light); }
.band-navy .acc-item, .band-deep .acc-item { border-color: var(--line-dark); }
.acc-btn {
  width: 100%; display: grid; grid-template-columns: 56px 1fr 28px; align-items: center; gap: 16px; text-align: left;
  background: none; border: 0; cursor: pointer; padding: 28px 0;
}
.acc-btn .n { font-size: 12px; letter-spacing: .18em; color: var(--gold-ink); }
.band-navy .acc-btn .n, .band-deep .acc-btn .n { color: var(--gold); }
.acc-btn .t { font-size: clamp(20px, 1.9vw, 28px); font-weight: 300; line-height: 1.25; letter-spacing: -.005em; }
.acc-btn .plus { position: relative; width: 16px; height: 16px; justify-self: end; }
.acc-btn .plus::before, .acc-btn .plus::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .5s var(--ease); }
.acc-btn .plus::after { transform: rotate(90deg); }
.acc-item.open .plus::after { transform: rotate(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .6s var(--ease); }
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-inner > div { padding: 0 44px 32px 72px; }
.acc-inner p { opacity: 0; transform: translateY(8px); transition: opacity .6s var(--ease) .1s, transform .6s var(--ease) .1s; }
.acc-item.open .acc-inner p { opacity: 1; transform: none; }
@media (max-width: 600px) { .acc-btn { grid-template-columns: 38px 1fr 20px; } .acc-inner > div { padding: 0 0 28px 54px; } }

/* Accordion paired with a crossfading image */
.acc-media { position: sticky; top: 110px; }
.acc-media .ph { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); }
.acc-media .ph.show { opacity: 1; }
.acc-media-frame { position: relative; aspect-ratio: 4/5; }

/* ---------- Tabs ---------- */
.tabs-nav { display: flex; gap: 38px; border-bottom: 1px solid var(--line-light); overflow-x: auto; scrollbar-width: none; margin-bottom: clamp(36px, 5vw, 64px); }
.tabs-nav::-webkit-scrollbar { display: none; }
.band-navy .tabs-nav, .band-deep .tabs-nav { border-color: var(--line-dark); }
.tab-btn {
  background: none; border: 0; cursor: pointer; padding: 0 0 18px; white-space: nowrap; position: relative;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; opacity: .55; transition: opacity .4s;
}
.tab-btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.tab-btn[aria-selected="true"] { opacity: 1; } .tab-btn[aria-selected="true"]::after { transform: scaleX(1); }
.tab-btn:hover { opacity: 1; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up .8s var(--ease-slow) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Carousel ---------- */
.carousel { position: relative; }
.car-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * clamp(16px, 2vw, 28px)) / 3);
  gap: clamp(16px, 2vw, 28px); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding-bottom: 6px; cursor: grab;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track > * { scroll-snap-align: start; }
.car-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
@media (max-width: 880px) { .car-track { grid-auto-columns: 62%; } }
@media (max-width: 560px) { .car-track { grid-auto-columns: 84%; } }
.car-foot { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.car-progress { flex: 1; height: 1px; background: var(--line-light); position: relative; }
.band-navy .car-progress, .band-deep .car-progress { background: var(--line-dark); }
.car-progress i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--gold); width: 30%; transition: left .4s var(--ease), width .4s; }
.car-btn {
  width: 50px; height: 50px; border: 1px solid var(--line-light); background: none; cursor: pointer; font-size: 16px;
  display: grid; place-items: center; transition: border-color .4s, background .4s, color .4s;
}
.band-navy .car-btn, .band-deep .car-btn { border-color: var(--line-dark); }
.car-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--navy-deep); }

.card { text-decoration: none; display: block; }
.card .ph { margin-bottom: 22px; }
.card .meta { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-ink); display: block; margin-bottom: 10px; }
.band-navy .card .meta, .band-deep .card .meta { color: var(--gold); }
.card h3 { font-size: clamp(20px, 1.7vw, 25px); font-weight: 350; line-height: 1.3; }
.card p { font-size: 15px; margin-top: 8px; color: var(--ink-soft); }
.band-navy .card p, .band-deep .card p { color: rgba(255,255,255,.66); }
.card .link-line { margin-top: 18px; }

/* ---------- Collections (home) ---------- */
.coll { position: relative; display: block; text-decoration: none; color: var(--white); overflow: hidden; }
.coll .ph { aspect-ratio: 3/4; }
.coll .ph::after { top: 38%; }
.coll-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(24px, 3vw, 40px); background: linear-gradient(180deg, transparent, rgba(0,18,36,.85)); }
.coll-body .meta { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.coll-body h3 { font-size: clamp(28px, 2.6vw, 40px); margin: 10px 0 0; }
.coll-body p { max-height: 0; opacity: 0; overflow: hidden; margin: 0; font-size: 15px; color: rgba(255,255,255,.8); transition: max-height .7s var(--ease), opacity .6s, margin .6s; }
.coll:hover .coll-body p, .coll:focus-visible .coll-body p { max-height: 120px; opacity: 1; margin-top: 12px; }
@media (hover: none) { .coll-body p { max-height: 120px; opacity: 1; margin-top: 12px; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--gold-line); }
.stats > div { padding: 34px 24px 0 0; }
.stats .v { display: block; font-size: clamp(34px, 3.8vw, 56px); font-weight: 300; line-height: 1; margin-bottom: 14px; letter-spacing: -.02em; }
.stats .k { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.66); line-height: 1.6; }
@media (max-width: 880px) { .stats { grid-template-columns: 1fr 1fr; row-gap: 34px; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: s; }
.steps > div { padding: 34px 28px 0 0; border-top: 1px solid var(--line-light); position: relative; }
.band-navy .steps > div, .band-deep .steps > div { border-color: var(--line-dark); }
.steps > div::before { content: ""; position: absolute; top: -1px; left: 0; width: 42px; height: 1px; background: var(--gold); }
.steps .n { font-size: 12px; letter-spacing: .2em; color: var(--gold-ink); display: block; margin-bottom: 18px; }
.band-navy .steps .n, .band-deep .steps .n { color: var(--gold); }
.steps h3 { font-size: 20px; font-weight: 350; margin-bottom: 10px; }
.steps p { font-size: 15px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; row-gap: 20px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Table ---------- */
.table-scroll { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 560px; }
.compare th, .compare td { text-align: left; padding: 18px 18px 18px 0; border-bottom: 1px solid var(--line-light); vertical-align: top; }
.compare thead th { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400; color: var(--ink-soft); }
.compare td:first-child { color: var(--ink-soft); width: 26%; }
.compare .hl { color: var(--navy); font-weight: 450; }

/* ---------- Note ---------- */
.note { border-left: 1px solid var(--gold); padding: 4px 0 4px 22px; font-size: 15px; color: var(--ink-soft); max-width: 44em; }
.band-navy .note, .band-deep .note { color: rgba(255,255,255,.7); }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta .h1 { max-width: 14em; margin: 0 auto; }
.cta .lede { margin: 24px auto 0; }
.cta .btn-row { justify-content: center; }
.cta .eyebrow { justify-content: center; }
.cta .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .8; }

/* ---------- Form ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 30px; }
.form .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink); background: transparent; border: 0;
  border-bottom: 1px solid rgba(0,48,87,.25); padding: 10px 0 12px; border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .4s;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--gold-ink) 50%), linear-gradient(135deg, var(--gold-ink) 50%, transparent 50%); background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold-ink); }
.hp { position: absolute; left: -9999px; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }
.form-card { background: var(--white); color: var(--ink); padding: clamp(28px, 4vw, 56px); border: 1px solid var(--line-light); }

.contact-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-dark); }
.contact-list li { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-list .k { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-list a { text-decoration: none; font-size: 20px; font-weight: 300; }

/* ---------- Chips (journal filter) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.chip { background: none; border: 1px solid var(--line-light); padding: 10px 18px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all .4s var(--ease); }
.chip:hover { border-color: var(--gold-ink); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.post.hide { display: none; }

.feature { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 80px); align-items: center; text-decoration: none; margin-bottom: clamp(60px, 8vw, 110px); }
.feature h2 { margin: 14px 0 18px; }
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; } }

/* ---------- Article ---------- */
.article-hero { padding: clamp(150px, 18vw, 210px) 0 clamp(50px, 6vw, 80px); background: var(--navy-deep); color: var(--white); }
.article-hero .h1 { max-width: 16em; }
.article-meta { margin-top: 30px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; gap: 26px; flex-wrap: wrap; }
.article-cover { margin-top: -1px; background: linear-gradient(var(--navy-deep) 50%, var(--white) 50%); }
.prose { max-width: 700px; margin: 0 auto; font-size: 18.5px; line-height: 1.8; }
.prose h2 { font-size: clamp(27px, 2.6vw, 36px); margin: 1.9em 0 .6em; letter-spacing: -.01em; }
.prose h3 { font-size: 21px; font-weight: 400; margin: 1.6em 0 .4em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.15em; color: #25323d; }
.prose ul, .prose ol { padding-left: 1.2em; } .prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--gold-ink); }
.prose .in-short { border: 1px solid var(--gold-line); padding: 28px 32px; margin: 0 0 2.2em; background: var(--ivory); }
.prose .in-short strong { display: block; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 400; color: var(--gold-ink); margin-bottom: 10px; }
.prose .in-short p { font-size: 17px; margin: 0; }
.prose blockquote { margin: 1.8em 0; padding: 0 0 0 28px; border-left: 1px solid var(--gold); font-size: clamp(23px, 2.2vw, 30px); line-height: 1.35; font-weight: 300; color: var(--navy); }
.prose .compare { font-size: 15px; margin: 1.4em 0 1.8em; }
.prose .ph { margin: 2em 0; }
.prose a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 4px; }

.progress-bar { position: fixed; left: 0; top: 0; height: 2px; background: var(--gold); width: 0; z-index: 70; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: clamp(80px, 9vw, 120px) 0 36px; font-size: 15px; border-top: 1px solid var(--gold-line); }
.foot-mark { text-align: center; padding-bottom: clamp(56px, 7vw, 90px); border-bottom: 1px solid var(--line-dark); }
.foot-mark .big { font-size: clamp(56px, 11vw, 160px); font-weight: 300; letter-spacing: .32em; margin-right: -.32em; color: var(--white); line-height: 1; }
.foot-mark .tag { display: block; margin-top: 22px; font-size: 11px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold); }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0; border-bottom: 1px solid var(--line-dark); }
.foot-top p { max-width: 22em; }
.site-footer h4 { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 400; }
.site-footer ul { list-style: none; margin: 0; padding: 0; } .site-footer li { margin-bottom: 10px; }
.site-footer a { text-decoration: none; transition: color .3s; } .site-footer a:hover { color: var(--white); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 13px; opacity: .55; }
@media (max-width: 880px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-top > :first-child { grid-column: 1 / -1; } }

/* ---------- WhatsApp ---------- */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; text-decoration: none; background: var(--navy-deep); color: var(--white);
  border: 1px solid var(--gold-line); padding: 13px 18px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  transition: background .4s, color .4s, opacity .5s, transform .5s var(--ease); opacity: 0; transform: translateY(12px); pointer-events: none;
}
.wa.show { opacity: 1; transform: none; pointer-events: auto; }
.wa:hover { background: var(--gold); color: var(--navy-deep); }

.spacer-s { height: 26px; } .spacer-m { height: 56px; } .spacer-l { height: 96px; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 600px) { .steps.three { grid-template-columns: 1fr; } }
