/* ============================================
   TURBO CLEAN YYC — Global Stylesheet
   ============================================ */

/* Hide scrollbar while keeping scroll functionality */
html {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge */
}
::-webkit-scrollbar {
  display: none;                /* Chrome / Safari / mobile WebKit */
}

/* 1. CSS Variables
   ----------------------------------------- */
:root {
  --primary: #083431;
  --primary-dark: #052523;
  --bg: #fffef7;
  --gold: #f2c668;
  --gold-dark: #c9993a;
  --neutral: #474745;
  --neutral-light: #6b6b69;
  --white: #ffffff;
  --border: #e5e5e0;
  --shadow: 0 2px 12px rgba(8, 52, 49, 0.09);
  --shadow-hover: 0 8px 28px rgba(8, 52, 49, 0.16);
  --radius: 5px;
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--neutral);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 3. Typography
   ----------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--primary);
  line-height: 1.05;
  font-weight: 400; /* Bebas Neue is single-weight — bold by design */
  letter-spacing: 0.02em;
}

/* h4 stays Montserrat — Bebas Neue is too decorative at small sizes */
h4 {
  font-family: var(--font-body);
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(52px, 8vw, 88px); }
h2 { font-size: clamp(38px, 5.5vw, 62px); }
h3 { font-size: clamp(26px, 3.5vw, 38px); }
h4 { font-size: 16px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* 4. Layout
   ----------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 80px 24px; }
.section--sm    { padding: 52px 24px; }

.section--dark {
  background: var(--primary);
  color: var(--bg);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--bg); }

.section--tint  { background: #f0f5f4; }
.section--white { background: var(--white); }

/* 5. Buttons
   ----------------------------------------- */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-head);
  font-size: 20px;        /* Bebas Neue needs larger sizes to look right */
  font-weight: 400;       /* Bebas Neue is single-weight — bold by design */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;     /* Near-square corners, matching existing site */
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--primary); /* Dark teal border around gold button */
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242,198,104,0.45);
}

.btn--outline-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,254,247,0.6);
}
.btn--outline-light:hover {
  background: rgba(255,254,247,0.12);
  border-color: var(--bg);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--bg);
}

.btn--lg { padding: 17px 48px; font-size: 22px; }

/* 6. Navigation
   ----------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1;
}

/* Nav button slightly smaller so it fits the 68px bar */
.nav .btn {
  padding: 10px 22px;
  font-size: 16px;
}
.nav__logo span { color: rgba(255,254,247,0.75); }
.nav__logo-icon {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  color: rgba(255,254,247,0.85);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--gold); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--bg);
  line-height: 0;
}

/* 7. Hero
   ----------------------------------------- */
.hero {
  background: var(--primary);
  padding: 96px 24px 84px;
  text-align: center;
}

.hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero__logo {
  width: 360px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}

.hero h1 {
  color: var(--bg);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,254,247,0.78);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 8. Trust Bar
   ----------------------------------------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  font-family: var(--font-body);
}

/* 9. Section Header
   ----------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.section-header p {
  font-size: 16px;
  color: var(--neutral-light);
  max-width: 540px;
  margin: 0 auto;
}
/* On dark sections the subtitle needs to be readable */
.section--dark .section-header p { color: rgba(255,254,247,0.68); }

/* 10. Service Cards
    ----------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.card h3 { font-size: 26px; margin-bottom: 10px; }

.card p {
  font-size: 15px;
  color: var(--neutral-light);
  flex: 1;
  margin-bottom: 20px;
}

.card__cta {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.card__cta:hover { color: var(--gold-dark); }

/* 11. How It Works — Home Strip
    ----------------------------------------- */
.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.step-item {
  text-align: left;
  position: relative;
}

.step-icon {
  width: 88px;
  height: 88px;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 100%; height: 100%; }

.step-item h3 { margin-bottom: 10px; }

.step-item p {
  font-size: 15px;
  color: var(--neutral-light);
  margin: 0;
}

/* Steps on dark background */
.section--dark .step-item h3 { color: var(--gold); }
.section--dark .step-item p  { color: rgba(255,254,247,0.75); }

.steps-strip .step-item:not(:last-child)::after {
  display: none;
}

/* 12. Instagram Feed
    ----------------------------------------- */

/* 13. Service Area
    ----------------------------------------- */
.service-area { text-align: center; }

