/* ---------- TOKENS ---------- */
:root {
  --navy: #0B1733;
  --navy-2: #0f1d40;       /* slightly lifted navy for layering */
  --navy-line: #1b2a4e;    /* hairlines on navy */
  --ivory: #F4EFE4;
  --ivory-2: #ECE5D4;      /* deeper ivory for layering */
  --ivory-line: #d9cfb8;   /* hairlines on ivory */
  --gold: #B08A3E;
  --gold-2: #B08A3E;       /* matched to --gold (Tweaks override from design canvas) */
  --gold-soft: rgba(176,138,62,0.18);
  --ink: #0B1733;
  --ink-60: rgba(11,23,51,0.62);
  --ink-40: rgba(11,23,51,0.38);
  --paper-60: rgba(244,239,228,0.62);
  --paper-40: rgba(244,239,228,0.38);
  --paper-10: rgba(244,239,228,0.10);

  --sans: "Work Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;

  --nav-h: 72px;
  --maxw: 1200px;
  --radius-s: 2px;
  --radius-m: 4px;

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .wrap { padding: 0 40px; } }

.section { padding: 72px 0; }
@media (min-width: 900px) { .section { padding: 112px 0; } }

.on-navy  { background: var(--navy); color: var(--ivory); }
.on-ivory { background: var(--ivory); color: var(--ink); }

/* ---------- TYPE ---------- */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); line-height: 1.02; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.08; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0; text-wrap: pretty; }

.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: 0.005em; }
.serif-upright { font-family: var(--serif); font-weight: 400; font-style: normal; }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  opacity: 0.9;
}
.on-navy .eyebrow { color: var(--gold-2); }
.on-ivory .eyebrow { color: var(--gold); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.4;
  max-width: 60ch;
  opacity: 0.92;
}

.rule-gold {
  width: 56px; height: 1px; background: var(--gold);
  display: block; margin-bottom: 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-s);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 8px 24px -12px rgba(176,138,62,.6); }
.btn-ghost-ivory { color: var(--ivory); border-color: rgba(244,239,228,.35); }
.btn-ghost-ivory:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-ghost-navy { color: var(--navy); border-color: rgba(11,23,51,.25); }
.btn-ghost-navy:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.link-arrow:hover { border-bottom-color: currentColor; }
.on-navy .link-arrow { color: var(--gold-2); }

/* ---------- HEX LOGO ---------- */
.hex { display: inline-block; flex-shrink: 0; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark .mark-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark .mark-text b { font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; }
.wordmark .mark-text em { font-family: var(--serif); font-style: italic; font-size: 0.85rem; margin-top: 2px; opacity: .8; letter-spacing: 0.02em; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  height: var(--nav-h);
  display: flex; align-items: center;
  color: var(--ivory);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-links { display: none; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 6px 0; position: relative;
  color: var(--ivory);
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-2); }

.nav-right { display: flex; align-items: center; gap: 28px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,239,228,.25);
  border-radius: var(--radius-s);
}
.nav-toggle span { position: relative; width: 18px; height: 1px; background: var(--ivory); display: block; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1px; background: var(--ivory);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--navy);
  z-index: 40;
  display: flex; flex-direction: column;
  padding: 40px 24px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; transform: none; }
.nav-overlay a {
  font-size: 2rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 18px 0; border-bottom: 1px solid var(--navy-line);
  color: var(--ivory);
  display: flex; justify-content: space-between; align-items: center;
}
.nav-overlay a::after { content: "→"; font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.4rem; }
.nav-overlay .btn { margin-top: 32px; align-self: flex-start; }
.nav-overlay .meta {
  margin-top: auto;
  font-family: var(--serif); font-style: italic;
  color: var(--paper-60);
  font-size: 1.1rem;
  border-top: 1px solid var(--navy-line); padding-top: 24px;
}

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--navy); color: var(--ivory);
  border-top: 1px solid var(--navy-line);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
}
footer.site-footer h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1rem; letter-spacing: 0.18em; color: var(--gold-2);
  margin-bottom: 18px; text-transform: lowercase;
}
footer.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site-footer a { color: var(--paper-60); transition: color .2s var(--ease); font-size: 0.95rem; }
footer.site-footer a:hover { color: var(--gold-2); }
.footer-bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--paper-40); letter-spacing: 0.02em;
}
.footer-tagline {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem;
  color: var(--paper-60); margin-top: 18px; max-width: 34ch;
  letter-spacing: 0.06em;
}

