/* ============================================================
   Boats Galore — style.css
   Mobile-first. No frameworks.
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --white:      #fafaf8;
  --gold:       #b8963e;
  --gold-dark:  #9a7830;
  --gold-light: #d4a855;
  --text:       #1e2a3a;
  --text-light: #5a6a7a;
  --bg-alt:     #f3f2ef;
  --border:     #ddd9d0;

  --font-display: 'Raleway', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(10, 22, 40, 0.10);
  --shadow-md: 0 4px 24px rgba(10, 22, 40, 0.14);

  --max-width: 1180px;
  --section-pad: 4rem 1.25rem;
}


/* ------------------------------------------------------------
   Reset / Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-dark);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Remove default list styles on role=list (accessibility pattern) */
[role="list"] {
  list-style: none;
}


/* ------------------------------------------------------------
   Layout Utilities
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding: var(--section-pad);
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-navy {
  background-color: var(--navy);
  color: var(--white);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 640px;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.section-sub-light {
  color: rgba(250, 250, 248, 0.72);
}

/* Shared eyebrow label — used across all sections */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* On warm-light backgrounds (testimonials) */
.eyebrow-light {
  color: var(--gold-dark);
}

/* On gold background (CTA banner) */
.eyebrow-dark {
  color: rgba(10, 22, 40, 0.65);
}

/* Shared thin gold rule between headline and body — used across sections */
.section-divider {
  width: 52px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 1px;
  margin: 1.25rem 0 1.5rem;
}

.hide-mobile {
  display: none;
}

.nowrap {
  white-space: nowrap;
}


/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; margin-bottom: 0.4rem; }

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}


/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

/* Primary: gold fill */
.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background-color: var(--gold-dark);
  color: var(--navy);
}

/* Outline: white border for dark backgrounds */
.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Secondary: navy fill for light backgrounds */
.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--navy-mid);
  color: var(--white);
}

/* Gold for dark-background sections */
.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--navy);
}

/* Navy for CTA banner (gold background) */
.btn-navy {
  background-color: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background-color: var(--navy-mid);
  color: var(--white);
}


/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
}

/* Opaque header once user scrolls (class added by script.js) */
header.scrolled {
  background-color: var(--navy);
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1rem 1.25rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.92;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.63rem;
  color: rgba(212, 168, 85, 0.80);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

/* Nav links (desktop hidden on mobile, shown via hamburger) */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--navy);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}

/* Open state (class toggled by script.js) */
header.nav-open .nav-links {
  display: flex;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--gold);
}

/* CTA link in nav */
.nav-links a.nav-cta {
  margin-top: 0.75rem;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  border-bottom: none;
  text-align: center;
  display: inline-block;
}
.nav-links a.nav-cta:hover {
  background-color: var(--gold-dark);
  color: var(--navy);
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* Hamburger → X when open */
header.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
header.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.4rem 0.9rem;
    border-bottom: 2px solid transparent;
    font-size: 0.875rem;
    transition: color 0.2s, border-color 0.2s;
  }

  .nav-links a:hover {
    color: var(--gold);
    border-bottom-color: transparent;
  }

  .nav-links a.nav-active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .nav-links a.nav-cta {
    margin-top: 0;
    margin-left: 0.75rem;
    padding: 0.5rem 1.1rem;
    border-bottom: none;
  }

  /* When nav-cta is also the active page, keep text navy (gold-on-gold = invisible) */
  .nav-links a.nav-cta.nav-active {
    color: var(--navy);
    border-bottom-color: transparent;
  }
}


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Hero_2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Multi-layer dark overlay for depth and text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 22, 40, 0.60) 0%,
    rgba(10, 22, 40, 0.88) 100%
  );
}

/* Subtle grain texture — adds depth, feels premium rather than flat */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 4rem;
  width: 100%;
  max-width: 860px;
}

