/* ============================================================
   Parlor Car Trolley — Google Ads Landing Page
   House style: Pixylmedia design language
   Brand palette (from parlorcartours.com):
     navy #132B56 (ink) · gold #8B6B2E (accent) · white canvas
   Font: system UI stack for fast rendering
   ============================================================ */

:root {
  --canvas: #ffffff;
  --canvas-soft: #fbfbf9;        /* near-white warm */
  --canvas-tint: #f2f4f8;        /* light navy tint for alternating sections */
  --ink: #132b56;                /* brand navy — headlines */
  --ink-deep: #0c1d3c;           /* darker navy for the final section */
  --text: #38415a;               /* body */
  --text-soft: #5f687f;          /* muted */
  --accent: #74581f;             /* accessible brand gold */
  --accent-deep: #74581f;        /* hover */
  --accent-tint: #f4eedd;        /* circles, chips */
  --line: #e3e6ee;               /* hairline borders */
  --nav-blue: var(--ink-deep);
  --nav-blue-deep: var(--ink-deep);
  --nav-text: rgba(255, 255, 255, .88);
  --white: #ffffff;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 6px rgba(19, 43, 86, .05), 0 22px 48px -24px rgba(19, 43, 86, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
figure { margin: 0; }

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(760px, 100% - 3rem); }

/* ---------- signature elements ---------- */
.accent { color: var(--accent); }

.eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--accent); flex-shrink: 0; }

.section-title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-lead { font-size: 1.05rem; color: var(--text-soft); max-width: 38rem; margin-bottom: 2.5rem; }

/* ---------- buttons: pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font); font-weight: 700; text-decoration: none;
  border: 1.5px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn--primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 12px 28px -12px rgba(139, 107, 46, .6);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(139, 107, 46, .65); }
.btn--outline { background: var(--white); color: var(--ink); border-color: #d4d9e4; }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: rgba(255,255,255,.85); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1rem; min-height: 54px; }
.btn--sm { padding: .55rem 1.25rem; font-size: .85rem; min-height: 42px; }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #0c1d3c !important;
  background-image: none !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 182, 94, .28);
  box-shadow: 0 16px 36px -30px rgba(8, 26, 57, .9);
}
.nav__inner {
  width: min(1240px, 100% - 2rem); margin-inline: auto;
  position: relative;
  display: flex; align-items: center; gap: 2rem;
  min-height: 68px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo picture { display: flex; align-items: center; }
.nav__logo img { height: 32px; width: auto; }
.nav__links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 1.75rem; margin-left: 0;
}
.nav__links a {
  color: #ffffff; text-decoration: none; font-size: .92rem; font-weight: 700;
  transition: color .15s;
}
.nav__links a:hover { color: #f0d27c; }
.nav__actions { display: flex; align-items: center; gap: .7rem; margin-left: auto; }
.nav .btn--primary {
  background: #d8b65e;
  color: var(--nav-blue-deep);
  box-shadow: 0 12px 24px -14px rgba(216, 182, 94, .85);
}
.nav .btn--primary:hover {
  background: #e5c878;
  box-shadow: 0 16px 30px -16px rgba(229, 200, 120, .9);
}

/* ============ HERO ============ */
.hero { background: var(--canvas); overflow: hidden; }
.hero__inner {
  width: min(1240px, 100% - 3rem); margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding: 4.25rem 0 2.25rem;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  color: var(--text);
  max-width: 35rem;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.45rem; }
.hero__features-title {
  font-weight: 800;
  color: var(--ink);
  font-size: .88rem;
  margin-bottom: .75rem;
}
.hero__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: .58rem .85rem;
  max-width: 42rem;
}
.hero__features li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: .55rem;
  color: #44506a;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}
.hero__features li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: .76rem;
  font-weight: 800;
}