/* ---------- HERO ---------- */
.hero {
  min-height: calc(100svh - var(--nav-h));
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  display: flex; align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  /* subtle heraldic hex field */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(176,138,62,0.10), transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 90%, rgba(176,138,62,0.06), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 72px; }
}
.hero h1 { margin-bottom: 28px; }
.hero h1 span.gold { color: var(--gold-2); font-style: italic; font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }
.hero .lede { margin-bottom: 40px; color: var(--paper-60); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }

.hero-art {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--navy-line);
  background:
    linear-gradient(135deg, rgba(176,138,62,0.08), transparent 60%),
    repeating-linear-gradient(45deg, rgba(244,239,228,0.025) 0 1px, transparent 1px 14px),
    var(--navy-2);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
}
.hero-art .crest {
  width: 180px; height: 180px; margin: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}
.hero-art .crest-label {
  text-align: center;
  font-family: var(--serif); font-style: italic;
  color: var(--gold-2);
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.hero-art .corners {
  position: absolute; inset: 12px;
  border: 1px solid rgba(176,138,62,0.22);
  pointer-events: none;
}

.hero-ticker {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 24px 48px;
  border-top: 1px solid var(--navy-line); padding-top: 28px;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper-40);
}
.hero-ticker span { display: inline-flex; align-items: center; gap: 10px; }
.hero-ticker span::before { content: ""; width: 6px; height: 6px; background: var(--gold); display: inline-block; transform: rotate(45deg); }

/* ---------- WHAT WE DO (3 cols) ---------- */
.threecol { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .threecol { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.wwd-card {
  padding: 40px 8px;
  border-top: 1px solid var(--ivory-line);
}
@media (min-width: 800px) {
  .wwd-card { padding: 48px 36px; border-top: 0; }
  .wwd-card + .wwd-card { border-left: 1px solid var(--ivory-line); }
}
.wwd-card .num {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 0.9rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.wwd-card .num::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.wwd-card .icon { width: 56px; height: 56px; margin-bottom: 24px; }
.wwd-card h3 { margin-bottom: 14px; }
.wwd-card p { color: var(--ink-60); font-size: 0.98rem; }

/* ---------- WHY IT MATTERS ---------- */
.why {
  background: var(--navy); color: var(--ivory);
  position: relative;
}
.why::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 0%, rgba(176,138,62,.08), transparent 50%);
  pointer-events: none;
}
.why .wrap { position: relative; }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.why h2 { margin-bottom: 28px; }
.why p { color: var(--paper-60); font-size: 1.02rem; line-height: 1.7; max-width: 56ch; }
.why p + p { margin-top: 18px; }

.stats { display: grid; gap: 24px; }
.stat {
  border-top: 1px solid var(--navy-line);
  padding: 24px 0 20px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: baseline;
}
.stat .num {
  font-family: var(--sans); font-weight: 300;
  color: var(--gold-2);
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.02em;
  min-width: 140px;
}
.stat .num em { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 0.5em; vertical-align: baseline; margin-left: 2px; color: var(--gold-2); }
.stat .label { font-size: 0.98rem; color: var(--paper-60); line-height: 1.5; }

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 40px 0;
  border-top: 1px solid var(--ivory-line);
  position: relative;
}
@media (min-width: 900px) {
  .step { padding: 8px 36px 8px 0; border-top: 0; }
  .step + .step { border-left: 1px solid var(--ivory-line); padding-left: 36px; }
}
.step .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--gold); font-size: 3.6rem; line-height: 1;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-60); max-width: 30ch; }

