/* ─────────────────────────────────────────────────────────────
   ReUp Media — Variant B: restrained premium
   Design DNA: murdocklondon.com (deep navy primary on warm light
   surface — salon credibility), pentagram.com (Plain at 350–400,
   documents-not-app), cookandbrown.com (honest agency execution),
   dishoom.com (warm parchment + editorial serif).
   Palette: warm off-white surface, deep navy ink, single amber
   accent for CTAs only.
   ───────────────────────────────────────────────────────────── */

:root {
  --navy: #142B4F;
  --navy-deep: #0A1A33;
  --navy-mid: #1F3A6E;
  --gold: #B45309;     /* a muted amber — credible, not garish */
  --gold-soft: #FEF3C7;
  --ink: #0F172A;
  --paper: #FAFAF7;    /* warm off-white */
  --paper-2: #F2EFE8;  /* warm parchment */
  --text: #0F172A;
  --muted: #5A6577;
  --rule: #E2E0D6;
  --rule-strong: #C7C2B4;

  --font-display: ui-serif, "Charter", "Iowan Old Style", "Source Serif Pro",
    "Apple Garamond", "Baskerville", "Times New Roman", serif;
  --font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Inter",
    "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo",
    "Cascadia Code", monospace;

  --max: 1080px;
  --gutter: clamp(24px, 4vw, 56px);
  --pad-section: clamp(72px, 10vh, 140px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--navy); color: var(--paper); }

/* ─────────  NAV  ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 32px; height: 32px; }
.nav__brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.5px;
}
.nav__brand small {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  margin-left: 2px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 4px;
  background: var(--navy); color: var(--paper);
  font-weight: 500; font-size: 14px;
  transition: background 0.2s var(--ease);
}
.nav__cta:hover { background: var(--navy-deep); }

@media (max-width: 720px) { .nav__links { display: none; } }

/* ─────────  HERO  ───────── */
.hero {
  padding: 120px var(--gutter) clamp(80px, 12vh, 140px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.hero__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 64px;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.hero__title em { font-style: italic; color: var(--navy); }
.hero__sub {
  margin-top: 32px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 50ch;
}
.hero__sub strong { color: var(--text); font-weight: 500; }

.hero__side {
  border-left: 1px solid var(--rule-strong);
  padding-left: 32px;
}
.hero__meta {
  display: grid; gap: 24px;
  margin-bottom: 36px;
}
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.hero__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 500; font-size: 15px;
  transition: background 0.2s var(--ease);
}
.hero__btn--primary { background: var(--navy); color: var(--paper); }
.hero__btn--primary:hover { background: var(--navy-deep); }
.hero__btn--ghost {
  color: var(--text);
  border-bottom: 1px solid var(--rule-strong);
  padding: 4px 0;
  border-radius: 0;
}
.hero__btn--ghost:hover { border-bottom-color: var(--navy); }

.hero__below {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 32px 56px;
  font-size: 14px;
  color: var(--muted);
}
.hero__below span { display: inline-flex; gap: 8px; align-items: baseline; }
.hero__below strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__side { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; }
}