/* embedded Moovs booking form in the hero */
.quote-embed {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  overflow: hidden; scroll-margin-top: 96px;
}
.quote-embed__head {
  padding: 1.4rem 1.6rem 1.2rem;
  background: linear-gradient(170deg, var(--ink) 0%, var(--ink-deep) 100%);
}
.quote-embed__head h2 {
  font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em;
  color: var(--white); margin-bottom: .15rem;
}
.quote-embed__head p { font-size: .88rem; color: #d8b65e; font-weight: 600; }
/* crop the Moovs logo + login header inside the iframe (cross-origin,
   so we hide it by shifting the frame up behind the overflow) */
.quote-embed__body { overflow: hidden; }
.quote-embed__frame {
  display: block; width: 100%; border: 0; background: var(--white);
  margin-top: -156px; height: 776px; /* 620px visible */
}
.quote-embed__placeholder {
  min-height: 500px;
  display: grid;
  align-content: center;
  gap: 1.35rem;
  padding: 1.65rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}
.quote-embed__label {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.quote-embed__placeholder ul {
  list-style: none;
  display: grid;
  gap: .75rem;
}
.quote-embed__placeholder li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 750;
}
.quote-embed__placeholder li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .08rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-size: .82rem;
  font-weight: 900;
}
.quote-embed.is-loaded .quote-embed__placeholder { display: none; }
.quote-embed:not(.is-loaded) .quote-embed__frame { display: none; }
@media (min-width: 1024px) {
  .quote-embed__frame { height: 856px; } /* 700px visible */
}

/* Moovs floating button hidden — our gold CTAs open the widget instead */
#moovs-widget-button { display: none !important; }

/* ============ STEPS ============ */
.steps {
  background: var(--canvas-tint);
  padding: clamp(4.1rem, 7vw, 6.2rem) 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps .section-title {
  max-width: 62rem;
  margin-bottom: 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
  align-items: stretch;
}
.step {
  min-height: 220px;
  background: var(--white);
  border: 1px solid #dce2ed;
  border-radius: 16px;
  padding: 1.65rem;
  display: grid;
  grid-template-rows: 58px auto 1fr;
  align-content: start;
  box-shadow: 0 18px 44px -36px rgba(19, 43, 86, .48);
}
.step__num {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  font-weight: 800; font-size: .98rem;
  margin-bottom: 0;
}
.step h3 {
  align-self: end;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .4rem;
}
.step p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 20rem;
}

/* ============ PERKS (bento) ============ */
.perks { padding: clamp(4.8rem, 9vw, 8.2rem) 0; }
.perks__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 2.5rem;
}
.perk {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 1.9rem 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.perk:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.perk__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.perk h3 { font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: .35rem; }
.perk p { font-size: .9rem; color: var(--text-soft); }

.perk--photo {
  position: relative; padding: 0; overflow: hidden;
  min-height: 380px; border: none;
  display: flex; align-items: flex-end;
}
.perk--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.perk--photo__overlay {
  position: relative; width: 100%;
  padding: 4.5rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, rgba(12,29,60,0) 0%, rgba(12,29,60,.78) 45%, rgba(12,29,60,.92) 100%);
  color: var(--white);
}
.perk__big {
  font-weight: 800; font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1; letter-spacing: -.04em; color: #d8b65e;
  display: block; margin-bottom: .25rem;
}
.perk--photo__overlay h3 { color: var(--white); font-weight: 800; font-size: 1.25rem; letter-spacing: -.015em; margin-bottom: .35rem; }
.perk--photo__overlay p { color: rgba(255,255,255,.85); font-size: .92rem; }

/* ============ EVENT TYPES ============ */
.events { background: #f7f8fb; padding: clamp(4.4rem, 8vw, 7rem) 0; }
.events__grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid #d9dfeb;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.event-card {
  display: grid;
  grid-template-columns: 42px minmax(180px, .55fr) minmax(240px, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
  padding: clamp(1.35rem, 2.6vw, 2rem) 0;
  border-bottom: 1px solid #d9dfeb;
  transition: color .18s ease;
  scroll-margin-top: 96px;
}
.event-card__num {
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  color: #5f6f8c;
}
.event-card h3 {
  font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.15; letter-spacing: -.02em; color: var(--ink);
}
.event-card p {
  font-size: clamp(.9rem, 1.05vw, .98rem);
  line-height: 1.55; color: #66728a;
}
.event-card__link {
  position: relative;
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #c9d2e2; color: var(--ink);
  overflow: hidden; font-size: 0; white-space: nowrap; text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.event-card__link::after {
  content: '→';
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--ink);
  font-size: 1.12rem; font-weight: 800;
  line-height: 1;
}
.event-card:hover .event-card__link,
.event-card__link:hover {
  transform: translateX(4px);
  border-color: #8798b4;
  background: rgba(19, 43, 86, .06);
}
@media (min-width: 860px) {
  .events__grid { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); }
}
@media (max-width: 640px) {
  .event-card {
    grid-template-columns: 34px 1fr 40px;
    gap: .85rem;
    align-items: start;
  }
  .event-card p { grid-column: 2 / -1; }
  .event-card__link { grid-column: 3; grid-row: 1; width: 38px; height: 38px; }
}

