/* ============================================================
   Mikey Mattress — Memorial Day 2026 Landing Page
   Shared styles for NY + FL market variants.
   Palette: Navy / Champagne / Cream / Ink
   Type: Fraunces (display) + Inter (body)
   ============================================================ */

:root {
  --navy: #0B1F3A;
  --navy-deep: #061427;
  --navy-soft: #1B3253;
  --brass: #B89859;
  --brass-light: #DCC289;
  --brass-deep: #6F5A2C;
  --oxblood: #8B1538;
  --oxblood-deep: #6F0F2C;
  --sage: #5C7363;
  --cream: #FAF7F2;
  --cream-warm: #F2EDE3;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-mute: #7A7A7A;
  --rule: #E5DDC9;
  --rule-soft: #F0E8D8;
  --white: #FFFFFF;
  --error: #9B2C2C;
  --success: #2F6F4F;

  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 6px 18px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 18px 48px rgba(11, 31, 58, 0.18);
  --shadow-deep: 0 32px 80px rgba(11, 31, 58, 0.24);

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 720px) { body { font-size: 16px; } }

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--brass-deep); }

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

/* ============================================================ */
/* TYPOGRAPHY                                                    */
/* ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brass-deep); font-family: var(--body); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 14px;
  display: inline-block;
}

/* ============================================================ */
/* LAYOUT                                                        */
/* ============================================================ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-tight { padding: clamp(32px, 5vw, 56px) 0; }
.rule {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 0;
}

/* ============================================================ */
/* HEADER                                                        */
/* ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 16px;
}
.brand-mark {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-mark em { font-style: italic; color: var(--brass-deep); font-weight: 500; }
.brand-mark-img {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.brand-mark-img img {
  height: 40px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
@media (max-width: 560px) {
  .brand-mark-img img { height: 32px; }
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease;
}
.header-cta:hover { background: var(--navy-deep); color: var(--cream); }
.header-cta svg { width: 16px; height: 16px; }

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
  user-select: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 39, 0.35) 0%, rgba(6, 20, 39, 0.65) 75%, rgba(6, 20, 39, 0.85) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  padding-top: 80px;
  padding-bottom: 64px;
  color: var(--cream);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(201, 168, 106, 0.16);
  border: 1px solid rgba(201, 168, 106, 0.45);
  color: var(--brass-light);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.hero h1 {
  color: var(--cream);
  margin: 18px 0 14px;
  max-width: 18ch;
}
.hero h1 .accent { color: var(--brass); font-style: italic; }
.hero-lede {
  color: rgba(250, 247, 242, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 56ch;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--brass);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
}
.btn-primary:hover { background: var(--brass-light); color: var(--navy); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.4);
}
.btn-ghost:hover { background: rgba(250, 247, 242, 0.08); color: var(--cream); }
.btn-solid {
  background: var(--navy);
  color: var(--cream);
}
.btn-solid:hover { background: var(--navy-deep); color: var(--cream); transform: translateY(-1px); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  align-items: center;
}
.hero-trust .pip { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .stars { color: var(--brass); letter-spacing: 2px; }

/* Prominent variant — used above primary CTA on hero for credibility */
.hero-trust--prominent {
  margin: 22px 0 18px;
  padding: 12px 16px;
  background: rgba(201, 162, 39, 0.10);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 8px;
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.96);
  gap: 10px 16px;
}
.hero-trust--prominent strong { color: var(--brass-light); font-weight: 700; }
.hero-trust--prominent .stars { font-size: 1.05rem; }
.hero-trust--prominent .pip-sep { color: rgba(250, 247, 242, 0.32); }
@media (max-width: 720px) {
  .hero-trust--prominent { font-size: 0.85rem; gap: 6px 12px; padding: 10px 12px; }
  .hero-trust--prominent .pip-sep { display: none; }
}

/* Hero gift line — sits below CTAs */
.hero-gift {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.84);
  font-style: italic;
}
@media (max-width: 720px) {
  .hero-gift { font-size: 0.84rem; }
}

/* ============================================================ */
/* VS-CHAIN COMPARISON STRIP                                     */
/* Local SMB wedge vs. national chain delivery delays + reps     */
/* ============================================================ */
.vs-chain {
  background: var(--cream);
  padding: 36px 16px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.vs-chain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.vs-col {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  border: 1px solid var(--rule);
}
.vs-col-us {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.06);
}
.vs-col-them {
  background: #faf7f2;
  opacity: 0.92;
}
.vs-col-head { margin-bottom: 12px; }
.vs-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
}
.vs-badge-us {
  background: var(--brass);
  color: var(--navy);
}
.vs-badge-them {
  background: rgba(10, 37, 64, 0.08);
  color: rgba(10, 37, 64, 0.62);
}
.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--navy);
}
.vs-col-them .vs-list li { color: rgba(10, 37, 64, 0.7); }
.vs-check {
  color: var(--brass-deep);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
}
.vs-x {
  color: rgba(165, 30, 30, 0.78);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
}
@media (max-width: 720px) {
  .vs-chain { padding: 24px 12px 22px; }
  .vs-chain-grid { grid-template-columns: 1fr; gap: 16px; }
  .vs-col { padding: 18px 18px; }
  .vs-list li { font-size: 0.9rem; }
}

/* ============================================================ */
/* FINANCING LINE — per-product affordability anchor             */
/* ============================================================ */
.financing-line {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--brass-deep);
  letter-spacing: 0.01em;
}
.financing-line strong { color: var(--navy); font-weight: 700; }

/* ============================================================ */
/* OFFER BLOCK                                                   */
/* ============================================================ */
.offer-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.offer-head h2 { margin-bottom: 12px; }
.offer-head p { font-size: 1.08rem; max-width: 48ch; }
.offer-points {
  display: grid; gap: 18px;
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}
.offer-points li {
  display: flex; gap: 14px;
  padding-left: 0;
}
.offer-points .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brass);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 700;
}
.offer-points .label { font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
.offer-points .desc { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* ============================================================ */
/* BRAND STRIP                                                   */
/* ============================================================ */
.brands {
  background: var(--white);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.brands h4 { color: var(--ink-mute); margin-bottom: 28px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px 40px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.brand-grid .brand {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.brand-grid .brand:hover { color: var(--navy); opacity: 1; }

/* ============================================================ */
/* FEATURED PRODUCTS                                             */
/* ============================================================ */
.products-section h2 { text-align: center; margin-bottom: 8px; }
.products-section .section-lede {
  text-align: center; max-width: 56ch; margin: 0 auto 48px;
  color: var(--ink-soft); font-size: 1.05rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass-light);
}
.product-img {
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
}
.product-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.product-pricing {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.msrp { color: var(--ink-mute); text-decoration: line-through; font-size: 0.95rem; }
.our-price { color: var(--navy); font-weight: 700; font-size: 1.35rem; }
.product-financing {
  font-size: 0.85rem; color: var(--ink-mute);
  margin-bottom: 18px;
}
.product-financing strong { color: var(--ink); }
.product-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  justify-content: center;
  transition: background 0.2s ease;
}
.product-cta:hover { background: var(--navy-deep); color: var(--cream); }

/* ============================================================ */
/* TESTIMONIAL VIDEO                                             */
/* ============================================================ */
.testimonial-video-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.testimonial-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
/* iPhone-style frame around the testimonial video */
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2c2c2e 0%, #1a1a1c 45%, #232325 100%);
  border-radius: 44px;
  padding: 14px 10px 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.10) inset,
    -1px 0 0 rgba(255, 255, 255, 0.05) inset,
    1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 -1px 0 rgba(255, 255, 255, 0.07) inset,
    0 6px 14px rgba(0, 0, 0, 0.3),
    0 24px 60px rgba(11, 31, 58, 0.38);
  isolation: isolate;
}
/* Dynamic Island */
.phone-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #050505;
  border-radius: 16px;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
/* Side buttons — left volume rocker */
.phone-frame .vol-btn {
  position: absolute;
  left: -2px;
  width: 3px;
  background: linear-gradient(90deg, #1a1a1c, #38383a, #1a1a1c);
  border-radius: 2px 0 0 2px;
  pointer-events: none;
}
.phone-frame .vol-btn.vol-up { top: 92px; height: 38px; }
.phone-frame .vol-btn.vol-down { top: 142px; height: 56px; }
.phone-frame .pwr-btn {
  position: absolute;
  right: -2px;
  top: 120px;
  width: 3px;
  height: 70px;
  background: linear-gradient(-90deg, #1a1a1c, #38383a, #1a1a1c);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

.testimonial-video-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}
.testimonial-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-video-wrap .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.3s ease;
  pointer-events: auto;
}
.testimonial-video-wrap .play-overlay.hidden { opacity: 0; pointer-events: none; }
.testimonial-video-wrap .play-overlay:hover { background: rgba(11, 31, 58, 0.32); }
.testimonial-video-wrap .play-overlay svg {
  width: 72px; height: 72px;
  fill: var(--brass);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
  transition: transform 0.2s ease;
}
.testimonial-video-wrap .play-overlay:hover svg { transform: scale(1.08); }
.testimonial-video-wrap .mute-toggle {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.7);
  border: 1px solid rgba(201, 168, 106, 0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--cream);
  transition: background 0.2s ease;
}
.testimonial-video-wrap .mute-toggle:hover { background: rgba(11, 31, 58, 0.92); }
.testimonial-video-wrap .mute-toggle svg { width: 18px; height: 18px; }

.testimonial-quote {
  position: relative;
  padding-left: 0;
}
.testimonial-quote .quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--brass);
  line-height: 0.8;
  margin-bottom: 8px;
  display: block;
}
.testimonial-quote h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.testimonial-quote p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.testimonial-quote .attribution {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  margin-top: 24px;
}
.testimonial-quote .attribution-name {
  font-weight: 600;
  color: var(--navy);
  display: block;
}
.testimonial-quote .attribution-meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.testimonial-quote .savings-callout {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-md);
  font-weight: 600;
}
.testimonial-quote .savings-callout .amount {
  color: var(--brass);
  font-family: var(--display);
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .testimonial-video-grid {
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: center;
  }
}

