/* Sunny Home Services - V2 prototype
   Mirrors the V2 Figma layout 1:1 with brand-color decorations,
   2-column services split, sun-shape About Us mascot, bold coupons,
   real Utah map, contact form. Hero stays a full-cover video with
   interactive title (hover/click/parallax). */

/* ---------- Brand fonts (local: Degular Bold + Rubik) ---------- */
@font-face {
  font-family: 'Degular';
  src: local('Degular Demo Bold'), local('DegularDemo-Bold'),
       url('../assets/fonts/degular-bold-demo.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rubik';
  src: local('Rubik Regular'), local('Rubik-Regular'),
       url('../assets/fonts/Rubik-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================================
   BRAND TOKENS - THE SINGLE SOURCE OF TRUTH
   ----------------------------------------------------------------------------
   Defined here ONCE. No other stylesheet and no page may redefine a color.
   Values verified against the live Elementor kit on sunnyhomeservices.com, so
   they already agree with the site's Global Colors:

     Elementor Primary    #03A6CC  -> --sky-deep
     Elementor Secondary  #FFC704  -> --yellow
     Elementor custom     #F17601  -> --orange
     Elementor Text       #454545  -> --ink / --charcoal
     Elementor fonts      Rubik (body), Degular (display)

   For the WordPress rebuild, this block IS the Elementor Global Colors panel.
   ============================================================================ */
:root {
  --sky:        #04cfff;   /* Sunny Blue */
  --sky-deep:   #03A6CC;   /* Elementor Primary - dark sections */
  --sky-darker: #0288a8;   /* deepest blue */
  --yellow:     #FFC704;   /* Elementor Secondary - primary warm / CTA */
  --orange:     #F17601;   /* deep orange (Sun Gradient start) */
  --sun-gold:   #FFC704;   /* Sun Yellow - bright accent */
  --charcoal:   #454545;
  --ink:        #454545;   /* Elementor Text */
  --muted:      #6B7480;
  --off-sky:    #e6fbff;   /* light Sunny Blue tint */
  --sand:       #FAF4ED;
  --white:      #ffffff;
  --hairline:   #DBE3E6;
  --sun-gradient: linear-gradient(90deg, #F17601 0%, #FFC704 100%);
  --font-display: 'Degular', 'Arial Narrow', sans-serif;
  --font-body:    'Rubik', system-ui, sans-serif;
  --container:   1280px;
}

/* ---------- Typewriter caret ---------- */
.type-caret {
  display: inline-block;
  width: 4px;
  height: 0.9em;
  background: var(--yellow);
  margin-left: 6px;
  vertical-align: -0.06em;
  border-radius: 2px;
  animation: caret-blink 0.7s steps(1) infinite;
}
@keyframes caret-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Type helpers ---------- */
.display-hero {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.display-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.display-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.lead {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  max-width: 580px;
  line-height: 1.65;
}
.lead-on-video,
.lead-on-dark { color: var(--white); }
.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.muted { color: var(--muted); font-size: 15px; }
.section-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.section-label-gold { color: var(--sun-gold); text-align: left; }
.section-label-orange { color: var(--yellow); }

/* ---------- Section base ---------- */
.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.on-dark {
  background: var(--sky-deep);
  color: var(--white);
}
.on-dark .display-h1,
.on-dark .display-h2 { color: var(--white); }

/* ---------- Decorative bg shapes (orbs, dots, stripes) ---------- */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.bg-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.bg-orb-sky    { background: radial-gradient(circle, rgba(27,181,221,0.18), transparent 70%); aspect-ratio: 1; }
.bg-orb-orange { background: radial-gradient(circle, rgba(255,164,36,0.18), transparent 70%); aspect-ratio: 1; }
.bg-orb-gold   { background: radial-gradient(circle, rgba(255,199,39,0.22), transparent 70%); aspect-ratio: 1; }
.bg-orb-gold-dark { background: radial-gradient(circle, rgba(255,199,39,0.12), transparent 70%); aspect-ratio: 1; }

.bg-dot-pattern {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(27,181,221,0.40) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: 0 0;
}
.bg-dot-pattern-gold {
  background-image: radial-gradient(rgba(255,199,39,0.55) 1.5px, transparent 1.5px);
}

.accent-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 3;
}
.accent-stripe-orange { background: var(--yellow); }
.accent-stripe-gold   { background: var(--sun-gold); }
.accent-stripe-sky    { background: var(--sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 32px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-pill { border-radius: 32px; }
.btn-lg   { padding: 18px 36px; font-size: 14px; letter-spacing: 0.3em; }
.btn-full { width: 100%; }
/* background-origin: border-box makes the gradient paint the full border-box.
   Without it, the gradient sizes to the padding box and its edge pixels smear
   under .btn's 2px transparent border, reading as a clipped ring at the corners. */
.btn-primary { background: var(--sun-gradient); background-origin: border-box; background-clip: border-box; color: var(--white); }
.btn-primary:hover { background: var(--sun-gradient); background-origin: border-box; background-clip: border-box; filter: brightness(0.93); transform: translateY(-2px); }
.btn-sky { background: var(--sky); background-origin: border-box; background-clip: border-box; color: var(--white); }
.btn-sky:hover { background: var(--sky-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ---------- Header (fixed) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 60px);
  height: 84px;
}
.header-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { height: 56px; width: auto; }
.logo-mascot { height: 52px; width: auto; }
.header-nav { display: flex; gap: 30px; }
.header-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--sky); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.phone-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 16px;
  color: var(--charcoal);
}
.phone-meta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--yellow);
  text-transform: uppercase;
}
/* ---------- Mobile nav (hamburger + slide-in menu) ---------- */
.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 42px; padding: 8px; margin-left: auto;
    background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 3px; width: 28px; border-radius: 2px; background: var(--charcoal);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  body.mm-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.mm-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.mm-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .mobile-menu {
    display: block; position: fixed; inset: 84px 0 0 0; z-index: 190;
    background: #fff; overflow-y: auto; padding: 18px clamp(20px, 5vw, 32px) 48px;
    transform: translateX(100%); visibility: hidden; transition: transform 0.3s ease, visibility 0.3s;
    overscroll-behavior: contain;
  }
  body.mm-open .mobile-menu { transform: none; visibility: visible; }
  body.mm-open { overflow: hidden; }

  .mm-top { display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding-bottom: 16px; border-bottom: 1px solid var(--hairline); margin-bottom: 8px; }
  .mm-phone { font-family: var(--font-body); font-weight: 900; font-size: 21px; color: var(--charcoal); }
  .mm-book { white-space: nowrap; }
  .mm-nav a, .mm-parent {
    display: block; width: 100%; text-align: left; background: none;
    border: 0; border-bottom: 1px solid var(--hairline); cursor: pointer;
    font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--charcoal);
    padding: 15px 4px;
  }
  .mm-parent { position: relative; }
  .mm-parent::after { content: "\25BE"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    color: var(--muted); font-size: 12px; transition: transform 0.2s ease; }
  .mm-group.open .mm-parent::after { transform: translateY(-50%) rotate(180deg); color: var(--orange); }
  .mm-sub { display: none; padding: 4px 0 8px 14px; }
  .mm-group.open .mm-sub { display: block; }
  .mm-sub a { font-weight: 600; font-size: 15px; color: var(--muted); padding: 12px 4px; border-bottom: 1px solid #f0f4f6; }
}
@media (max-width: 560px) {
  .logo-mark { height: 46px; }
  .logo-mascot { height: 42px; }
  .site-header { height: 72px; padding: 10px 18px; }
  .mobile-menu { inset: 72px 0 0 0; }
}

/* ---------- 01 Hero - video bg + interactive title ---------- */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,30,50,0.88) 0%, rgba(14,30,50,0.62) 38%, rgba(14,30,50,0.12) 70%, rgba(14,30,50,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 5vw 120px;
  width: 100%;
  max-width: var(--container);
}
.hero-title-interactive {
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
  perspective: 600px;
  margin-bottom: 32px;
}
.hero-title-interactive .word {
  display: inline-block;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.3s ease,
    text-shadow 0.3s ease;
  transform-origin: center bottom;
  will-change: transform, color;
  position: relative;
  margin-right: 0.18em;
}
.hero-title-interactive .word::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-title-interactive .word:hover {
  color: var(--yellow);
  transform: translateY(-10px) scale(1.05) rotateX(8deg);
  text-shadow: 0 8px 28px rgba(255, 164, 36, 0.45);
}
.hero-title-interactive .word:hover::after { width: 70%; }
.hero-title-interactive .word.is-clicked {
  animation: word-pop 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes word-pop {
  0%   { transform: translateY(-10px) scale(1.05); }
  35%  { transform: translateY(-22px) scale(1.18); color: var(--yellow); }
  100% { transform: translateY(0) scale(1); color: var(--white); }
}

.lead-on-video {
  max-width: 620px;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  opacity: 0.94;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-subnav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--sky-deep);
  padding: 18px 0;
  z-index: 3;
}
.subnav-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.subnav-track .dot {
  width: 4px; height: 4px;
  background: var(--sun-gold);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- 02 Trust Marquee ---------- */
.section-trust-marquee {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, var(--charcoal) 8%, var(--charcoal) 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, var(--charcoal) 8%, var(--charcoal) 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.cred-pill {
  background: var(--off-sky);
  border-radius: 28px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}

/* ---------- 03 Services - 2-column split ---------- */
.section-services { background: var(--white); }
.section-services .display-h1 { margin-bottom: 24px; }
.section-services .lead { margin: 0 auto 64px; text-align: center; }

.services-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.services-divider {
  width: 1px;
  background: var(--hairline);
  align-self: stretch;
  min-height: 460px;
}
.services-col-head {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.services-col-accent {
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 28px;
}
.services-col-accent-sky    { background: var(--sky); }
.services-col-accent-orange { background: var(--yellow); }

.service-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px 16px 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 30, 50, 0.08);
  border-color: transparent;
}
.service-icon {
  width: 88px; height: 88px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  font-weight: 900;
}
.service-icon-sky    { background: var(--sky); }
.service-icon-orange { background: var(--yellow); }
.service-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.service-arrow {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
}
.service-arrow-sky    { color: var(--sky); }
.service-arrow-orange { color: var(--yellow); }

@media (max-width: 900px) {
  .services-split { grid-template-columns: 1fr; }
  .services-divider { display: none; }
}

/* ---------- 04 Booking - sand bg ---------- */
.section-booking { background: var(--sand); }
.section-booking .display-h1 { margin-bottom: 56px; }

.booking-steps {
  display: flex;
  align-items: center;
  max-width: 880px;
  margin: 0 auto 48px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.step span {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.step-active span { color: var(--charcoal); }
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--hairline);
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-active .step-dot {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--white);
}
.step-line { flex: 1; height: 2px; background: var(--hairline); margin-top: -22px; }

.booking-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--hairline);
  padding: 32px 32px 36px;
  max-width: 1080px;
  margin: 0 auto 32px;
  position: relative;
}
.booking-card-note {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.booking-card h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.opt {
  background: var(--off-sky);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  color: var(--charcoal);
}
.opt:hover { transform: translateY(-2px); }
.opt.is-active { background: var(--yellow); color: var(--white); }
.opt-icon {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}
.opt-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.booking-continue { text-align: center; }
@media (max-width: 900px) {
  .booking-options { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 05 About Us - sister brand + sun-shape mascot ---------- */
.section-about {
  background: var(--sky-deep);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
  align-items: center;
}
.about-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* Sun-burst container - 14-point starburst made with CSS clip-path */
.sun-frame {
  position: relative;
  width: 440px;
  height: 440px;
  background: linear-gradient(160deg, var(--yellow) 0%, var(--sky-deep) 100%);
  /* 14-point starburst polygon (radii alternating ~1.0 / ~0.74) */
  --sun-points: polygon(
    50% 0%, 56.50% 17.20%, 72.79% 4.93%, 71.10% 25.17%, 92.05% 17.30%,
    81.69% 33.62%, 100% 35%, 86.79% 45.40%, 100% 65%, 81.69% 66.38%,
    92.05% 82.70%, 71.10% 74.83%, 72.79% 95.07%, 56.50% 82.80%,
    50% 100%, 43.50% 82.80%, 27.21% 95.07%, 28.90% 74.83%, 7.95% 82.70%,
    18.31% 66.38%, 0% 65%, 13.21% 45.40%, 0% 35%, 18.31% 33.62%,
    7.95% 17.30%, 28.90% 25.17%, 27.21% 4.93%, 43.50% 17.20%);
  clip-path: var(--sun-points);
  -webkit-clip-path: var(--sun-points);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sun-spin 60s linear infinite;
}
@keyframes sun-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sun-mascot {
  width: 70%;
  height: 70%;
  object-fit: contain;
  /* counter-rotate so the mascot stays upright while sun rotates */
  animation: sun-counter-spin 60s linear infinite;
}
@keyframes sun-counter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.meet-sunny-pill {
  background: var(--white);
  border-radius: 22px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.about-headline { color: var(--white); margin-bottom: 24px; }
.about-right .lead { margin-bottom: 32px; max-width: 620px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  max-width: 720px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,199,39,0.45);
  border-radius: 14px;
  padding: 18px 20px;
}
.stat-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-lbl {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun-gold);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .sun-frame  { width: 320px; height: 320px; }
}

/* ---------- 06 Specials - bold filled coupons ---------- */
.section-specials { background: var(--sand); }
.section-specials .display-h1 { margin-bottom: 56px; }
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coupon {
  position: relative;
  border-radius: 18px;
  padding: 56px 28px 28px;
  text-align: center;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coupon:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 30, 50, 0.15);
}
.coupon-sky    { background: var(--sky); }
.coupon-orange { background: var(--yellow); }
.coupon-ribbon {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--sun-gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 18px;
}
.coupon-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 9vw, 124px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.coupon-unit {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.coupon-divider {
  width: 60px; height: 2px;
  background: var(--sun-gold);
  margin: 0 auto 14px;
}
.coupon-kicker {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sun-gold);
  margin-bottom: 8px;
}
.coupon-terms {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  opacity: 0.92;
  margin-bottom: 20px;
}
.coupon-code {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--sun-gold);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .coupons-grid { grid-template-columns: 1fr; }
}

