@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');
/* ── Global mobile safety nets ── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
img, video, iframe { max-width: 100%; height: auto; }
.container { width: 100%; }


/* ═══════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Colours */
  --navy:       #0d1b2a;
  --navy-mid:   #122030;
  --navy-light: #1a2e40;
  --cream:      #f4f0ea;
  --cream-dark: #e8e2d8;
  --white:      #ffffff;
  --teal:       #4d7a8a;
  --teal-dark:  #3a5f6e;
  --teal-light: #7ab0c0;
  --text-dark:  #1a2e40;
  --text-mid:   #6a8a9a;
  --text-light: #adc4d5;

  /* Legacy aliases (for dropdown.css compat) */
  --black:      var(--navy);
  --off-white:  var(--white);
  --sand:       var(--cream);
  --rust:       var(--teal);
  --rust-light: var(--teal-dark);
  --dark-brown: var(--navy-mid);
  --mid-brown:  var(--navy-light);
  --text-muted: var(--text-light);

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: 6rem 4rem;
  --section-pad-sm: 4rem 4rem;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122,176,192,0.12);
}

.nav-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px;
  letter-spacing: 0.1em !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: rgba(255,255,255,0.8);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(38px + 64px); left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 4rem;
  gap: 0;
}
.mobile-nav.open { display: flex; }

/* Section labels */
.mobile-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 1.2rem 0 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.5rem;
}
.mobile-section-label:first-child {
  border-top: none;
  margin-top: 0;
}

/* Dropdown link groups */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-dropdown a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: #fff; padding-left: 0.4rem; }
.mobile-dropdown a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Bottom CTA in mobile nav */
.mobile-nav-cta {
  display: block;
  margin-top: 2rem;
  background: var(--teal);
  color: #fff !important;
  text-align: center;
  padding: 1rem !important;
  border-radius: 6px;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: none !important;
}
.mobile-nav-cta::before { display: none !important; }
.mobile-nav-cta:hover { background: var(--teal-dark) !important; padding-left: 0 !important; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 1.5rem; }
}

/* ═══════════════════════════════════════════
   SECTION BACKGROUNDS  (light/dark alternation)
   ═══════════════════════════════════════════ */
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-navy    { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-navy-light { background: var(--navy-light); }

/* Legacy class names kept for compatibility */
.section-dark   { background: var(--navy-mid); }
.section-darker { background: var(--navy); }
.section-light  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-sand   { background: var(--cream); }

/* ═══════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════ */
.section       { padding: var(--section-pad); }
.section-sm    { padding: var(--section-pad-sm); }
.container     { max-width: 1200px; margin: 0 auto; }
.container-sm  { max-width: 900px; margin: 0 auto; }
.container-xs  { max-width: 700px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY — CONTEXT-AWARE
   ═══════════════════════════════════════════ */

/* Labels */
.section-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
  display: block;
}
.bg-navy .section-label,
.bg-navy-mid .section-label,
.bg-navy-light .section-label,
.section-dark .section-label,
.section-darker .section-label { color: var(--teal-light); }

/* Display titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.bg-navy .section-title,
.bg-navy-mid .section-title,
.bg-navy-light .section-title,
.section-dark .section-title,
.section-darker .section-title { color: #ffffff; }

.section-title.light { color: #ffffff; }
.section-title.dark  { color: var(--text-dark); }

/* Body copy */
.section-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 560px;
  color: var(--text-mid);
}
.bg-navy .section-body,
.bg-navy-mid .section-body,
.bg-navy-light .section-body,
.section-dark .section-body,
.section-darker .section-body { color: var(--text-light); }

/* Subheadings */
.sub-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.bg-navy .sub-title,
.section-dark .sub-title,
.section-darker .sub-title { color: #ffffff; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(77,122,138,0.35);
}
.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  border-radius: 100px;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
  border-radius: 100px;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0 5rem;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.3) 55%,
    rgba(13,27,42,0.05) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  display: block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 0 5rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.25) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════
   LAYOUT CARDS  (3 campervan layouts)
   ═══════════════════════════════════════════ */
