/* =====================================================================
   Air Lily Heating & Cooling — concept design (Ravari AI)
   Single source of brand truth: the :root block below.
   Zero dependencies. Zero external requests. System fonts only.
   ===================================================================== */

:root {
  /* --- brand colour ------------------------------------------------ */
  --purple-900: #29063a;   /* near-black purple, deepest ground        */
  --purple-800: #3d0a55;
  --purple-700: #560d75;
  --purple-600: #6c0b8f;   /* primary — matches the live hero block    */
  --purple-500: #8a12b4;
  --purple-400: #a81fcc;   /* bright end of the hero wash              */
  --purple-300: #c458e0;
  --purple-100: #ede2f7;
  --purple-050: #f7f2fc;

  --gold-600: #d99a00;
  --gold-500: #ffc820;     /* accent — highlighted words, checkmarks   */
  --gold-400: #ffd94f;
  --gold-200: #ffeaa3;

  --ink:       #24102e;    /* body copy on light                        */
  --ink-soft:  #5b4867;
  --ink-faint: #8a7a94;
  --white:     #ffffff;
  --surface-1: #ffffff;
  --surface-2: #f6f2fb;    /* lavender page tint                        */
  --line:      #e7deef;

  --on-dark:        #ffffff;
  --on-dark-soft:   rgba(255,255,255,.82);
  --on-dark-faint:  rgba(255,255,255,.58);
  --hairline-dark:  rgba(255,255,255,.16);

  /* --- type -------------------------------------------------------- */
  --font-sans: "Segoe UI Variable Text", "Segoe UI", ui-rounded, "SF Pro Rounded",
               "Avenir Next Rounded", system-ui, -apple-system, "Helvetica Neue",
               Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI Semibold", "Segoe UI",
               ui-rounded, "SF Pro Rounded", "Avenir Next Rounded", system-ui,
               -apple-system, "Trebuchet MS", sans-serif;

  --fs-hero:  clamp(2.35rem, 5.2vw, 4.65rem);
  --fs-h2:    clamp(1.85rem, 3.6vw, 3rem);
  --fs-h3:    clamp(1.3rem, 2.1vw, 1.7rem);
  --fs-lede:  clamp(1.05rem, 1.55vw, 1.32rem);
  --fs-body:  clamp(1rem, 1.15vw, 1.06rem);
  --fs-sm:    .935rem;
  --fs-xs:    .8rem;

  --lh-tight: 1.06;
  --lh-snug:  1.28;
  --lh-body:  1.62;
  --ls-tight: -.022em;
  --ls-wide:  .12em;

  /* --- space ------------------------------------------------------- */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 2.75rem; --s-8: 3.5rem;
  --s-9: 5rem;    --s-10: 7rem;
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --wrap: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --slant: clamp(28px, 4vw, 64px);

  /* --- shape ------------------------------------------------------- */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* --- depth ------------------------------------------------------- */
  --sh-sm: 0 2px 8px rgba(41,6,58,.07);
  --sh-md: 0 14px 34px -14px rgba(41,6,58,.24);
  --sh-lg: 0 34px 70px -28px rgba(41,6,58,.42);
  --sh-gold: 0 12px 30px -10px rgba(217,154,0,.5);
  --sh-inset-light: inset 0 1px 0 rgba(255,255,255,.7);

  /* --- motion ------------------------------------------------------ */
  --ease: cubic-bezier(.22,.68,.24,1);
  --t-fast: .18s;
  --t-mid: .34s;
  --t-slow: .7s;
}

/* ===================== reset / base ===================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--surface-2);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
img, svg { max-width: 100%; }

svg.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--purple-900);
  padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ===================== wordmark ===================== */
.mark {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; line-height: 1;
}
.mark__glyph {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--purple-500), var(--purple-700));
  color: var(--gold-400);
  box-shadow: 0 6px 16px -6px rgba(108,11,143,.65);
}
.mark__glyph svg { width: 24px; height: 24px; display: block; }
.mark__text { display: flex; flex-direction: column; gap: 3px; }
.mark__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: -.03em;
  color: var(--purple-600);
}
.mark__name--alt { color: var(--purple-400); }
.mark__sub {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-faint);
}

/* ===================== header ===================== */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  min-height: 76px;
}
.nav { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 1.75rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1.1rem); }
.nav__list a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 .7rem;
  text-decoration: none;
  font-weight: 600; font-size: var(--fs-sm);
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__list a:hover { color: var(--purple-600); background: var(--purple-050); }

.navtoggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); color: var(--purple-600); cursor: pointer;
}
.navtoggle svg { width: 22px; height: 22px; }
.navtoggle__x { display: none; }
.navtoggle[aria-expanded="true"] .navtoggle__o { display: none; }
.navtoggle[aria-expanded="true"] .navtoggle__x { display: block; }

/* ===================== buttons ===================== */
.btn {
  --btn-bg: var(--purple-600);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .85rem 1.55rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-sm); line-height: 1.15;
  text-align: center; text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: 0 0 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  --btn-bg: linear-gradient(140deg, var(--gold-400), var(--gold-500));
  --btn-fg: var(--purple-900);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover { box-shadow: 0 18px 40px -12px rgba(217,154,0,.62); }

.btn--purple {
  --btn-bg: linear-gradient(140deg, var(--purple-500), var(--purple-700));
  box-shadow: 0 14px 30px -12px rgba(108,11,143,.7);
}

.btn--ghost {
  --btn-bg: rgba(255,255,255,.08);
  --btn-fg: var(--on-dark);
  border-color: var(--hairline-dark);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.16); border-color: rgba(255,255,255,.34); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--purple-600);
  border-color: var(--purple-100);
}
.btn--outline:hover { --btn-bg: var(--purple-050); border-color: var(--purple-300); }

.btn--outline-light {
  --btn-bg: rgba(255,255,255,.06);
  --btn-fg: var(--on-dark);
  border-color: rgba(255,255,255,.3);
}
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.14); }

.btn--sm { min-height: 44px; padding: .6rem 1.15rem; font-size: .875rem; }
.btn--block { display: flex; width: 100%; }

/* ===================== shared type bits ===================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s-5);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(255,200,32,.2);
}

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--purple-500);
  margin-bottom: var(--s-3);
}
.kicker--on-dark { color: var(--gold-400); }
.kicker__ico { width: 15px; height: 15px; }

.h1 {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--on-dark);
}
.h1__l1 { display: block; }
.h1__hl { position: relative; display: inline-block; color: var(--gold-500); }
.h1__underline {
  position: absolute; left: 0; right: 0; bottom: -.16em;
  width: 100%; height: .22em;
  color: rgba(255,255,255,.9);
  overflow: visible;
}
/* Draw-in is an enhancement layered on top of the always-visible default
   above: it only ever applies once JS has confirmed reveal support AND the
   visitor has not asked for reduced motion, so no-JS / reduced-motion
   visitors always get the fully-drawn underline. */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .h1__underline path {
    stroke-dasharray: 620;
    stroke-dashoffset: 620;
    animation: h1-underline-draw .9s var(--ease) .3s forwards;
  }
}
@keyframes h1-underline-draw {
  to { stroke-dashoffset: 0; }
}

.h2 {
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: var(--ls-tight);
  color: var(--ink);
  text-wrap: balance;
}
.h2--on-dark { color: var(--on-dark); }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--on-dark-soft);
  max-width: 46ch;
  margin-top: var(--s-5);
}

.shead { max-width: 62ch; margin-bottom: var(--s-8); }
.shead__p { margin-top: var(--s-4); color: var(--ink-soft); font-size: var(--fs-lede); line-height: 1.55; }

/* ===================== hero ===================== */
.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1100px 620px at 82% -8%, var(--purple-400) 0%, transparent 62%),
    radial-gradient(760px 520px at 8% 108%, var(--purple-500) 0%, transparent 64%),
    linear-gradient(158deg, var(--purple-700) 0%, var(--purple-600) 42%, var(--purple-800) 100%);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: calc(var(--section-y) + var(--slant));
  overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(520px 320px at 68% 22%, rgba(255,200,32,.14), transparent 70%),
    radial-gradient(420px 420px at 12% 18%, rgba(255,255,255,.10), transparent 70%);
  mix-blend-mode: screen;
}
.hero__lily {
  position: absolute; z-index: -1;
  right: -8%; top: 6%;
  width: min(620px, 62vw); aspect-ratio: 1;
  color: rgba(255,255,255,.055);
  transform: rotate(-12deg);
  pointer-events: none;
}
.hero__lily svg { width: 100%; height: 100%; }

.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, .78fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__copy { min-width: 0; }

.ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: var(--s-7);
}
.ctas--tight { margin-top: var(--s-6); }