/* ---------- 07 Family Plan ---------- */
.section-family-plan {
  background: var(--sky-darker);
  position: relative;
}
.family-plan-stripe {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: var(--yellow);
  z-index: 3;
}
.family-plan-stripe-top { top: 0; }
.family-plan-stripe-bottom { bottom: 0; }
.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.fp-left { position: relative; }
.fp-left .display-h1 { color: var(--white); margin-bottom: 24px; }
.fp-left .lead { margin-bottom: 36px; max-width: 480px; }
.fp-pricing {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sun-gold);
  margin-top: 24px;
}
.fp-mascot {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 180px;
  height: auto;
}
.fp-right { display: flex; flex-direction: column; gap: 16px; }
.fp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,199,39,0.20);
  border-radius: 14px;
  padding: 24px;
}
.fp-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
}
.fp-benefit h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.fp-benefit p {
  font-size: 15px;
  color: var(--white);
  opacity: 0.92;
}
@media (max-width: 900px) {
  .fp-grid { grid-template-columns: 1fr; }
  .fp-mascot { display: none; }
}

/* ---------- 08 Testimonials ---------- */
.section-testimonials { background: var(--sand); }
.section-testimonials .display-h1 { margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border-top: 4px solid var(--yellow);
}
.stars { font-size: 18px; letter-spacing: 4px; color: var(--yellow); margin-bottom: 24px; }
.quote {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-meta .name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 15px;
  color: var(--charcoal);
}
.testi-meta .city {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.testi-more {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  cursor: pointer;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- 09 Service Areas ---------- */
.section-areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas-left .display-h1 { margin-bottom: 24px; }
.areas-left .lead { margin-bottom: 32px; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.city-pill {
  background: var(--off-sky);
  border-radius: 22px;
  padding: 12px 12px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
}
.map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(14, 30, 50, 0.12);
}
.map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-overlay {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(14, 30, 50, 0.18);
}
.map-overlay-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
}
.map-overlay-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.map-overlay-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 10 Contact Form ---------- */
.section-contact { background: var(--white); }
.section-contact .display-h1 { margin-bottom: 24px; }
.section-contact .lead { margin: 0 auto 56px; text-align: center; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-form {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--hairline);
  padding: 36px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom:0px; }
.contact-form .form-row .form-field { margin-bottom: 0; }
.contact-form .form-field .gfield_label{
  font-family: var(--font-body);
  font-weight: 900!important;
  font-size: 11px!important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form .form-field input,
.contact-form .form-field select {
  font-family: var(--font-body);
  font-size: 16px!important;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--off-sky);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 14px 16px!important;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.contact-form .form-field .checkbox_text p{
    font-family: var(--font-body);
    font-size: 11px!important;
    line-height: 1.5;
    color: var(--muted);
    font-weight: 400!important;
    letter-spacing: 0;
    text-transform: none;
	padding-left: 5px;
}
.contact-form .gform_wrapper.gravity-theme .gfield-choice-input {
    display: inline-block;
    margin-top: 0;
    top: 0;
    vertical-align: top!important;
    flex: 0 0 auto;
    margin-top: 3px!important;
    width: 16px;
    height: 16px;
    accent-color: var(--sky-deep);
}
.contact-form .gform_wrapper.gravity-theme .gform_button{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 32px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    background: var(--sun-gradient);
    background-origin: border-box;
    background-clip: border-box;
    color: var(--white);	
    padding: 18px 36px;
    font-size: 14px;
    letter-spacing: 0.3em;
	width: 100%;
	border-radius: 32px;
}
.contact-form .gform_wrapper.gravity-theme .gform_button:hover {
    background: var(--sun-gradient);
    background-origin: border-box;
    background-clip: border-box;
    filter: brightness(0.93);
    transform: translateY(-2px);
}
.contact-form .gform_wrapper.gravity-theme .gform_footer, .contact-form .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 10px 0 0!important;
    padding: 0px 0!important;
}
.contact-form .gform_heading{
display:none!important;
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus {
  border-color: var(--yellow);
  background: var(--white);
}
.contact-form .form-success {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(27,181,221,0.10);
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 14px;
  display: none;
}
.form-success.is-visible { display: block; }

.contact-info {
  background: var(--sky-deep);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}
.info-block { margin-bottom: 20px; }
.info-label {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sun-gold);
  margin-bottom: 6px;
}
.info-value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}
.info-value-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-logo  { height: 56px; width: auto; }
.footer-mascot { height: 52px; width: auto; }
.footer-tag {
  margin-left: auto;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun-gold);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--sun-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-legal {
  color: var(--sun-gold);
  font-weight: 900;
  letter-spacing: 0.3em;
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-wrap: wrap; }
}

/* ---------- Reveal init hidden state ---------- */
.reveal { opacity: 0; }
.reveal.is-visible { opacity: 1; }
