/* ============================================================
   AcquiroLab — v2 design system
   Vanla-fidelity rebuild: deep navy + warm yellow accent,
   Montserrat 600 display, Lato body, Big Shoulders Text buttons,
   Caudex editorial accent.
   ============================================================ */

:root {
  --ink: #002241;
  --ink-2: #001a33;
  --accent: #4072ab;
  --accent-soft: #4072ab33;
  --gold: #f6e266;
  --gold-deep: #9d7022;
  --gold-deep-soft: #9d70224d;
  --paper: #ecf0ef;
  --paper-warm: #f5ecea;
  --cream: #f5f1ea;
  --white: #ffffff;
  --misty: #e4c6be;
  --body: #221816;
  --muted: #5f453e;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
  --font-button: "Big Shoulders Text", "Montserrat", sans-serif;
  --font-accent: "Caudex", Georgia, serif;

  --container: 1600px;
  --gutter: 6em;
  --gutter-mobile: 1.5em;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.15;
  color: var(--ink);
}

p { margin: 0 0 1em; }

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

.container-narrow {
  max-width: 1200px;
}

@media (max-width: 991px) {
  .container { padding: 0 2em; }
}
@media (max-width: 640px) {
  .container { padding: 0 var(--gutter-mobile); }
}

/* ============================================================
   NAV
   ============================================================ */

.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding: 2.5em 0 1em;
  background: transparent;
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1em;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8em;
  color: var(--white);
  padding: .5em 1.4em;
  border: 1px solid transparent;
  transition: border-color .2s;
}

.brand:hover { border-color: rgba(255,255,255,.25); }

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -.02em;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.5em;
  align-items: center;
}

.nav-text {
  font-family: var(--font-body);
  font-size: 1.05em;
  color: var(--white);
  letter-spacing: .02em;
  position: relative;
  padding: .4em 0;
  transition: color .2s;
}

.nav-text::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s;
}

.nav-text:hover { color: var(--gold); }
.nav-text:hover::after { right: 0; }
.nav-text.is-active { color: var(--gold); }
.nav-text.is-active::after { right: 0; }

@media (max-width: 991px) {
  .nav-menu { display: none; }
  .navbar { padding-top: 1.5em; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  min-width: 14em;
  min-height: 4.5em;
  padding: .8em 2em;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 1em;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
  position: relative;
  overflow: hidden;
}

.btn .btn-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.btn .btn-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
  white-space: nowrap;
}

.btn .btn-arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  flex: none;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn.btn-light {
  border-color: var(--ink);
  color: var(--ink);
}
.btn.btn-light:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn.btn-solid {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn.btn-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 12em 0 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(64,114,171,.35), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(157,112,34,.18), transparent 55%),
    linear-gradient(180deg, #001528 0%, var(--ink) 45%, #00182c 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,40,.4) 0%, transparent 30%, transparent 70%, rgba(0,15,30,.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--gutter);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.1;
  letter-spacing: clamp(4px, 1.5vw, 20px);
  text-transform: capitalize;
  text-shadow: 3px 3px 0 var(--ink);
  margin: 0 0 30px;
  color: var(--white);
}

.hero-subhead {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.2;
  text-shadow: 2px 2px var(--ink);
  margin: 0 0 30px;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.8vw, 24px);
  text-shadow: 2px 2px var(--ink);
}

.hero-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.hero-prompt {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 22px);
  margin: 60px 0 20px;
  text-shadow: 2px 2px var(--ink);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   AS-SEEN-IN MARQUEE
   ============================================================ */

.as-seen-in {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  overflow: hidden;
}

.as-seen-eyebrow {
  text-align: center;
  font-family: var(--font-button);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 36px;
}

.marquee {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--ink);
  opacity: .55;
  padding: 12px 20px;
  border-left: 1px solid var(--paper);
  border-right: 1px solid var(--paper);
  transition: opacity .2s;
}

.marquee-item:hover { opacity: 1; }

/* ============================================================
   ADVISORY TIMELINE (3 stats with progress line)
   ============================================================ */

.advisory {
  background: var(--paper);
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
}

.section-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.timeline-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-3 .t-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-3 .t-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 24px;
  height: 30px;
}

.timeline-3 .t-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 8px var(--accent);
  z-index: 2;
  position: relative;
}

.timeline-3 .t-line {
  position: absolute;
  top: 50%;
  height: 3px;
  background: var(--ink);
  z-index: 1;
}

.timeline-3 .t-item:first-child .t-line { right: 50%; left: 0; }
.timeline-3 .t-item:last-child .t-line { left: 50%; right: 0; }
.timeline-3 .t-item:not(:first-child):not(:last-child) .t-line { left: 0; right: 0; }