/* ---------- TRUST STRIP (swappable slot for testimonials carousel) ---------- */
.trust { background: var(--navy); color: var(--ivory); }
.trust .sec-head .eyebrow { color: var(--gold); }
.trust .sec-head h2 { color: var(--ivory); }
.trust-grid {
  list-style: none; margin: 56px 0 0; padding: 0;
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: rgba(176,138,62,0.22);
  border: 1px solid rgba(176,138,62,0.22);
}
@media (min-width: 680px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-item {
  background: var(--navy);
  padding: 32px 24px;
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  align-items: start;
}
@media (min-width: 1080px) {
  .trust-item { grid-template-columns: 1fr; gap: 20px; padding: 40px 26px; }
}
.trust-ico {
  width: 44px; height: 44px;
  border: 1px solid rgba(176,138,62,0.45);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item b {
  display: block;
  font-family: var(--serif); font-weight: 500;
  color: var(--ivory); font-size: 1.02rem; line-height: 1.3;
  margin-bottom: 8px;
}
.trust-item p {
  color: var(--paper-60); font-size: 0.88rem; line-height: 1.55; margin: 0;
}
.trust-item .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem; color: var(--gold-2); letter-spacing: 0.04em;
}
.trust-foot {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper-40);
}
.trust-foot svg { color: var(--gold-2); }

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--navy); color: var(--ivory);
  text-align: left;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  max-width: 32ch;
  color: var(--ivory);
}
.stars { display: inline-flex; gap: 6px; margin-bottom: 28px; }
.stars svg { width: 18px; height: 18px; }
.attrib { margin-top: 32px; font-weight: 300; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--paper-60); }
.attrib b { font-weight: 600; color: var(--ivory); letter-spacing: 0.02em; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--gold);
  color: var(--navy);
  padding: 48px 0;
}
.cta-strip .wrap {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .cta-strip .wrap { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
}
.cta-strip h2 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.01em;
}
.cta-strip .btn-navy { background: var(--navy); color: var(--ivory); }
.cta-strip .btn-navy:hover { background: #050d20; color: var(--gold-2); }

/* ---------- HERO IMAGE ---------- */
.hero-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--navy-line);
  background: var(--navy-2);
}
/* Narrow viewports: hero-grid stacks to 1 col, so cap image height
   to prevent it from dominating the page. */
@media (max-width: 999px) {
  .hero-img { aspect-ratio: 16 / 11; max-height: 60vh; }
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.4) contrast(1.05) brightness(.85);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,23,51,0) 40%, rgba(11,23,51,.65) 100%),
    linear-gradient(135deg, rgba(11,23,51,.45), rgba(11,23,51,0) 55%);
  pointer-events: none;
}
.hero-img .corners {
  position: absolute; inset: 12px;
  border: 1px solid rgba(176,138,62,0.35);
  pointer-events: none; z-index: 2;
}
.hero-img .caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--serif); font-style: italic;
  color: var(--paper-60);
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-img .caption b {
  color: var(--gold-2); font-family: var(--sans); font-style: normal;
  font-weight: 500; letter-spacing: 0.02em; text-transform: none;
  font-size: 0.95rem;
}

/* ---------- IMAGE BAND (editorial triptych) ---------- */
.band-imgs {
  display: grid; gap: 2px;
  grid-template-columns: 1fr;
  background: var(--navy-line);
}
@media (min-width: 800px) { .band-imgs { grid-template-columns: 1.2fr 1fr 1fr; } }
.band-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  display: flex; align-items: flex-end;
}
.band-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.55) contrast(1.05) brightness(.9);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.band-img:hover img { transform: scale(1.04); filter: grayscale(.2) contrast(1.08) brightness(.95); }
.band-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,23,51,0) 55%, rgba(11,23,51,.82) 100%);
  pointer-events: none;
}
.band-img .ph {
  position: absolute; inset: 18px;
  border: 1px solid rgba(176,138,62,0.28);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(176,138,62,0.10), transparent 60%),
    repeating-linear-gradient(45deg, rgba(244,239,228,0.04) 0 1px, transparent 1px 14px);
}
.band-img .ph .top, .band-img .ph .bot {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--paper-40);
}
.band-img .ph .bot { text-align: right; color: var(--gold-2); }
.band-img .tag {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.band-img .tag b {
  display: block;
  color: var(--ivory); font-family: var(--sans); font-style: normal;
  font-weight: 500; letter-spacing: 0; text-transform: none;
  font-size: 1.05rem; margin-top: 4px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.15fr; gap: 80px; } }
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-2);
  border: 1px solid var(--ivory-line);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.35) contrast(1.05);
}
.about-img .corners {
  position: absolute; inset: 14px;
  border: 1px solid rgba(176,138,62,0.45);
  pointer-events: none;
}
.about-img .stamp {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--serif); font-style: italic;
  color: var(--ivory);
  background: rgba(11,23,51,.85);
  padding: 10px 14px;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.about-body p { color: var(--ink-60); line-height: 1.7; max-width: 58ch; }
.about-body p + p { margin-top: 18px; }
.about-body .sig {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ivory-line);
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.about-body .sig .mark { width: 52px; height: 52px; flex-shrink: 0; }
.about-body .sig .line1 {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.82rem;
}
.about-body .sig .line2 {
  color: var(--ink); font-weight: 500; font-size: 1.02rem; margin-top: 4px;
}

