/* ==========================================================================
   CITRUS HANDYMAN — Orlando, FL  ·  Demo landing page by Citrustack
   A warm, trustworthy local home-services brand: cream paper, workwear
   charcoal, one hot citrus-orange accent. Rounded, friendly, high-contrast.
   Self-hosted Archivo (variable) — no third-party font requests.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:          #faf6ef;
  --bg-2:        #f1e9dc;
  --paper:       #fffdf9;
  --card:        #ffffff;
  --ink:         #17140f;
  --ink-soft:    #38332a;
  --muted:       #6c6456;
  --muted-2:     #8a8272;

  --orange:      #ee5a17;
  --orange-deep: #c9440a;
  --orange-soft: #fdeee4;
  --orange-line: rgba(238, 90, 23, .28);

  --pine:        #1f3d33;   /* deep workwear green for dark bands */
  --pine-2:      #16302738;

  --gold:        #f4a520;
  --line:        rgba(23, 20, 15, .12);
  --line-2:      rgba(23, 20, 15, .07);
  --on-dark:     #f7f1e7;
  --on-dark-mute:#b9b0a0;

  --shadow-sm:   0 1px 2px rgba(23,20,15,.06), 0 2px 6px rgba(23,20,15,.05);
  --shadow-md:   0 6px 18px rgba(23,20,15,.09), 0 2px 6px rgba(23,20,15,.05);
  --shadow-lg:   0 24px 60px rgba(23,20,15,.16), 0 8px 20px rgba(23,20,15,.08);

  --sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --fs-display:  clamp(2.5rem, 6vw, 5.4rem);
  --fs-h2:       clamp(1.85rem, 3.6vw, 3.1rem);
  --fs-h3:       clamp(1.25rem, 1.8vw, 1.6rem);
  --fs-lead:     clamp(1.08rem, 1.5vw, 1.3rem);
  --fs-body:     clamp(1rem, 1.05vw, 1.075rem);
  --fs-eyebrow:  .78rem;

  --gutter:      clamp(1.15rem, 4vw, 3.5rem);
  --section-y:   clamp(3.5rem, 8vw, 7rem);
  --maxw:        1240px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   26px;

  --ease-out:    cubic-bezier(.16, 1, .3, 1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-variation-settings: 'wght' 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--orange); color: #fff; }

