/* =========================================================================
   A&P Cash LLC — Banknote / heritage financial design system
   ========================================================================= */

:root {
  /* Banknote palette */
  --pine-900: #06231a;
  --pine-800: #0a3527;
  --pine-700: #0c3b2b;
  --pine-600: #14543c;
  --pine-500: #1d6b4d;
  --pine-300: #6fae93;

  --brass-700: #8a6a26;
  --brass-600: #a17e33;
  --brass-500: #bd9849;
  --brass-400: #d2b36e;
  --brass-300: #e4cd97;

  /* Light = warm paper */
  --bg: #f5f1e8;
  --paper: #fbf8f1;
  --paper-2: #f1ece0;
  --ink: #16201b;
  --ink-soft: #3a4a42;
  --ink-mute: #6a7a70;
  --line: rgba(20, 32, 26, 0.13);
  --line-strong: rgba(20, 32, 26, 0.22);

  --ring: rgba(20, 84, 60, 0.45);
  --shadow-sm: 0 1px 1px rgba(6, 35, 26, 0.05);
  --shadow-md: 0 18px 40px -28px rgba(6, 35, 26, 0.45);
  --shadow-lg: 0 40px 80px -42px rgba(6, 35, 26, 0.55);

  --radius-xs: 4px;
  --radius: 7px;
  --radius-lg: 12px;

  --container: 1160px;
  --nav-h: 78px;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* banknote engraving */
  --guilloche:
    repeating-radial-gradient(circle at 88% 12%, transparent 0 16px, rgba(189,152,73,0.045) 16px 17px),
    repeating-radial-gradient(circle at 10% 92%, transparent 0 20px, rgba(189,152,73,0.035) 20px 21px);
}

