/* ============================================================
   Brightside Cleaning — shared stylesheet
   Aesthetic: "sunshine on white" — warm, clean, trustworthy
   ============================================================ */

:root {
  /* Palette */
  --paper:      #FFFFFF;   /* warm white page bg */
  --white:      #FFFFFF;
  --cream:      #F6F7F6;   /* alternating warm surface */
  --cream-deep: #E9EBE9;
  --ink:        #171A21;   /* near-black text */
  --ink-soft:   #3A3F4B;
  --muted:      #6A7180;   /* secondary text */
  --line:       #E8E9E8;   /* hairline borders */

  --sun:        #FFB020;   /* primary accent — sunshine amber */
  --sun-deep:   #E8930C;   /* hover / pressed */
  --sun-glow:   #FFE7B3;   /* soft amber tint */
  --sky:        #3E7CB1;   /* cool secondary accent */
  --sky-soft:   #E4EEF6;
  --green:      #1B4D2E;   /* logo green */

  /* Type */
  --display: "Poppins", "Segoe UI", sans-serif;
  --body:    "Manrope", "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(23,26,33,.06);
  --shadow:    0 14px 40px -18px rgba(23,26,33,.22);
  --shadow-lg: 0 30px 70px -30px rgba(23,26,33,.30);
  --shadow-sun: 0 18px 44px -16px rgba(232,147,12,.45);

  --wrap: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--cream { background: var(--cream); }
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--green);
  display: inline-block;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.25rem); }