.timeline-3 .t-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 8px;
}

.timeline-3 .t-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 8px;
}

.timeline-3 .t-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  opacity: .8;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-3 { grid-template-columns: 1fr; gap: 32px; }
  .timeline-3 .t-line { display: none; }
}

/* ============================================================
   FOUNDER / SENIOR ADVISOR BLOCK
   ============================================================ */

.advisor {
  background: var(--white);
  padding: 100px 0;
}

.advisor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.advisor-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ink);
  margin: 0 0 20px;
}

.advisor-role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 24px;
}

.advisor-bio {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
}

.advisor-list-top {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 12px;
}

.advisor-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.advisor-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}

.advisor-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  margin-top: 8px;
  flex: none;
}

.advisor-traits {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trait {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.trait-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  color: var(--accent);
}

.trait-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.advisor-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(64,114,171,.18), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, #d8dee0 100%);
  border: 1px solid var(--paper);
  display: grid;
  place-items: center;
  color: var(--ink);
  opacity: .9;
}

.advisor-image::before {
  content: "PLACEHOLDER";
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.advisor-image .silhouette {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: .15;
}

.advisor-image .silhouette svg {
  width: 60%;
  height: 60%;
  fill: var(--ink);
}

@media (max-width: 768px) {
  .advisor-grid { grid-template-columns: 1fr; }
  .advisor-image { aspect-ratio: 3 / 4; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   SERVICES SECTION (For Sellers / For Buyers, big two-col rows)
   ============================================================ */

.services-rows {
  background: var(--white);
  padding: 100px 0;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.services-row:last-child { margin-bottom: 0; }

.services-row.reverse > .services-img { order: 2; }

.services-img {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(255,255,255,.1), transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  overflow: hidden;
}

.services-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,226,102,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,226,102,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.services-img::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.services-img-label {
  position: absolute;
  bottom: 50px;
  left: 30px;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.services-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  margin: 0 0 20px;
}

.services-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
}

.services-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  margin-top: 8px;
  flex: none;
}

.services-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  opacity: .85;
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
}

.services-row.reverse .step-num { background: var(--ink); }

.step-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
}

.step-line {
  width: 60px;
  max-width: 80px;
  height: 2px;
  background: var(--ink);
  flex: 1;
  margin-top: -20px;
}

@media (max-width: 880px) {
  .services-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .services-row.reverse > .services-img { order: 0; }
  .process-steps { flex-wrap: wrap; }
  .step-line { display: none; }
  .step { flex: 0 0 auto; min-width: 80px; }
}

/* ============================================================
   CASE STUDIES (dark navy band, two cards)
   ============================================================ */

.case-band {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}

.case-band .section-title { color: var(--white); }

.case-band .section-title-2 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin: 0 0 60px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: var(--ink);
  border: 1px solid var(--accent);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card-img {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(64,114,171,.3), transparent 60%),
    linear-gradient(135deg, var(--ink-2) 0%, #001220 100%);
  position: relative;
  overflow: hidden;
}

.case-card-img::after {
  content: "ILLUSTRATIVE";
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold);
}

.case-card-img .pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(246,226,102,.06) 0 1px, transparent 1px 14px);
}

.case-card-body { padding: 0 12px 16px; }

.case-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 12px;
}

.case-card-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  opacity: .8;
  margin: 0 0 24px;
}

.case-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.case-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.case-meta-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  flex: none;
}

.case-meta-icon svg { width: 16px; height: 16px; }

.case-meta-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: .04em;
  margin: 0 0 2px;
}

.case-meta-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  opacity: .8;
}

@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-tile {
  margin-bottom: 16px;
  border: 1px solid var(--gold-deep-soft);
  background: var(--paper);
  transition: background .2s;
}

.faq-tile[open] { background: var(--white); }

.faq-tile > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--accent);
  list-style: none;
  transition: color .2s;
}

.faq-tile > summary::-webkit-details-marker { display: none; }

.faq-tile > summary:hover { color: var(--ink); }

.faq-tile .marker {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  width: 28px;
  text-align: right;
  transition: transform .2s;
}

.faq-tile[open] .marker { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 22px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

.faq-body p:last-child { margin: 0; }

/* ============================================================
   FORM (Sell/Buy tabbed)
   ============================================================ */

.form-section {
  background: var(--white);
  padding: 100px 0;
}

.form-eyebrow {
  text-align: center;
  margin-bottom: 32px;
}

.form-eyebrow-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  margin: 0 0 8px;
}

.form-eyebrow-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink);
  opacity: .85;
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  padding: 60px clamp(24px, 5vw, 60px);
}