/* ============================================================ */
/* PROOF / REVIEWS                                               */
/* ============================================================ */
.proof {
  background: var(--navy);
  color: var(--cream);
}
.proof h2 { color: var(--cream); }
.proof .stars { color: var(--brass); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 6px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.proof-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 28px;
}
.proof-card p { color: rgba(250, 247, 242, 0.92); font-style: italic; margin-bottom: 14px; line-height: 1.6; }
.proof-card .reviewer { color: var(--brass-light); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }

/* ============================================================ */
/* LOCATION CARD                                                 */
/* ============================================================ */
.location-section h2 { text-align: center; margin-bottom: 12px; }
.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 32px auto 0;
  box-shadow: var(--shadow-sm);
}
.location-image {
  background: var(--cream-warm);
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  font-family: var(--display); font-style: italic;
}
.location-image-real {
  background: var(--cream-warm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.location-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-ctas {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.directions-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.directions-secondary:hover { background: var(--navy); color: var(--cream); }
.location-info { padding: 36px 36px 40px; }
.location-info h3 { color: var(--navy); margin-bottom: 12px; }
.location-info .addr,
.location-info .hrs,
.location-info .ph {
  color: var(--ink-soft); margin: 0 0 6px;
}
.location-info .ph a { color: var(--navy); font-weight: 600; }
.location-info .directions {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--brass);
  color: var(--navy);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease;
}
.location-info .directions:hover { background: var(--brass-light); }

/* ============================================================ */
/* FORM                                                          */
/* ============================================================ */
.form-section {
  background: var(--cream-warm);
  border-top: 1px solid var(--rule);
}
.form-section h2 { text-align: center; margin-bottom: 10px; }
.form-section .section-lede {
  text-align: center; max-width: 52ch; margin: 0 auto 36px;
  color: var(--ink-soft); font-size: 1.05rem;
}
.reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.reserve-form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}
.reserve-form,
.reserve-form .field {
  box-sizing: border-box;
  min-width: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.form-submit:hover { background: var(--navy-deep); transform: translateY(-1px); }
.form-fine {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 247, 242, 0.78);
  font-size: 0.92rem;
}
.site-footer .wrap {
  padding-top: 56px; padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.site-footer .col h4,
.site-footer .col h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-family: var(--body);
  font-weight: 600;
  margin: 0 0 14px;
}
.site-footer .col p,
.site-footer .col a { color: rgba(250, 247, 242, 0.78); margin: 0 0 6px; display: block; }
.site-footer .col a:hover { color: var(--brass-light); }
.legal {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 24px;
  margin-top: 32px;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.55);
  text-align: center;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (min-width: 720px) {
  .offer { grid-template-columns: 1fr 1fr; gap: 64px; }
  .location-card { grid-template-columns: 5fr 7fr; }
  .site-footer .wrap { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (max-width: 560px) {
  .reserve-form { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .header-cta span { display: none; }
}

/* ============================================================ */
/* FONTS                                                         */
/* ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================ */
/* TRUST BAND — under hero                                       */
/* ============================================================ */
.trust-band {
  background: var(--navy);
  color: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
}
.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  text-align: center;
}
.trust-pip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  white-space: nowrap;
}
.trust-pip .accent { color: var(--brass-light); font-weight: 600; }
.trust-pip .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.9rem; }
.trust-pip .divider { color: rgba(201, 168, 106, 0.35); }
@media (max-width: 720px) {
  .trust-band-inner { gap: 6px 18px; font-size: 0.82rem; }
  .trust-pip { font-size: 0.8rem; }
}

/* TRUST BAND TICKER — continuous marquee w/ click-to-call cues */
.trust-band { overflow: hidden; padding: 14px 0; }
.ticker-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-slide 55s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track:focus-within { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0 14px;
  white-space: nowrap;
}
.t-pip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream);
  white-space: nowrap;
}
.t-pip .accent { color: var(--brass-light); font-weight: 600; }
.t-pip .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.9rem; }
.t-sep {
  color: rgba(201, 168, 106, 0.4);
  font-size: 0.95rem;
  user-select: none;
}
.t-cta { display: inline-flex; align-items: center; }
.t-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  min-height: 38px;
  background: var(--brass-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.t-call-icon { width: 14px; height: 14px; flex-shrink: 0; }
.t-call:hover, .t-call:focus-visible {
  background: var(--brass);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}
.t-call:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

@media (max-width: 720px) {
  .ticker-set { gap: 20px; padding: 0 10px; }
  .t-pip { font-size: 0.8rem; }
  .t-call { font-size: 0.78rem; padding: 10px 14px; min-height: 40px; }
  .ticker-track { animation-duration: 42s; }
  .ticker-viewport {
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .ticker-set:nth-child(2) { display: none; }
  .ticker-viewport { mask-image: none; -webkit-mask-image: none; }
}

@keyframes ticker-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================ */
/* FEATURED PARTNER — Helix family-owned story                   */
/* ============================================================ */
.featured-partner {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.featured-partner .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.featured-partner .partner-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  box-shadow: var(--shadow-md);
}
.featured-partner .partner-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-partner .partner-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--brass-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--brass);
}
.featured-partner .partner-eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.featured-partner .partner-name {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.featured-partner .partner-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-deep);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin-bottom: 18px;
}
.featured-partner .partner-body { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 14px; }
.featured-partner .partner-body strong { color: var(--ink); }
.featured-partner .partner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-top: 18px;
}
.featured-partner .partner-feat {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.94rem;
  color: var(--ink);
}
.featured-partner .partner-feat::before {
  content: "✦"; color: var(--brass); font-size: 0.85rem;
}
@media (min-width: 768px) {
  .featured-partner .wrap { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* ============================================================ */
/* BRAND STRIP V2 — refined elegant treatment                    */
/* ============================================================ */
.brands-v2 {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0;
  text-align: center;
}
.brands-v2 h4,
.brands-v2 h3 {
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}
.brands-v2 .lede {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin: 0 auto 36px;
  max-width: 48ch;
  font-style: italic;
  font-family: var(--display);
}
.brands-v2 .brand-rows {
  display: grid;
  gap: 20px;
}
.brands-v2 .brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px 50px;
}
.brands-v2 .brand-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.brands-v2 .brand-name:hover { opacity: 1; color: var(--brass-deep); }
.brands-v2 .brand-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%) contrast(0.92);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.brands-v2 .brand-img:hover {
  opacity: 1;
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}
/* Per Mike's punchlist 2026-05-20: make Kingsdown + Nolah logos larger */
.brands-v2 .brand-img--lg {
  height: 60px;
  max-width: 220px;
}
@media (max-width: 720px) {
  .brands-v2 .brand-row { gap: 14px 28px; }
  .brands-v2 .brand-name { font-size: 1.15rem; }
  .brands-v2 .brand-img { height: 30px; }
  .brands-v2 .brand-img--lg { height: 44px; }
}

/* ============================================================ */
/* THE SHOWROOM SECRET — overstock block                         */
/* ============================================================ */
.showroom-secret {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.showroom-secret::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.showroom-secret .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.showroom-secret .eyebrow {
  color: var(--brass-light);
  margin-bottom: 14px;
}
.showroom-secret h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
}
.showroom-secret h2 .accent {
  font-style: italic;
  color: var(--brass);
}
.showroom-secret p {
  color: rgba(250, 247, 242, 0.86);
  font-size: 1.08rem;
  max-width: 64ch;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.showroom-secret .secret-note {
  font-style: italic;
  font-family: var(--display);
  color: var(--brass-light);
  font-size: 1rem;
  margin-bottom: 28px;
}
.showroom-secret .secret-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}
.showroom-secret .btn-call-ny,
.showroom-secret .btn-call-fl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--brass);
  color: var(--navy);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.showroom-secret .btn-call-ny:hover,