.hero-content h1 {
  color: var(--white);
  /* Scale with viewport so "Indoor Boat & RV Storage" never wraps on a single line */
  font-size: clamp(1.55rem, 6.5vw, 4.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* Each span = one line, no internal wrapping (desktop only) */
.hero-content h1 span {
  display: block;
}

@media (min-width: 640px) {
  .hero-content h1 span {
    white-space: nowrap;
  }
}

/* Thin gold decorative rule between H1 and subheadline */
.hero-eyebrow {
  width: 52px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 1px;
  margin: 0 auto 1.5rem;
}

.hero-sub {
  color: rgba(250, 250, 248, 0.82);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}


/* ------------------------------------------------------------
   TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
  background-color: #0d1b30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item:nth-child(2),
.trust-item:nth-child(4) {
  border-right: none;
}

.trust-item:nth-child(3),
.trust-item:nth-child(4) {
  border-bottom: none;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 1.25rem;
  }

  .trust-item {
    justify-content: center;
    border-bottom: none;
  }

  .trust-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .trust-item:last-child {
    border-right: none;
  }
}


/* ------------------------------------------------------------
   INTRO / ABOUT SNIPPET — premium dark section
   ------------------------------------------------------------ */
.intro {
  background-color: var(--navy);
  /* Subtle dot-grid texture for depth */
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.intro-grid {
  display: grid;
  gap: 3rem;
}

/* Gold uppercase label above headline */
.intro-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.intro-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0;
}

/* Thin gold rule between headline and body copy */
.intro-divider {
  width: 52px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 1px;
  margin: 1.25rem 0 1.5rem;
}

.intro-text p {
  color: rgba(250, 250, 248, 0.70);
  margin-bottom: 1rem;
}

.intro-text .btn {
  margin-top: 0.5rem;
}

/* Trust stats — gold left-border editorial layout */
.trust-stats {
  display: grid;
  gap: 1rem;
}

.trust-stat {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background-color 0.2s;
}

.trust-stat:hover {
  background-color: rgba(255, 255, 255, 0.07);
}

.stat-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trust-stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.trust-stat p {
  font-size: 0.9rem;
  color: rgba(250, 250, 248, 0.62);
  margin: 0;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

@media (min-width: 1100px) {
  .intro-grid {
    gap: 6rem;
  }

  .hide-mobile {
    display: initial;
  }
}


/* ------------------------------------------------------------
   FEATURES — 4-item premium layout
   ------------------------------------------------------------ */
.features {
  background-color: #f5f0e8;
}

.features-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.features .section-sub {
  color: var(--text-light);
  max-width: none;
}

.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background-color: #ede8dc;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 2rem 1.75rem;
  transition: background-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  background-color: #e5dfd0;
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-light);
}

@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ------------------------------------------------------------
   WHAT WE STORE — Carousel + Accordion
   ------------------------------------------------------------ */
.vehicles {
  background-color: #ffffff;
}

.vehicles-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ---- Carousel ---- */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--navy);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: var(--gold);
  transform: scale(1.25);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ---- Right column: content ---- */
.vehicles-content {
  padding: 3rem 1.5rem;
}

.vehicles-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.vehicles-content h2 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vehicles-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

/* ---- Accordion ---- */
.accordion {
  margin-bottom: 1.75rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s;
}

.accordion-item.open {
  border-left-color: var(--gold);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0.75rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.accordion-trigger:hover {
  background-color: #f9f6f0;
}

.accordion-trigger span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body {
  max-height: 120px;
}

.accordion-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.25rem 0.75rem 1rem;
  line-height: 1.65;
  margin: 0;
}

.vehicles-disclaimer {
  font-size: 0.82rem;
  color: #9a9690;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .vehicles-layout {
    grid-template-columns: 3fr 2fr;
    /* start: left column anchors to top and never reacts to right column height */
    align-items: start;
  }

  /* Wrapper that centers the carousel within the left column independently */
  .carousel-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 4rem 3.5rem 2.5rem;
    align-self: stretch; /* match right column height so flex can truly center */
  }

  .carousel {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: unset;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.18), 0 2px 8px rgba(10, 22, 40, 0.08);
  }

  .vehicles-content {
    padding: 3.5rem 2.5rem 3.5rem 0;
  }
}


