/* ============================================================
   A & E Auto and Boat Upholstery — Main Stylesheet
   4-Color Palette:
     --color-dark   #1A1F2E  (backgrounds)
     --color-red    #E70302  (primary CTAs, active nav)
     --color-gold   #C9A84C  (accents, eyebrows, borders)
     --color-white  #FFFFFF  (text, headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --color-dark:  #1A1F2E;
  --color-red:   #E70302;
  --color-gold:  #C9A84C;
  --color-white: #FFFFFF;

  /* Derived tints */
  --color-dark-lighter: #242A3B;
  --color-dark-overlay: rgba(26, 31, 46, 0.72);
  --color-red-hover:    #C50202;
  --color-gold-muted:   rgba(201, 168, 76, 0.20);
  --color-white-muted:  rgba(255, 255, 255, 0.65);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-text: 780px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: 250ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--color-dark);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section { padding-block: var(--space-16); }
.section--alt { background-color: var(--color-dark-lighter); }
.section--gold-tint { background-color: var(--color-gold-muted); }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--color-white-muted); margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.section-heading {
  margin-bottom: var(--space-4);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--color-white-muted);
  max-width: 650px;
  margin-bottom: var(--space-8);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-8);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn--red {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--red:hover, .btn--red:focus-visible {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--color-white);
  color: var(--color-dark);
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: #b8963e;
  border-color: #b8963e;
}
.btn--lg { padding: var(--space-4) var(--space-10); font-size: 0.9rem; }