.showroom-secret .btn-call-fl:hover {
  background: var(--brass-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ============================================================ */
/* MEMORIAL DAY DATE BAND                                        */
/* ============================================================ */
.md-date-band {
  background: var(--oxblood);
  color: var(--cream);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--oxblood-deep);
}
.md-date-band .star { color: var(--cream); margin: 0 6px; opacity: 0.7; }
@media (max-width: 720px) {
  .md-date-band { font-size: 0.74rem; letter-spacing: 0.14em; padding: 10px 0; }
}

/* ============================================================ */
/* EXPANDED REVIEWS GRID                                         */
/* ============================================================ */
.proof-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .proof-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .proof-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease;
}
.review-card:hover { border-color: rgba(201, 168, 106, 0.5); }
.review-card .stars { color: var(--brass); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card .quote {
  color: rgba(250, 247, 242, 0.92);
  font-style: italic;
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.65;
  flex: 1;
}
.review-card .meta {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 106, 0.18);
}
.review-card .reviewer-name {
  font-weight: 600;
  color: var(--brass-light);
  font-size: 0.92rem;
}
.review-card .reviewer-meta {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.55);
  letter-spacing: 0.04em;
}

/* ============================================================ */
/* FEATURED PRODUCTS V2 — more editorial cards                   */
/* ============================================================ */
.product-card .product-img-real {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card .product-img-real img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-real img {
  transform: scale(1.04);
}
.product-card.product-card-feature {
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--white) 100%);
}
/* Brand mark area inside product card — consistent height + left-aligned */
.product-card .product-brand,
.product-card .product-brand-logo {
  display: block;
  margin-bottom: 6px;
  min-height: 36px;
  max-height: 38px;
}
.product-card .product-brand {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  font-family: var(--body);
  display: flex;
  align-items: center;
}
.product-card .product-brand-logo {
  width: auto;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
}
.product-card .product-brand-meta {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  margin: -2px 0 10px;
}

/* Savings badge — top-right of product image */
.savings-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 7px 14px;
  background: var(--brass);
  color: var(--navy);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--body);
  box-shadow: 0 6px 18px rgba(184, 152, 89, 0.4);
  z-index: 2;
  white-space: nowrap;
}

/* Product attributes pill row */
.product-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 14px;
}
.product-attrs .attr-dot {
  color: var(--rule);
  font-weight: 400;
}

/* MSRP strikethrough + Memorial Day Price refined */
.product-pricing { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 8px; }
.msrp-range {
  color: var(--ink-mute);
  font-size: 0.85rem;
  text-decoration: line-through;
  font-family: var(--body);
}
.product-pricing .our-price {
  font-family: var(--display);
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Brand-identity tagline */
.product-tagline {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 4px 0 16px;
  line-height: 1.4;
}

/* Card hover polish */
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--rule);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
  border-color: var(--brass);
}
.product-card:hover .product-cta {
  background: var(--oxblood);
}

/* Unified financing note below grid */
.product-grid-footer {
  margin-top: 36px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-family: var(--display);
  font-style: italic;
}
.product-grid-footer .accent { color: var(--brass-deep); font-weight: 600; font-style: normal; }

/* ============================================================ */
/* MEMORIAL DAY CTA UPDATES                                      */
/* ============================================================ */
.btn-md-primary {
  background: var(--oxblood);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(139, 21, 56, 0.28);
}
.btn-md-primary:hover {
  background: var(--oxblood-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ============================================================ */
/* STICKY MOBILE CALL BAR — older demo conversion                */
/* ============================================================ */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid var(--brass);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-call-bar .sticky-label {
  font-family: var(--display);
  font-style: italic;
  color: var(--brass-light);
  font-size: 0.85rem;
  margin-right: auto;
  letter-spacing: 0.02em;
}
.sticky-call-bar .sticky-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--brass);
  color: var(--navy);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.sticky-call-bar .sticky-call svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============================================================ */
/* MEMORIAL DAY FOOTER BAND                                      */
/* ============================================================ */
.memorial-tribute {
  background: var(--navy-deep);
  border-top: 1px solid rgba(139, 21, 56, 0.4);
  padding: 16px 0;
  text-align: center;
  color: rgba(250, 247, 242, 0.62);
  font-size: 0.85rem;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: 0.02em;
}
.memorial-tribute .accent { color: var(--brass-light); }

/* ============================================================ */
/* FORM STATES — success / error inline feedback                 */
/* ============================================================ */
.form-message {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}
.form-message.is-shown { display: block; }
.form-message.is-success {
  background: rgba(47, 111, 79, 0.08);
  border: 1px solid rgba(47, 111, 79, 0.4);
  color: var(--success);
}
.form-message.is-success strong { color: var(--success); }
.form-message.is-error {
  background: rgba(155, 44, 44, 0.06);
  border: 1px solid rgba(155, 44, 44, 0.35);
  color: var(--error);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================ */
/* HOW IT WORKS                                                   */
/* ============================================================ */
.how-it-works {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.how-it-works h2 { text-align: center; margin-bottom: 12px; }
.how-it-works .section-lede {
  text-align: center; max-width: 56ch; margin: 0 auto 48px;
  color: var(--ink-soft); font-size: 1.05rem;
}
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .how-it-works-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
.how-step {
  text-align: center;
  padding: 8px 14px;
}
.how-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-warm);
  color: var(--brass-deep);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid var(--rule);
}
.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================ */
/* AWARDS RIBBON — trust band addon                              */
/* ============================================================ */
.awards-ribbon {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.awards-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 36px;
}
.awards-ribbon-inner .award-text {
  flex: 1 1 320px;
  text-align: center;
}
.awards-ribbon img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 2px 4px rgba(11, 31, 58, 0.08));
}
.awards-ribbon img.award-portrait {
  height: 72px;
}
.award-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 4px;
  transition: transform .18s ease, filter .18s ease;
  text-decoration: none;
}
.award-link:hover img,
.award-link:focus-visible img {
  opacity: 1;
  filter: drop-shadow(0 4px 10px rgba(11, 31, 58, 0.18));
}
.award-link:hover {
  transform: translateY(-1px);
}
.award-link:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}
.awards-ribbon .award-text {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.95rem;
  max-width: 32ch;
  line-height: 1.4;
}
.awards-ribbon .award-text strong {
  font-style: normal;
  color: var(--navy);
  display: block;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  margin-bottom: 2px;
}
/* ============================================================ */
/* LOCATION CARD — BANNER MODIFIER (NY only)                    */
/* Stacks the layout for Mike's full-bleed banner composite     */
/* (logo + storefront + Mike + awards baked in). FL keeps the   */
/* default side-by-side layout.                                 */
/* ============================================================ */
.location-card-v2--banner {
  grid-template-columns: 1fr;
}
.location-image-frame--banner {
  min-height: 0;
  position: relative;
  background: var(--cream);
}
.location-image-frame--banner img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Suppress the dark gradient + overlay pill (banner has its own
   "Family-Owned 2013" badge baked in — don't double up). */
.location-image-frame--banner::after { content: none; display: none; }
.location-image-frame--banner .image-overlay-pill { display: none; }

@media (max-width: 720px) {
  /* Mobile: wide Best-of-LI image on row 1, caption on row 2, two TC badges
     side-by-side on row 3. Matches desktop order (LI → text → TC). */
  .awards-ribbon-inner {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    gap: 14px 16px;
    padding: 4px 0;
  }
  .awards-ribbon-inner > .award-link--wide  { grid-column: 1 / -1; grid-row: 1; justify-self: center; }
  .awards-ribbon-inner > .award-text        { grid-column: 1 / -1; grid-row: 2; text-align: center; padding: 0 12px; max-width: 36ch; margin: 0 auto; font-size: 0.92rem; }
  .awards-ribbon-inner > .award-link--tall:nth-of-type(2) { grid-column: 1; grid-row: 3; justify-self: end; }
  .awards-ribbon-inner > .award-link--tall:nth-of-type(3) { grid-column: 2; grid-row: 3; justify-self: start; }
  .awards-ribbon .award-text strong { font-size: 1.04rem; }
  .award-link--wide img { max-width: 240px; }
  .award-link--tall img { max-height: 150px; }
}

/* ============================================================ */
/* GOOGLE MAPS EMBED                                             */
/* ============================================================ */
.map-embed-wrap {
  margin-top: 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  background: var(--cream-warm);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-caption {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin: 14px 0 0;
}
@media (max-width: 720px) {
  .map-embed-wrap iframe { height: 280px; }
}

/* Hero override — refine for the new editorial photo */
.hero {
  min-height: clamp(580px, 80vh, 820px);
}

/* ============================================================ */
/* PATRIOTIC ACCENTS — Memorial Day tribute                      */
/* ============================================================ */
.flag-divider {
  display: flex;
  align-items: stretch;
  height: 4px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.flag-divider .stripe-oxblood { flex: 1; background: var(--oxblood); }
.flag-divider .stripe-cream { flex: 1; background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.flag-divider .stripe-navy { flex: 1; background: var(--navy); }

.honor-eyebrow {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: 18px 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
  background:
    linear-gradient(90deg, rgba(6, 20, 39, 0.78) 0%, rgba(6, 20, 39, 0.35) 30%, rgba(6, 20, 39, 0.35) 70%, rgba(6, 20, 39, 0.78) 100%),
    url('/mikey-mattress/memorial-day-shared/img/tribute-bg.jpg');
  background-size: cover, 100% auto;
  background-position: center, center 22%;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.honor-eyebrow .text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.honor-eyebrow > * { position: relative; z-index: 1; }
.honor-eyebrow .star {
  color: var(--brass);
  margin: 0 8px;
  font-size: 0.85em;
}
.honor-eyebrow .text { color: rgba(250, 247, 242, 0.92); }
.honor-eyebrow strong { color: var(--brass-light); font-style: normal; font-weight: 600; }

/* Memorial Day Tribute section */
.md-tribute {
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at center, rgba(11, 31, 58, 0.78) 0%, rgba(6, 20, 39, 0.94) 65%, rgba(6, 20, 39, 0.98) 100%),
    url('/mikey-mattress/memorial-day-shared/img/tribute-bg.jpg');
  background-size: cover, cover;
  background-position: center, center 30%;
  background-attachment: scroll, scroll;
}
@media (min-width: 1024px) {
  .md-tribute { background-attachment: scroll, fixed; }
}
.md-tribute::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.md-tribute::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 39, 0.18) 0%, transparent 30%, transparent 70%, rgba(6, 20, 39, 0.45) 100%);
  pointer-events: none;
  z-index: 0;
}
.md-tribute .wrap { position: relative; z-index: 1; }
.md-tribute .tribute-body strong { color: var(--cream); }
.md-tribute .wrap { position: relative; }
.md-tribute .tribute-star {
  display: inline-block;
  font-size: 2rem;
  color: var(--brass);
  margin-bottom: 14px;
  letter-spacing: 0.5em;
}
.md-tribute h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-family: var(--display);
  font-weight: 500;
  margin-bottom: 26px;
}
.md-tribute h2 .accent { font-style: italic; color: var(--brass-light); }
.md-tribute .tribute-body {
  max-width: 56ch;
  margin: 0 auto 22px;
  color: rgba(250, 247, 242, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: var(--display);
  font-weight: 400;
}
.md-tribute .tribute-signature {
  margin-top: 28px;
  padding-top: 22px;
  font-family: var(--display);
  font-style: italic;
  color: var(--brass-light);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.md-tribute .tribute-signature::before {
  content: "";
  display: block;
  width: 60px; height: 1px;
  background: var(--brass);
  margin: 0 auto 16px;
}

.md-tribute .tribute-honor-offer {
  margin: 36px auto 0;
  max-width: 520px;
  padding: 22px 28px;
  border: 1px solid rgba(201, 168, 106, 0.42);
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.55), rgba(11, 31, 58, 0.78)),
    linear-gradient(180deg, rgba(201, 168, 106, 0.06), rgba(201, 168, 106, 0.02));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(250, 247, 242, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}
.md-tribute .tribute-honor-offer::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--brass);
  border-radius: 2px;
}
.md-tribute .tribute-honor-offer .honor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  background: var(--brass-light);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.md-tribute .tribute-honor-offer .honor-badge::before {
  content: "★";
  font-size: 0.78rem;
  line-height: 1;
}
.md-tribute .tribute-honor-offer p {
  margin: 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 44ch;
}
.md-tribute .tribute-honor-offer p strong {
  color: var(--brass-light);
  display: block;
  margin-bottom: 4px;
  font-size: 1.04rem;
  letter-spacing: 0.005em;
}
@media (max-width: 560px) {
  .md-tribute .tribute-honor-offer {
    margin-top: 30px;
    padding: 20px 22px;
  }
  .md-tribute .tribute-honor-offer p { font-size: 0.94rem; }
}