/* ------------------------------------------------------------
   STORAGE & SERVICES (tab section)
   ------------------------------------------------------------ */
.offers.section {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 3rem 1.25rem;
  text-align: center;
}

.offers .eyebrow {
  margin-bottom: 0.5rem;
}

.offers .section-divider {
  margin-inline: auto;
  margin-top: 16px;
  margin-bottom: 16px;
}

.offers h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.offers .section-sub {
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* ---- Tab switcher ---- */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0 48px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.6rem;
  border-radius: 99px;
  border: 1.5px solid var(--gold);
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn--active {
  background-color: var(--gold);
  color: var(--navy);
}

/* ---- Tab panels ---- */
.tab-panel {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.tab-panel.tab-fading {
  opacity: 0;
}

/* ---- Storage rate cards: 2×2 grid ---- */
.rate-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rate-grid-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Card entrance animation */
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rate-card {
  background-color: #0f1e38;
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 2.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardIn 0.45s ease both;
  animation-delay: var(--stagger, 0ms);
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(184, 150, 62, 0.2);
}

.rate-card__top {
  margin-bottom: 1.25rem;
}

.rate-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.rate-card__desc {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.rate-card__divider {
  border: none;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  margin: 0 0 1.25rem;
}

.rate-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.rate-card__price {
  display: block;
  font-family: var(--font-display);
  font-size: 2.625rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.rate-card__price--quote {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.rate-card__sublabel {
  display: block;
  font-size: 0.78rem;
  color: rgba(250, 250, 248, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rate-card__quote-btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  align-self: flex-end;
}

/* btn-outline-gold utility */
.btn-outline-gold {
  background-color: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* ---- Perks strip ---- */
.perks-strip {
  margin-top: 1.5rem;
  background-color: #111d35;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 600px) {
  .perks-strip {
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
  }
}

.perks-strip__item {
  font-size: 0.88rem;
  color: rgba(250, 250, 248, 0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perks-strip__check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Service cards: 3-column grid ---- */
.svc-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .svc-grid {
    display: flex;
    flex-wrap: wrap;
  }
  .svc-grid > li {
    flex: 0 0 auto;
    width: calc((100% - 2.5rem) / 3);
  }
  .svc-grid > li:nth-child(4) {
    margin-left: auto;
  }
  .svc-grid > li:nth-child(5) {
    margin-right: auto;
  }
}

.svc-card {
  background-color: #0f1e38;
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardIn 0.45s ease both;
  animation-delay: var(--stagger, 0ms);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(184, 150, 62, 0.2);
}

.svc-card__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.svc-card__icon svg {
  width: 100%;
  height: 100%;
}

.svc-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.svc-card__desc {
  font-size: 0.85rem;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.svc-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: auto;
}

.svc-card__price--included {
  color: #4caf7d;
}

.svc-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(250, 250, 248, 0.5);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  margin-top: 0.25rem;
}

.svc-card__cta:hover {
  color: var(--gold-light);
}

/* ---- Bottom CTA ---- */
.offers-cta {
  margin-top: 3.75rem;
  text-align: center;
}

.offers-cta__btn {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 700;
}


/* ------------------------------------------------------------
   REVIEWS CAROUSEL
   ------------------------------------------------------------ */
.reviews {
  background-color: #f5f0e8;
  text-align: center;
}

.reviews-divider {
  margin-inline: auto;
  margin-top: 16px;
  margin-bottom: 16px;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

/* ---- Carousel outer shell ---- */
.rev-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---- Track outer: clips overflow ---- */
.rev-track-outer {
  flex: 1;
  overflow: hidden;
}

/* ---- Sliding track ---- */
.rev-track {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0.5rem 0 1rem;
  margin: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* ---- Individual review card ---- */
.rev-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  background-color: #0f1e38;
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .rev-card {
    flex: 0 0 100%;
  }
}

.rev-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.rev-card blockquote {
  margin: 0;
  flex: 1;
}

.rev-card blockquote p {
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.9);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.rev-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
}

.rev-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.rev-location {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---- Arrow buttons ---- */
.rev-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 22, 40, 0.2);
  background-color: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  padding: 0;
}

.rev-arrow svg {
  width: 18px;
  height: 18px;
}

.rev-arrow:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- Dot indicators ---- */
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(10, 22, 40, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.rev-dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}


/* ------------------------------------------------------------
   FINAL CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background-color: var(--gold);
  padding: 4rem 1.25rem;
}

/* Two-column split: 55% content / 45% map */
.cta-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-split {
    grid-template-columns: 55fr 45fr;
    gap: 3.5rem;
  }
}

/* Left column — CTA text */
.cta-content {
  text-align: left;
}

.cta-content .eyebrow-dark {
  margin-bottom: 0.75rem;
}

.cta-content h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.cta-content p {
  color: rgba(10, 22, 40, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Right column — map */
.cta-map {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.18);
}

@media (min-width: 768px) {
  .cta-map iframe {
    height: 350px;
  }
}

.cta-map-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.cta-directions {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}

.cta-directions:hover {
  opacity: 0.65;
}


/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 3px solid var(--gold);
  color: rgba(250,250,248,0.75);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

/* Footer logo row — mirrors navbar logo layout */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Thin gold rule below the logo name */
.footer-logo-divider {
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 1px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-col address,
.footer-col p {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-col a {
  color: rgba(250,250,248,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-col-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col strong {
  color: var(--white);
}

.footer-location {
  margin-top: 0.75rem;
  font-style: italic;
  color: rgba(250,250,248,0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250,250,248,0.4);
}
.footer-bottom a {
  color: rgba(250,250,248,0.4);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold);
}

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

@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ---- Page hero header ---- */
.page-hero {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 7rem 1.25rem 4rem;
  text-align: center;
  /* Push content below fixed header */
  padding-top: calc(var(--header-h, 72px) + 3.5rem);
}

.page-hero__inner {
  max-width: 680px;
}

.page-hero .eyebrow {
  margin-bottom: 1rem;
}

.page-hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero__sub {
  color: rgba(250, 250, 248, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

/* ---- Contact body layout ---- */
.contact-body {
  background-color: #f5f0e8;
  padding: 5rem 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 40fr 60fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ---- Left: contact info ---- */
.contact-info__heading {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
}

.contact-info__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info__value {
  font-size: 0.97rem;
  color: var(--navy);
  font-style: normal;
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 400;
}

.contact-info__value a:hover {
  color: var(--gold-dark);
}

.contact-info__note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  line-height: 1.55;
}

/* ---- Map ---- */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}

.contact-map__directions {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.contact-map__directions:hover {
  color: var(--navy);
}

/* ---- Right: form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-row--half {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.req {
  color: var(--gold-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(30, 42, 58, 0.38);
}

.form-hint {
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0.75;
  font-style: italic;
  line-height: 1.4;
  margin: 0.3rem 0 0;
}

/* Date input — remove default browser chrome on some platforms */
.form-group input[type="date"] {
  color: var(--text);
}

.btn-submit {
  width: 100%;
  background-color: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.25rem;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--gold-dark);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ---- Services dropdown ---- */
.services-dropdown {
  position: relative;
}

.services-dropdown__toggle {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-dropdown__toggle:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.18);
}

.services-dropdown__arrow {
  font-size: 0.85rem;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.services-dropdown__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  padding: 0.5rem 0;
}

.services-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: normal;
}

.services-dropdown__option:hover {
  background-color: var(--bg-alt);
}

.services-dropdown__option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

.services-dropdown__option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.services-dropdown__required {
  font-size: 0.78rem;
  color: var(--gold-dark);
}

.form-error {
  font-size: 0.9rem;
  color: #c0392b;
  background-color: #fdf0ee;
  border: 1px solid #e8c5c0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* ---- Success state ---- */
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success__check {
  display: block;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.form-success__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.form-success__sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.form-success__back {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.form-success__back:hover {
  color: var(--navy);
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ---- Shared section header pattern ---- */
.svc-divider {
  margin-top: 16px;
  margin-bottom: 16px;
}

.svc-section-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.svc-section-headline--light {
  color: var(--white);
}

/* ---- Section 1: Storage Rates ---- */
.svc-rates {
  background-color: #f5f0e8;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.svc-rates .section-sub {
  margin-inline: auto;
  margin-bottom: 3rem;
}

.svc-rate-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .svc-rate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Card entrance animation */
@keyframes svcCardIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-rate-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svcCardIn 0.45s ease both;
  animation-delay: var(--stagger, 0ms);
}

.svc-rate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.svc-rate-card__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.svc-rate-card__desc {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
}

.svc-rate-card__hr {
  border: none;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  margin: 1.25rem 0;
}

.svc-rate-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.svc-rate-card__includes li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}

.svc-rate-card__includes li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.svc-rate-card__bottom {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.svc-rate-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.svc-rate-card__price--quote {
  font-size: 1.75rem;
}

.svc-rate-card__sublabel {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.svc-rate-card__cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.svc-rate-card__cta:hover {
  color: var(--navy);
}

.svc-rate-card__quote-btn {
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---- Section 2: Add-On Services ---- */
.addon-svc {
  background-color: var(--white);
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.addon-svc .section-sub {
  margin-inline: auto;
  margin-bottom: 3rem;
}

.addon-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .addon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.addon-card {
  background-color: #f9f8f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: svcCardIn 0.45s ease both;
  animation-delay: var(--stagger, 0ms);
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.addon-card__icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.addon-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.addon-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.addon-card__hr {
  border: none;
  border-top: 1px solid rgba(184, 150, 62, 0.25);
  width: 100%;
  margin: 1.1rem 0;
}

.addon-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.addon-card__price--included {
  color: #3a9e6a;
}

.addon-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.addon-card__cta:hover {
  color: var(--navy);
}

/* ---- Section 3: FAQ ---- */
.svc-faq {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.svc-faq .svc-divider {
  margin-inline: auto;
}

.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.faq-list .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
  margin: 0;
}

.accordion-item.open .faq-body {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-body p {
  font-size: 0.9375rem;
  color: #aab4c4;
  line-height: 1.7;
  margin: 0;
}

.faq-body p a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Bottom CTA ---- */
.svc-cta {
  background-color: var(--gold);
  padding: 4.5rem 1.25rem;
  text-align: center;
}

.svc-cta__inner {
  max-width: 640px;
}

.svc-cta__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.svc-cta__sub {
  font-size: 1.125rem;
  color: rgba(10, 22, 40, 0.72);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.svc-cta__btn {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  padding: 1rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.svc-cta__btn:hover {
  background-color: var(--navy-mid);
}


/* ============================================================
   SERVICES PAGE v2 — STICKY SIDEBAR + SCROLLING PANELS
   ============================================================ */

/* ---- Mobile pill nav ---- */
.sp-mobile-nav {
  background-color: var(--navy);
  padding: 0.75rem 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: block;
}

.sp-mobile-nav::-webkit-scrollbar { display: none; }

.sp-mobile-nav__track {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
  padding-bottom: 2px;
}

.sp-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(184, 150, 62, 0.45);
  color: rgba(250, 250, 248, 0.75);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.sp-pill:hover {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Hide mobile nav on desktop */
@media (min-width: 900px) {
  .sp-mobile-nav { display: none; }
}

/* ---- Outer layout wrapper ---- */
.sp-outer {
  background-color: var(--white);
}

.sp-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0;
  align-items: flex-start;
}

/* ---- Sticky sidebar ---- */
.sp-sidebar {
  display: none; /* hidden on mobile */
}

@media (min-width: 900px) {
  .sp-sidebar {
    display: block;
    width: 22%;
    flex-shrink: 0;
    position: sticky;
    top: 40px;
    padding: 3rem 0 3rem;
    padding-right: 2.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
  }
}

.sp-sidebar__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.sp-sidebar__link {
  display: block;
  padding: 0.35rem 0 0.35rem 12px;
  font-size: 0.9375rem;
  color: #aab4c4;
  text-decoration: none;
  line-height: 2.2;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}

.sp-sidebar__link:hover {
  color: var(--text);
}

.sp-sidebar__link--active {
  color: var(--gold);
  font-weight: 700;
  border-left-color: var(--gold);
  padding-left: 9px;
}

.sp-sidebar__divider {
  height: 1px;
  background-color: rgba(184, 150, 62, 0.25);
  margin: 1.25rem 0;
}

.sp-sidebar__note {
  font-size: 0.75rem;
  font-style: italic;
  color: #aab4c4;
  line-height: 1.5;
}

/* ---- Scrolling panels column ---- */
.sp-panels {
  flex: 1;
  min-width: 0;
}

/* ---- Panel divider ---- */
.sp-panel-divider {
  border: none;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
  margin: 0;
}

/* ---- Individual panel ---- */
.sp-panel {
  padding: 5rem 0 5rem 3.5rem;
}

@media (max-width: 899px) {
  .sp-panel {
    padding: 3.5rem 1.25rem;
  }
}

.sp-panel--odd  { background-color: var(--white); }
.sp-panel--even { background-color: #f5f0e8; }

/* ---- Panel top row ---- */
.sp-panel__top {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.sp-panel__num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.sp-panel__heading h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.sp-panel__descriptor {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Panel content row: 55/45 ---- */
.sp-panel__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 700px) {
  .sp-panel__content {
    grid-template-columns: 55fr 45fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ---- Step list ---- */
.sp-steps {
  display: flex;
  flex-direction: column;
}

.sp-step {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

/* Vertical dotted connector line */
.sp-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  border-left: 2px dotted rgba(184, 150, 62, 0.35);
}

.sp-step--last::before {
  display: none;
}

.sp-step__marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.sp-step__marker span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.sp-step__body {
  flex: 1;
  padding-top: 4px;
}

.sp-step__body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.sp-step__body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---- Details box ---- */
.sp-details {
  background-color: rgba(10, 22, 40, 0.04);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sp-panel--even .sp-details {
  background-color: rgba(10, 22, 40, 0.06);
}

.sp-details__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Multi-tier price list (panel 1) */
.sp-details__price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sp-details__price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sp-details__tier {
  color: var(--text-light);
}

.sp-details__amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.sp-details__per {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.sp-details__tier-note {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* Single main price (panels 2–7) */
.sp-details__main-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.sp-details__main-price--included {
  color: #3a9e6a;
  font-size: 1.1rem;
}

.sp-details__range {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.sp-details__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.sp-details__meta p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.sp-details__meta-label {
  font-weight: 700;
  color: var(--navy);
}

.sp-details__cta {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.sp-details__cta:hover {
  color: var(--navy);
}

/* ---- Bottom CTA ---- */
.sp-cta {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 6.25rem 1.25rem;
  text-align: center;
}

.sp-cta__inner {
  max-width: 640px;
}

.sp-cta__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}

.sp-cta__sub {
  font-size: 1.125rem;
  color: rgba(250, 250, 248, 0.72);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.sp-cta__btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  padding: 1.125rem 3.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.sp-cta__btn:hover {
  background-color: var(--gold-dark);
  color: var(--navy);
}


/* ============================================================
   ABOUT PAGE  (ab-*)
   ============================================================ */

/* ---- Section 1: Page Hero ---- */
.ab-hero {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 100px 0;
  padding-top: calc(var(--header-h, 72px) + 100px);
}

.ab-hero__inner {
  max-width: 760px;
}

.ab-hero .eyebrow {
  margin-bottom: 1.25rem;
}

.ab-hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .ab-hero__headline {
    white-space: nowrap;
  }
}


/* ---- Section 2: Family Story ---- */
.ab-story {
  background-color: #fafaf8;
  padding: 100px 1.25rem;
}

.ab-story__inner {
  max-width: 900px;
  margin-inline: auto;
}

/* Pull quote */
.ab-pullquote {
  margin: 0 0 3.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.ab-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--navy);
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
}

.ab-pullquote__line {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

/* Body copy */
.ab-story__body {
  font-size: 1.0625rem;
  color: #1a2b47;
  line-height: 1.85;
}

.ab-story__body p {
  margin-bottom: 1.75rem;
}

.ab-story__body p:last-child {
  margin-bottom: 0;
}

/* Drop cap on first paragraph */
.ab-dropcap::first-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--gold);
  float: left;
  line-height: 0.78;
  margin-right: 0.12em;
  margin-top: 0.1em;
}

/* Horizontal rule divider */
.ab-story__rule {
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.35;
  margin: 3.5rem 0 0;
}


/* ---- Section 3: The Area ---- */
.ab-area {
  background-color: #f5f0e8;
  padding: 70px 1.25rem;
}

.ab-area__inner {
  max-width: 1100px;
  margin-inline: auto;
}

.ab-area__header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.ab-area__header .eyebrow {
  margin-bottom: 1rem;
}

.ab-area__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.ab-area__sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Two-column layout */
.ab-area__cols {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ab-area__cols {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .ab-area__copy {
    flex: 1;
  }

  .ab-stats {
    flex: 0 0 280px;
  }
}

.ab-area__copy p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ab-area__copy p:last-child {
  margin-bottom: 0;
}

/* Stats column */
.ab-stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ab-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(184, 150, 62, 0.18);
}

.ab-stat:last-child {
  border-bottom: none;
}

.ab-stat__num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.25rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ab-stat__label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
}


/* ---- Section 4: Values Strip (compact) ---- */
.ab-values {
  background-color: var(--navy);
  padding: 44px 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ab-values__inner {
  max-width: 1100px;
  margin-inline: auto;
}

.ab-values .eyebrow {
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Three items in a row on desktop, stacked on mobile */
.ab-values__statements {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 640px) {
  .ab-values__statements {
    flex-direction: row;
    align-items: stretch;
  }
}

.ab-value-row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  text-align: center;
}

/* Vertical gold dividers between items on desktop */
@media (min-width: 640px) {
  .ab-value-row + .ab-value-row {
    border-left: 1px solid rgba(184, 150, 62, 0.3);
  }
}

/* Horizontal dividers between items on mobile */
@media (max-width: 639px) {
  .ab-value-row + .ab-value-row {
    border-top: 1px solid rgba(184, 150, 62, 0.3);
  }
}

.ab-value-row__text {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
}

.ab-value-row--white .ab-value-row__text {
  color: var(--white);
}

.ab-value-row--gold .ab-value-row__text {
  color: var(--gold);
}

/* Number spans not used in compact layout */
.ab-value-row__num {
  display: none;
}

/* Dot separator not used */
.ab-values__dot {
  display: none;
}

/* Old card classes — hidden */
.ab-value {
  display: none;
}


/* ---- Section 5: Bottom CTA ---- */
.ab-cta {
  background-color: var(--gold);
  padding: 100px 1.25rem;
  text-align: center;
}

.ab-cta__inner {
  max-width: 680px;
}

.ab-cta__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.ab-cta__sub {
  font-size: 1.125rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.ab-cta__btn {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.125rem 3.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ab-cta__btn:hover {
  background-color: var(--navy-mid);
  color: var(--white);
}