.hero__area {
  position: relative;
  margin-top: var(--s-7);
  padding-left: 2.1rem;
  max-width: 58ch;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--on-dark-soft);
}
.hero__areaico {
  position: absolute; left: 0; top: .12em;
  width: 19px; height: 19px; color: var(--gold-500);
}

.hero__cut {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: var(--slant);
  background: var(--surface-2);
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

/* rating card */
.ratecard {
  position: relative;
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--sh-lg), var(--sh-inset-light);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.ratecard__glow {
  position: absolute; inset: auto -30% -55% -30%; height: 70%;
  background: radial-gradient(closest-side, rgba(255,200,32,.35), transparent);
  pointer-events: none;
}
.ratecard__num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 4.6rem);
  font-weight: 800; line-height: .9;
  letter-spacing: -.04em;
  color: var(--white);
}
.ratecard__stars { display: flex; gap: .22rem; margin-top: .7rem; color: var(--gold-500); }
.ratecard__stars svg { width: 21px; height: 21px; }
.ratecard__src {
  margin-top: .7rem;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--on-dark-soft);
}
.ratecard__rule { border: 0; border-top: 1px solid var(--hairline-dark); margin: var(--s-5) 0; }
.ratecard__list { display: grid; gap: .7rem; }
.ratecard__list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--fs-sm); font-weight: 600; color: var(--on-dark-soft);
}
.ratecard__list svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--gold-500); }

/* ===================== trust bar ===================== */
.trust {
  background: var(--surface-2);
  padding-block: clamp(1.6rem, 3.4vw, 2.6rem);
  border-bottom: 1px solid var(--line);
}
.trust__in {
  display: flex; flex-wrap: wrap; align-items: stretch;
  justify-content: center;
  gap: .55rem;
}
.trust__item {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border-radius: var(--r-pill);
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-soft);
}
.trust__item svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--gold-600); }
.trust__item--lead {
  color: var(--purple-700); font-weight: 800;
  background: linear-gradient(150deg, var(--white), var(--purple-050));
  border-color: var(--purple-100);
}
.trust__item--lead svg { color: var(--purple-500); }
.trust__item--tel { padding: 0; background: none; border: 0; box-shadow: none; }
.trust__tel {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: 0 1.15rem;
  border-radius: var(--r-pill);
  background: linear-gradient(140deg, var(--purple-500), var(--purple-700));
  color: var(--white); font-weight: 800; text-decoration: none;
  box-shadow: 0 10px 22px -12px rgba(108,11,143,.8);
  transition: transform var(--t-fast) var(--ease);
}
.trust__tel svg { width: 16px; height: 16px; color: var(--gold-400); }
.trust__tel:hover { transform: translateY(-2px); }

/* ===================== services ===================== */
.services {
  background: var(--surface-2);
  padding-block: var(--section-y);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
  align-items: stretch;
}
.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--r-xl);
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card--feature {
  border-color: transparent;
  box-shadow: var(--sh-lg);
}
.card--feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;
  background: linear-gradient(150deg, var(--gold-400), var(--purple-400) 55%, var(--purple-600));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.card__badge {
  align-self: flex-start;
  padding: .38rem .85rem;
  border-radius: var(--r-pill);
  background: linear-gradient(140deg, var(--gold-400), var(--gold-500));
  color: var(--purple-900);
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
}
.card__badge--soft {
  background: var(--purple-050);
  color: var(--purple-600);
  border: 1px solid var(--purple-100);
}
.card__title {
  margin-top: var(--s-4);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-tight);
  color: var(--ink);
}
.card__price {
  margin-top: .35rem;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem;
  color: var(--ink-soft); font-size: var(--fs-sm);
}
.card__price-n {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--purple-600);
}
.card__price-per { font-size: .95rem; font-weight: 700; color: var(--ink-soft); }
.card__price-or { font-weight: 600; }

.ticks {
  display: grid; gap: .78rem;
  margin-top: var(--s-5);
  margin-bottom: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.ticks li {
  display: grid; grid-template-columns: 26px 1fr; align-items: start; gap: .55rem;
  font-size: var(--fs-sm); line-height: 1.5; color: var(--ink);
}
.ticks svg {
  width: 20px; height: 20px; margin-top: .12em;
  color: var(--gold-600);
}

.card__note {
  display: flex; gap: .6rem; align-items: flex-start;
  margin-bottom: var(--s-6);
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  background: var(--purple-050);
  border: 1px solid var(--purple-100);
  font-size: var(--fs-xs); line-height: 1.5; color: var(--ink-soft);
}
.card__note svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--purple-500); margin-top: .1em; }