/* Map facade — speed-first lazy load */
.map-facade {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  background: var(--cream-warm);
  max-width: 900px;
  margin: 32px auto 0;
  cursor: pointer;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-facade .map-placeholder {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.04) 0%, rgba(201, 168, 106, 0.08) 100%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(11, 31, 58, 0.04) 18px 19px),
    var(--cream-warm);
  width: 100%; height: 100%;
  min-height: 380px;
}
.map-facade .pin-icon {
  width: 56px; height: 56px;
  fill: var(--oxblood);
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(139, 21, 56, 0.25));
}
.map-facade .map-title {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.map-facade .map-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.map-facade .map-load-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--body);
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.map-facade .map-load-btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.map-facade .map-load-btn svg { width: 16px; height: 16px; }
.map-facade iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-facade.loaded .map-placeholder { display: none; }

@media (max-width: 720px) {
  .map-facade { min-height: 280px; }
  .map-facade iframe { height: 280px; }
  .map-facade .map-placeholder { min-height: 280px; padding: 28px 16px; }
}
.hero::before {
  background: linear-gradient(180deg, rgba(6, 20, 39, 0.55) 0%, rgba(6, 20, 39, 0.72) 70%, rgba(6, 20, 39, 0.92) 100%);
}

/* ============================================================ */
/* FEATURED PRODUCTS V5.2 — capsule cards with brand-tinted bg  */
/* ============================================================ */
.products-section .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card.product-card-feature {
  position: relative;
  border-radius: 220px 220px 28px 28px;
  background: var(--card-tint, var(--cream-warm));
  border: 1px solid rgba(11, 31, 58, 0.05);
  box-shadow:
    0 10px 32px rgba(11, 31, 58, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  overflow: hidden;
  padding: 34px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card.product-card-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 44px rgba(11, 31, 58, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Per-card brand-tied accent tints — muted, luxurious */
.product-card.tint-midnight { --card-tint: #E5EAF3; }
.product-card.tint-aurora   { --card-tint: #DCEAEF; }
.product-card.tint-sand     { --card-tint: #F2E9D7; }
.product-card.tint-sage     { --card-tint: #E5E8DA; }

/* Brand mark at top — centered, prominent */
.product-card.product-card-feature .product-brand,
.product-card.product-card-feature .product-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  min-height: 32px;
  max-height: 38px;
}
.product-card.product-card-feature .product-brand {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}
.product-card.product-card-feature .product-brand-logo {
  width: auto;
  max-width: 140px;
  max-height: 30px;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
}
/* Kingsdown logo runs visually smaller — bump just this one */
.product-card.tint-sage .product-brand-logo {
  max-height: 46px;
  max-width: 180px;
}
.product-card.tint-sage .product-brand,
.product-card.tint-sage .product-brand-logo {
  max-height: 50px;
}
.product-card.product-card-feature .product-brand-meta {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.55);
  font-weight: 700;
  text-align: center;
  margin: -6px 0 12px;
}

/* Product name — display serif, smaller weight */
.product-card.product-card-feature .product-name {
  font-family: var(--display);
  font-size: 1.18rem;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Attribute pills — individual pill chips */
.product-card.product-card-feature .product-attrs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  font-family: var(--body);
}
.product-card.product-card-feature .product-attrs > span:not(.attr-dot) {
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.product-card.product-card-feature .product-attrs .attr-dot { display: none; }

/* Product image — floating, NO white box, drop-shadow lifts it off the tint */
.product-card.product-card-feature .product-img-real {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 22px;
  padding: 8px 4px 0;
  overflow: visible;
}
.product-card.product-card-feature .product-img-real img {
  max-width: 86%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
  filter: drop-shadow(0 18px 32px rgba(11, 31, 58, 0.26));
  transition: transform 0.45s ease, filter 0.45s ease;
}
.product-card.product-card-feature:hover .product-img-real img {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 22px 38px rgba(11, 31, 58, 0.32));
}

/* Savings badge — two-line floating ribbon, brass-on-oxblood w/ glow */
.product-card.product-card-feature .savings-badge {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 9px 18px 10px;
  background:
    linear-gradient(180deg, #A0163F 0%, var(--oxblood) 100%);
  color: var(--cream);
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 106, 0.55);
  box-shadow:
    0 8px 22px rgba(139, 21, 56, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2);
  z-index: 3;
  white-space: nowrap;
  line-height: 1;
}
.product-card.product-card-feature .savings-badge .badge-label {
  font-family: var(--body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.product-card.product-card-feature .savings-badge .badge-pct {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brass-light);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
  line-height: 1;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .product-card.product-card-feature .savings-badge {
    top: 16px;
    padding: 7px 14px 8px;
  }
  .product-card.product-card-feature .savings-badge .badge-pct { font-size: 1.2rem; }
  .product-card.product-card-feature .savings-badge .badge-label { font-size: 0.54rem; }
}

/* Pricing — centered, smaller, gentler */
.product-card.product-card-feature .product-pricing {
  align-items: center;
  text-align: center;
  margin-bottom: 14px;
}
.product-card.product-card-feature .msrp-range {
  color: rgba(11, 31, 58, 0.5);
  font-size: 0.78rem;
  text-decoration: line-through;
  letter-spacing: 0.02em;
}
.product-card.product-card-feature .product-pricing .our-price {
  font-family: var(--display);
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
}

/* Tagline */
.product-card.product-card-feature .product-tagline {
  font-family: var(--display);
  font-style: italic;
  color: rgba(11, 31, 58, 0.6);
  font-size: 0.88rem;
  margin: 0 0 18px;
  line-height: 1.4;
  text-align: center;
}

/* CTA — clean pill, pushed to bottom */
.product-card.product-card-feature .product-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.015em;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.product-card.product-card-feature:hover .product-cta {
  background: var(--oxblood);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139, 21, 56, 0.32);
}

/* Mobile: shorter capsule, tighter padding */
@media (max-width: 720px) {
  .product-card.product-card-feature {
    border-radius: 180px 180px 24px 24px;
    padding: 26px 20px 22px;
  }
  .product-card.product-card-feature .product-name { font-size: 1.05rem; }
  .product-card.product-card-feature .savings-badge {
    top: 18px; right: 18px;
    padding: 5px 11px;
    font-size: 0.6rem;
  }
}


/* ============================================================ */
/* LOCATION CARD V5.2 — premium showroom card + visit perks     */
/* ============================================================ */
.location-card-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 48px 0 36px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 50px rgba(11, 31, 58, 0.10);
}
@media (max-width: 880px) {
  .location-card-v2 { grid-template-columns: 1fr; }
}

.location-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.location-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(11, 31, 58, 0.45) 100%);
  pointer-events: none;
}
.image-overlay-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 12px;
  background: rgba(11, 31, 58, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--cream);
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 106, 0.45);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.image-overlay-pill .dot {
  width: 8px; height: 8px;
  background: var(--brass-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(201, 168, 106, 0.7);
  flex-shrink: 0;
}

.location-info-card {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 480px) {
  .location-info-card { padding: 28px 22px 26px; }
}
.location-info-card .info-header h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.location-info-card .info-header .addr {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.45;
}
.location-info-card .info-header .loc-icon {
  width: 18px; height: 18px;
  color: var(--brass-deep);
  flex-shrink: 0;
}

.hours-block {
  background: var(--cream-warm);
  border-radius: var(--r-md);
  padding: 18px 22px 8px;
  border: 1px solid rgba(201, 168, 106, 0.22);
}
.hours-block .hours-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.hours-block .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-block .hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}
.hours-block .hours-list li:nth-last-child(2) { border-bottom: 0; }
.hours-block .hours-list .day { font-weight: 500; }
.hours-block .hours-list .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-block .hours-list .hours-md-highlight {
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.22) 0%, rgba(201, 168, 106, 0.08) 100%);
  margin: 6px -22px -8px;
  padding: 11px 22px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  border-bottom: none;
  border-top: 1px solid rgba(201, 168, 106, 0.35);
}
.hours-block .hours-list .hours-md-highlight .day {
  color: var(--navy);
  font-weight: 700;
}
.hours-block .hours-list .hours-md-highlight .day .star {
  color: var(--brass-deep);
  margin-right: 4px;
}
.hours-block .hours-list .hours-md-highlight .time {
  color: var(--brass-deep);
  font-weight: 700;
}