/* ---------- SECTION HEADER (shared) ---------- */
.sec-head { margin-bottom: 56px; }
.sec-head h2 { max-width: 20ch; }
.sec-head .eyebrow { display: block; margin-bottom: 18px; }

/* ---------- SERVICES PAGE specifics ---------- */
.page-hero {
  background: var(--navy); color: var(--ivory);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  background-image:
    repeating-linear-gradient(60deg, rgba(176,138,62,0.12) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-60deg, rgba(176,138,62,0.12) 0 1px, transparent 1px 18px);
  opacity: .5;
  display: none;
}
@media (min-width: 900px) { .page-hero::after { display: block; } }
.page-hero h1 { max-width: 18ch; margin-bottom: 24px; }
.page-hero .lede { max-width: 48ch; }

.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .process-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; } }
.process-grid p { color: var(--ink-60); line-height: 1.7; max-width: 58ch; }
.process-grid p + p { margin-top: 16px; }
.process-grid .tip {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 1px solid var(--gold);
  background: var(--ivory-2);
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--ink);
}

/* Service tiers table */
.tiers {
  background: var(--navy); color: var(--ivory);
}
.tiers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.tiers-table thead th {
  text-align: left;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--gold-2);
  font-size: 0.88rem; letter-spacing: 0.2em; text-transform: lowercase;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--gold);
}
.tiers-table tbody td {
  padding: 26px 20px;
  border-bottom: 1px solid var(--navy-line);
  vertical-align: top;
  color: var(--ivory);
}
.tiers-table tbody tr:hover td { background: rgba(176,138,62,0.05); }
.tiers-table .tier-name {
  font-weight: 600; font-size: 1.1rem; letter-spacing: -0.005em;
  color: var(--gold-2);
  min-width: 200px;
}
.tiers-table .tier-desc { color: var(--paper-60); }
.tiers-table .tier-freq {
  font-family: var(--serif); font-style: italic;
  color: var(--paper-60);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .tiers-table, .tiers-table tbody, .tiers-table tr, .tiers-table td { display: block; width: 100%; }
  .tiers-table thead { display: none; }
  .tiers-table tr {
    border-bottom: 1px solid var(--navy-line);
    padding: 24px 0;
  }
  .tiers-table td { border: 0; padding: 4px 0; }
  .tiers-table .tier-name { margin-bottom: 6px; }
  .tiers-table .tier-freq { margin-top: 8px; }
}
.tiers-note {
  margin-top: 28px;
  font-family: var(--serif); font-style: italic;
  color: var(--paper-60);
  font-size: 1.05rem;
}

/* Who we serve */
.serve-grid { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
.serve-card {
  padding: 36px 28px;
  border-top: 1px solid var(--ivory-line);
}
@media (min-width: 700px)  { .serve-card:nth-child(-n+2) { border-top: 1px solid var(--ivory-line); } .serve-card:nth-child(2n) { border-left: 1px solid var(--ivory-line); } }
@media (min-width: 1100px) {
  .serve-card { border-top: 1px solid var(--ivory-line) !important; border-left: none !important; }
  .serve-card:not(:nth-child(3n+1)) { border-left: 1px solid var(--ivory-line) !important; }
}
.serve-card .tag {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.serve-card h3 { margin-bottom: 10px; }
.serve-card p { color: var(--ink-60); font-size: 0.96rem; }

/* Competitive advantages */
.adv-grid { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 900px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
.adv {
  padding: 40px 0;
  border-top: 1px solid var(--navy-line);
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
}
@media (min-width: 900px) {
  .adv { padding: 44px 40px 44px 0; }
  .adv:nth-child(2n) { padding-left: 40px; padding-right: 0; border-left: 1px solid var(--navy-line); }
}
.adv .num {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--gold-2); font-size: 2.4rem; line-height: 1;
}
.adv h3 { margin-bottom: 8px; color: var(--ivory); }
.adv p { color: var(--paper-60); line-height: 1.55; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--ivory-line);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 28px 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500; letter-spacing: -0.005em;
  text-align: left; color: var(--ink);
}
.faq-q .plus {
  width: 22px; height: 22px; flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute;
  background: var(--gold);
  transition: transform .25s var(--ease);
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-0.5px); }
.faq-q .plus::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-0.5px); }
.faq-item.open .faq-q .plus::after { transform: translateX(-0.5px) rotate(90deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
  color: var(--ink-60); line-height: 1.7;
}
.faq-a-inner { padding: 0 0 28px; max-width: 58ch; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- CONTACT PAGE ---------- */
.form {
  background: var(--ivory);
}
.form-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: start;
}
@media (min-width: 1000px) { .form-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; } }