.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}
.layout-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.layout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13,27,42,0.12);
}
.layout-card-img {
  position: relative;
  overflow: hidden;
}
.layout-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.layout-card:hover .layout-card-img img { transform: scale(1.04); }
.layout-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--teal);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.layout-card-body {
  padding: 1.75rem;
}
.layout-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1;
}
.layout-card-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.layout-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.layout-card-features li {
  font-size: 0.78rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.layout-card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
}
.layout-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.layout-card-footer {
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS (homepage offerings)
   ═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.3s;
}
.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
}
.product-card-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.product-card-link {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.product-card:hover .product-card-link { color: #fff; }
.product-card-link::after { content: '→'; }

/* ═══════════════════════════════════════════
   FEATURE GRID
   ═══════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}
.feature-item {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: background 0.25s;
}
.feature-item:hover { background: rgba(77,122,138,0.04); }
.bg-navy .feature-item,
.section-dark .feature-item,
.section-darker .feature-item {
  border-color: rgba(255,255,255,0.06);
}
.bg-navy .feature-item:hover,
.section-dark .feature-item:hover { background: rgba(122,176,192,0.06); }

.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(77,122,138,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.bg-navy .feature-title,
.section-dark .feature-title,
.section-darker .feature-title { color: #ffffff; }
.feature-body {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.bg-navy .feature-body,
.section-dark .feature-body,
.section-darker .feature-body { color: var(--text-light); }

/* ═══════════════════════════════════════════
   SPLIT SECTION
   ═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: var(--navy-mid);
}
/* Light variant */
.split-content.light {
  background: var(--cream);
}
.split-content.light .section-title { color: var(--text-dark); }
.split-content.light .section-body  { color: var(--text-mid); }
.split-content.light .section-label { color: var(--teal); }

/* ═══════════════════════════════════════════
   STATS / NUMBERS ROW
   ═══════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin: 4rem 0 0;
}
.bg-navy .stats-row,
.section-dark .stats-row {
  border-color: rgba(255,255,255,0.08);
}
.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.stat-item:last-child { border-right: none; }
.bg-navy .stat-item,
.section-dark .stat-item { border-color: rgba(255,255,255,0.08); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.03em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.bg-navy .stat-label,
.section-dark .stat-label { color: var(--text-light); }

/* ═══════════════════════════════════════════
   TABS (component tabs on pages)
   ═══════════════════════════════════════════ */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}
.bg-navy .tabs-nav,
.section-dark .tabs-nav { border-color: rgba(255,255,255,0.1); }

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  color: var(--text-mid);
}
.bg-navy .tab-btn,
.section-dark .tab-btn { color: var(--text-light); }
.tab-btn:hover { color: var(--text-dark); }
.bg-navy .tab-btn:hover,
.section-dark .tab-btn:hover { color: #fff; }
.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.tab-panel { display: none; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tab-panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tab-panel-text h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.bg-navy .tab-panel-text h3,
.section-dark .tab-panel-text h3 { color: #ffffff; }
.tab-panel-text p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.bg-navy .tab-panel-text p,
.section-dark .tab-panel-text p { color: var(--text-light); }

/* ═══════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}
.step {
  padding: 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.step:last-child { border-right: none; }
.bg-navy .step,
.section-dark .step { border-color: rgba(255,255,255,0.07); }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(77,122,138,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.bg-navy .step-title,
.section-dark .step-title { color: #ffffff; }
.step-body {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.bg-navy .step-body,
.section-dark .step-body { color: var(--text-light); }

/* ═══════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════ */
.quote-section {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  background: var(--navy);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(122,176,192,0.18);
  line-height: 0;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
  position: relative;
}
.quote-source {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.22);
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   MOUNTAIN SECTION
   ═══════════════════════════════════════════ */
.mountain-section { position: relative; overflow: hidden; text-align: center; }
.mountain-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/649ae313c2adbd70f9525681/0864730c-9d12-4b6e-a587-3f15cb9b8165/section-bg-07.png');
  background-size: cover;
  background-position: center top;
}
.mountain-tree {
  position: absolute; top: 0; right: 0;
  height: 100%; width: 40%;
  background-image: url('https://images.squarespace-cdn.com/content/v1/649ae313c2adbd70f9525681/4f2d060a-93b8-4b3f-a321-ba11043bf763/section-bg-06.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.28;
  pointer-events: none;
}
.mountain-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.0) 0%, rgba(13,27,42,0.2) 50%, rgba(13,27,42,0.75) 100%);
}
.mountain-content {
  position: relative; z-index: 2;
  padding: 7rem 4rem 4rem;
}
.mountain-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff; letter-spacing: 0.03em; margin-bottom: 0.75rem;
}
.mountain-content p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.mountain-wave { position: relative; z-index: 2; line-height: 0; }
.mountain-wave svg { width: 100%; display: block; }

/* ═══════════════════════════════════════════
   PLACEHOLDER IMAGE
   ═══════════════════════════════════════════ */
.img-placeholder {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-mid);
  font-family: var(--font-body);
  text-align: center;
  padding: 1rem;
}
.img-placeholder-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
}
.img-placeholder-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.bg-navy .form-group label,
.section-dark .form-group label,
.section-darker .form-group label { color: var(--teal-light); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-mid); }
.contact-info-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #ffffff;
}
.contact-info-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--teal-light); }

/* ═══════════════════════════════════════════
   STORY GRID
   ═══════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 55%; aspect-ratio: 1;
  border: 2px solid var(--teal);
  opacity: 0.25;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   RENTAL CARDS
   ═══════════════════════════════════════════ */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 4rem;
  background: rgba(0,0,0,0.04);
}
.rental-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.rental-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1.5rem; }
.rental-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.rental-card-body {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
   SPEC / FAQ ITEMS
   ═══════════════════════════════════════════ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 3rem;
}
.spec-item {
  background: var(--navy-mid);
  padding: 1.75rem;
}
.spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.spec-value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #ffffff;
}