.location-info-card .cta-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.location-info-card .cta-stack .cta-primary,
.location-info-card .cta-stack .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  flex: 1;
  min-width: 0;
}
.location-info-card .cta-stack .cta-primary {
  background: var(--oxblood);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(139, 21, 56, 0.34);
  flex-basis: 240px;
}
.location-info-card .cta-stack .cta-primary:hover {
  background: var(--oxblood-deep, #6e1133);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(139, 21, 56, 0.44);
  color: var(--cream);
}
.location-info-card .cta-stack .cta-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  flex-basis: 180px;
}
.location-info-card .cta-stack .cta-secondary:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
}
.location-info-card .cta-stack svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* VISIT PERKS — what to expect mini-feature row */
.visit-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.visit-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: var(--cream-warm);
  border: 1px solid rgba(201, 168, 106, 0.18);
  border-radius: var(--r-md);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.visit-perks li:hover {
  transform: translateY(-2px);
  border-color: var(--brass);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.06);
}
.visit-perks .perk-icon {
  width: 28px; height: 28px;
  color: var(--brass-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.visit-perks strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.visit-perks span {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============================================================ */
/* COUNTDOWN BAR — site-wide urgency strip at top                */
/* ============================================================ */
.countdown-bar {
  background: linear-gradient(180deg, #0d2547 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201, 168, 106, 0.32);
  position: relative;
  z-index: 10;
}
.countdown-bar[hidden] { display: none; }
.countdown-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.78);
  font-weight: 600;
  font-size: 0.66rem;
  font-family: var(--body);
}
.countdown-display {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.cd-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 36px;
}
.cd-num {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brass-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cd-unit {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  font-weight: 600;
  margin-top: 5px;
}
.countdown-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  min-height: 36px;
  background: var(--oxblood);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 106, 0.42);
  box-shadow: 0 3px 10px rgba(139, 21, 56, 0.4);
  transition: transform .15s ease, background .15s ease;
}
.countdown-cta:hover {
  background: #9d1c47;
  transform: translateY(-1px);
  color: var(--cream);
}
@media (max-width: 600px) {
  .countdown-bar { gap: 10px 14px; padding: 8px 12px; }
  .countdown-label { font-size: 0.58rem; }
  .cd-num { font-size: 1.15rem; }
  .cd-unit { font-size: 0.5rem; }
  .countdown-display { gap: 10px; }
  .countdown-cta { font-size: 0.66rem; padding: 10px 13px; min-height: 38px; }
  .cd-block { min-width: 28px; }
}

/* ============================================================ */
/* FAQ SECTION — accordion w/ details/summary                    */
/* ============================================================ */
.faq-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid var(--rule);
}
.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.faq-item:hover {
  border-color: rgba(201, 168, 106, 0.5);
}
.faq-item[open] {
  border-color: var(--brass);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.07);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-size: 1.04rem;
  color: var(--navy);
  font-weight: 500;
  gap: 16px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  transition: background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.55rem;
  color: var(--brass-deep);
  transition: transform 0.22s ease, color 0.22s ease;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--oxblood);
}
.faq-item summary:hover { background: var(--cream-warm); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: -2px;
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
  animation: faqOpen 0.22s ease;
}
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--navy); font-weight: 600; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .faq-item summary { padding: 16px 20px; font-size: 0.98rem; }
  .faq-answer { padding: 0 20px 20px; font-size: 0.9rem; }
}

/* ============================================================ */
/* REVIEWS V3 — dual-marquee adapted from shadcn testimonials-6 */
/* ============================================================ */
.reviews-v3 {
  background: var(--cream);
  padding-top: 64px;
  padding-bottom: 72px;
  overflow: hidden;
}
.reviews-v3-head {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-v3-head .r-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  margin: 0 0 14px;
  font-family: var(--body);
}
.reviews-v3-head .r-headline {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 auto 12px;
}
.reviews-v3-head .r-subhead {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

.reviews-marquee {
  position: relative;
}
.reviews-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.reviews-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(250, 247, 242, 0) 100%);
}
.reviews-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--cream) 0%, rgba(250, 247, 242, 0) 100%);
}
@media (max-width: 600px) {
  .reviews-fade { width: 40px; }
}

.reviews-row {
  overflow: hidden;
  padding: 12px 0;
}
.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviews-slide 60s linear infinite;
  will-change: transform;
}
.reviews-track-reverse {
  animation-direction: reverse;
  animation-duration: 58s;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }

@keyframes reviews-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 9px), 0, 0); }
}