[data-theme="dark"] {
  --bg: #05130d;
  --paper: #0a2017;
  --paper-2: #0d2a1e;
  --ink: #ecf3ee;
  --ink-soft: #c0d4c7;
  --ink-mute: #88a094;
  --line: rgba(236, 243, 238, 0.12);
  --line-strong: rgba(236, 243, 238, 0.2);
  --shadow-md: 0 18px 40px -24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 80px -34px rgba(0, 0, 0, 0.8);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
::selection { background: var(--pine-700); color: #fbf8f1; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-600);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass-500); display: inline-block; }
[data-theme="dark"] .eyebrow { color: var(--brass-400); }

/* ---------- Layout ---------- */
.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: clamp(68px, 9vw, 128px) 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head h2 { font-size: clamp(1.95rem, 4.4vw, 3.05rem); margin: 18px 0 16px; }
.section-head p { color: var(--ink-mute); font-size: 1.1rem; max-width: 56ch; }
.hr-line { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius); font-family: var(--sans);
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  background: var(--pine-700); color: #fbf8f1; border: 1px solid var(--pine-700);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { background: var(--pine-800); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--brass { background: var(--brass-500); border-color: var(--brass-500); color: #221802; }
.btn--brass:hover { background: var(--brass-600); border-color: var(--brass-600); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--paper-2); border-color: var(--ink-soft); }
.btn--light { background: rgba(251,248,241,0.08); color: #fbf8f1; border-color: rgba(251,248,241,0.32); }
.btn--light:hover { background: rgba(251,248,241,0.16); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }

/* =========================================================================
   Navbar
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: background .35s, box-shadow .35s, height .35s, border-color .35s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line); height: 66px;
}
/* Transparent nav over the dark hero — light treatment until scrolled */
.nav:not(.scrolled) .brand__name { color: #fbf8f1; }
.nav:not(.scrolled) .brand__name span { color: var(--brass-400); }
.nav:not(.scrolled) .brand__name span.amp { color: var(--brass-300); }
.nav:not(.scrolled) .brand__sub { color: rgba(243, 239, 228, 0.6); }
.nav:not(.scrolled) .nav__links a { color: rgba(243, 239, 228, 0.82); }
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active { color: #fbf8f1; }
.nav:not(.scrolled) .icon-btn { color: rgba(243, 239, 228, 0.85); border-color: rgba(251, 248, 241, 0.28); }
.nav:not(.scrolled) .icon-btn:hover { color: #fff; border-color: rgba(251, 248, 241, 0.5); }
.nav:not(.scrolled) .lang { border-color: rgba(251, 248, 241, 0.28); }
.nav:not(.scrolled) .lang button { color: rgba(243, 239, 228, 0.7); }
.nav:not(.scrolled) .lang button.active { color: #fbf8f1; }
.nav:not(.scrolled) .lang__pill { background: rgba(251, 248, 241, 0.2); }
.nav:not(.scrolled) .hamburger { border-color: rgba(251, 248, 241, 0.28); }
.nav:not(.scrolled) .hamburger span { background: #fbf8f1; }

.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 42px; height: 42px; transition: transform .4s; }
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.22rem; line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.brand__name span { color: var(--pine-600); }
[data-theme="dark"] .brand__name span { color: var(--pine-300); }
.brand__name span.amp { color: var(--brass-500); font-style: italic; }
.brand__sub { display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 5px; }
.nav.scrolled .brand__mark { width: 36px; height: 36px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 8px 13px; border-radius: var(--radius-xs); font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft); position: relative; transition: color .2s;
}
.nav__links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 1.5px; background: var(--brass-500); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--pine-700); }
.nav__links a.active::after { transform: scaleX(1); }
[data-theme="dark"] .nav__links a.active { color: var(--pine-300); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: var(--radius-xs); display: grid; place-items: center;
  background: transparent; color: var(--ink-soft); border: 1px solid var(--line); transition: border-color .2s, color .2s, background .2s;
}
.icon-btn:hover { color: var(--pine-700); border-color: var(--line-strong); }
.icon-btn svg { width: 19px; height: 19px; }

.lang { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius-xs); overflow: hidden; font-weight: 600; font-size: 0.78rem; position: relative; }
.lang button { padding: 8px 12px; color: var(--ink-mute); transition: color .25s; z-index: 1; letter-spacing: 0.04em; }
.lang button.active { color: #fbf8f1; }
.lang__pill { position: absolute; top: 0; bottom: 0; width: 50%; left: 0; background: var(--pine-700); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.lang[data-active="es"] .lang__pill { transform: translateX(100%); }

.hamburger { display: none; width: 42px; height: 42px; border-radius: var(--radius-xs); border: 1px solid var(--line); position: relative; }
.hamburger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 25px; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; background: var(--brass-500); transition: width .1s linear; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; padding-top: calc(var(--nav-h) + 56px); padding-bottom: 88px; color: #f3efe4; background: var(--pine-700); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--guilloche); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 78% 8%, rgba(29,107,77,0.55), transparent 60%), linear-gradient(180deg, transparent 60%, rgba(6,35,26,0.5)); pointer-events: none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; }
.hero__eyebrow { color: var(--brass-300); }
.hero__eyebrow::before { background: var(--brass-400); }
.hero h1 { color: #fbf8f1; font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 500; line-height: 1.05; margin: 22px 0 24px; letter-spacing: -0.018em; }
.hero h1 em { font-style: normal; color: var(--brass-300); background-image: linear-gradient(var(--brass-400), var(--brass-400)); background-size: 100% 2px; background-repeat: no-repeat; background-position: 0 92%; padding-bottom: 2px; }
.hero__sub { color: rgba(243,239,228,0.82); font-size: 1.16rem; max-width: 520px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 40px; }
.hero__rule { height: 1px; background: rgba(251,248,241,0.16); margin-bottom: 26px; max-width: 520px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0; max-width: 540px; }
.hero__trust .ht { padding-right: 26px; margin-right: 26px; border-right: 1px solid rgba(251,248,241,0.16); }
.hero__trust .ht:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__trust .ht b { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; color: #fbf8f1; line-height: 1; display: block; }
.hero__trust .ht span { font-size: 0.78rem; color: rgba(243,239,228,0.66); margin-top: 7px; display: block; letter-spacing: 0.02em; }

/* Hero plaque card */
.hero__card { position: relative; }
.hero__visual { background: var(--paper); border: 1px solid rgba(251,248,241,0.16); border-radius: var(--radius-lg); padding: 30px 30px 26px; box-shadow: var(--shadow-lg); position: relative; }
.hero__visual::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--line); border-radius: 8px; pointer-events: none; }
.hero__visual h3 { font-size: 1.18rem; }
.hero__visual .muted { font-size: 0.86rem; color: var(--ink-mute); margin: 4px 0 18px; }
.hero__card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ledger { display: grid; }
.ledger-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.ledger-item:first-child { border-top: 0; }
.ledger-item svg { width: 18px; height: 18px; color: var(--pine-600); flex-shrink: 0; }
.ledger-item b { font-weight: 500; color: var(--ink); }
.hero__open-pill { position: absolute; top: -14px; right: 22px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: var(--paper); color: var(--pine-800); border: 1px solid var(--line); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em; box-shadow: var(--shadow-md); }
.hero__open-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pine-500); }
.hero__open-pill.is-closed { color: #a8623f; }
.hero__open-pill.is-closed .dot { background: #c2734a; }
[data-theme="dark"] .hero__open-pill { color: var(--pine-300); }

/* =========================================================================
   Credentials strip
   ========================================================================= */
.creds { background: var(--paper); border-bottom: 1px solid var(--line); }
.creds__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 0; padding: 22px 0; }
.creds__label { width: 100%; text-align: center; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 4px; }
.cred { display: inline-flex; align-items: center; gap: 9px; padding: 0 28px; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.cred + .cred::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 18px; background: var(--line); }
.cred svg { width: 17px; height: 17px; color: var(--brass-600); }

/* =========================================================================
   Services
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scard {
  position: relative; background: transparent; padding: 34px 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.scard::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px; background: var(--brass-500); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.scard:hover { background: var(--paper); }
.scard:hover::before { transform: scaleX(1); }
.scard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.scard__ic { width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: var(--radius-xs); display: grid; place-items: center; color: var(--pine-700); transition: color .3s, border-color .3s; }
.scard:hover .scard__ic { color: var(--brass-600); border-color: var(--brass-500); }
.scard__ic svg { width: 24px; height: 24px; }
.scard__idx { font-family: var(--serif); font-size: 1.05rem; color: var(--brass-500); font-weight: 500; }
.scard h3 { font-size: 1.32rem; margin-bottom: 10px; }
.scard p { color: var(--ink-mute); font-size: 0.96rem; margin-bottom: 18px; }
.scard__feat { display: grid; gap: 8px; }
.scard__feat li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-soft); }
.scard__feat li svg { width: 14px; height: 14px; color: var(--brass-600); flex-shrink: 0; }

/* =========================================================================
   Why
   ========================================================================= */
.why { background: var(--paper); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 44px; }
.feature { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.feature__ic { color: var(--pine-700); margin-bottom: 16px; }
[data-theme="dark"] .feature { border-top-color: var(--brass-500); }
[data-theme="dark"] .feature__ic { color: var(--pine-300); }
.feature__ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--ink-mute); font-size: 0.95rem; }

/* =========================================================================
   Stats ledger
   ========================================================================= */
.stats { background: var(--pine-800); color: #fbf8f1; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: var(--guilloche); }
.stats .container { position: relative; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 8px 30px; border-left: 1px solid rgba(251,248,241,0.16); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; display: block; color: #fbf8f1; }
.stat span { display: block; margin-top: 12px; color: rgba(243,239,228,0.66); font-size: 0.86rem; letter-spacing: 0.02em; }

/* =========================================================================
   Reviews
   ========================================================================= */
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.review { flex: 0 0 100%; padding: 0 12px; }
@media (min-width: 760px) { .review { flex-basis: 33.3333%; } }
.review__inner { height: 100%; border-top: 2px solid var(--line-strong); padding: 26px 0 0; position: relative; }
.review__inner::before { content: "\201C"; position: absolute; top: 6px; right: 0; font-family: var(--serif); font-size: 4.4rem; line-height: 1; color: var(--brass-500); opacity: 0.32; }
.review__stars { display: flex; gap: 2px; color: var(--brass-500); margin-bottom: 14px; }
.review__stars svg { width: 16px; height: 16px; }
.review__text { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-weight: 400; margin-bottom: 22px; }
.review__who { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.review__av { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--brass-500); color: var(--pine-700); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 0.95rem; }
[data-theme="dark"] .review__av { color: var(--pine-300); }
.review__who b { display: block; font-size: 0.96rem; font-weight: 600; }
.review__who span { font-size: 0.8rem; color: var(--ink-mute); }
.reviews__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.reviews__dots { display: flex; gap: 7px; }
.reviews__dots button { width: 7px; height: 7px; border-radius: 999px; background: var(--line-strong); transition: width .3s, background .3s; }
.reviews__dots button.active { width: 24px; background: var(--brass-500); }

/* =========================================================================
   Location
   ========================================================================= */
.loc-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.panel__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.panel__head .ic { color: var(--pine-700); }
[data-theme="dark"] .panel__head .ic { color: var(--pine-300); }
.panel__head .ic svg { width: 22px; height: 22px; }
.panel__head h3 { font-size: 1.3rem; }
.panel__head .status { margin-left: auto; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em; border: 1px solid var(--line); color: var(--pine-700); }
.status-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pine-500); }
.status-badge.is-closed { color: #a8623f; }
.status-badge.is-closed .dot { background: #c2734a; }
[data-theme="dark"] .status-badge { color: var(--pine-300); }

.hours-list li { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-size: 0.96rem; border-top: 1px solid var(--line); }
.hours-list li:first-child { border-top: 0; }
.hours-list li .day { color: var(--ink-soft); }
.hours-list li .time { color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-list li.today { margin: 0 -14px; padding: 12px 14px; background: var(--paper-2); border-radius: var(--radius-xs); border-top-color: transparent; position: relative; }
.hours-list li.today + li { border-top-color: transparent; }
.hours-list li.today::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--brass-500); }
.hours-list li.today .day, .hours-list li.today .time { color: var(--ink); font-weight: 600; }

.contact-rows { display: grid; gap: 18px; margin-bottom: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-row .ic { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--line); border-radius: var(--radius-xs); display: grid; place-items: center; color: var(--pine-700); }
[data-theme="dark"] .contact-row .ic { color: var(--pine-300); }
.contact-row .ic svg { width: 19px; height: 19px; }
.contact-row .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); font-weight: 600; margin-bottom: 3px; }
.contact-row a, .contact-row p { font-size: 1.02rem; font-weight: 500; color: var(--ink); }
.contact-row a:hover { color: var(--pine-700); text-decoration: underline; text-underline-offset: 3px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.35) sepia(0.08); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { background: var(--paper); }
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 4px; text-align: left; font-family: var(--serif); font-weight: 500; font-size: 1.16rem; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--pine-700); }
.faq-q .chev { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .chev::before, .faq-q .chev::after { content: ""; position: absolute; background: var(--brass-600); transition: transform .3s, opacity .3s; }
.faq-q .chev::before { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq-q .chev::after { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq-item.open .chev::before { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 4px 26px; color: var(--ink-mute); font-size: 1.02rem; max-width: 68ch; }

/* =========================================================================
   CTA + Footer
   ========================================================================= */
.cta-band { padding: clamp(60px, 8vw, 104px) 0; }
.cta-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--pine-700); color: #fbf8f1; padding: clamp(44px, 6vw, 76px); text-align: center; }
.cta-card::before { content: ""; position: absolute; inset: 0; background: var(--guilloche); }
.cta-card::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(251,248,241,0.2); border-radius: 8px; pointer-events: none; }
.cta-card > * { position: relative; }
.cta-card h2 { color: #fbf8f1; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 500; margin-bottom: 16px; }
.cta-card p { color: rgba(243,239,228,0.82); max-width: 560px; margin: 0 auto 32px; font-size: 1.12rem; }
.cta-card .hero__cta { justify-content: center; margin-bottom: 0; }

.footer { background: var(--pine-900); color: rgba(243,239,228,0.66); padding: 66px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer .brand__name, .footer .brand__name span { color: #fbf8f1; }
.footer .brand__name span.amp { color: var(--brass-400); }
.footer__about p { margin: 18px 0; max-width: 380px; font-size: 0.96rem; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: var(--radius-xs); border: 1px solid rgba(243,239,228,0.18); display: grid; place-items: center; transition: border-color .25s, color .25s; }
.footer__social a:hover { border-color: var(--brass-400); color: var(--brass-300); }
.footer__social a svg { width: 18px; height: 18px; }
.footer h4 { color: #fbf8f1; font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links li + li { margin-top: 12px; }
.footer__links a { font-size: 0.95rem; transition: color .2s; }
.footer__links a:hover { color: var(--brass-300); }
.footer__bottom { border-top: 1px solid rgba(243,239,228,0.14); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 0.82rem; color: rgba(243,239,228,0.5); }

.to-top { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: var(--radius-xs); background: var(--pine-700); color: #fbf8f1; display: grid; place-items: center; box-shadow: var(--shadow-lg); z-index: 90; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .3s, transform .3s, background .2s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--pine-800); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }

/* ---------- Mobile ---------- */
.nav__mobile { display: none; }
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero__card { max-width: 440px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .loc-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: block; }
  .nav__mobile { position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99; background: var(--paper); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); padding: 30px 26px; display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
  body.menu-open .nav__mobile { transform: translateX(0); }
  body.menu-open { overflow: hidden; }
  .nav__mobile a { padding: 16px 8px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
  .nav__mobile .btn { margin-top: 22px; }
}
@media (max-width: 560px) {
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .review { flex-basis: 100% !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__trust .ht { padding-right: 18px; margin-right: 18px; }
}