.form-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.form-tab {
  flex: 1;
  min-width: 200px;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid rgba(246,226,102,.3);
  color: var(--white);
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-tab .sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .15em;
  opacity: .7;
  text-transform: uppercase;
}

.form-tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.form-tab.is-active .sub { opacity: .85; color: var(--gold-deep); }

.form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--white);
  margin: 0 0 24px;
}

.form-pane { display: none; }
.form-pane.is-active { display: block; }

.field {
  margin-bottom: 20px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .04em;
  transition: border-color .2s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.6); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field select {
  background: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px),
                       calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field select option { background: var(--white); color: var(--ink); }

.field textarea { min-height: 80px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 18px 24px;
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background .25s, border-color .25s, color .25s;
}

.form-submit::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ============================================================
   PREPARATION (sellers page two-col text + image)
   ============================================================ */

.prep-section {
  background: var(--white);
  padding: 80px 0;
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.prep-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  margin: 0 0 24px;
}

.prep-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
}

.prep-image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(64,114,171,.2), transparent 60%),
    linear-gradient(135deg, #d4d8d6 0%, #b8bfc0 100%);
  position: relative;
}

.prep-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.4);
}

@media (max-width: 880px) {
  .prep-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   WHY-CHOOSE 6-CARD GRID
   ============================================================ */

.why-section {
  background: var(--paper);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,34,65,.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.why-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}

.why-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GUIDE / EXIT PROCESS (vertical timeline with progress bar)
   ============================================================ */

.guide-section {
  background: var(--white);
  padding: 100px 0;
}

.guide-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.guide-list::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--accent);
}

.guide-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.guide-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.guide-step-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.guide-step-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
}

.guide-step-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   DEAL CRITERIA (3-card with checklists, buyer page)
   ============================================================ */

.criteria-section {
  background: var(--white);
  padding: 100px 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.criteria-card {
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 36px 28px;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
}

.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,34,65,.08);
}

.criteria-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.criteria-icon svg { width: 36px; height: 36px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.criteria-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 20px;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}

.criteria-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 880px) { .criteria-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER (Vanla two-row pattern)
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--white);
  border: 10px solid var(--white);
  border-top: 0;
  position: relative;
}

.footer-row-1 {
  padding: 12em 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,34,65,.7), rgba(0,34,65,.85)),
    radial-gradient(ellipse at 50% 50%, rgba(64,114,171,.4), transparent 70%),
    linear-gradient(135deg, #001528 0%, var(--ink) 100%);
}

.footer-row-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,226,102,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,226,102,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 2px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-meta a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--white);
  line-height: 1;
  transition: color .2s;
}

.footer-meta a:hover { color: var(--gold); }

.footer-row-2 {
  background: var(--ink);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-row-2 .footer-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-nav a {
  font-family: var(--font-button);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--misty);
  padding: 0 1.5em;
  line-height: 1.2;
  transition: color .2s, letter-spacing .4s cubic-bezier(.075,.82,.165,1);
}

.footer-nav a:hover { color: var(--gold); letter-spacing: .35em; }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  transition: color .2s, border-color .2s;
}

.footer-social a:hover { color: var(--gold); border-color: var(--gold); }

.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 768px) {
  .footer-row-1 { padding: 6em 0; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
  .footer-row-2 .footer-inner { flex-direction: column; gap: 16px; }
  .footer-nav { justify-content: center; }
}

/* ============================================================
   ARTICLE & MISC (carry-over from v1 for inheriting pages)
   ============================================================ */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(64,114,171,.3), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(157,112,34,.15), transparent 60%);
}

.page-hero-inner { position: relative; z-index: 2; max-width: 900px; }

.page-hero-eyebrow {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}

.page-hero-lead {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--white);
  opacity: .9;
  margin: 0;
  max-width: 700px;
}

/* article styles used by blog posts */
article { max-width: 800px; margin: 0 auto; padding: 60px 0; }
article h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); color: var(--ink); }
article h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3vw, 32px); color: var(--ink); margin-top: 48px; }
article h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); margin-top: 32px; }
article p, article li { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: var(--body); }
article .lead { font-family: var(--font-accent); font-size: 22px; font-style: italic; color: var(--ink); margin: 24px 0; padding-left: 16px; border-left: 3px solid var(--gold); }
article .direct-answer, article .answer-block {
  background: var(--paper); border-left: 4px solid var(--accent);
  padding: 20px 24px; margin: 24px 0;
}
article details {
  border-top: 1px solid var(--paper);
  padding: 16px 0;
}
article details summary {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; color: var(--ink); cursor: pointer;
  padding-right: 24px; position: relative;
}
article details summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  color: var(--accent);
  transition: transform .2s;
}
article details[open] summary::after { transform: rotate(45deg); }
article ul, article ol { padding-left: 24px; }
article .author { padding: 24px; background: var(--paper); margin: 48px 0; border-left: 4px solid var(--gold-deep); }