/* Accordion */
.accordion { margin-top: 2rem; }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-btn {
  width: 100%; background: none; border: none;
  padding: 1.15rem 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: #ffffff; transition: color 0.2s;
}
.accordion-btn:hover { color: var(--teal-light); }
.accordion-icon { font-size: 1.1rem; color: var(--teal-light); transition: transform 0.3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none; padding: 0 0 1.5rem;
  font-size: 0.875rem; color: var(--text-light); line-height: 1.8;
}
.accordion-item.open .accordion-body { display: block; }
.accordion-body ul { list-style: none; margin-top: 0.6rem; }
.accordion-body ul li {
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 2px solid rgba(77,122,138,0.3);
  margin-bottom: 0.25rem; font-size: 0.825rem;
}
.accordion-body h4 {
  font-family: var(--font-body); font-size: 1rem;
  color: #ffffff; margin: 0.85rem 0 0.35rem;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: var(--navy-mid); padding: 0; border-top: none; }
.footer-mountain-bg {
  position: relative;
  background-image: url('https://images.squarespace-cdn.com/content/v1/649ae313c2adbd70f9525681/1946bd90-aa36-4433-9951-8eee97415f13/footer-bg.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 4rem 3rem;
}
.footer-mountain-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,18,28,0.8);
}
.footer-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand-logo img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-brand-cert img { height: 42px; opacity: 0.6; filter: brightness(0) invert(1); margin-top: 1.5rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(200,215,220,0.72); line-height: 1.7; max-width: 260px; }
.footer-col-new h4 {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.1rem;
}
.footer-col-new ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-new a { color: rgba(200,215,220,0.65); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
.footer-col-new a:hover { color: #ffffff; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer-social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(77,122,138,0.2);
  border: 1px solid rgba(77,122,138,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s;
}
.footer-social-icon:hover { background: var(--teal); }
.footer-social-icon svg { width: 14px; height: 14px; fill: #fff; }
.footer-bottom-bar {
  display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-bar p { font-size: 0.72rem; color: rgba(180,195,200,0.58); }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   UTILS
   ═══════════════════════════════════════════ */
.price-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.deposit-badge {
  display: inline-block;
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; --section-pad-sm: 2.5rem 1.25rem; }
  .hero { padding: 0 1.25rem 3.5rem; }
  .page-hero { padding: 0 1.25rem 4rem; }
  .split { grid-template-columns: 1fr; }
  .split-content { padding: 2.5rem 1.25rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .layout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-mountain-bg { padding: 3rem 1.25rem 2rem; }
  .cta-banner { padding: 4rem 1.25rem; }
  .quote-section { padding: 4rem 1.25rem; }

  /* Better image sizing on mobile */
  .split-img { max-height: 320px; overflow: hidden; }
  .split-img img { width: 100%; height: 320px; object-fit: cover; }
  .story-img { max-height: 280px; overflow: hidden; }
  .story-img img { width: 100%; height: 280px; object-fit: cover; }

  /* Hero text sizing */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; line-height: 1.6; }

  /* Badges row — wrap nicely */
  .hero-badges { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  /* Section headings */
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h3 { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* Cards — full width, breathing room */
  .product-card { border-radius: 12px; }
  .layout-card { border-radius: 12px; }

  /* Stats tighter on small screen */
  .stat-number { font-size: 2rem; }
}

/* ── ROUNDED IMAGES ── */
img {
  border-radius: 5%;
}

/* Exceptions — full-bleed or shape-paired images that must stay square */
.hero-bg,
.page-hero-bg,
.mountain-bg,
.mountain-tree,
.product-card img,
.dropdown-card img,
.dropdown-img-card img,
.split-img img,
.split-img > img,
.story-img img,
.story-img > img,
.photo-grid img,
.sig-card img,
.for-card img,
.tab-panel img,
.tab-panel > img,
.svc-panel img,
.svc-panel > img,
.other-card img,
.rental-card img,
.layout-card-img img,
nav img,
.nav-logo img,
.footer-brand-logo img,
.footer-brand-cert img,
.footer-social-icon img {
  border-radius: 0 !important;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--teal);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
  overflow: hidden;
  /* Texture */
  background-image: url('ann-texture.webp');
  background-size: cover;
  background-position: center 40%;
}
/* Dark overlay so text stays readable over the texture */
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36, 72, 88, 0.72);
  z-index: 0;
}
/* All direct children sit above the overlay */
.announcement-bar > * { position: relative; z-index: 1; }
.announcement-bar-messages {
  position: relative;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  justify-content: center;
}
.ann-msg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-align: center;
  width: 100%;
}
.ann-msg.active {
  opacity: 1;
  pointer-events: auto;
}
.announcement-bar-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-align: center;
}
.announcement-bar-text strong {
  font-weight: 600;
}
.announcement-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  padding: 0.22rem 0.85rem;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.announcement-bar-cta:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}
.announcement-bar-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.announcement-bar-close:hover { color: #fff; }

/* ═══════════════════════════════════════════
   REDESIGNED NAV — Rossmonster style
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 38px; /* sits below announcement bar */
  left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(122,176,192,0.1);
  transition: top 0.3s ease;
}
.site-header.bar-hidden { top: 0; }

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 2.5rem;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Social icons — far left */
.header-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: 2rem;
  flex-shrink: 0;
}
.header-social-link {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
  text-decoration: none;
}
.header-social-link:hover { color: #fff; }
.header-social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2.5rem;
  flex-shrink: 0;
}
.header-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  border-radius: 0 !important;
}