.field { display: flex; flex-direction: column; margin-bottom: 24px; }
.field label {
  font-family: var(--serif); font-style: italic;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.field label b { font-family: var(--sans); font-style: normal; font-weight: 500; color: var(--gold); margin-left: 4px; letter-spacing: 0; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-40);
  padding: 10px 0 12px;
  font-size: 1.02rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-bottom-color: #b23a3a; }
.field .err { color: #b23a3a; font-size: 0.82rem; margin-top: 6px; display: none; font-family: var(--sans); font-style: normal; letter-spacing: 0; }
.field.invalid .err { display: block; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 0 32px; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit {
  margin-top: 8px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.form-submit .small {
  font-family: var(--serif); font-style: italic;
  color: var(--ink-60); font-size: 0.95rem;
}

.success {
  padding: 28px;
  border: 1px solid var(--gold);
  background: var(--ivory-2);
  display: none;
}
.success.show { display: block; }
.success h3 { color: var(--gold); margin-bottom: 10px; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.6rem; letter-spacing: -0.005em; }
.success p { color: var(--ink-60); }

.contact-side h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--gold); font-size: 0.95rem;
  letter-spacing: 0.2em; text-transform: lowercase;
  margin: 0 0 14px;
}
.contact-side .block { padding: 24px 0; border-top: 1px solid var(--ivory-line); }
.contact-side .block:first-of-type { border-top: 0; padding-top: 0; }
.contact-side p, .contact-side a {
  font-size: 1.05rem; color: var(--ink); line-height: 1.5;
  word-break: break-word;
}
.contact-side .muted { color: var(--ink-60); font-size: 0.95rem; }

.founder-card {
  margin-top: 14px;
  border: 1px solid var(--ivory-line);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.founder-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-2);
}
.founder-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.92);
}
.founder-card .corners::before,
.founder-card .corners::after,
.founder-card .img-wrap::before,
.founder-card .img-wrap::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--ivory); z-index: 2;
}
.founder-card .img-wrap::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.founder-card .img-wrap::after  { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.founder-card .corners::before  { bottom: 10px; left: 10px; border-right: 0; border-top: 0;
  position: absolute; z-index: 2; border-color: var(--ivory); }
.founder-card .corners::after   { bottom: 10px; right: 10px; border-left: 0; border-top: 0;
  position: absolute; z-index: 2; border-color: var(--ivory); }
.founder-card .corners {
  position: absolute; inset: 0; pointer-events: none;
  /* corners live on image wrap */
}
.founder-card .caption {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--ivory-line);
}
.founder-card .caption h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--gold); font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.founder-card .caption p {
  font-size: 1rem; color: var(--ink); line-height: 1.5; margin: 0;
}
.founder-card .caption .muted {
  color: var(--ink-60); font-size: 0.9rem; margin-top: 6px;
  font-family: var(--serif); font-style: italic;
}

/* Map placeholder */
.map-ph {
  height: 300px;
  background:
    linear-gradient(135deg, rgba(11,23,51,0.05), transparent 50%),
    repeating-linear-gradient(45deg, rgba(11,23,51,0.04) 0 1px, transparent 1px 14px),
    var(--ivory-2);
  border-top: 1px solid var(--ivory-line);
  border-bottom: 1px solid var(--ivory-line);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-60);
  position: relative;
}
.map-ph .pin {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
}
.map-ph .pin::before {
  content: ""; width: 18px; height: 18px;
  background: var(--gold); transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(176,138,62,.18), 0 0 0 12px rgba(176,138,62,.08);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-hero {
  background: var(--navy); color: var(--ivory);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.gallery-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('assets/gallery-hero.jpg');
  background-size: cover; background-position: center 20%;
  filter: grayscale(.4) brightness(.55) contrast(1.05);
  opacity: .85;
}
.gallery-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,23,51,.55) 0%, rgba(11,23,51,.75) 70%, rgba(11,23,51,.95) 100%),
    radial-gradient(1200px 500px at 80% 40%, rgba(176,138,62,0.18), transparent 60%);
  pointer-events: none;
}
.gallery-hero .wrap { position: relative; z-index: 2; }
.gallery-hero .eyebrow { color: var(--gold-2); }
.gallery-hero h1 { margin-top: 20px; max-width: 20ch; color: var(--ivory); }
.gallery-hero .lede { max-width: 52ch; color: var(--paper-70); margin-top: 16px; }
.gallery-hero .credit {
  position: absolute; bottom: 22px; right: 28px; z-index: 3;
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: .85;
}