.r-card {
  flex-shrink: 0;
  width: 360px;
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  padding: 26px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(11, 31, 58, 0.04);
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.r-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.09);
  border-color: rgba(201, 168, 106, 0.35);
}
.r-quote-mark {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.55;
  color: var(--brass);
  font-weight: 700;
  display: block;
  margin: -4px 0 -22px;
  user-select: none;
}
.r-text {
  font-family: var(--display);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.r-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.r-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3358 100%);
  color: var(--brass-light);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(11, 31, 58, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.r-name {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.r-meta {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin: 2px 0 0;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .r-card { width: 300px; padding: 22px 22px 20px; gap: 14px; }
  .r-quote-mark { font-size: 3.2rem; margin: -2px 0 -18px; }
  .r-text { font-size: 0.9rem; -webkit-line-clamp: 5; line-clamp: 5; }
  .reviews-track { animation-duration: 48s; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .reviews-row:nth-child(3) .reviews-track .r-card[aria-hidden="true"] { display: none; }
  .reviews-row .reviews-track .r-card[aria-hidden="true"] { display: none; }
  .reviews-fade { display: none; }
}

/* ============================================================ */
/* SOCIAL PROOF STRIP — curated weekly activity (Pillar 5)      */
/* ============================================================ */
.social-strip {
  background: linear-gradient(180deg, var(--navy) 0%, #0e2a4f 100%);
  color: var(--cream);
  padding: 36px 0;
  border-top: 1px solid rgba(201, 168, 106, 0.18);
  border-bottom: 1px solid rgba(201, 168, 106, 0.18);
}
.social-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.social-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.social-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.social-text strong {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
}
.social-text span {
  color: rgba(250, 247, 242, 0.65);
  font-size: 0.82rem;
}
.social-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 106, 0.4) 50%, transparent 100%);
}
.social-recent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--r-md);
}
.social-pulse {
  width: 10px;
  height: 10px;
  background: #5cd884;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(92, 216, 132, 0.7);
  animation: socialPulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes socialPulse {
  0%   { box-shadow: 0 0 0 0 rgba(92, 216, 132, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(92, 216, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 216, 132, 0); }
}
.social-recent-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.social-recent-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 700;
  margin-bottom: 2px;
}
.social-recent-text strong {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--display);
}
.social-recent-meta {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.6);
  margin-top: 2px;
}
@media (max-width: 880px) {
  .social-strip-inner { gap: 16px 22px; }
  .social-num { font-size: 2rem; }
  .social-text strong { font-size: 0.88rem; }
  .social-text span { font-size: 0.76rem; }
  .social-divider { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .social-pulse { animation: none; box-shadow: 0 0 0 3px rgba(92, 216, 132, 0.25); }
}

/* ============================================================ */
/* RISK-FREE GUARANTEE — 3-card promise section (Pillar 6)      */
/* ============================================================ */
.guarantee-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.guarantee-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  transform: translateX(-50%);
  border-radius: 0 0 3px 3px;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.10);
  border-color: var(--brass);
}
.guarantee-card .g-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-warm) 0%, rgba(201, 168, 106, 0.18) 100%);
  border: 1px solid rgba(201, 168, 106, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.guarantee-card .g-icon {
  width: 28px;
  height: 28px;
  color: var(--brass-deep);
}
.guarantee-card h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.guarantee-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 30ch;
}
.guarantee-card .g-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.4;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  padding-top: 12px;
  margin-top: auto;
  width: 100%;
}
@media (max-width: 600px) {
  .guarantee-card { padding: 26px 22px 22px; }
  .guarantee-card h3 { font-size: 1.08rem; }
}

/* ============================================================ */
/* SKIP LINK — a11y keyboard nav (WCAG 2.4.1)                   */
/* ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  top: 0;
  outline: 2px solid var(--brass-light);
  outline-offset: 2px;
  color: var(--cream);
}

/* ============================================================ */
/* SMOOTH SCROLL — global anchor-link navigation                */
/* ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ============================================================ */
/* SCROLL REVEAL ANIMATIONS — sections fade in as you scroll    */
/* ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  /* Staggered child reveals for grids — cards lift in sequence */
  [data-reveal-children] > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal-children].is-revealed > * {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal-children].is-revealed > *:nth-child(1) { transition-delay: 0.00s; }
  [data-reveal-children].is-revealed > *:nth-child(2) { transition-delay: 0.08s; }
  [data-reveal-children].is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
  [data-reveal-children].is-revealed > *:nth-child(4) { transition-delay: 0.24s; }
  [data-reveal-children].is-revealed > *:nth-child(5) { transition-delay: 0.32s; }
  [data-reveal-children].is-revealed > *:nth-child(6) { transition-delay: 0.40s; }
}

/* ============================================================ */
/* MICRO-INTERACTIONS — polish layer                            */
/* ============================================================ */
/* CTA buttons in hero get a subtle press feel */
.hero-ctas .btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hero-ctas .btn:active { transform: translateY(1px); }