/* Divider */
.header-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  margin-right: 2.5rem;
  flex-shrink: 0;
}

/* Nav links — center */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}
.header-nav li { position: static; }
.header-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1rem;
  height: 64px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.header-nav > li > a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.header-nav > li > a::after { display: none !important; }

/* Active indicator */
.header-nav > li > a.active { color: #fff; }
.header-nav > li > a.active::before {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px 2px 0 0;
}

/* Chevron on dropdowns */
.header-nav li.has-dropdown > a .chev {
  font-size: 0.5rem;
  opacity: 0.55;
  transition: transform 0.22s;
  display: inline-block;
  margin-left: 0.1rem;
}
.header-nav li.has-dropdown.open > a .chev { transform: rotate(180deg); opacity: 1; }

/* Phone number */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: auto;
  padding: 0 1rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.header-phone:hover { color: #fff; }
.header-phone svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* CTA button — far right */
.header-cta {
  flex-shrink: 0;
  margin-left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: #fff !important;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.header-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.28s;
}

/* Body offset — push content below bar + nav */
body { padding-top: calc(38px + 64px); }

/* When bar is dismissed */
body.bar-hidden { padding-top: 64px; }

/* Hide old nav */
nav:not(.mobile-nav) { display: none !important; }

@media (max-width: 960px) {
  .header-socials { display: none; }
  .header-divider { display: none; }
  .header-nav { display: none !important; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .header-hamburger { display: flex !important; margin-left: auto; flex-shrink: 0; }
  .header-inner { padding: 0 1.25rem; gap: 0; }
  .announcement-bar { height: auto; min-height: 38px; padding: 0.4rem 2.5rem; }
  .announcement-bar-text { font-size: 0.65rem; }
  /* Hide build calculator text link on mobile */
  .header-inner > a[href="build-calculator.html"] { display: none !important; }
  .header-logo { margin-right: auto; }
  /* Make hamburger bigger and easier to tap */
  .header-hamburger { padding: 8px; }
  .header-hamburger span { width: 26px; height: 2px; }
}

/* ═══════════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════════ */
.reviews-carousel {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
}
.review-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.review-stars {
  color: var(--teal);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.review-detail {
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.reviews-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.reviews-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.reviews-dots {
  display: flex;
  gap: 0.5rem;
}
.reviews-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .review-card { flex: 0 0 85vw; }
}


/* Socials on left */
/* Announcement bar social icons — hidden on all but widest screens */
.ann-socials { display: none; }
.ann-divider  { display: none; }

/* Single static message — centred, clean */
.ann-messages {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 38px;
}
.ann-msg {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  display: none;
  text-shadow: 0 1px 6px rgba(10,20,28,0.55);
}
.ann-msg.active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.ann-msg strong {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(10,20,28,0.7);
}

/* ═══════════════════════════════════════════
   LEAD CAPTURE POPUP
   ═══════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.popup-overlay.open .popup-box { transform: translateY(0); }

.popup-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.popup-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
.popup-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.popup-img-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}
.popup-img-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.03em;
}

.popup-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.popup-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(13,27,42,0.08);
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.popup-close:hover { background: var(--navy); color: #fff; }

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(77,122,138,0.1);
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.popup-body {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.popup-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.popup-checklist li {
  font-size: 0.78rem;
  color: var(--text-mid);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.popup-checklist li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.popup-form { display: flex; flex-direction: column; gap: 0.6rem; }
.popup-input {
  width: 100%;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.popup-input:focus { border-color: var(--teal); }
.popup-submit {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-submit:hover { background: var(--teal-dark); }
.popup-skip {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-skip:hover { color: var(--text-mid); }
.popup-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.popup-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.popup-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.popup-success p { font-size: 0.85rem; color: var(--text-mid); }

@media (max-width: 600px) {
  .popup-box { grid-template-columns: 1fr; }
  .popup-img { display: none; }
  .popup-content { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   S+S ICON SYSTEM
   Brand-consistent SVG icons replacing all emoji
   ═══════════════════════════════════════════ */
.ss-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(77,122,138,0.15);
  border: 1px solid rgba(77,122,138,0.25);
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.ss-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Larger variant */
.ss-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.ss-icon-lg svg { width: 26px; height: 26px; }
/* On dark backgrounds */
.ss-icon-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
/* On light/cream backgrounds */
.ss-icon-light {
  background: rgba(77,122,138,0.08);
  border-color: rgba(77,122,138,0.2);
}
.ss-icon-light svg { stroke: var(--teal); }

/* Faq chooser icon override */
.faq-tab-icon .ss-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  margin-bottom: 0;
}
.faq-tab-icon .ss-icon svg { width: 18px; height: 18px; }

/* Warranty card icon override — use ss-icon sizing */
.warranty-card-icon { margin-bottom: 0; }
.warranty-card-icon .ss-icon { margin-bottom: 0; }

/* FAQ tab icon — compact */
.faq-tab .ss-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  margin-bottom: 0;
  background: rgba(77,122,138,0.2);
  border-color: rgba(77,122,138,0.3);
}
.faq-tab:hover .ss-icon,
.faq-tab.active .ss-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.faq-tab:hover .ss-icon svg,
.faq-tab.active .ss-icon svg {
  stroke: #fff;
}

/* Popup badge icon */
.popup-badge .ss-icon {
  width: 18px; height: 18px;
  border-radius: 4px;
  margin-bottom: 0;
  background: none;
  border: none;
}
.popup-badge .ss-icon svg { width: 14px; height: 14px; }

/* Success icon */
.popup-success-icon .ss-icon,
.save-success-icon .ss-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 1rem;
}
.popup-success-icon .ss-icon svg,
.save-success-icon .ss-icon svg { width: 30px; height: 30px; }

/* ── S+S INLINE ICON SYSTEM ── */
.ss-check {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: middle;
  color: var(--teal);
  flex-shrink: 0;
}
.ss-close {
  width: 12px; height: 12px;
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
}
.ss-star {
  width: 13px; height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: var(--teal-light);
}
.ss-no {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: middle;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
/* Review stars row */
.review-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}
/* Popup close button */
.popup-close .ss-close,
.lb-close .ss-close { width: 14px; height: 14px; }

.calc-step.complete .calc-step-num-inner { display: none; }
.calc-step.complete .calc-step-num::before {
  content: '';
  display: inline-block;
  width: 12px; height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-2px);
}