/* utilities */
.bg-dark { background: var(--ink); color: var(--white); }
.bg-paper { background: var(--paper); }
.text-center { text-align: center; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }


/* ============================================================
   v1 BACKWARD-COMPAT
   Aliases so existing blog/services/about pages inherit
   the new Vanla aesthetic without HTML changes.
   ============================================================ */

/* v1 nav alias */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 99;
  padding: 2em 0 1em;
  background: transparent;
}
.nav .nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
.nav .nav-brand {
  display: flex;
  align-items: center;
  gap: .7em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav .nav-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 2px solid var(--gold);
}
.nav .nav-brand-mark::before {
  content: "A";
  font-weight: 700;
  color: var(--gold);
  font-size: 20px;
}
.nav .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5em;
}
.nav .nav-links a {
  font-family: var(--font-body);
  font-size: 1.05em;
  color: var(--white);
  letter-spacing: .02em;
  padding: .4em 0;
  position: relative;
  transition: color .2s;
}
.nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s;
}
.nav .nav-links a:hover { color: var(--gold); }
.nav .nav-links a:hover::after { right: 0; }
.nav .nav-links a.active { color: var(--gold); }
.nav .nav-links a.active::after { right: 0; }
.nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .8em 1.4em;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  transition: background .25s, color .25s, border-color .25s;
}
.nav .nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.nav .nav-mobile-toggle,
.nav .nav-mobile-menu { display: none; }
@media (max-width: 991px) {
  .nav .nav-links, .nav .nav-cta { display: none; }
  .nav .nav-mobile-toggle {
    display: block; background: transparent; border: none;
    color: var(--white); font-size: 28px; cursor: pointer;
  }
}

/* v1 wrap = container */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
@media (max-width: 991px) { .wrap { padding: 0 2em; } }
@media (max-width: 640px) { .wrap { padding: 0 var(--gutter-mobile); } }

/* v1 article header */
.article-header {
  background: var(--ink);
  color: var(--white);
  padding: 180px 0 60px;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(64,114,171,.3), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(157,112,34,.15), transparent 60%);
}
.article-header > * { position: relative; z-index: 2; }
.article-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin: 16px 0;
  max-width: 900px;
}
.article-header .article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-header .article-meta a { color: var(--gold); }
.article-header .article-meta .breadcrumb { opacity: .8; }

/* Article body */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.article-body p, .article-body li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  margin-top: 48px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-top: 32px;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--font-body);
  font-size: 16px;
}
.article-body table th,
.article-body table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--paper);
  text-align: left;
}
.article-body table th {
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.article-body blockquote {
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--ink);
  margin: 24px 0;
}

/* Feature cards (used in blog "related" sections) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--paper);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,34,65,.08);
  border-color: var(--accent-soft);
}
.feature-card-img {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(64,114,171,.2), transparent 60%),
    linear-gradient(135deg, var(--paper) 0%, #d8dee0 100%);
}
.feature-card-body { padding: 20px; }
.feature-card-tag {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
  display: block;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* CTA strip (used on most pages) */
.cta-strip {
  background: var(--paper);
  padding: 80px 0;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-strip .eyebrow {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
}
.cta-strip .display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 768px) { .cta-strip-grid { grid-template-columns: 1fr; } }

/* btn-gold = solid gold variant */
.btn.btn-gold,
a.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  padding: 1em 1.8em;
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
a.btn-gold:hover {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}
.btn-arrow {
  display: inline-block;
}

/* v1 footer multi-column */
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0 40px;
}
.footer .footer-grid h5 {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.footer .footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-grid li {
  margin-bottom: 12px;
}
.footer .footer-grid a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.footer .footer-grid a:hover { color: var(--gold); }
.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer .footer-brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 2px solid var(--gold);
}
.footer .footer-brand-mark::before {
  content: "A";
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}
.footer .footer-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  margin: 0;
  max-width: 320px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.5);
}
.footer .footer-bottom a {
  color: rgba(255,255,255,.5);
  margin-right: 20px;
  transition: color .2s;
}
.footer .footer-bottom a:hover { color: var(--gold); }
/* v1 footer override: simpler, no border, no fixed bg image */
body:has(.nav) .footer {
  border: none;
}
body:has(.nav) .footer .footer-row-1,
body:has(.nav) .footer .footer-row-2 { display: none; }

@media (max-width: 880px) { .footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer .footer-grid { grid-template-columns: 1fr; } }

/* Article TOC + sticky structures inherit naturally */
.eyebrow {
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
  display: block;
}
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: var(--ink);
}