/* ============ GALLERY ============ */
.gallery { padding: clamp(4.8rem, 9vw, 8.2rem) 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery__item {
  aspect-ratio: 4 / 3; border-radius: var(--radius-card);
  background: var(--canvas-tint); border: 1px solid var(--line);
  overflow: hidden;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery__item:hover img { transform: scale(1.04); }
/* uniform tiles: every image fills the same 4:3 frame — no spans, no gaps */

/* ============ WHY ============ */
.why { background: #f7f8fb; padding: clamp(4.1rem, 7vw, 6.5rem) 0; }
.why__grid {
  margin-top: clamp(1.8rem, 4vw, 2.75rem);
  border-top: 1px solid #d9dfeb;
}
.why__item {
  display: grid;
  grid-template-columns: 44px minmax(220px, .75fr) minmax(100px, .9fr) minmax(300px, 1fr) 46px;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.6rem, 3.2vw, 2.55rem) 0;
  border-bottom: 1px solid #d9dfeb;
}
.why__num {
  font-weight: 800; font-size: .82rem; color: #5f6f8c;
  letter-spacing: .06em; align-self: center;
}
.why__item h3 {
  font-weight: 800; font-size: clamp(1.35rem, 2.15vw, 1.95rem);
  line-height: 1.12; letter-spacing: -.02em; color: var(--ink);
}
.why__line { display: block; height: 1px; width: 100%; background: #d9dfeb; }
.why__item p {
  font-size: clamp(.94rem, 1.2vw, 1.06rem);
  line-height: 1.55; color: #66728a;
}
.why__arrow {
  display: grid; place-items: center; justify-self: end;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid #c9d2e2; color: var(--ink);
  font-size: 1.15rem; font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.why__item:hover .why__arrow {
  transform: translateX(4px);
  border-color: #8798b4;
  background: rgba(19, 43, 86, .06);
}
@media (max-width: 900px) {
  .why__item {
    grid-template-columns: 42px 1fr 44px;
    gap: 1rem;
    padding: 1.65rem 0;
  }
  .why__num { grid-column: 1; grid-row: 1; align-self: start; padding-top: .25rem; }
  .why__item h3 { grid-column: 2; grid-row: 1; }
  .why__line { grid-column: 1 / -1; grid-row: 2; }
  .why__item p { grid-column: 2 / -1; grid-row: 3; font-size: .94rem; }
  .why__arrow { grid-column: 3; grid-row: 1; width: 38px; height: 38px; }
}

/* ============ TRUST ============ */
.trust {
  padding: clamp(3.8rem, 6vw, 5.4rem) 0 clamp(3.6rem, 5vw, 5rem);
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, #f8f9fc 100%);
}
.trust__proof {
  width: min(960px, 100%);
  margin: 0 auto clamp(1.65rem, 3vw, 2.25rem);
  display: grid;
  gap: 1.25rem;
}
.trust__proof-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}
.trust__label {
  font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin: 0;
}
.trust__logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: .65rem;
  margin: 0;
}
.trust__logos li {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .78);
  color: #57627c;
  font-weight: 800;
  font-size: .92rem;
  line-height: 1;
  padding: .58rem .7rem;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 32px -28px rgba(19, 43, 86, .42);
}
.trust__reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0;
  text-align: left;
}
.review {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem 1.35rem;
  box-shadow: 0 18px 42px -34px rgba(19, 43, 86, .5);
}
.review__stars { color: var(--accent); letter-spacing: .1em; font-size: .82rem; }
.review p { font-size: .88rem; color: #606a82; margin: .55rem 0 .7rem; }
.review cite { font-size: .8rem; font-weight: 800; color: var(--ink); font-style: normal; }

/* ============ AREAS ============ */
.areas {
  background: var(--canvas-tint);
  padding: clamp(3.8rem, 6vw, 5.6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.areas__inner {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.areas__copy .section-title {
  margin-bottom: 1rem;
}
.areas__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.areas__col {
  position: relative;
  background: var(--white);
  border: 1px solid #dce2ed;
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.35rem 4.8rem;
  box-shadow: 0 18px 44px -36px rgba(19, 43, 86, .48);
}
.areas__col span {
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-size: .76rem;
  font-weight: 800;
}
.areas__col h3 {
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .35rem;
}
.areas__col p {
  font-size: .9rem;
  line-height: 1.58;
  color: var(--text-soft);
}
.areas__note {
  font-size: .95rem;
  color: var(--text-soft);
  max-width: 32rem;
}
.areas__note a {
  color: var(--accent-deep);
  font-weight: 800;
  white-space: nowrap;
}

/* ============ FAQ ============ */
.faq {
  background: var(--canvas);
  padding: clamp(4.3rem, 8vw, 7.2rem) 0;
  border-top: 1px solid var(--line);
}
.faq__inner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.faq__intro {
  position: sticky;
  top: 100px;
  padding-top: .25rem;
}
.faq__intro .section-title { margin-bottom: 1rem; }
.faq__intro p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: .98rem;
  max-width: 18rem;
  margin-bottom: 1.35rem;
}
.faq__list {
  display: grid;
  gap: .65rem;
}
.faq__item {
  background: #ffffff;
  border: 1px solid #dde3ee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px -30px rgba(19, 43, 86, .45);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.faq__item:hover {
  border-color: #cbd4e4;
  box-shadow: 0 18px 42px -32px rgba(19, 43, 86, .58);
}
.faq__item[open] {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-color: rgba(139, 107, 46, .32);
}
.faq__item summary {
  font-weight: 800; font-size: .98rem; color: var(--ink);
  padding: 1rem 3.25rem 1rem 1.2rem; cursor: pointer; list-style: none;
  position: relative; min-height: 54px; display: flex; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 1rem;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-deep);
  font-size: 1.05rem; font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--ink);
  color: #ffffff;
}
.faq__item p {
  padding: 0 3.25rem 1.1rem 1.2rem;
  font-size: .92rem;
  line-height: 1.6;
  color: #657089;
}

/* ============ FINAL CTA (navy section) ============ */
.final {
  background: var(--canvas);
  padding: clamp(4rem, 6.5vw, 6.25rem) 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.final__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: linear-gradient(135deg, #132b56 0%, #0c1d3c 62%, #091833 100%);
  box-shadow: 0 30px 80px -58px rgba(12, 29, 60, .9), inset 0 1px 0 rgba(255, 255, 255, .08);
  overflow: hidden;
}
.final__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 182, 94, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 182, 94, .06) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .26;
}
.final__copy,
.final__card {
  position: relative;
  z-index: 1;
}
.final .eyebrow { color: #d8b65e; }
.final .eyebrow::before { background: #d8b65e; }
.final__title {
  font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 4.7rem);
  line-height: 1.04; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1rem;
  max-width: 12ch;
}
.final__title .accent { color: #e0bd5f; }
.final__sub {
  color: rgba(255,255,255,.72);
  margin-bottom: 1.8rem;
  font-size: 1.03rem;
  max-width: 38rem;
}
.final__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.final .btn--primary { background: #d8b65e; color: var(--ink-deep); box-shadow: 0 12px 28px -12px rgba(216,182,94,.5); }
.final .btn--primary:hover { background: #e5c878; }
.final__card {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(216, 182, 94, .32);
  box-shadow: 0 30px 70px -46px rgba(0, 0, 0, .65);
}
.final__card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.final__card-head span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.final__card-head strong {
  font-size: 1.25rem;
  line-height: 1;
}
.final__checks {
  list-style: none;
  display: grid;
  gap: .75rem;
}
.final__checks li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 700;
  color: #41506d;
}
.final__checks span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-size: .72rem;
  font-weight: 800;
}
.final__mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.1rem;
}
.final__mini span {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .55rem .65rem;
  text-align: center;
  color: #57627c;
  font-size: .78rem;
  font-weight: 800;
}

/* ============ FOOTER ============ */
.footer {
  background: #0c1d3c;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 3rem 0 7.5rem;
  text-align: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
}
.footer__inner > p { margin-bottom: .45rem; }
.footer__logo { height: 30px; width: auto; margin: 0 auto .9rem; }
.footer a { color: #ffffff; text-decoration: none; font-weight: 700; }
.footer a:hover { color: #e0bd5f; }
.footer__legal { margin-top: 1.1rem; font-size: .78rem; }

/* ============ STICKY BAR (mobile) ============ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: .6rem; padding: .65rem .85rem;
  padding-bottom: calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease, visibility .3s ease;
  visibility: hidden; pointer-events: none;
}
.sticky-bar.is-visible { transform: translateY(0); visibility: visible; pointer-events: auto; }
.sticky-bar a { flex: 1; min-height: 50px; font-size: .95rem; }

/* ============ SCROLL REVEALS ============ */
.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============ TABLET / DESKTOP ============ */
@media (min-width: 720px) {
  .hero__features {
    grid-template-columns: 1fr 1fr;
  }
  .hero__features li:last-child {
    grid-column: 1 / -1;
  }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .areas__cols { grid-template-columns: 1fr 1fr; }
  .trust__reviews { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__strip { grid-template-columns: 2fr 1.2fr 1fr; }
  .hero__strip-item--tall { grid-column: span 1; aspect-ratio: auto; }
  .hero__strip-item { aspect-ratio: auto; height: 340px; }
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .perk--photo { grid-row: span 2; min-height: 100%; }
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 4rem; padding: 4.75rem 0 2.75rem; }
  .quote-card { padding: 2.4rem 2.25rem 1.9rem; }
  .footer { padding-bottom: 3rem; }
  .sticky-bar { display: none; }
  .perks__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .perk--photo { grid-column: 1; grid-row: 1 / 3; }
}
@media (max-width: 1023px) and (min-width: 720px) {
  .areas__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .areas__copy .section-title {
    max-width: 44rem;
  }
}
@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav__actions { margin-left: auto; }
}
@media (max-width: 719px) {
  .nav__inner {
    width: min(100% - 1.25rem, 1240px);
    gap: .75rem;
  }
  .nav__logo img {
    width: min(245px, calc(100vw - 92px));
    height: auto;
  }
  .nav .btn--sm {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 46px;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }
  .nav .btn--sm svg {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 17px;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 719px) {
  .hero__features {
    gap: .7rem;
  }
  .hero__features li {
    font-size: .86rem;
  }
  .final__inner {
    grid-template-columns: 1fr;
    border-radius: 18px;
    padding: 1.2rem;
  }
  .final__title {
    max-width: 11ch;
  }
  .final__sub {
    font-size: .95rem;
  }
  .final__ctas .btn {
    width: 100%;
  }
  .final__card {
    padding: 1rem;
  }
  .final__mini {
    display: none;
  }
  .steps {
    margin-top: 1.5rem;
  }
  .step {
    min-height: 0;
    grid-template-rows: auto;
    gap: .8rem;
    padding: 1.35rem;
  }
  .step h3 {
    align-self: auto;
    margin-bottom: -.35rem;
  }
  .areas__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .areas__cols {
    grid-template-columns: 1fr;
  }
  .areas__col {
    padding: 1.2rem 1.15rem 1.2rem 4.2rem;
  }
  .areas__col span {
    left: 1.1rem;
    top: 1.2rem;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .faq__intro {
    position: static;
  }
  .faq__intro p:not(.eyebrow) {
    max-width: none;
  }
  .faq__item summary {
    font-size: .94rem;
    padding: .95rem 3rem .95rem 1rem;
  }
  .faq__item p {
    padding: 0 1rem 1rem;
    font-size: .9rem;
  }
  .trust__proof { gap: 1.6rem; }
  .trust__proof-row {
    grid-template-columns: 1fr;
    gap: .7rem;
    text-align: center;
  }
  .trust__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust__logos li { font-size: .84rem; padding: .5rem .66rem; white-space: normal; }
  .trust__logos li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 420px) {
  .field-row { flex-direction: column; gap: 0; }
}