.area-cities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-pill {
  background: var(--primary);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
}

/* 14. CTA Band
    ----------------------------------------- */
.cta-band {
  padding: 72px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--bg); margin-bottom: 12px; }
.cta-band p {
  color: rgba(255,254,247,0.72);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* 15. Footer
    ----------------------------------------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,254,247,0.65);
  padding: 52px 24px 28px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__tagline { font-size: 14px; margin-bottom: 16px; }

.footer__phone {
  display: block;
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer__phone:hover { color: var(--gold); }

.footer__review {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.15s;
}
.footer__review:hover { opacity: 0.8; }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a { font-size: 14px; transition: color 0.15s; }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,254,247,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

/* 16. Page Header (inner pages)
    ----------------------------------------- */
.page-header {
  background: var(--primary);
  padding: 64px 24px 56px;
  text-align: center;
}
.page-header h1 {
  color: var(--bg);
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.page-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.page-header p {
  color: rgba(255,254,247,0.72);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* 17. Pricing Tables (services.html)
    ----------------------------------------- */
.pricing-section { margin-bottom: 60px; }
.pricing-section h2 { margin-bottom: 6px; }
.pricing-section > .pricing-desc {
  color: var(--neutral-light);
  font-size: 15px;
  margin-bottom: 22px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 580px;
}

.price-table thead tr { background: var(--primary); }
.price-table thead th {
  padding: 13px 20px;
  text-align: left;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-table tbody tr { border-bottom: 1px solid var(--border); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #f5f9f8; }

.price-table td {
  padding: 16px 20px;
  font-size: 15px;
  vertical-align: top;
}

.price-table td:first-child {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.price-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.price-incl {
  font-size: 13px;
  color: var(--neutral-light);
  margin-top: 4px;
  line-height: 1.55;
}

/* Bundles */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bundle-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadow);
}

.bundle-card h3 { font-size: 26px; margin-bottom: 6px; }

.bundle-price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.bundle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.bundle-card p { font-size: 14px; color: var(--neutral-light); margin: 0; }
.bundle-detail { font-size: 13px; color: var(--neutral-light); margin-top: 8px; margin-bottom: 0; }

/* Add-ons */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.addon-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 20px;
  box-shadow: var(--shadow);
}

.addon-card h4 { font-size: 16px; margin-bottom: 4px; }
.addon-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 15px;
  margin-bottom: 8px;
}
.addon-card p { font-size: 13.5px; color: var(--neutral-light); margin: 0; }

/* Surcharges */
.surcharge-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 620px;
}

.surcharge-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.surcharge-row:last-child { border-bottom: none; }

.surcharge-name { font-weight: 600; color: var(--primary); font-size: 15px; }
.surcharge-note { font-size: 13px; color: var(--neutral-light); margin-top: 2px; }
.surcharge-amt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--neutral);
  white-space: nowrap;
  font-size: 15px;
}

/* 18. How It Works Page
    ----------------------------------------- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-top: 2px;
}

.process-content h3 { margin-bottom: 6px; }
.process-content p { font-size: 16px; color: var(--neutral-light); margin: 0; }

/* Duration table */
.duration-table {
  width: 100%;
  max-width: 580px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.duration-table th {
  background: var(--primary);
  color: var(--bg);
  padding: 12px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.duration-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.duration-table tr:last-child td { border-bottom: none; }
.duration-table td:first-child { font-weight: 600; color: var(--primary); }

/* 19. About Page
    ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-photo-wrap {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #c8c7c0 0%, #aeada6 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #7a7a77;
  font-size: 13px;
  text-align: center;
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h1 { margin-bottom: 20px; }
.about-content p { font-size: 16.5px; line-height: 1.7; }

.differentiators {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.diff-icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.diff-item h4 { font-size: 15px; margin-bottom: 3px; }
.diff-item p { font-size: 13.5px; color: var(--neutral-light); margin: 0; }

/* 20. FAQ Page
    ----------------------------------------- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

details.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: var(--shadow-hover); }

summary.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  font-family: var(--font-body);
}
summary.faq-q::-webkit-details-marker { display: none; }

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s;
  line-height: 1;
}
details[open] .faq-arrow { transform: rotate(45deg); }

.faq-a {
  padding: 16px 22px 20px;
  font-size: 15.5px;
  color: var(--neutral-light);
  border-top: 1px solid var(--border);
  line-height: 1.65;
}

/* Contact block */
.contact-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px 32px;
  color: var(--bg);
  text-align: center;
  max-width: 460px;
  margin: 52px auto 0;
}
.contact-block h3 { color: var(--bg); margin-bottom: 14px; }
.contact-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-block > p { font-size: 14px; color: rgba(255,254,247,0.65); margin-bottom: 22px; }

/* 21. Booking Page
    ----------------------------------------- */
.booking-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 24px 64px;
  text-align: center;
}
.booking-wrap h1 { margin-bottom: 10px; }
.booking-wrap > p { color: var(--neutral-light); margin-bottom: 32px; font-size: 17px; }