/* Stat numbers in social strip subtly scale on section reveal */
@media (prefers-reduced-motion: no-preference) {
  .social-strip.is-revealed .social-num {
    animation: socialNumLift 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes socialNumLift {
    from { opacity: 0; transform: translateY(10px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .social-strip.is-revealed .social-num:nth-of-type(1) { animation-delay: 0.05s; }
  .social-strip.is-revealed .social-num:nth-of-type(2) { animation-delay: 0.15s; }
  .social-strip.is-revealed .social-num:nth-of-type(3) { animation-delay: 0.25s; }
}

/* Featured product cards: subtle lift on tap (mobile feel) */
@media (hover: none) {
  .product-card.product-card-feature:active {
    transform: translateY(-2px) scale(0.99);
    transition: transform 0.1s ease;
  }
}

/* Headline accent — when hero appears, brass accent slides in */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .accent {
    display: inline-block;
    animation: accentSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  }
  @keyframes accentSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* Page chrome respects reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-children] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================ */
/* FOOTER POLISH — logo image + centered copyright              */
/* ============================================================ */
.site-footer .footer-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin: 0 0 14px;
  filter: brightness(1.08);
}
@media (max-width: 720px) {
  .site-footer .footer-logo { height: 52px; }
}

/* Copyright row must NOT inherit footer's grid layout */
.site-footer .wrap.legal {
  display: block;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================ */
/* VIDEO PAUSE BUTTON — bottom-left of phone-frame              */
/* ============================================================ */
.testimonial-video-wrap .pause-toggle {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.7);
  border: 1px solid rgba(201, 168, 106, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--cream);
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-video-wrap .pause-toggle:hover {
  background: rgba(11, 31, 58, 0.92);
  transform: scale(1.06);
}
.testimonial-video-wrap .pause-toggle:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 2px;
}
.testimonial-video-wrap .pause-toggle svg { width: 18px; height: 18px; }

/* ============================================================ */
/* MICRO-ANIMATIONS — checkmarks, logos, stars                  */
/* ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Animated check icons in offer band — pop + tick in sequentially */
  .offer-band .offer-points .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brass);
    color: var(--navy);
    font-weight: 800;
    font-size: 0.85rem;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  }
  .offer-band.is-revealed .offer-points .check,
  .offer-points.is-revealed .check {
    transform: scale(1);
    opacity: 1;
  }
  .offer-points.is-revealed > li:nth-child(1) .check { transition-delay: 0.10s; }
  .offer-points.is-revealed > li:nth-child(2) .check { transition-delay: 0.22s; }
  .offer-points.is-revealed > li:nth-child(3) .check { transition-delay: 0.34s; }
  .offer-points.is-revealed > li:nth-child(4) .check { transition-delay: 0.46s; }

  /* Brand strip — stagger logos sliding in */
  .brands-v2 .brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .brands-v2[data-reveal-children] .brand-row > * {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition:
      opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .brands-v2[data-reveal-children].is-revealed .brand-row > * {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(1) { transition-delay: 0.00s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(2) { transition-delay: 0.05s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(3) { transition-delay: 0.10s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(4) { transition-delay: 0.15s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(5) { transition-delay: 0.20s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(6) { transition-delay: 0.25s; }
  .brands-v2[data-reveal-children].is-revealed .brand-row > *:nth-child(7) { transition-delay: 0.30s; }

  /* Date-band stars — subtle twinkle, alternating sides */
  .md-date-band .star {
    display: inline-block;
    animation: starTwinkle 3.6s ease-in-out infinite;
    will-change: opacity, transform;
  }
  .md-date-band .star:nth-of-type(2) { animation-delay: 1.8s; }
  @keyframes starTwinkle {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.15); }
  }

  /* Brass top accent on countdown bar — soft pulse during MD weekend */
  .countdown-bar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
    opacity: 0;
    animation: brassSweep 6s ease-in-out infinite;
  }
  @keyframes brassSweep {
    0%, 100% { opacity: 0; transform: translateX(-25%); }
    50%      { opacity: 0.7; transform: translateX(25%); }
  }
  .countdown-bar { position: relative; overflow: hidden; }

  /* Mobile boost — gentle drift on hero bg img for immersive depth */
  @media (max-width: 720px) {
    .hero-bg-img {
      animation: heroDrift 22s ease-in-out infinite alternate;
      transform-origin: center;
    }
    @keyframes heroDrift {
      from { transform: scale(1.04) translateY(0); }
      to   { transform: scale(1.06) translateY(-1.5%); }
    }
  }
}

/* ============================================================ */
/* SCROLL-TRIGGERED ANIMATIONS — extended polish layer          */
/* ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* ─── HERO entrance stagger (page-load animation, no scroll trigger) ─── */
  .hero .hero-eyebrow,
  .hero h1,
  .hero-lede,
  .hero-ctas,
  .hero-trust {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero .hero-eyebrow { animation-delay: 0.10s; }
  .hero h1            { animation-delay: 0.28s; }
  .hero-lede          { animation-delay: 0.46s; }
  .hero-ctas          { animation-delay: 0.64s; }
  .hero-trust         { animation-delay: 0.82s; }
  @keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTION HEADER stagger (eyebrow → h2 → section-lede) ─── */
  [data-reveal] > .wrap > .eyebrow,
  [data-reveal] > .wrap > h2,
  [data-reveal] > .wrap > .section-lede,
  [data-reveal] > .wrap > h3 {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal].is-revealed > .wrap > .eyebrow      { opacity: 1; transform: none; transition-delay: 0.05s; }
  [data-reveal].is-revealed > .wrap > h2            { opacity: 1; transform: none; transition-delay: 0.16s; }
  [data-reveal].is-revealed > .wrap > .section-lede { opacity: 1; transform: none; transition-delay: 0.28s; }
  [data-reveal].is-revealed > .wrap > h3            { opacity: 1; transform: none; transition-delay: 0.16s; }

  /* ─── FEATURED PARTNER split-reveal (image L, text R) ─── */
  .featured-partner[data-reveal] .partner-image {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .featured-partner[data-reveal] .partner-image + div {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
  }
  .featured-partner[data-reveal].is-revealed .partner-image,
  .featured-partner[data-reveal].is-revealed .partner-image + div {
    opacity: 1;
    transform: translateX(0);
  }

  /* ─── PHONE FRAME rise with bounce ─── */
  .testimonial-video-section[data-reveal] .phone-frame {
    opacity: 0;
    transform: translateY(36px) rotate(-1deg);
    transition: opacity 0.85s cubic-bezier(0.16, 1.2, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1.2, 0.3, 1);
  }
  .testimonial-video-section[data-reveal].is-revealed .phone-frame {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
  .testimonial-video-section[data-reveal] .testimonial-quote {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.25s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
  }
  .testimonial-video-section[data-reveal].is-revealed .testimonial-quote {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── AWARDS BADGES scale-pop ─── */
  .awards-ribbon[data-reveal-children] .award-link {
    opacity: 0;
    transform: scale(0.78);
    transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .awards-ribbon[data-reveal-children].is-revealed .award-link {
    opacity: 1;
    transform: scale(1);
  }
  .awards-ribbon[data-reveal-children].is-revealed .award-link:nth-of-type(1) { transition-delay: 0.08s; }
  .awards-ribbon[data-reveal-children].is-revealed .award-link:nth-of-type(2) { transition-delay: 0.22s; }

  /* ─── LOCATION CARD split-reveal ─── */
  .location-section[data-reveal] .location-image-frame {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .location-section[data-reveal] .location-info-card {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  }
  .location-section[data-reveal].is-revealed .location-image-frame,
  .location-section[data-reveal].is-revealed .location-info-card {
    opacity: 1;
    transform: translateX(0);
  }

  /* ─── FAQ items stagger ─── */
  .faq-section[data-reveal] .faq-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.10s; }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.18s; }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.26s; }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.34s; }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.42s; }
  .faq-section[data-reveal].is-revealed .faq-item:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.50s; }

  /* ─── FORM FIELDS stagger ─── */
  .form-section[data-reveal] .reserve-form .field,
  .form-section[data-reveal] .reserve-form button {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .form-section[data-reveal].is-revealed .reserve-form .field:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.05s; }
  .form-section[data-reveal].is-revealed .reserve-form .field:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.13s; }
  .form-section[data-reveal].is-revealed .reserve-form .field:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.21s; }
  .form-section[data-reveal].is-revealed .reserve-form .field:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.29s; }
  .form-section[data-reveal].is-revealed .reserve-form .field:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.37s; }
  .form-section[data-reveal].is-revealed .reserve-form button { opacity: 1; transform: none; transition-delay: 0.45s; }

  /* ─── GUARANTEE CARDS — more dramatic entry ─── */
  .guarantee-grid > .guarantee-card {
    transform: translateY(28px) scale(0.95);
  }
  .guarantee-grid.is-revealed > .guarantee-card {
    transform: translateY(0) scale(1);
  }

  /* ─── MD TRIBUTE — slow, reverent fade with extra hold ─── */
  .md-tribute[data-reveal] .tribute-star,
  .md-tribute[data-reveal] .flag-divider,
  .md-tribute[data-reveal] h2,
  .md-tribute[data-reveal] .tribute-body,
  .md-tribute[data-reveal] .tribute-signature,
  .md-tribute[data-reveal] .tribute-honor-offer {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.0s ease, transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .md-tribute[data-reveal].is-revealed .tribute-star       { opacity: 0.8; transform: none; transition-delay: 0.0s; }
  .md-tribute[data-reveal].is-revealed .flag-divider       { opacity: 1; transform: none; transition-delay: 0.18s; }
  .md-tribute[data-reveal].is-revealed h2                  { opacity: 1; transform: none; transition-delay: 0.36s; }
  .md-tribute[data-reveal].is-revealed .tribute-body       { opacity: 1; transform: none; transition-delay: 0.54s; }
  .md-tribute[data-reveal].is-revealed .tribute-signature  { opacity: 1; transform: none; transition-delay: 0.72s; }
  .md-tribute[data-reveal].is-revealed .tribute-honor-offer { opacity: 1; transform: none; transition-delay: 0.90s; }
}

@media (prefers-reduced-motion: reduce) {
  /* Override every animation in this batch */
  .hero .hero-eyebrow, .hero h1, .hero-lede, .hero-ctas, .hero-trust,
  [data-reveal] > .wrap > *,
  .featured-partner[data-reveal] *,
  .testimonial-video-section[data-reveal] *,
  .awards-ribbon[data-reveal-children] *,
  .location-section[data-reveal] *,
  .faq-section[data-reveal] *,
  .form-section[data-reveal] *,
  .md-tribute[data-reveal] * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================ */
/* MIKE'S PROMISE — owner-signed trust block                    */
/* ============================================================ */
.mikes-promise {
  background:
    radial-gradient(ellipse at 50% 0%, #102B4F 0%, var(--navy) 60%, #061427 100%);
  color: var(--cream);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 106, 0.18);
  border-bottom: 1px solid rgba(201, 168, 106, 0.18);
}
.mikes-promise-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mikes-promise .promise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 700;
  margin-bottom: 22px;
}
.mikes-promise .promise-rule {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.mikes-promise h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 26px;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.mikes-promise .promise-body {
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.85);
  max-width: 56ch;
  margin: 0 auto 28px;
  font-weight: 400;
}
.mikes-promise .promise-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding-top: 18px;
  position: relative;
}
.mikes-promise .promise-signature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--brass);
}
.mikes-promise .promise-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--brass-light);
  font-weight: 600;
  letter-spacing: 0.005em;
}
.mikes-promise .promise-role {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 600;
}
@media (max-width: 600px) {
  .mikes-promise h2 { font-size: 1.4rem; }
  .mikes-promise .promise-body { font-size: 0.96rem; }
  .mikes-promise .promise-name { font-size: 1.25rem; }
  .mikes-promise .promise-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; }
  .mikes-promise .promise-rule { width: 24px; }
}

/* Scroll-reveal stagger for promise elements */
@media (prefers-reduced-motion: no-preference) {
  .mikes-promise[data-reveal] .promise-eyebrow,
  .mikes-promise[data-reveal] h2,
  .mikes-promise[data-reveal] .promise-body,
  .mikes-promise[data-reveal] .promise-signature {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mikes-promise[data-reveal].is-revealed .promise-eyebrow   { opacity: 1; transform: none; transition-delay: 0.05s; }
  .mikes-promise[data-reveal].is-revealed h2                 { opacity: 1; transform: none; transition-delay: 0.20s; }
  .mikes-promise[data-reveal].is-revealed .promise-body      { opacity: 1; transform: none; transition-delay: 0.40s; }
  .mikes-promise[data-reveal].is-revealed .promise-signature { opacity: 1; transform: none; transition-delay: 0.65s; }
}

/* ============================================================ */
/* OWNER ON THE FLOOR — pill above hours block in location card */
/* ============================================================ */
.owner-on-floor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.04) 0%, rgba(201, 168, 106, 0.10) 100%);
  border: 1px solid rgba(201, 168, 106, 0.32);
  border-radius: var(--r-md);
  margin: -4px 0 18px;
}
.owner-on-floor .oof-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5cd884;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(92, 216, 132, 0.7);
  animation: oofPulse 2.6s ease-out infinite;
}
@keyframes oofPulse {
  0%   { box-shadow: 0 0 0 0 rgba(92, 216, 132, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(92, 216, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 216, 132, 0); }
}
.owner-on-floor .oof-text {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
}
.owner-on-floor .oof-text strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .owner-on-floor .oof-pulse { animation: none; box-shadow: 0 0 0 3px rgba(92, 216, 132, 0.25); }
}