/* ═══════════════════════════════════════════
   BRANDED LINE SYSTEM — Horizontal rule theme
   Thin teal/rust accent lines used as structural
   connective tissue throughout the site.
   ═══════════════════════════════════════════ */

/* ── Section label eyebrow lines ──
   A short rule above .section-label, .hero-eyebrow,
   and equivalent eyebrow spans to frame the text */
.section-label,
.hero-eyebrow,
.page-hero-content .section-label {
  position: relative;
  padding-top: 0.85rem;
}
/* line removed */

/* ── Announcement bar — top-edge accent line ── */
.announcement-bar {
  border-top: 1px solid rgba(122,176,192,0.35);
}

/* ── Announcement bar — bottom separator ── */
.announcement-bar {
  border-bottom: 1px solid rgba(122,176,192,0.15);
}

/* ── Header — stronger teal bottom line ── */
.site-header {
  border-bottom: 1px solid rgba(122,176,192,0.14) !important;
}

/* ── Dropdown — top accent strengthened ── */
.dropdown {
  border-top: 2px solid var(--teal) !important;
}

/* ── Section separators — top rule on key sections ── */
.section.section-dark,
.section.section-darker {
  position: relative;
}
.section.section-dark::before,
.section.section-darker::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 6vw; right: 6vw;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122,176,192,0.18) 20%, rgba(122,176,192,0.18) 80%, transparent);
  pointer-events: none;
}

/* ── bg-navy sections — rule between them ── */
.section.bg-navy {
  position: relative;
}
.section.bg-navy + .section.bg-navy::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122,176,192,0.12) 30%, rgba(122,176,192,0.12) 70%, transparent);
  pointer-events: none;
}

/* ── Layout cards — top accent line on hover ── */
.layout-card {
  position: relative;
  overflow: hidden;
}
.layout-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
}
.layout-card:hover::before { opacity: 1; }

/* ── Accordion items — rule between entries ── */
.accordion-item {
  border-top: 1px solid rgba(122,176,192,0.1);
}
.accordion-item:first-child {
  border-top: none;
}

/* ── Step blocks — horizontal rule connector between steps ──
   In the adventure/lounge/elevate configure sections */
.step-num-large {
  position: relative;
  display: inline-block;
}
.step-num-large::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* ── Sticky CTA bar — teal top line instead of rust ── */
.sticky-cta {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9000 !important;
  background: rgba(14,13,11,0.97) !important;
  border-top: 1px solid rgba(122,176,192,0.25) !important;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0) !important;
}
.sticky-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.sticky-cta-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sticky-cta-buttons {
  display: flex;
  gap: 1rem;
}
@media(max-width:600px) {
  .sticky-cta {
    padding: 0.9rem 1.25rem !important;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

/* ── CTA banner sections — top line ── */
.cta-banner {
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122,176,192,0.2) 30%, rgba(122,176,192,0.2) 70%, transparent);
  pointer-events: none;
  z-index: 3;
}

/* ── Footer brand section — top rule ── */
.footer-brand {
  position: relative;
  padding-top: 0.5rem;
}
.footer-brand::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--teal);
  opacity: 0.45;
  margin-bottom: 1.5rem;
}

/* ── Footer columns — top rule on h4 headings ── */
.footer-col-new h4 {
  position: relative;
  padding-top: 0.7rem;
}
.footer-col-new h4::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 20px;
  height: 1px;
  background: rgba(122,176,192,0.35);
}