/* ── HEADER ── */
.site-header {
  position: relative;
  background-color: var(--color-dark);
  background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951781283_upholstery-pattern-background.png');
  background-repeat: repeat;
  background-size: auto;
  border-bottom: 2px solid var(--color-red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}
.header-logo img {
  height: 64px;
  width: auto;
}

/* Nav */
.site-nav {}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: block;
  position: relative;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--color-gold);
}
.nav-link.is-active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-red);
  position: absolute;
  bottom: -2px;
  left: var(--space-3);
  right: var(--space-3);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active { color: var(--color-gold); }
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.nav-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-dark-lighter);
  border: 1px solid var(--color-gold-muted);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  padding-top: calc(var(--space-2) + 8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 200;
}
.dropdown-menu.is-open { display: block; }
@media (min-width: 1024px) {
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-toggle { color: var(--color-gold); }
  .nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
}
.dropdown-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  transition: color var(--transition), background var(--transition);
}
.dropdown-link:hover {
  color: var(--color-gold);
  background: var(--color-gold-muted);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger-btn.is-active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--short {
  min-height: 50vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
/* Gradient backgrounds per page (placeholders until real images) */
.hero--home .hero-bg         { background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951779445_home-hero-background.png'); background-color: #0e0f14; background-size: cover; background-position: center; }
.hero--about,
.hero--auto-rv,
.hero--boat,
.hero--classic-car,
.hero--motorcycle,
.hero--gallery,
.hero--contact,
.hero--city                  { background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951778312_american-flag-background.png'); background-color: #12161f; background-size: cover; background-position: center; background-attachment: fixed; overflow: visible; }
.hero--about .hero-bg,
.hero--auto-rv .hero-bg,
.hero--boat .hero-bg,
.hero--classic-car .hero-bg,
.hero--motorcycle .hero-bg,
.hero--gallery .hero-bg,
.hero--contact .hero-bg,
.hero--city .hero-bg         { display: none; }
.hero--about .hero-overlay,
.hero--auto-rv .hero-overlay,
.hero--boat .hero-overlay,
.hero--classic-car .hero-overlay,
.hero--motorcycle .hero-overlay,
.hero--gallery .hero-overlay,
.hero--contact .hero-overlay,
.hero--city .hero-overlay    { display: none; }
.hero--about .hero-sub,
.hero--auto-rv .hero-sub,
.hero--boat .hero-sub,
.hero--classic-car .hero-sub,
.hero--motorcycle .hero-sub,
.hero--gallery .hero-sub,
.hero--contact .hero-sub,
.hero--city .hero-sub        { max-width: 100%; margin-bottom: 0; color: var(--color-gold); }
.hero--about .hero-heading,
.hero--auto-rv .hero-heading,
.hero--boat .hero-heading,
.hero--classic-car .hero-heading,
.hero--motorcycle .hero-heading,
.hero--gallery .hero-heading,
.hero--contact .hero-heading,
.hero--city .hero-heading    { margin-bottom: 0; color: var(--color-red); text-shadow: 0 0 4px #000, 0 0 10px #000, 0 0 18px #000, 2px 2px 4px #000, -2px -2px 4px #000, 2px -2px 4px #000, -2px 2px 4px #000; }
.hero--contact .hero-content { align-items: center; text-align: center; }
.hero--about .hero-buttons,
.hero--gallery .hero-buttons,
.hero--contact .hero-buttons,
.hero--city .hero-buttons    { margin-top: var(--space-6); }

/* ── CITY PAGE LAYOUT ── */
.city-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: stretch; }
.city-about-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); display: block; }
.city-about-box { background: rgba(0,0,0,0.72); border-radius: var(--radius-md); padding: var(--space-6) var(--space-8); display: flex; flex-direction: column; justify-content: center; color: var(--color-gold); }
.city-about-box h2 { color: var(--color-gold); margin-bottom: var(--space-4); font-size: 1.4rem; }
.city-about-box p { color: var(--color-gold); margin: 0; }
@media (max-width: 767px) {
  .city-about-grid { grid-template-columns: 1fr; }
  .city-about-grid img { height: 280px; }
}
.about-text-backdrop         { background: rgba(0, 0, 0, 0.72); border-radius: var(--radius-md); padding: var(--space-6) var(--space-8); }
.hero--auto-rv .hero-bg      { background: linear-gradient(135deg, #0f1218 0%, #1a2232 50%, #221a10 100%); }
.hero--boat .hero-bg         { background: linear-gradient(135deg, #0a1520 0%, #0f2030 50%, #1a2838 100%); }
.hero--classic-car .hero-bg  { background: linear-gradient(135deg, #150f0a 0%, #25180e 50%, #1a1520 100%); }
.hero--motorcycle .hero-bg   { background: linear-gradient(135deg, #0d0d10 0%, #1a1520 50%, #20180e 100%); }
.hero--gallery .hero-bg      { background: linear-gradient(135deg, #0d0d10 0%, #1a1f2e 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-dark-overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-10);
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
  margin-inline: auto;
}
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.hero-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}
.hero-heading span { color: inherit; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--color-white-muted);
  margin-bottom: var(--space-8);
  max-width: 700px;
  line-height: 1.7;
  margin-inline: auto;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  width: 260px;
  margin-inline: auto;
}

/* Page Header (non-hero pages: about, contact) */
.page-header {
  background: var(--color-dark-lighter);
  border-bottom: 1px solid var(--color-gold-muted);
  padding-block: var(--space-16);
}
.page-header-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.page-header h1 { margin-bottom: var(--space-4); }
.page-header p  { font-size: 1.1rem; max-width: 650px; }

/* ── WHY CHOOSE section (Home) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.card {
  background: var(--color-dark-lighter);
  border: 1px solid var(--color-gold-muted);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  transition: border-top-color var(--transition), transform var(--transition);
}
.card:hover { border-top-color: var(--color-gold); transform: translateY(-4px); }
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-red);
  margin-bottom: var(--space-4);
}
.card h3 { color: var(--color-white); margin-bottom: var(--space-2); }
.card p  { font-size: 0.9rem; color: var(--color-white-muted); margin: 0; }
.why-choose-section .card h3 { text-align: center; }
.why-choose-section .card-icon { display: block; margin-inline: auto; }

/* ── WHY CHOOSE SECTION ── */
.why-choose-section {
  background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951778312_american-flag-background.png');
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ── WARRANTY BANNER ── */
.warranty-banner {
  background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951780378_one-year-warranty-background.png');
  background-color: var(--color-red);
  background-size: cover;
  background-position: center;
  padding-block: var(--space-12);
  text-align: center;
}
.warranty-banner h2 { color: var(--color-white); margin-bottom: var(--space-4); }
.warranty-banner p  { color: rgba(255,255,255,0.85); max-width: 680px; margin-inline: auto; font-size: 1.05rem; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.service-card {
  background: var(--color-dark-lighter);
  border: 1px solid var(--color-gold-muted);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--color-gold); transform: translateY(-3px); }
.service-card h3 { color: var(--color-gold); margin-bottom: var(--space-2); font-size: 1rem; }
.service-card p  { font-size: 0.9rem; color: var(--color-white-muted); margin: 0; }

/* Feature list */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.feature-pill {
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 100px;
}

/* ── STORY / ABOUT ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.story-image-placeholder {
  background: var(--color-dark-lighter);
  border: 2px dashed var(--color-gold-muted);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-muted);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-align: center;
  padding: var(--space-4);
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding-block: var(--space-16); }
.testimonials-section .section-heading { margin-bottom: var(--space-2); }
.testimonials-section .section-sub { margin-bottom: var(--space-8); }
.reviews-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gold-muted);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--color-dark-lighter);
  border-top: 3px solid var(--color-red);
  padding-block: var(--space-16);
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}
.cta-text h2 { margin-bottom: var(--space-3); }
.cta-text p  { color: var(--color-white-muted); max-width: 520px; margin-inline: auto; margin-bottom: 0; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-4);
  width: 260px;
}
.cta-buttons .btn,
.hero-buttons .btn { justify-content: center; }
.cta-buttons .btn--phone,
.hero-buttons .btn--phone { width: 100%; }

/* ── GALLERY CAROUSELS ── */
.carousel-section { padding-block: var(--space-16); }
.carousel-section .section-heading { margin-bottom: var(--space-8); }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-2);
}
.carousel-slide img,
.rv-single-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold-muted);
  cursor: pointer;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.lightbox-close:hover { opacity: 1; color: var(--color-gold); }
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-dark-lighter);
  border: 2px dashed var(--color-gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-muted);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-align: center;
  padding: var(--space-4);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 31, 46, 0.85);
  border: 1px solid var(--color-gold-muted);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition), color var(--transition);
}
.carousel-btn:hover { background: var(--color-red); border-color: var(--color-red); }
.carousel-btn--prev { left: var(--space-2); }
.carousel-btn--next { right: var(--space-2); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active { background: var(--color-red); border-color: var(--color-red); transform: scale(1.35); }

/* ── CONTACT PAGE ── */
.contact-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gold-muted);
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--color-dark);
  background-image: url('https://pbrlhyansxjdndccwtau.supabase.co/storage/v1/object/public/media-public/aee7c2b2-a574-4e23-a4b1-32928356d9b5/0f7f7712-5ad1-4392-bbf8-7cf41634cb5a/1776951781283_upholstery-pattern-background.png');
  background-repeat: repeat;
  background-size: auto;
  border-top: 2px solid var(--color-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-block: var(--space-16);
}
.footer-logo img { height: 72px; width: auto; margin-bottom: var(--space-4); }
.footer-tagline { font-size: 0.85rem; color: var(--color-red); margin: 0; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-4);
}
.footer-contact p {
  font-size: 0.9rem;
  color: var(--color-red);
  margin-bottom: var(--space-2);
}
.footer-contact a { color: var(--color-red); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-gold); }