/* ============================================================ */
/* MIKE'S PROMISE — longevity tagline below signature           */
/* ============================================================ */
.mikes-promise .promise-longevity {
  margin: 24px auto 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(220, 194, 137, 0.78);
  text-align: center;
  max-width: 42ch;
  opacity: 0.92;
}
@media (max-width: 600px) {
  .mikes-promise .promise-longevity { font-size: 0.82rem; }
}

/* Reveal stagger — slot the longevity tagline into the existing sequence */
@media (prefers-reduced-motion: no-preference) {
  .mikes-promise[data-reveal] .promise-longevity {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mikes-promise[data-reveal].is-revealed .promise-longevity {
    opacity: 0.92;
    transform: none;
    transition-delay: 0.85s;
  }
}

/* ============================================================ */
/* GUARANTEE GRID — adapt to 4 cards cleanly                    */
/* ============================================================ */
@media (min-width: 980px) {
  .guarantee-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================ */
/* COMPLIANCE & FINE-PRINT UTILITIES — added 2026-05-18          */
/* FTC, TILA, TCPA, CCPA/GDPR, MAP-clean disclosures             */
/* ============================================================ */

/* Base fine-print: small, muted, generous line-height for legibility */
.fine-print {
  font-family: var(--body);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-mute);
  font-style: italic;
  margin: 0.6em 0 0;
  max-width: 64ch;
}

.fine-print a {
  color: var(--brass-deep);
  text-decoration: underline;
}

.fine-print a:hover {
  color: var(--navy);
}

/* Variant for placement directly under a card / card body — tighter spacing */
.fine-print--card {
  font-size: 0.72rem;
  padding: 10px 4px 0;
  border-top: 1px dashed rgba(184, 152, 89, 0.25);
  margin-top: 12px;
}

/* Variant for placement under a section — centered, wider */
.fine-print--section {
  text-align: center;
  max-width: 78ch;
  margin: 1.5em auto 0;
}

/* Variant for footer / compliance strip — slightly larger, no italic */
.fine-print--footer {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.62);
  max-width: none;
}

/* ============================================================ */
/* COMPLIANCE DISCLOSURE STRIP — sits above existing footer      */
/* ============================================================ */
.compliance-strip {
  background: var(--navy-deep);
  color: rgba(250, 247, 242, 0.7);
  padding: 28px 0;
  border-top: 1px solid rgba(184, 152, 89, 0.18);
}

.compliance-strip .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.compliance-strip h4 {
  color: var(--brass-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 6px;
  font-family: var(--body);
  font-weight: 700;
}

.compliance-strip .biz-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 720px) {
  .compliance-strip .biz-block {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.compliance-strip address {
  font-style: normal;
  color: rgba(250, 247, 242, 0.72);
}

.compliance-strip .compliance-row {
  padding-top: 10px;
  border-top: 1px solid rgba(184, 152, 89, 0.14);
  color: rgba(250, 247, 242, 0.55);
}

.compliance-strip a {
  color: var(--brass-light);
  text-decoration: underline;
}

.compliance-strip a:hover {
  color: #fff;
}

.compliance-strip ul.footer-legal-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.compliance-strip ul.footer-legal-nav li::after {
  content: "·";
  margin-left: 16px;
  color: rgba(184, 152, 89, 0.4);
}

.compliance-strip ul.footer-legal-nav li:last-child::after {
  content: "";
  margin: 0;
}

/* ============================================================ */
/* TCPA CONSENT CHECKBOX BLOCK on reserve form                   */
/* ============================================================ */
.tcpa-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  margin: 6px 0 14px;
  background: rgba(184, 152, 89, 0.06);
  border: 1px solid rgba(184, 152, 89, 0.22);
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.tcpa-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--brass);
  cursor: pointer;
}

.tcpa-consent label {
  flex: 1;
  cursor: pointer;
  font-weight: 400;
  color: var(--ink-soft);
}

.tcpa-consent a {
  color: var(--brass-deep);
  text-decoration: underline;
}

.tcpa-consent.is-error {
  background: rgba(180, 50, 50, 0.06);
  border-color: rgba(180, 50, 50, 0.45);
}

.tcpa-consent .tcpa-error-msg {
  display: none;
  color: #a83232;
  font-size: 0.78rem;
  margin-top: 4px;
}

.tcpa-consent.is-error .tcpa-error-msg {
  display: block;
}

/* ============================================================ */
/* COOKIE CONSENT BANNER — slide up from bottom, CSS animated    */
/* ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  color: var(--cream);
  border-top: 2px solid var(--brass);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-banner.is-shown {
  transform: translateY(0);
}

.cookie-banner .cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cookie-banner .cookie-text {
  flex: 1;
  min-width: 260px;
  color: rgba(250, 247, 242, 0.92);
}

.cookie-banner .cookie-text a {
  color: var(--brass-light);
  text-decoration: underline;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner button {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  letter-spacing: 0.02em;
}

.cookie-banner .cookie-accept {
  background: var(--brass);
  color: var(--navy);
  border-color: var(--brass);
}

.cookie-banner .cookie-accept:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}

.cookie-banner .cookie-reject {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.4);
}

.cookie-banner .cookie-reject:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}

@media (max-width: 600px) {
  .cookie-banner .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 16px;
  }
  .cookie-banner .cookie-actions {
    justify-content: center;
  }
  .cookie-banner .cookie-actions button {
    flex: 1;
  }
  /* Add bottom padding so the banner doesn't cover the sticky call bar */
  body.cookie-banner-visible .sticky-call-bar {
    bottom: 130px;
  }
}

/* ============================================================ */
/* TESTIMONIAL DISCLOSURE — discreet under testimonial blocks    */
/* ============================================================ */
.testimonial-disclosure {
  font-size: 0.76rem;
  font-style: italic;
  color: rgba(74, 74, 74, 0.72);
  text-align: center;
  margin: 18px auto 0;
  max-width: 64ch;
  padding: 0 20px;
  line-height: 1.5;
}

/* When placed inside the reviews section (dark or light), allow override */
.reviews-v3 .testimonial-disclosure {
  margin-top: 24px;
}

/* ============================================================ */
/* PRIVACY / TERMS PAGE STYLES                                   */
/* ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 22px 80px;
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
}

.legal-page h1 {
  font-family: var(--head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .legal-meta {
  color: var(--ink-mute);
  font-size: 0.86rem;
  margin: 0 0 32px;
  border-bottom: 1px solid rgba(184, 152, 89, 0.2);
  padding-bottom: 16px;
}

.legal-page h2 {
  font-family: var(--head);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 32px 0 10px;
}

.legal-page h3 {
  font-size: 1.02rem;
  color: var(--navy-soft);
  margin: 22px 0 6px;
}

.legal-page p, .legal-page li {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.legal-page ul {
  padding-left: 22px;
  margin: 6px 0 14px;
}

.legal-page a {
  color: var(--brass-deep);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--navy);
}

.legal-page .back-home {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.legal-page .back-home:hover {
  background: var(--navy-soft);
  color: var(--brass-light);
}

/* ============================================================ */
/* STICKY TOP STACK                                              */
/* Logo nav + countdown timer pinned to top on scroll;           */
/* promo banners below (md-date-band, honor-eyebrow) slide       */
/* up and disappear under the sticky stack.                      */
/* ============================================================ */
.sticky-stack {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
}

/* Site-header no longer needs its own sticky positioning —      */
/* the wrapper handles it. Keep all visual styling intact.       */
.sticky-stack .site-header {
  position: static;
  top: auto;
  z-index: auto;
}

/* Countdown bar stays inside the sticky stack — solid bg        */
/* ensures content scrolls cleanly behind it.                    */
.sticky-stack .countdown-bar {
  position: relative;
  z-index: 1;
}

/* Promo banners below the sticky stack scroll under it on       */
/* scroll. Lower z-index ensures they pass behind cleanly.       */
.md-date-band,
.honor-eyebrow {
  position: relative;
  z-index: 1;
}

/* Mobile refinement: keep the sticky stack reasonably tight     */
/* so it doesn't eat too much vertical space on small screens.   */
@media (max-width: 720px) {
  .sticky-stack .site-header .wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}



/* ============================================================ */
/* AWARD LINK VARIANTS — wide Best of LI + tall TC badges        */
/* Added 2026-05-20 night batch (Mike's updated awards images)   */
/* ============================================================ */
.awards-ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.award-link img {
  display: block;
  height: auto;
  border-radius: 8px;
}
.award-link--wide img {
  max-width: 320px;
  width: 100%;
}
.award-link--tall img {
  max-height: 180px;
  width: auto;
}
.award-text {
  flex: 1 1 220px;
  min-width: 200px;
}
@media (max-width: 720px) {
  .awards-ribbon-inner { gap: 16px; }
  .award-link--wide img { max-width: 240px; }
  .award-link--tall img { max-height: 120px; }
}