/* ---------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--on-dark); padding: .75rem 1.15rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

/* ---------------------------------------------------------- typography */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-eyebrow); font-variation-settings: 'wght' 700, 'wdth' 92;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.eyebrow--center { justify-content: center; }
.display {
  font-size: var(--fs-display); font-variation-settings: 'wght' 840, 'wdth' 112;
  line-height: .98; letter-spacing: -.02em; text-transform: none;
}
.h2 {
  font-size: var(--fs-h2); font-variation-settings: 'wght' 800, 'wdth' 108;
  line-height: 1.03; letter-spacing: -.015em;
}
.h3 { font-size: var(--fs-h3); font-variation-settings: 'wght' 750, 'wdth' 104; line-height: 1.15; letter-spacing: -.01em; }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--muted); }
.orange-text { color: var(--orange-deep); }
.num { font-variant-numeric: tabular-nums; }
.section__head { max-width: 62ch; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .h2 { margin-top: .7rem; }
.section__head .lead { margin-top: 1rem; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 999px;
  font-variation-settings: 'wght' 720, 'wdth' 100; font-size: 1rem; letter-spacing: -.01em;
  transition: transform .18s var(--ease-out), background .18s, box-shadow .18s, color .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(238,90,23,.32); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(238,90,23,.4); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.075rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------- topbar */
.topbar {
  background: var(--ink); color: var(--on-dark);
  font-size: .8rem; letter-spacing: .01em;
}
.topbar__row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  min-height: 40px; flex-wrap: wrap; text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: var(--on-dark-mute); }
.topbar__item svg { width: 15px; height: 15px; color: var(--orange); }
.topbar__item strong { color: var(--on-dark); font-variation-settings: 'wght' 650; }
@media (max-width: 720px){ .topbar__item:nth-child(n+3){ display:none; } }

/* --------------------------------------------------------------- header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .86); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-variation-settings: 'wght' 820, 'wdth' 108; letter-spacing: -.02em; font-size: 1.28rem; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--orange);
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(238,90,23,.35); flex: none;
}
.brand__mark svg { width: 24px; height: 24px; color: #fff; }
.brand small { display: block; font-size: .62rem; letter-spacing: .22em; color: var(--muted); font-variation-settings: 'wght' 650, 'wdth' 90; text-transform: uppercase; margin-top: -3px; }
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { font-size: .98rem; font-variation-settings: 'wght' 560; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--orange-deep); }
.header__cta { display: flex; align-items: center; gap: .75rem; }
.header__phone { display: inline-flex; align-items: center; gap: .5rem; font-variation-settings: 'wght' 720; }
.header__phone svg { width: 18px; height: 18px; color: var(--orange-deep); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px var(--line); place-items: center; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 940px) {
  .nav, .header__phone { display: none; }
  .nav-toggle { display: grid; }
  .header__cta .btn--primary { display: none; }
}

/* mobile menu */
.mobile-menu { display: none; }
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 120; background: var(--bg);
  padding: calc(74px + 1rem) var(--gutter) 2rem; overflow-y: auto;
}
.mobile-menu__close { position: absolute; top: 1.1rem; right: var(--gutter); width: 46px; height: 46px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px var(--line); display: grid; place-items: center; }
.mobile-menu__close svg { width: 26px; height: 26px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .2rem; margin-bottom: 1.5rem; }
.mobile-menu nav a { padding: .9rem 0; font-size: 1.4rem; font-variation-settings: 'wght' 720, 'wdth' 104; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: .5rem; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,8,6,.62) 0%, rgba(10,8,6,.35) 40%, rgba(10,8,6,.72) 100%),
    linear-gradient(90deg, rgba(10,8,6,.78) 0%, rgba(10,8,6,.28) 60%, rgba(10,8,6,.12) 100%);
}
.hero__inner { padding-block: clamp(4rem, 12vw, 8.5rem); max-width: 40rem; }
.hero .eyebrow { color: #ffcaa9; }
.hero .eyebrow::before { background: var(--orange); }
.hero__title { margin-top: 1rem; color: #fff; }
.hero__title em { font-style: normal; color: #ff9c66; }
.hero__sub { margin-top: 1.3rem; font-size: var(--fs-lead); color: #ece3d6; max-width: 34rem; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__trust { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; align-items: center; }
.hero__trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: #e7ddcf; }
.hero__trust-item svg { width: 20px; height: 20px; color: #ff9c66; flex: none; }
.hero__stars { display: inline-flex; gap: 2px; }
.hero__stars svg { width: 17px; height: 17px; color: var(--gold); }

/* ----------------------------------------------------------- trust bar */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.trustbar__cell {
  padding: 1.6rem 1.2rem; text-align: center; border-left: 1px solid var(--line-2);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.trustbar__cell:first-child { border-left: 0; }
.trustbar__cell svg { width: 26px; height: 26px; color: var(--orange); }
.trustbar__cell strong { font-variation-settings: 'wght' 780, 'wdth' 104; font-size: 1.05rem; letter-spacing: -.01em; }
.trustbar__cell span { font-size: .82rem; color: var(--muted); }
@media (max-width: 860px){ .trustbar__grid { grid-template-columns: repeat(2, 1fr); } .trustbar__cell:nth-child(odd){ border-left:0; } .trustbar__cell { border-top: 1px solid var(--line-2); } .trustbar__cell:nth-child(-n+2){ border-top:0; } }
@media (max-width: 480px){ .trustbar__cell { padding: 1.15rem .7rem; } }

/* --------------------------------------------------------------- about */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__body p { margin-top: 1rem; }
.about__figure { position: relative; }
.about__figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; left: -18px; bottom: 26px; background: var(--ink); color: var(--on-dark);
  border-radius: var(--radius); padding: 1.05rem 1.25rem; box-shadow: var(--shadow-lg); max-width: 15rem;
}
.about__badge strong { display: block; font-size: 2.1rem; font-variation-settings: 'wght' 820, 'wdth' 108; line-height: 1; color: #ff9c66; }
.about__badge span { font-size: .82rem; color: var(--on-dark-mute); }
.about__signature { margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem; }
.about__signature img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.about__signature b { font-variation-settings: 'wght' 740; }
.about__signature span { font-size: .88rem; color: var(--muted); display: block; }
@media (max-width: 860px){ .about__grid { grid-template-columns: 1fr; } .about__figure { order: -1; max-width: 30rem; } .about__badge{ left: 8px; } }

.stat-row { display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem; margin-top: 1.8rem; }
.stat { }
.stat strong { display: block; font-size: 2rem; font-variation-settings: 'wght' 820, 'wdth' 106; line-height: 1; letter-spacing: -.02em; }
.stat span { font-size: .84rem; color: var(--muted); }

/* ------------------------------------------------------------- services */
.services { background: var(--bg-2); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.6rem; }
.svc {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc__media { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-2); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc__icon { width: 40px; height: 40px; border-radius: 11px; background: var(--orange-soft); display: grid; place-items: center; margin: -2.6rem 0 .9rem; position: relative; box-shadow: var(--shadow-sm); border: 3px solid var(--card); }
.svc__icon svg { width: 22px; height: 22px; color: var(--orange-deep); }
.svc__body h3 { font-size: 1.2rem; font-variation-settings: 'wght' 760, 'wdth' 104; letter-spacing: -.01em; }
.svc__body p { margin-top: .5rem; font-size: .96rem; color: var(--muted); }
.svc__list { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.svc__tag { font-size: .76rem; padding: .22rem .6rem; border-radius: 999px; background: var(--bg-2); color: var(--ink-soft); }
@media (max-width: 900px){ .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .services__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------- feature (alt rows) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 6vw, 5rem); }
.feature__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 3/2; object-fit: cover; }
.feature--flip .feature__media { order: 2; }
.feature__body h2 { margin-top: .7rem; }
.feature__body p { margin-top: 1rem; }
.checks { margin-top: 1.4rem; display: grid; gap: .7rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 1px; }
.checks b { font-variation-settings: 'wght' 680; }
@media (max-width: 820px){ .feature { grid-template-columns: 1fr; } .feature--flip .feature__media { order: -1; } }

/* --------------------------------------------------------- how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.6rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem 1.4rem; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__n { counter-increment: step; font-variation-settings: 'wght' 840, 'wdth' 108; font-size: 2.6rem; color: var(--orange); line-height: 1; letter-spacing: -.03em; }
.step__n::before { content: "0" counter(step); }
.step h3 { margin-top: .5rem; font-size: 1.15rem; font-variation-settings: 'wght' 760; }
.step p { margin-top: .45rem; font-size: .93rem; color: var(--muted); }
.step__icon { position: absolute; top: 1.5rem; right: 1.3rem; }
.step__icon svg { width: 26px; height: 26px; color: var(--line); }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- bands */
.band-dark { background: var(--ink); color: var(--on-dark); }
.band-dark .h2 { color: #fff; }
.band-dark .lead { color: var(--on-dark-mute); }
.band-orange { background: var(--orange); color: #fff; }
.band-orange .eyebrow, .band-orange .eyebrow::before { color: #fff; background: initial; }
.band-orange .eyebrow::before { background: rgba(255,255,255,.7); }

/* guarantee */
.guarantee__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.guarantee__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.guarantee__list { margin-top: 1.6rem; display: grid; gap: 1.15rem; }
.guarantee__item { display: flex; gap: .95rem; }
.guarantee__item .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; }
.guarantee__item .ico svg { width: 24px; height: 24px; color: #ff9c66; }
.guarantee__item h3 { font-size: 1.12rem; color: #fff; font-variation-settings: 'wght' 730; }
.guarantee__item p { font-size: .93rem; color: var(--on-dark-mute); margin-top: .15rem; }
@media (max-width: 820px){ .guarantee__grid { grid-template-columns: 1fr; } .guarantee__media { order: -1; } }

/* --------------------------------------------------------------- areas */
.areas__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.areas__list { columns: 2; column-gap: 2rem; margin-top: 1.4rem; }
.areas__list li { break-inside: avoid; padding: .5rem 0; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: .55rem; font-variation-settings: 'wght' 560; }
.areas__list svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.areas__note { margin-top: 1.4rem; font-size: .93rem; color: var(--muted); }
.areas__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/10; object-fit: cover; }
@media (max-width: 820px){ .areas__grid { grid-template-columns: 1fr; } }
@media (max-width: 420px){ .areas__list { columns: 1; } }

/* -------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: .9rem; margin-top: 2.4rem; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .wide { grid-column: span 2; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .8rem;
  color: #fff; font-size: .85rem; font-variation-settings: 'wght' 620;
  background: linear-gradient(180deg, transparent, rgba(10,8,6,.72));
}
@media (max-width: 820px){ .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .wide { grid-column: span 2; } }

/* --------------------------------------------------------------- pricing */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.6rem; }
.price {
  background: var(--card); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--line-2); display: flex; flex-direction: column;
}
.price--featured { border-color: var(--orange); box-shadow: var(--shadow-md); position: relative; }
.price__flag { position: absolute; top: -13px; left: 1.7rem; background: var(--orange); color: #fff; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-variation-settings: 'wght' 720, 'wdth' 92; padding: .3rem .75rem; border-radius: 999px; }
.price h3 { font-size: 1.25rem; font-variation-settings: 'wght' 760; }
.price__amt { margin-top: .7rem; display: flex; align-items: baseline; gap: .3rem; }
.price__amt b { font-size: 2.7rem; font-variation-settings: 'wght' 840, 'wdth' 106; letter-spacing: -.03em; line-height: 1; }
.price__amt span { color: var(--muted); font-size: .92rem; }
.price > p { margin-top: .6rem; color: var(--muted); font-size: .93rem; }
.price ul { margin-top: 1.2rem; display: grid; gap: .6rem; flex: 1; }
.price li { display: flex; gap: .6rem; font-size: .95rem; }
.price li svg { width: 19px; height: 19px; color: var(--orange); flex: none; margin-top: 3px; }
.price .btn { margin-top: 1.5rem; }
.pricing__note { margin-top: 1.6rem; text-align: center; font-size: .9rem; color: var(--muted); }
@media (max-width: 860px){ .pricing__grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; } }

/* ------------------------------------------------------------- reviews */
.reviews { background: var(--bg-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.6rem; }
.review { background: var(--card); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review__stars { display: inline-flex; gap: 2px; margin-bottom: .8rem; }
.review__stars svg { width: 18px; height: 18px; color: var(--gold); }
.review p { font-size: 1rem; color: var(--ink-soft); flex: 1; }
.review__who { margin-top: 1.2rem; display: flex; align-items: center; gap: .75rem; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--orange-soft); color: var(--orange-deep); display: grid; place-items: center; font-variation-settings: 'wght' 760; flex: none; }
.review__who b { font-variation-settings: 'wght' 700; font-size: .95rem; display: block; }
.review__who span { font-size: .82rem; color: var(--muted); }
@media (max-width: 900px){ .reviews__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; } }

/* ---------------------------------------------------------------- faq */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; margin-top: 1rem; }
.faq__list { display: grid; gap: .7rem; }
.faq__item { background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; font-variation-settings: 'wght' 680; font-size: 1.05rem; }
.faq__q .plus { width: 24px; height: 24px; flex: none; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; inset: 0; margin: auto; }
.faq__q .plus::before { width: 16px; height: 2.5px; }
.faq__q .plus::after { width: 2.5px; height: 16px; transition: transform .2s var(--ease-out); }
.faq__item[data-open="true"] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.faq__a-inner { padding: 0 1.3rem 1.25rem; color: var(--muted); }
.faq__item[data-open="true"] .faq__a { max-height: 480px; }
@media (max-width: 820px){ .faq__grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact__cards { display: grid; gap: 1rem; margin-top: 1.8rem; }
.contact__card { display: flex; gap: 1rem; align-items: flex-start; background: var(--paper); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.contact__card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); display: grid; place-items: center; flex: none; }
.contact__card .ico svg { width: 24px; height: 24px; color: var(--orange-deep); }
.contact__card b { font-variation-settings: 'wght' 730; }
.contact__card a { color: var(--orange-deep); font-variation-settings: 'wght' 620; }
.contact__card p { font-size: .92rem; color: var(--muted); margin-top: .15rem; }
.form { background: var(--card); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.3rem); box-shadow: var(--shadow-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-top: 1rem; display: block; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-size: .85rem; font-variation-settings: 'wght' 680; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1.5px solid var(--line); transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-line); }
.form .btn { margin-top: 1.3rem; }
.form__fine { margin-top: .9rem; font-size: .8rem; color: var(--muted-2); text-align: center; }
.form__ok { display: none; text-align: center; padding: 1rem; background: var(--orange-soft); color: var(--orange-deep); border-radius: var(--radius-sm); margin-top: 1rem; font-variation-settings: 'wght' 620; }
.form__ok[data-show="true"] { display: block; }
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px){ .form__row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- CTA */
.cta__inner { text-align: center; max-width: 44rem; margin-inline: auto; }
.cta__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta__phone { margin-top: 1.4rem; font-size: 1.05rem; }
.cta__phone a { font-variation-settings: 'wght' 760; text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------- footer */
.footer { background: #100e0b; color: var(--on-dark-mute); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--on-dark-mute); }
.footer__about { margin-top: 1rem; font-size: .92rem; max-width: 26ch; }
.footer h4 { color: #fff; font-variation-settings: 'wght' 720, 'wdth' 100; font-size: .95rem; letter-spacing: .02em; margin-bottom: .9rem; }
.footer ul { display: grid; gap: .55rem; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 3px; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .84rem; }
.footer__by a { color: var(--on-dark); font-variation-settings: 'wght' 640; }
.footer__by a:hover { color: #ff9c66; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- sticky call */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 0; background: var(--ink);
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem; color: #fff; font-variation-settings: 'wght' 700; }
.callbar a svg { width: 19px; height: 19px; }
.callbar a:first-child { background: var(--orange); }
.callbar a + a { border-left: 1px solid rgba(255,255,255,.15); }
@media (max-width: 940px){ .callbar { display: grid; } body { padding-bottom: 56px; } }

/* -------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc, .btn, .gallery img, .svc__media img { transition: none !important; }
}