.social-list { display: flex; flex-direction: column; gap: var(--space-3); }
.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-red);
  transition: color var(--transition);
}
.social-link:hover { color: var(--color-gold); }
.social-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-block: var(--space-6);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.8rem;
  color: var(--color-red);
}
.footer-legal a { color: var(--color-red); transition: color var(--transition); }
.footer-legal a:hover { color: var(--color-gold); }
.footer-legal span { color: var(--color-gold-muted); }
.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-red);
  margin: 0;
}
.footer-powered {
  font-size: 0.8rem;
  color: var(--color-red);
  margin: 0;
}
.footer-powered a { color: var(--color-red); transition: color var(--transition); }
.footer-powered a:hover { color: var(--color-gold); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: var(--max-width-text);
  margin-inline: auto;
  padding-block: var(--space-16);
}
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.legal-content p, .legal-content li { font-size: 0.9rem; color: var(--color-white-muted); }
.legal-content ul { list-style: disc; padding-left: var(--space-6); }
.legal-content li { margin-bottom: var(--space-2); }

/* ── CALL STRIP (repeated CTA between sections) ── */
.call-strip {
  background: var(--color-dark-lighter);
  border-top: 1px solid var(--color-gold-muted);
  border-bottom: 1px solid var(--color-gold-muted);
  padding-block: var(--space-8);
  text-align: center;
}

/* ── PHONE BUTTON (two-line: "Call Now" / number) ── */
.btn--phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-red);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: var(--space-3) var(--space-10);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.btn--phone:hover { background: var(--color-red-hover); border-color: var(--color-red-hover); }
.btn--phone .btn-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.btn--phone .btn-number { font-size: 1.05rem; font-weight: 800; }