.iframe-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  text-align: left;
}

/* 22. Responsive
    ----------------------------------------- */
@media (max-width: 900px) {
  .bundles-grid   { grid-template-columns: 1fr; }
  .addon-grid     { grid-template-columns: 1fr 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }

  .about-photo-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .section      { padding: 56px 20px; }
  .section--sm  { padding: 36px 20px; }

  /* Nav: hamburger */
  .nav__toggle { display: flex; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }
  .nav__menu.open { display: flex; }

  .nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__link {
    padding: 13px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,254,247,0.07);
  }
  .nav__menu .btn {
    margin: 14px 24px 0;
    text-align: center;
    display: block;
  }

  /* Stacks */
  .cards-grid     { grid-template-columns: 1fr; }
  .steps-strip    { grid-template-columns: 1fr; gap: 20px; }
  .steps-strip .step-item:not(:last-child)::after { display: none; }
  .before-after   { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .addon-grid     { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 20px 60px; }
  .trust-pill { font-size: 12px; padding: 5px 11px; }
  .bundle-card { padding: 18px; }
}

/* 23. Seasonal Banner
   ----------------------------------------- */
.seasonal-banner {
  background: var(--gold);
  padding: 16px 24px;
}
.seasonal-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.seasonal-banner__text {
  font-weight: 600;
  color: var(--primary);
  font-size: 14.5px;
}
.seasonal-banner .btn {
  background: var(--primary);
  color: var(--gold);
  border-color: var(--primary);
  padding: 9px 22px;
  font-size: 15px;
  white-space: nowrap;
}
.seasonal-banner .btn:hover {
  background: var(--primary-dark);
  color: var(--gold);
}

/* 24. Hero Urgency Line
   ----------------------------------------- */
.hero__urgency {
  font-size: 13px;
  color: rgba(255,254,247,0.55);
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* 25. Before & After Gallery
   ----------------------------------------- */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.ba-pair {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.ba-pair:hover { box-shadow: var(--shadow-hover); }

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #c8c7c0;
  overflow: hidden;
}
.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(8,52,49,0.88);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 2px;
}

.ba-caption {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid var(--border);
}

/* 26. Reviews / Testimonials
   ----------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.review-stars { color: var(--gold-dark); font-size: 17px; letter-spacing: 2px; }

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--neutral);
  flex: 1;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.review-platform {
  font-size: 12px;
  color: var(--neutral-light);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.reviews-cta { text-align: center; margin-top: 32px; }
.reviews-cta a { margin: 0 8px; }

/* 27. FAQ Preview (homepage)
   ----------------------------------------- */
.faq-preview {
  max-width: 680px;
  margin: 0 auto;
}
/* Inherits .faq-item, .faq-q, .faq-a, .faq-arrow styles */

/* 28. Referral Strip
   ----------------------------------------- */
.referral-strip {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.referral-strip__text h3 { font-size: 28px; margin-bottom: 4px; }
.referral-strip__text p { font-size: 14px; color: var(--neutral-light); margin: 0; }

/* 29. Guarantee Callout (services page)
   ----------------------------------------- */
.guarantee-callout {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.guarantee-callout__icon { font-size: 36px; flex-shrink: 0; }
.guarantee-callout h3 { font-size: 26px; color: var(--gold); margin-bottom: 4px; }
.guarantee-callout p { font-size: 14px; color: rgba(255,254,247,0.75); margin: 0; }

/* 30. Footer Email
   ----------------------------------------- */
.footer__email {
  display: block;
  color: rgba(255,254,247,0.65);
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer__email:hover { color: var(--gold); }

/* Responsive additions */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .before-after { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .referral-strip { flex-direction: column; text-align: center; }
  .guarantee-callout { flex-direction: column; text-align: center; }
}