h2 em, h1 em { font-style: normal; color: var(--green); font-weight: 600; }
.lead { color: var(--muted); font-size: 1.12rem; max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--sun {
  background: var(--sun); color: var(--ink);
  box-shadow: var(--shadow-sun);
}
.btn--sun:hover { background: var(--sun-deep); color: #fff; transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--sun) 0 46%, transparent 47%);
  position: relative; flex: none;
}
.brand__mark::before {
  content: ""; position: absolute; inset: -4px;
  background:
    conic-gradient(from 0deg,
      var(--sun) 0 6%, transparent 6% 12.5%,
      var(--sun) 12.5% 18.5%, transparent 18.5% 25%,
      var(--sun) 25% 31%, transparent 31% 37.5%,
      var(--sun) 37.5% 43.5%, transparent 43.5% 50%,
      var(--sun) 50% 56%, transparent 56% 62.5%,
      var(--sun) 62.5% 68.5%, transparent 68.5% 75%,
      var(--sun) 75% 81%, transparent 81% 87.5%,
      var(--sun) 87.5% 93.5%, transparent 93.5% 100%);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 54%, #000 55%);
          mask: radial-gradient(circle, transparent 54%, #000 55%);
  opacity: .85;
}
.brand em { font-style: normal; color: var(--sun-deep); }
.nav__links { display: flex; align-items: center; gap: 1.4rem; }
.nav__links a { font-weight: 600; font-size: .92rem; color: var(--ink-soft); transition: color .15s ease; white-space: nowrap; }
.nav__links a:hover { color: var(--sun-deep); }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone { font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 72px 0 96px; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero p.lead { margin-bottom: 32px; font-size: 1.2rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.check {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: #E4EFE7; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900;
}

/* hero art — the "brightside" sun */
.hero__art { position: relative; display: grid; place-items: center; min-height: 420px; }
.sun {
  position: relative; width: min(400px, 78%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #FFF6E0 0 30%, var(--sun-glow) 44%, var(--sun) 72%, var(--sun-deep) 100%);
  box-shadow: 0 40px 90px -30px rgba(232,147,12,.6), inset 0 -10px 40px rgba(232,147,12,.35);
  display: grid; place-items: center;
}
.sun::before {
  content: ""; position: absolute; inset: -14%;
  background: conic-gradient(from 0deg, transparent 0 4%, rgba(255,176,32,.45) 4% 6%, transparent 6% 12.5%,
    transparent 0 16.5%, rgba(255,176,32,.45) 16.5% 18.5%, transparent 18.5% 25%,
    transparent 0 29%, rgba(255,176,32,.45) 29% 31%, transparent 31% 37.5%,
    transparent 0 41.5%, rgba(255,176,32,.45) 41.5% 43.5%, transparent 43.5% 50%,
    transparent 0 54%, rgba(255,176,32,.45) 54% 56%, transparent 56% 62.5%,
    transparent 0 66.5%, rgba(255,176,32,.45) 66.5% 68.5%, transparent 68.5% 75%,
    transparent 0 79%, rgba(255,176,32,.45) 79% 81%, transparent 81% 87.5%,
    transparent 0 91.5%, rgba(255,176,32,.45) 91.5% 93.5%, transparent 93.5% 100%);
  border-radius: 50%;
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 63%);
          mask: radial-gradient(circle, transparent 62%, #000 63%);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sun__card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
  transform: translateY(6px);
}
.sun__card b { font-family: var(--display); font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.sun__card small { display: block; color: var(--muted); font-size: .82rem; font-weight: 600; }
.sun__stars { color: var(--sun); letter-spacing: 2px; font-size: .9rem; }
/* floating chips */
.chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 999px;
  padding: 10px 16px; font-weight: 700; font-size: .88rem; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: .5rem;
}
.chip--1 { top: 8%; left: -2%; }
.chip--2 { bottom: 14%; right: -4%; }
.chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sun); }
.chip--2 .dot { background: var(--sky); }

/* ============================================================
   MARQUEE trust bar
   ============================================================ */
.marquee {
  background: var(--ink); color: #fff; padding: 16px 0; overflow: hidden; position: relative;
}
.marquee__track { display: flex; gap: 40px; width: max-content; animation: slide 34s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .95rem; white-space: nowrap; color: #EDE9DF; }
.marquee__track span::before { content: "✦"; color: var(--sun); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.head { max-width: 640px; margin-bottom: 56px; }
.head .eyebrow { margin-bottom: 18px; }
.head h2 { margin-bottom: 18px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--green), #2E7047);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::after { transform: scaleX(1); }
.svc__num { font-family: var(--display); font-size: .95rem; color: var(--sun-deep); font-weight: 600; }
.svc__icon {
  width: 54px; height: 54px; border-radius: 14px; margin: 14px 0 20px;
  background: var(--sun-glow); color: var(--sun-deep); display: grid; place-items: center;
}
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 1rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step__n {
  font-family: var(--display); font-size: 3rem; font-weight: 700; color: var(--green);
  line-height: 1; letter-spacing: -0.03em; opacity: .9;
}
.step h3 { font-size: 1.3rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 34px; right: -10px; width: 20px; height: 2px;
  background: var(--line);
}

/* ============================================================
   WHY / GUARANTEE split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: grid; gap: 18px; margin-top: 30px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .check { margin-top: 3px; }
.why-list b { display: block; font-family: var(--body); font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.why-list span { color: var(--muted); font-size: .98rem; }
.guarantee {
  background: linear-gradient(160deg, var(--ink) 0%, #22262F 100%); color: #fff;
  border-radius: var(--r-xl); padding: 46px 42px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guarantee::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, var(--sun) 0%, transparent 70%); opacity: .35;
}
.guarantee .eyebrow { color: var(--sun); position: relative; }
.guarantee h3 { color: #fff; font-size: 1.9rem; margin: 16px 0 14px; position: relative; }
.guarantee p { color: #D8D4CB; position: relative; margin-bottom: 26px; }
.guarantee .seal {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: 12px 20px; font-weight: 700;
}
.seal__badge { width: 40px; height: 40px; border-radius: 50%; background: var(--sun); color: var(--ink); display: grid; place-items: center; font-size: 1.2rem; }

/* ============================================================
   QUOTE FORM (multi-step)
   ============================================================ */
.quote-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.quote-copy .eyebrow { margin-bottom: 18px; }
.quote-copy h2 { margin-bottom: 18px; }
.quote-perks { display: grid; gap: 14px; margin-top: 26px; }
.quote-perks li { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink-soft); }

.form-card {
  background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 36px; position: relative;
}
.form-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.form-progress small { color: var(--muted); font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.progress-bar { height: 6px; background: var(--cream-deep); border-radius: 999px; overflow: hidden; margin-bottom: 28px; }
.progress-bar i { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--sun), var(--sun-deep)); border-radius: 999px; transition: width .35s cubic-bezier(.4,0,.2,1); }
.step-panel { display: none; animation: fade .35s ease; }
.step-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-panel h3 { font-size: 1.5rem; margin-bottom: 20px; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt {
  border: 1.5px solid var(--line); border-radius: var(--r); padding: 16px; text-align: left;
  font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 10px;
  transition: .16s; background: var(--white); color: var(--ink);
}
.opt:hover { border-color: var(--sun); }
.opt.sel { border-color: var(--sun); background: var(--sun-glow); box-shadow: 0 0 0 3px rgba(255,176,32,.18); }
.opt .em { font-size: 1.25rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sun); box-shadow: 0 0 0 3px rgba(255,176,32,.16); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.form-done { text-align: center; padding: 20px 0; }
.form-done .tick { width: 66px; height: 66px; border-radius: 50%; background: #E4EFE7; color: var(--green); font-size: 2rem; display: grid; place-items: center; margin: 0 auto 18px; }
.form-done h3 { margin-bottom: 10px; }
.form-done p { color: var(--muted); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ============================================================
   AREAS
   ============================================================ */
.areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px;
  display: flex; gap: 20px; align-items: flex-start; transition: .2s;
}
.area-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.area-card .pin { width: 52px; height: 52px; flex: none; border-radius: 14px; background: var(--sky-soft); color: var(--sky); display: grid; place-items: center; }
.area-card .pin svg { width: 24px; height: 24px; }
.area-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.area-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 0; font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--ink);
}
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: #E4EFE7; color: var(--green); display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding-bottom: 24px; font-size: 1.02rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(150deg, var(--green) 0%, #143A22 100%);
  border-radius: var(--r-xl); padding: 64px 56px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.07);
}
.cta-inner::before { width: 260px; height: 260px; top: -120px; left: -60px; }
.cta-inner::after { width: 200px; height: 200px; bottom: -110px; right: -40px; }
.cta-inner h2 { color: #fff; position: relative; margin-bottom: 14px; }
.cta-inner h2 em { color: var(--sun); }
.cta-inner p { color: rgba(255,255,255,.82); font-weight: 600; position: relative; margin-bottom: 30px; max-width: 46ch; margin-inline: auto; }
.cta-inner .btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-inner .small { position: relative; margin-top: 20px; font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #C9C5BC; padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer p.blurb { color: #A7A399; max-width: 40ch; font-size: .98rem; margin-bottom: 20px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; }
.footer h4 { color: #fff; font-family: var(--body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; color: #B4B0A6; font-size: .98rem; transition: color .15s; }
.footer__col a:hover { color: var(--sun); }
.footer__base { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; font-size: .88rem; color: #8B877E; flex-wrap: wrap; }
.footer__base .tags { display: inline-flex; gap: 18px; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.book-hero { padding: 64px 0 48px; text-align: center; }
.book-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 18px 0; }
.book-hero .lead { margin: 0 auto; }
.book-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.book-badge { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .5rem; box-shadow: var(--shadow-sm); }
.book-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }

.book-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.book-side { position: sticky; top: 96px; display: grid; gap: 20px; }
.book-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.book-panel h3 { font-size: 1.15rem; margin-bottom: 14px; }
.book-panel ul { display: grid; gap: 10px; }
.book-panel li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); font-weight: 600; }
.book-panel .call { text-align: center; }
.book-panel .call .num { font-family: var(--display); font-size: 1.4rem; font-weight: 700; display: block; margin: 6px 0 2px; }
.book-panel .call small { color: var(--muted); }
.book-embed { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.book-embed iframe { width: 100%; min-height: 1250px; border: 0; border-radius: 12px; display: block; }
.embed-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 14px; }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sun::before, .marquee__track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .nav__phone { display: none; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { min-height: 360px; order: -1; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .step:not(:last-child)::after { display: none; }
  .split, .quote-wrap { grid-template-columns: 1fr; gap: 36px; }
  .areas { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .book-side { position: static; grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.open .nav__links a { padding: 12px 0; width: 100%; }
  .section { padding: 68px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row, .opt-grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px; }
  .guarantee { padding: 34px 28px; }
  .cta-inner { padding: 46px 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .book-side { grid-template-columns: 1fr; }
}


/* ============================================================
   LOGO + REFINEMENTS (v3)
   ============================================================ */
.brand { color: var(--green); gap: .55rem; }
.brand img.mark { height: 38px; width: auto; display: block; }
.brand__mark { display: none; }
.brand em { font-style: normal; color: inherit; }
.footer .brand { color: #fff; }

.hero__art { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; min-height: 0; }
.hero__logo { width: min(400px, 88%); height: auto; }
.sun__card { transform: none; border: 1px solid var(--line); backdrop-filter: none; background: #fff; }

.careers-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 40px 36px; box-shadow: var(--shadow);
}
.careers-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.careers-card p { color: var(--muted); margin-bottom: 22px; }
.careers-card .btn { width: 100%; }
.careers-card small { display: block; text-align: center; margin-top: 14px; color: var(--muted); font-weight: 600; }


/* ============================================================
   PHOTO HERO + GALLERY (v4)
   ============================================================ */
.hero-photo { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,12,.58) 0%, rgba(10,16,12,.34) 45%, rgba(10,16,12,.58) 100%); }
.hero-photo__content { position: relative; z-index: 2; width: 100%; text-align: center; color: #fff; padding: 110px 24px; }
.hero-kicker { display: inline-block; font-weight: 700; font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 26px; }
.hero-photo h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.1rem); margin: 16px 0 18px; }
.hero-photo h1 em { color: #fff; font-style: normal; }
.hero-photo .sub { max-width: 60ch; margin: 0 auto 36px; color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-family: var(--display); font-weight: 600; line-height: 1.32; letter-spacing: -0.01em; }
.hero-photo .hero__actions { justify-content: center; margin-bottom: 0; }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.hero-photo__trust { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; margin-top: 36px; }
.hero-photo__trust li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.95); }
.hero-photo__trust .check { background: rgba(255,255,255,.2); color: #fff; }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream); box-shadow: var(--shadow-sm); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.shot:hover img { transform: scale(1.045); }
@media (max-width: 720px) {
  .hero-photo { min-height: 560px; }
  .hero-photo__content { padding: 90px 20px; }
  .shots { grid-template-columns: 1fr; }
}


/* ============================================================
   REVIEWS (v5)
   ============================================================ */
.reviews-grid { columns: 3; column-gap: 20px; }
.review {
  break-inside: avoid; margin-bottom: 20px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.review__photo { display: flex; gap: 6px; margin: -26px -26px 20px; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; }
.review__photo img { width: 100%; height: 220px; object-fit: cover; display: block; min-width: 0; }
.review__photo img + img { border-left: 3px solid #fff; }
.review__stars { color: var(--sun); letter-spacing: 3px; font-size: .95rem; margin-bottom: 12px; }
.review p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 16px; }
.review__who { font-weight: 700; font-size: .98rem; }
.review__meta { color: var(--muted); font-size: .85rem; font-weight: 600; }
@media (max-width: 1150px) {
  .nav__phone { display: none; }
}
@media (max-width: 960px) { .reviews-grid { columns: 2; } }
@media (max-width: 720px) { .reviews-grid { columns: 1; } }


/* ============================================================
   GOOGLE RATING BADGE (v7)
   ============================================================ */
.grating {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--ink); border-radius: 999px;
  padding: 11px 20px; font-weight: 700; font-size: .98rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.grating b { font-size: 1.05rem; }
.grating__stars { color: var(--sun); letter-spacing: 2px; font-size: .9rem; }
.grating span.gsub { color: var(--muted); font-weight: 600; font-size: .9rem; }
.reviews-rating { margin-bottom: 40px; }