.card > .btn--block { margin-top: auto; }

/* ===================== repairs ===================== */
.repairs {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 520px at 88% 6%, var(--purple-700) 0%, transparent 60%),
    linear-gradient(165deg, var(--purple-900) 0%, var(--purple-800) 58%, #1d0429 100%);
  color: var(--on-dark);
  padding-block: calc(var(--section-y) + var(--slant)) var(--section-y);
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--slant) * -1);
}
.repairs__mesh {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(460px 300px at 14% 84%, rgba(255,200,32,.10), transparent 70%),
    radial-gradient(520px 420px at 92% 30%, rgba(196,88,224,.16), transparent 70%);
}
.repairs__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.repairs__copy { min-width: 0; }
.repairs__lede {
  margin-top: var(--s-5);
  font-size: var(--fs-lede);
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 46ch;
}
.repairlist {
  display: grid; gap: .3rem;
  min-width: 0;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid var(--hairline-dark);
  box-shadow: var(--sh-lg);
}
.repairlist li {
  display: grid; grid-template-columns: 28px 1fr; align-items: start; gap: .6rem;
  padding: .68rem .4rem;
  font-size: var(--fs-sm); font-weight: 600; line-height: 1.45;
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.repairlist li:last-child { border-bottom: 0; }
.repairlist svg {
  width: 21px; height: 21px; margin-top: .05em;
  color: var(--gold-500);
}

/* ===================== reviews ===================== */
.reviews {
  background:
    radial-gradient(680px 420px at 96% 0%, rgba(196,88,224,.12), transparent 65%),
    var(--surface-2);
  padding-block: var(--section-y);
}
.reviews__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .85rem;
  margin-top: var(--s-5);
  font-size: var(--fs-sm); font-weight: 700; color: var(--purple-700);
}
.reviews__stars { display: inline-flex; gap: .15rem; color: var(--gold-500); }
.reviews__stars svg { width: 19px; height: 19px; }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
}
.quote {
  position: relative;
  display: flex; flex-direction: column;
  margin: 0;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.quote::after {
  content: "";
  position: absolute; left: 0; top: clamp(1.5rem, 2.6vw, 2rem); bottom: clamp(1.5rem, 2.6vw, 2rem);
  width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(var(--gold-400), var(--purple-400));
  opacity: .85;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.quote__src {
  align-self: flex-start;
  padding: .28rem .68rem;
  border-radius: var(--r-pill);
  background: var(--purple-050);
  border: 1px solid var(--purple-100);
  color: var(--purple-600);
  font-size: .69rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.quote__src--alt {
  background: rgba(255,200,32,.16);
  border-color: rgba(217,154,0,.3);
  color: var(--gold-600);
}
.quote blockquote { margin: var(--s-4) 0 0; }
.quote blockquote p {
  font-family: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.008em;
}
.quote blockquote p::before { content: "\201C"; }
.quote blockquote p::after  { content: "\201D"; }
.quote figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .6rem;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.quote__who { font-weight: 800; color: var(--purple-700); font-size: var(--fs-sm); }
.quote__when { font-size: var(--fs-xs); color: var(--ink-faint); }

/* ===================== service area + final CTA ===================== */
.area {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 560px at 10% 0%, var(--purple-700) 0%, transparent 62%),
    linear-gradient(200deg, var(--purple-900) 0%, var(--purple-800) 55%, #1a0425 100%);
  color: var(--on-dark);
  padding-block: calc(var(--section-y) + var(--slant)) var(--section-y);
  clip-path: polygon(0 0, 100% var(--slant), 100% 100%, 0 100%);
  margin-top: calc(var(--slant) * -1);
}
.area__mesh {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(480px 380px at 78% 88%, rgba(255,200,32,.12), transparent 70%),
    radial-gradient(560px 420px at 20% 40%, rgba(196,88,224,.14), transparent 70%);
}
.area__in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.area__copy { min-width: 0; }
.area__p {
  margin-top: var(--s-5);
  font-size: var(--fs-lede); line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 48ch;
}
.chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: var(--s-6);
}
.chips li {
  padding: .42rem .85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-dark);
  background: rgba(255,255,255,.06);
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--on-dark-soft);
}