/* ── Page hero — bottom fade rule ── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 6vw; right: 6vw;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(122,176,192,0.15) 30%, rgba(122,176,192,0.15) 70%, transparent);
  pointer-events: none;
}

/* ── Split section — divider rule ── */
.split {
  position: relative;
}

/* ── Diff pillars in commercial — vertical rule refined ── */
.diff-pillar {
  border-left: 1px solid rgba(122,176,192,0.15) !important;
  padding-left: 2rem !important;
}
.diff-pillar:first-child {
  border-left: none !important;
  padding-left: 0 !important;
}

/* ── Review cards — top accent ── */
.review-card,
.testimonial-card {
  position: relative;
}
.review-card::before,
.testimonial-card::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

/* ── Service cards — top accent line ── */
.svc-card {
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.25s;
}
.svc-card:hover::after { opacity: 1; }

/* ── Process steps — rule below step number ── */
.process-step-num,
.pstep-num {
  position: relative;
}

/* ── Build calculator banner — top and bottom rules ── */
section[style*="background:var(--teal)"] {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ── Tab navigation — bottom rule on tab container ── */
.tabs-nav {
  border-bottom: 1px solid rgba(122,176,192,0.12);
}

/* ── Who We Serve cards — top line ── */
.serve-card {
  position: relative;
}
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}
.serve-card:hover::before { opacity: 1; }

/* ── Build panels tabs — active indicator line ── */
.btab.on {
  border-bottom: 2px solid #fff;
}

/* ── Proof stats — vertical separators ── */
.proof-stat {
  border-left: 1px solid rgba(255,255,255,0.06);
}
.proof-stat:first-child {
  border-left: none;
}