/* ─────────  SECTION CHROME  ───────── */
section { padding: var(--pad-section) var(--gutter); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__head {
  margin-bottom: 64px;
  max-width: 760px;
}
.section__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.section__title em { font-style: italic; color: var(--navy); }
.section__lede {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

/* ─────────  THE LEAK  ───────── */
.leak { background: var(--paper-2); border-top: 1px solid var(--rule); }
.leak__grid {
  display: grid; gap: 32px 48px;
  grid-template-columns: repeat(3, 1fr);
}
.leak__card {
  padding-top: 28px;
  border-top: 2px solid var(--navy);
}
.leak__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}
.leak__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.leak__card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.leak__close {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
  max-width: 56ch;
}
@media (max-width: 800px) {
  .leak__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────  SERVICES  ───────── */
.services { background: var(--paper); }
.services__grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex; flex-direction: column;
  background: var(--paper);
  transition: border-color 0.3s var(--ease);
}
.service:hover { border-color: var(--navy); }
.service__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.service__one {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.service__list { margin: 0 0 24px; padding: 0; list-style: none; }
.service__list li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.55;
}
.service__list li:first-child { border-top: 1px solid var(--rule); }
.service__list strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 500;
}
.service__list span { color: var(--text); }
.service__price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule-strong);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.service__price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.services__handoff {
  margin: 48px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ─────────  HOW IT WORKS  ───────── */
.how { background: var(--paper-2); border-top: 1px solid var(--rule); }
.how__grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.how__step {
  padding: 32px 28px 36px 0;
  border-right: 1px solid var(--rule);
  transition: background 0.3s var(--ease);
}
.how__step:last-child { border-right: 0; padding-right: 0; }
.how__step__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 24px;
}
.how__step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.how__step__time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.how__step p {
  font-size: 15px; line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px;
}
.how__step__signoff {
  font-size: 13px;
  color: var(--muted);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  line-height: 1.5;
  font-family: var(--font-display);
  font-style: italic;
}
.how__principles {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.how__principle strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
  .how__step { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 24px 24px 28px 0; }
  .how__step:nth-child(2n) { border-right: 0; padding-right: 0; }
  .how__step:nth-last-child(-n+2) { border-bottom: 0; }
  .how__principles { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__step { border-right: 0; border-bottom: 1px solid var(--rule); padding: 24px 0 28px; }
  .how__step:last-child { border-bottom: 0; }
}

/* ─────────  SHOWROOM  ───────── */
.showroom { background: var(--paper); }
.showroom__filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.showroom__filter {
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.2s var(--ease);
}
.showroom__filter:hover { border-color: var(--navy); }
.showroom__filter.is-active {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.showroom__grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.showroom__card {
  border: 1px solid var(--rule);
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: border-color 0.3s var(--ease);
}
.showroom__card:hover { border-color: var(--navy); }
.showroom__card.is-hidden { display: none; }
.showroom__card__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.showroom__card__preview img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.6s var(--ease);
}
.showroom__card:hover .showroom__card__preview img { transform: scale(1.02); }
.showroom__card__tier {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  padding: 4px 9px; border-radius: 2px;
  background: var(--paper);
  color: var(--navy);
  text-transform: uppercase;
  border: 1px solid var(--rule);
}
.showroom__card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.showroom__card__title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.showroom__card__vertical {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 16px;
}
.showroom__card__note {
  font-size: 14.5px; line-height: 1.55;
  color: var(--text);
  margin: 0 0 20px;
  flex: 1;
}
.showroom__card__tier-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}
.showroom__card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--navy);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
  align-self: flex-start;
  font-weight: 500;
}
.showroom__card__link:hover { border-bottom-color: var(--navy); }
@media (max-width: 900px) { .showroom__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .showroom__grid { grid-template-columns: 1fr; } }

/* ─────────  WHO WE HELP  ───────── */
.who { background: var(--paper-2); border-top: 1px solid var(--rule); }
.who__grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(4, 1fr);
}
.who__tile {
  padding-top: 24px;
  border-top: 2px solid var(--navy);
}
.who__tile__tier {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 18px;
}
.who__tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.who__tile p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.55;
}
.who__tile blockquote {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.who__footnote {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .who__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .who__grid { grid-template-columns: 1fr; }
}

/* ─────────  WHAT WE DON'T DO  ───────── */
.dont { background: var(--paper); }
.dont__list {
  display: grid; gap: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}
.dont__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: baseline;
}
.dont__item:nth-child(2n) { padding-left: 32px; border-left: 1px solid var(--rule); }
.dont__item:nth-child(2n+1) { padding-right: 32px; }
.dont__item__no {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.dont__item p {
  margin: 0;
  font-size: 16px; line-height: 1.55;
  color: var(--text);
}
.dont__item strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 720px) {
  .dont__list { grid-template-columns: 1fr; }
  .dont__item:nth-child(2n) { padding-left: 0; border-left: 0; }
  .dont__item:nth-child(2n+1) { padding-right: 0; }
}

/* ─────────  FAQ  ───────── */
.faq { background: var(--paper-2); border-top: 1px solid var(--rule); }
.faq__list {
  display: grid; gap: 0;
  border-top: 1px solid var(--rule);
}
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-mono);
  font-size: 18px; color: var(--muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin: 0;
  padding: 0 0 28px;
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─────────  CTA  ───────── */
.cta {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  text-align: center;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.cta h2 em { font-style: italic; color: var(--navy); }
.cta p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 56ch;
  line-height: 1.6;
}
.cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--navy); color: var(--paper);
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 17px;
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease);
}
.cta__btn:hover { background: var(--navy-deep); }
.cta__sub {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.cta__sub a {
  color: var(--navy);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 2px;
}
.cta__sub a:hover { border-bottom-color: var(--navy); }

/* ─────────  FOOTER  ───────── */
.footer {
  background: var(--navy-deep);
  color: rgba(250, 250, 247, 0.86);
  padding: 64px var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 48px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer__brand img { width: 36px; height: 36px; margin-bottom: 14px; filter: brightness(1.1); }
.footer__brand h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  margin: 0 0 8px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.footer__brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(250, 250, 247, 0.7);
  max-width: 32ch;
  margin: 0;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 2px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(250, 250, 247, 0.86);
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  max-width: var(--max); margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 250, 247, 0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────  REVEAL (quiet)  ───────── */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; }
}