.callout {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.7rem, 3.4vw, 2.8rem);
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--sh-lg), var(--sh-inset-light);
  backdrop-filter: blur(10px);
  text-align: center;
}
.callout__glow {
  position: absolute; inset: -40% -20% auto -20%; height: 80%;
  background: radial-gradient(closest-side, rgba(255,200,32,.28), transparent);
  pointer-events: none;
}
.callout__kicker {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 700; line-height: 1.3;
  color: var(--on-dark);
  text-wrap: balance;
}
.callout__tel {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: var(--s-4);
  min-height: 52px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  font-weight: 800; letter-spacing: -.035em;
  color: var(--gold-500);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.callout__tel svg { width: .72em; height: .72em; }
.callout__tel:hover { color: var(--gold-200); }
.callout__btns { position: relative; display: grid; gap: .7rem; margin-top: var(--s-5); }
.callout__fine {
  position: relative;
  margin-top: var(--s-5);
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
}

/* ===================== footer ===================== */
.foot {
  background: #14031d;
  color: var(--on-dark-soft);
  padding-top: var(--section-y);
}
.foot__in {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
}
.mark--foot .mark__name { color: var(--white); }
.mark--foot .mark__name--alt { color: var(--purple-300); }
.mark--foot .mark__sub { color: var(--on-dark-faint); }
.foot__line { margin-top: .55rem; font-size: var(--fs-sm); }
.foot__brand .foot__line:first-of-type { margin-top: var(--s-5); }
.foot__nav ul { display: grid; gap: .1rem; }
.foot__nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: var(--fs-sm); font-weight: 600; text-decoration: none;
  color: var(--on-dark-soft);
  transition: color var(--t-fast) var(--ease);
}
.foot__nav a:hover { color: var(--gold-500); }
.foot__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem var(--s-5);
  padding-block: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--fs-xs);
  color: var(--on-dark-faint);
}
.foot__demo { color: rgba(255,255,255,.66); }

/* ===================== reveal (JS-enhancement only) =====================
   Without JS the .reveal class does nothing — everything renders visible. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* ===================== responsive ===================== */
@media (max-width: 1000px) {
  .hero__in,
  .repairs__in,
  .area__in { grid-template-columns: minmax(0, 1fr); }
  .ratecard { max-width: 520px; }
  .lede, .repairs__lede, .area__p { max-width: 62ch; }
}

/* Mobile nav.
   No-JS baseline: the header simply wraps and every link stays visible.
   The collapsible panel is enabled ONLY when script.js adds .js-nav. */
@media (max-width: 860px) {
  .hdr__in {
    position: relative;
    flex-wrap: wrap;
    min-height: 68px;
    row-gap: .35rem;
    padding-block: .6rem;
  }
  .nav { flex-wrap: wrap; width: 100%; justify-content: flex-start; gap: .3rem .5rem; }
  .nav__list { flex-wrap: wrap; gap: .1rem .3rem; }

  .js-nav .navtoggle { display: inline-flex; }
  .js-nav .hdr__in { flex-wrap: nowrap; padding-block: 0; }
  .js-nav .nav {
    display: none;
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + 10px);
    width: auto;
    flex-direction: column; align-items: stretch; gap: .35rem;
    padding: .8rem;
    border-radius: var(--r-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
  }
  .js-nav .hdr__in.is-open .nav { display: flex; }
  .js-nav .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .js-nav .nav__list a { justify-content: flex-start; padding: .55rem .8rem; font-size: 1rem; }
  .js-nav .nav__cta { margin-top: .4rem; }
}

/* Shorter sticky header on small screens (js-nav collapses the panel out
   of the flow, so this only ever shrinks the visible bar, never the
   mobile nav panel behaviour above). */
@media (max-width: 640px) {
  .hdr__in { min-height: 58px; padding-block: .4rem; }
  .js-nav .hdr__in { min-height: 56px; padding-block: 0; }
}

@media (max-width: 560px) {
  .ctas .btn { width: 100%; }
  .trust__in { flex-direction: column; gap: .45rem; }
  .hero__lily { right: -28%; top: 2%; width: 90vw; }
  .mark__glyph { width: 36px; height: 36px; flex-basis: 36px; }
  .mark__name { font-size: 1.25rem; }
  .foot__in { flex-direction: column; }
}

/* ===================== motion / print ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}

@media print {
  .hdr, .navtoggle, .hero__mesh, .hero__lily { display: none; }
  body { background: #fff; color: #000; }
}