.gallery-section { padding: 80px 0 100px; }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-section .row-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.gallery-section .row-head h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin: 8px 0 0;
}
.gallery-section .row-head .count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-60);
}

.filmstrip {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 8px 0 28px;
  scroll-padding-left: 64px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.filmstrip::-webkit-scrollbar { height: 8px; }
.filmstrip::-webkit-scrollbar-track { background: var(--ivory-line); }
.filmstrip::-webkit-scrollbar-thumb { background: var(--gold); }

.film-cell {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 380px);
  aspect-ratio: 3/4;
  position: relative; overflow: hidden;
  background: var(--ivory-2);
  scroll-snap-align: start;
  cursor: zoom-in;
  border: 1px solid var(--ivory-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.film-cell.wide { width: clamp(380px, 42vw, 560px); aspect-ratio: 4/3; }
.film-cell.video-cell { aspect-ratio: 9/16; }
.film-cell:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(11,23,51,.35); }
.film-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) contrast(1.03);
  transition: transform .7s var(--ease), filter .4s var(--ease);
}
.film-cell:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1.08); }
.film-cell .corners {
  position: absolute; inset: 10px; pointer-events: none; z-index: 2;
}
.film-cell .corners::before, .film-cell .corners::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid rgba(244,239,228,0.65);
}
.film-cell .corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.film-cell .corners::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.film-cell .caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  color: var(--ivory);
  font-family: var(--serif); font-style: italic;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(11,23,51,.7);
}
.film-cell .caption b {
  display: block; font-family: var(--sans); font-style: normal;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em;
  text-transform: none; color: var(--ivory); margin-top: 2px;
}
.film-cell::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,23,51,0) 45%, rgba(11,23,51,.75) 100%);
  pointer-events: none;
}

.film-cell.placeholder {
  background:
    linear-gradient(135deg, rgba(11,23,51,0.04), transparent 55%),
    repeating-linear-gradient(45deg, rgba(11,23,51,0.03) 0 1px, transparent 1px 14px),
    var(--ivory-2);
  cursor: default;
}
.film-cell.placeholder::after { display: none; }
.film-cell.placeholder:hover { transform: none; box-shadow: none; }
.film-cell.placeholder .ph-body {
  position: absolute; inset: 18px;
  border: 1px solid rgba(176,138,62,0.28);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px; text-align: center;
}
.film-cell.placeholder .ph-body .top,
.film-cell.placeholder .ph-body .bot {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-60);
}
.film-cell.placeholder .ph-body .bot { color: var(--gold); text-align: right; }
.film-cell.placeholder .ph-body .mid {
  font-family: var(--serif); font-style: italic; color: var(--ink-60);
  font-size: 0.95rem; margin: auto 0; max-width: 22ch;
}

.video-cell .play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); z-index: 3;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(244,239,228,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(244,239,228,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video-cell:hover .play { transform: translate(-50%, -50%) scale(1.08); background: rgba(176,138,62,0.85); border-color: var(--gold); }
.video-cell .play::before {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--ivory);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.gallery-coming {
  background: var(--ivory-2);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--ivory-line);
  border-bottom: 1px solid var(--ivory-line);
}
.gallery-coming h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--ink); font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 0 0 12px;
}
.gallery-coming p { color: var(--ink-60); max-width: 50ch; margin: 0 auto; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(11,18,35,.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lightbox .lb-caption {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--paper-70);
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; letter-spacing: 0.12em;
  text-align: center; max-width: 70ch;
}
.lightbox .lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(244,239,228,0.08);
  border: 1px solid rgba(244,239,228,0.25);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lightbox .lb-btn:hover { background: rgba(176,138,62,0.8); border-color: var(--gold); }
.lightbox .lb-btn.prev { left: 24px; }
.lightbox .lb-btn.next { right: 24px; }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(244,239,228,0.08);
  border: 1px solid rgba(244,239,228,0.25);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(176,138,62,0.8); border-color: var(--gold); }
.lightbox .lb-counter {
  position: absolute; top: 32px; left: 32px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-40);
}

/* ---------- ROUTES ---------- */



/* ---------- UTIL / MOTION ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Multi-page: replaces SPA router visibility rules */
.route, article.route { display: block; }