/* ── SERVICE BULLET LIST ── */
.service-list {
  list-style: none;
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-3);
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-white-muted);
  font-size: 0.95rem;
  padding: var(--space-3) var(--space-4);
  background: var(--color-dark-lighter);
  border: 1px solid var(--color-gold-muted);
  border-left: 3px solid var(--color-red);
  border-radius: var(--radius-sm);
}
.service-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── UPHOLSTERY PATTERN BACKGROUND SECTIONS ── */
.section--upholstery-bg .section-heading { color: var(--color-gold); }
.section--upholstery-bg p { color: var(--color-red); }
.section--upholstery-bg .content-image-grid { align-items: center; }

/* ── CONTENT + IMAGE GRID (service pages) ── */
.content-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-top: var(--space-8);
}
@media (max-width: 767px) {
  .content-image-grid { grid-template-columns: 1fr; }
}

/* ── HERO TAGLINE BADGE ── */
.hero-tagline-badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-6);
  border-radius: 100px;
  margin-bottom: var(--space-6);
}

/* ── INTRO TEXT SECTION ── */
.intro-section {
  padding-block: var(--space-16);
  text-align: center;
}
.intro-section h2 {
  margin-bottom: var(--space-6);
}
.intro-section p {
  max-width: 780px;
  margin-inline: auto;
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
}
.intro-section p:last-of-type { margin-bottom: var(--space-8); }

/* ── DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--color-red);
  margin-bottom: var(--space-6);
}
.gold-divider--center { margin-inline: auto; }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1023px) {
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { width: 100%; max-width: 320px; }
}

@media (max-width: 639px) {
  .hero-buttons { width: 100%; max-width: 320px; }
  .hero-buttons .btn { text-align: center; }
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .hamburger-btn { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-lighter);
    border-bottom: 2px solid var(--color-red);
    z-index: 100;
    padding: var(--space-4) 0;
  }
  .site-nav.is-open { display: block; }

  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 var(--space-6); }
  .nav-item { width: 100%; }
  .nav-link { padding: var(--space-3) 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
  .nav-link.is-active::after { display: none; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { padding: var(--space-3) 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .dropdown-menu {
    position: static;
    display: none;
    background: var(--color-dark);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    padding-left: var(--space-4);
  }
  .dropdown-menu.is-open { display: block; }
  .dropdown-link { padding: var(--space-3) 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* Desktop: hide hamburger */
@media (min-width: 1024px) {
  .hamburger-btn { display: none; }
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── MOBILE OPTIMIZATIONS ── */

/* 1. Disable background-attachment: fixed on mobile/tablet
      iOS Safari does not support it and causes blank sections or severe scroll jank.
      The parallax effect is lost on all mobile platforms regardless. */
@media (max-width: 1023px) {
  .hero--about,
  .hero--auto-rv,
  .hero--boat,
  .hero--classic-car,
  .hero--motorcycle,
  .hero--gallery,
  .hero--contact,
  .hero--city         { background-attachment: scroll; }
  .why-choose-section { background-attachment: scroll; }

  /* Sections using inline background-attachment: fixed (service + city pages) */
  section[style*="background-attachment"] { background-attachment: scroll !important; }
}

/* 2. Reduce section vertical padding on mobile */
@media (max-width: 767px) {
  .section,
  .cta-section,
  .testimonials-section,
  .carousel-section   { padding-block: var(--space-10); }
  .footer-grid        { padding-block: var(--space-10); }
}

/* 3. Reduce hero min-height on mobile */
@media (max-width: 767px) {
  .hero        { min-height: 60vh; }
  .hero--short { min-height: 45vh; }
}

/* 4. Make embedded iframes height-responsive */
@media (max-width: 767px) {
  .contact-embed iframe { min-height: 420px !important; }
  .reviews-embed iframe  { min-height: 380px !important; }
}
@media (max-width: 479px) {
  .contact-embed iframe          { min-height: 340px !important; }
  .reviews-embed iframe           { min-height: 300px !important; }
  iframe[src*="maps.google.com"] { height: 300px !important; }
}

/* 5. Increase carousel dot tap target (visual size unchanged) */
@media (max-width: 1023px) {
  .carousel-dot {
    padding: 8px;
    box-sizing: content-box;
  }
}

/* 6. Force single-column service grids at narrow widths */
@media (max-width: 639px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-list  { grid-template-columns: 1fr; }
}