/* ═══════════════════════════════════════════
   MOBILE OPTIMIZATION — COMPREHENSIVE
   Breakpoints: 768px (tablet), 480px (phone)
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── TYPOGRAPHY SCALE ── */
  .hero-title {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
    line-height: 0.92;
  }
  .page-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .cta-banner h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .mountain-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .section-body {
    font-size: 1rem;
  }

  /* ── HERO ── */
  .hero {
    min-height: 85vh;
    padding: 0 1.5rem 4rem;
    justify-content: flex-end;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-cta-group .btn,
  .hero-cta-group a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .page-hero {
    min-height: 60vh;
    padding: 0 1.5rem 4rem;
  }

  /* ── LAYOUT CARDS (campervans page) ── */
  .layout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .layout-card {
    border-radius: 12px;
  }
  .layout-card-img {
    height: 240px;
  }

  /* ── TABS ── */
  .tabs-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .tab-btn {
    font-size: 0.72rem;
    padding: 0.5rem 0.9rem;
  }
  .tab-panel.active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── STATS ── */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-num {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  /* ── PROCESS STEPS ── */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 1.75rem 1.5rem;
  }
  .section-dark .step {
    border-bottom-color: rgba(255,255,255,0.07);
  }

  /* ── SPLIT SECTIONS ── */
  .split {
    grid-template-columns: 1fr;
  }
  .split-img {
    aspect-ratio: 16/9;
    min-height: unset;
    order: -1;
  }
  .split-content {
    padding: 2.5rem 1.5rem;
  }

  /* ── PHOTO GRID ── */
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
  .photo-grid .photo-large {
    grid-column: span 2;
  }

  /* ── FOR CARDS ── */
  .for-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .for-card {
    padding: 1.25rem;
  }

  /* ── REVIEWS ── */
  .review-card {
    flex: 0 0 88vw;
    padding: 1.5rem;
  }
  .reviews-controls {
    margin-top: 1.5rem;
  }

  /* ── RENTAL GRID ── */
  .rental-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-banner-actions .btn,
  .cta-banner-actions a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  /* ── STICKY CTA ── */
  .sticky-cta {
    padding: 0.85rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sticky-cta-text {
    font-size: 1rem;
  }
  .sticky-cta-actions {
    width: 100%;
    display: flex;
    gap: 0.5rem;
  }
  .sticky-cta-actions a,
  .sticky-cta-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.65rem;
    padding: 0.6rem 0.75rem;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-mountain-bg {
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* ── FEATURE GRID ── */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.75rem 1.5rem;
  }

  /* ── SPEC TABLE ── */
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ── PRODUCT CARDS ── */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── QUOTE SECTION ── */
  .quote-section {
    padding: 4rem 1.5rem;
  }
  .quote-mark {
    font-size: 4rem;
    top: -1rem;
  }
  .quote-text {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* ── STORY GRID ── */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── SMALL PHONE (480px) ── */
@media (max-width: 480px) {

  /* ── TYPOGRAPHY ── */
  .hero-title {
    font-size: clamp(2.8rem, 16vw, 3.8rem);
  }
  .page-hero h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }
  .section-title {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  /* ── HERO BUTTONS ── */
  .btn, a.btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }

  /* ── STATS: full width on small phones ── */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 1.5rem 1rem;
  }
  .stat-num {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  /* ── FOR CARDS: stack on small phones ── */
  .for-grid {
    grid-template-columns: 1fr;
  }

  /* ── LAYOUT CARDS ── */
  .layout-card-img {
    height: 200px;
  }

  /* ── TABS: single column ── */
  .tabs-nav {
    gap: 0.35rem;
  }
  .tab-btn {
    font-size: 0.68rem;
    padding: 0.45rem 0.75rem;
  }

  /* ── FOOTER: single column ── */
  .footer-top {
    grid-template-columns: 1fr;
  }

  /* ── PHOTO GRID: single column ── */
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid .photo-large {
    grid-column: span 1;
  }

  /* ── SECTION PADDING ── */
  .section { padding: 3rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  .cta-banner { padding: 3rem 1.25rem; }
  .quote-section { padding: 3rem 1.25rem; }
}

/* ── Announcement bar — mobile wrapping fix ── */
@media (max-width: 600px) {
  .announcement-bar {
    height: auto;
    min-height: 38px;
    padding: 0.4rem 1rem;
    gap: 0.75rem;
  }
  .ann-msg {
    font-size: 0.6rem;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .announcement-bar-cta {
    font-size: 0.55rem;
    padding: 0.18rem 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  /* Adjust body padding to match taller ann bar */
  body { padding-top: calc(50px + 64px); }
  .site-header { top: 50px; }
  .mobile-nav { top: calc(50px + 64px); }
}
@media (max-width: 400px) {
  .announcement-bar-cta { display: none; }
  .ann-msg { padding: 0 0.5rem; }
}

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE — COMPLETE OVERRIDE SYSTEM
   Covers all inline grid patterns used across the site
   ══════════════════════════════════════════════════════ */

/* ── Prevent horizontal scroll globally ── */
html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }

@media (max-width: 768px) {

  /* ── Global overflow protection ── */
  .container, section, .section { overflow-x: hidden; }

  /* ── Container padding ── */
  .container { padding: 0 1.25rem !important; }

  /* ── Section padding ── */
  .section { padding: 3rem 0 !important; }

  /* ── Typography scale ── */
  h1, .hero-title { font-size: clamp(3.2rem, 13vw, 5rem) !important; line-height: 0.9 !important; }
  h2, .section-title { font-size: clamp(1.6rem, 7vw, 2.8rem) !important; }
  h3 { font-size: clamp(1.1rem, 5vw, 1.6rem) !important; }
  p, .section-body { font-size: 0.88rem !important; line-height: 1.7 !important; }

  /* ── Hero sections ── */
  .hero { min-height: 100svh !important; }
  .page-hero { height: 65vh !important; min-height: 380px !important; }
  .page-hero-content { padding: 0 1.25rem !important; }
  .hero-content { padding: 0 1.25rem !important; }

  /* Hide distracting eyebrow text on mobile */
  .hero-eyebrow { display: none !important; }

  /* Tighten hero sub text */
  .hero-sub { font-size: 0.9rem !important; line-height: 1.6 !important; margin-bottom: 1.75rem !important; }

  /* Stack badge pills cleanly — show only 2 on mobile */
  .hero-content > div[style*="flex-wrap:wrap"] div:nth-child(3) { display: none !important; }
  .hero-content > div[style*="flex-wrap:wrap"] { gap: 0.5rem !important; margin-top: 1.25rem !important; }

  /* ── Announcement bar — slim it down ── */
  .announcement-bar { padding: 0.3rem 2.5rem 0.3rem 1rem !important; min-height: 30px !important; }
  .ann-messages, .announcement-bar-text { font-size: 0.58rem !important; }
  .announcement-bar-cta { display: none !important; }

  /* Adjust body/header offset for slimmer bar */
  body { padding-top: calc(30px + 64px) !important; }
  .site-header { top: 30px !important; }
  .mobile-nav { top: calc(30px + 64px) !important; }

  /* ── Navigation ── */
  .header-cta { display: none !important; }
  .header-phone { display: none !important; }
  .site-header { padding: 0 1.25rem !important; }
  /* Hide Build Calculator inline link on mobile */
  .header-inner > a[href="build-calculator.html"] { display: none !important; }

  /* ── Named CSS grid classes ── */
  .story-grid,
  .br-calc-grid,
  .calc-wrapper,
  .footer-top,
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

  .card-grid { grid-template-columns: 1fr !important; }
  .layout-cards { grid-template-columns: 1fr !important; }
  .reviews-strip { grid-template-columns: 1fr !important; }

  /* ── Inline style grid overrides — ALL patterns found on site ── */

  /* 2-col patterns */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr 2fr"],
  [style*="grid-template-columns: 1fr 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Mixed fr patterns */
  [style*="grid-template-columns:2fr 1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:2fr 1fr 1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Fixed pixel + fr patterns */
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns: 1fr 360px"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 400px"],
  [style*="grid-template-columns: 1fr 400px"],
  [style*="grid-template-columns:400px 1fr"],
  [style*="grid-template-columns: 400px 1fr"],
  [style*="grid-template-columns:240px 1fr"],
  [style*="grid-template-columns: 240px 1fr"],
  [style*="grid-template-columns:48px 1fr"],
  [style*="grid-template-columns: 48px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* repeat() patterns */
  [style*="grid-template-columns:repeat(2,"],
  [style*="grid-template-columns: repeat(2,"],
  [style*="grid-template-columns:repeat(2, "],
  [style*="grid-template-columns: repeat(2, "] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,"],
  [style*="grid-template-columns: repeat(3,"],
  [style*="grid-template-columns:repeat(3, "],
  [style*="grid-template-columns: repeat(3, "] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4,"],
  [style*="grid-template-columns: repeat(4,"],
  [style*="grid-template-columns:repeat(4, "],
  [style*="grid-template-columns: repeat(4, "] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:repeat(5,"],
  [style*="grid-template-columns: repeat(5,"],
  [style*="grid-template-columns:repeat(7,"],
  [style*="grid-template-columns: repeat(7,"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ── Flex overrides ── */
  .btn-group {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
  .split { flex-direction: column !important; }
  .split-content, .split-img { width: 100% !important; }

  /* ── Layout cards ── */
  .layout-card-grid,
  .layout-cards > div { grid-template-columns: 1fr !important; }

  /* ── Layout page specific ── */
  .step-block { grid-template-columns: 1fr !important; }
  .who-grid { grid-template-columns: 1fr !important; }
  .systems-grid { grid-template-columns: 1fr !important; }
  .configure-content { grid-template-columns: 1fr !important; }

  /* ── Tables ── */
  table { font-size: 0.75rem !important; display: block; overflow-x: auto; }
  td, th { padding: 0.5rem 0.75rem !important; white-space: nowrap; }

  /* ── Calculator panels ── */
  .calc-summary, .br-summary { position: static !important; margin-top: 1.5rem; }

  /* ── Gallery rows on layout pages ── */
  [style*="grid-template-columns:2fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns: 2fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-inner { padding: 2.5rem 1.25rem 1.5rem !important; }

  /* ── Sticky CTA ── */
  .sticky-cta { padding: 0.8rem 1rem !important; flex-wrap: wrap; gap: 0.5rem !important; }
  .sticky-cta-text { font-size: 0.82rem !important; }
  .sticky-cta-sub { display: none !important; }
  .sticky-cta-buttons .btn { padding: 0.55rem 1rem !important; font-size: 0.66rem !important; }

  /* ── CTA banners ── */
  .cta-banner { padding: 4rem 1.5rem !important; }
  .cta-banner-inner, .svc-cta-content { max-width: 100% !important; padding: 0 !important; }

  /* ── Process page ── */
  .process-steps-row,
  .phase-grid { grid-template-columns: 1fr !important; }
  .phase-steps::before { display: none !important; }

  /* ── Service page ── */
  .intro-inner, .comm-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .brands-cols { grid-template-columns: 1fr !important; }
  .who-strip-inner { gap: 1rem !important; }

  /* ── Contact page ── */
  .contact-grid { grid-template-columns: 1fr !important; }
  .bk-grid { grid-template-columns: 1fr !important; }

  /* ── Van dealer finder ── */
  .dealer-layout { grid-template-columns: 1fr !important; flex-direction: column !important; }
  .dealer-map { height: 300px !important; }

  /* ── Images ── */
  .layout-card-img, .card-img { max-height: 220px !important; }
  img { max-width: 100% !important; height: auto; }

  /* ── Padding/margin reduction on small screens ── */
  [style*="padding:3rem"], [style*="padding: 3rem"] { padding: 1.5rem !important; }
  [style*="padding:2.5rem"], [style*="padding: 2.5rem"] { padding: 1.25rem !important; }

  /* ── Review carousel ── */
  .reviews-track { gap: 1rem !important; }
  .review-card { min-width: 280px !important; max-width: 320px !important; }

  /* ── Spec table on truckcampers ── */
  .spec-grid { grid-template-columns: 1fr !important; }

}

@media (max-width: 480px) {

  /* Extra small phones */
  h1, .hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem) !important; }
  .hero-sub, .hero-content p { font-size: 0.82rem !important; }
  .section-title { font-size: clamp(1.5rem, 8vw, 2.2rem) !important; }

  .btn { padding: 0.7rem 1.25rem !important; font-size: 0.68rem !important; }
  .btn-group { gap: 0.5rem !important; }

  /* Keep stats strips readable at 2 col even on very small screens */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Single col everything on very small */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .layout-card { padding: 0 !important; }
  .sticky-cta-text { font-size: 0.75rem !important; }
  .page-hero { height: 75vh !important; }

  .footer-top { gap: 1.5rem !important; }
  .footer-col-new h4 { font-size: 0.75rem !important; }
  .footer-col-new a { font-size: 0.78rem !important; }

}

/* ── Font consistency: pages using Cormorant Garamond for editorial headings ── */
.intro-heading,
.brands-heading,
.services-sec-heading,
.process-strip-heading,
.comm-heading,
.svc-hero-content h1 {
  font-family: var(--font-serif);
}
/* Ensure all body text paragraphs use DM Sans regardless of page */
.intro-body,
.brands-sub,
.services-sec-sub,
p.section-body,
.svc-card-desc,
.pstep-body {
  font-family: var(--font-body) !important;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}
