/* ==========================================================
   Golden Grove Contractors Inc.
   Brand: Gold #C08C34 · Blue-green #17393E · Gold light #DFB463
   ========================================================== */

:root {
  /* brand */
  --teal: #17393E;
  --teal-900: #0F2A2E;
  --teal-700: #24505A;
  --gold: #C08C34;
  --gold-light: #DFB463;
  --gold-deep: #7F5A1B;      /* gold for small text on light (AA on cream/white) */
  --gold-tint: #F6EEDD;

  /* neutrals */
  --cream: #FBF8F1;
  --paper: #FFFFFF;
  --ink: #12282C;
  --muted: #4C5F63;
  --line: #E4DDCC;

  /* semantic */
  --on-gold: #0F2A2E;
  --error: #B42318;
  --ok: #17693B;

  /* type */
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* scale */
  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem;
  --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 6rem;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(15,42,46,.06), 0 8px 24px rgba(15,42,46,.08);
  --shadow-lg: 0 2px 4px rgba(15,42,46,.06), 0 24px 60px rgba(15,42,46,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --wrap: 1200px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
[hidden] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.section--dark :focus-visible, .footer :focus-visible, .hero :focus-visible, .review--dark :focus-visible { outline-color: var(--gold-light); }

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--teal); color: #fff; padding: .75rem 1rem; border-radius: 8px; transition: top .2s var(--ease); }
.skip-link:focus { top: 1rem; }

.ico { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- typography ---------- */
h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: var(--teal); text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.6vw + .5rem, 4.6rem); font-stretch: 108%; }
h2 { font-size: clamp(1.9rem, 3vw + .8rem, 3rem); font-stretch: 106%; }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
.hl { color: var(--gold-deep); }
.hl--light, .hero .hl { color: var(--gold-light); }
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: var(--s4); }
.eyebrow--light { color: var(--gold-light); }
.eyebrow__mark { width: 14px; height: 14px; background:
  linear-gradient(var(--gold),var(--gold)) 0 0/6px 6px no-repeat,
  linear-gradient(var(--gold),var(--gold)) 8px 0/6px 6px no-repeat,
  linear-gradient(var(--teal),var(--teal)) 0 8px/6px 6px no-repeat,
  linear-gradient(var(--gold),var(--gold)) 8px 8px/6px 6px no-repeat; }
.eyebrow--light .eyebrow__mark { background:
  linear-gradient(var(--gold-light),var(--gold-light)) 0 0/6px 6px no-repeat,
  linear-gradient(var(--gold-light),var(--gold-light)) 8px 0/6px 6px no-repeat,
  linear-gradient(#fff,#fff) 0 8px/6px 6px no-repeat,
  linear-gradient(var(--gold-light),var(--gold-light)) 8px 8px/6px 6px no-repeat; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .75rem 1.4rem; border-radius: 999px; border: 2px solid transparent; font-weight: 700; font-size: 1rem; letter-spacing: .01em; text-decoration: none; cursor: pointer; touch-action: manipulation; transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: .9rem 1.75rem; font-size: 1.0625rem; }
.btn--gold { background: var(--gold); color: var(--on-gold); }
.btn--gold:hover { background: var(--gold-light); }
.btn--dark { background: var(--teal); color: #fff; }
.btn--dark:hover { background: var(--teal-700); }
.btn--light { background: #fff; color: var(--teal); }
.btn--light:hover { background: var(--gold-tint); }
.btn--outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: #fff; color: var(--teal); }
.btn__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; margin-left: -.6rem; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- top bar & header ---------- */
.topbar { background: var(--teal); color: #F1EBDD; font-size: .8125rem; }
.topbar__inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding-block: .5rem; }
.topbar p { display: flex; align-items: center; gap: .5rem; letter-spacing: .04em; white-space: nowrap; }
.topbar .ico { width: 1em; height: 1em; color: var(--gold-light); }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { height: 50px; width: auto; }
.nav { margin-inline: auto; }
.nav ul { display: flex; gap: .25rem; }
.nav a:not(.btn) { display: block; padding: .6rem .9rem; font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--teal); border-radius: 999px; transition: background-color .18s var(--ease), color .18s var(--ease); }
.nav a:not(.btn):hover { background: var(--gold-tint); }
.nav a.is-current { background: var(--teal); color: #fff; }
.nav__cta-mobile { display: none; }
.header__cta { padding-left: .4rem; }
.nav-toggle { display: none; margin-left: auto; width: 48px; height: 48px; border: 2px solid var(--teal); background: transparent; color: var(--teal); border-radius: 12px; cursor: pointer; place-items: center; }
.nav-toggle .ico { width: 24px; height: 24px; }
.nav-toggle .ico--close { display: none; }
.nav-toggle[aria-expanded="true"] .ico--open { display: none; }
.nav-toggle[aria-expanded="true"] .ico--close { display: block; }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; padding-block: clamp(4rem, 9vw, 7.5rem) clamp(9rem, 14vw, 12rem); background: var(--teal); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: url("../assets/img/photo-1783125127094-ea962d41ba42-2000.jpg") center 60% / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(95deg, rgba(15,42,46,.94) 0%, rgba(23,57,62,.84) 45%, rgba(23,57,62,.45) 100%); }
.hero__inner { max-width: 60rem; }
.hero h1 { color: #fff; margin-bottom: var(--s5); }
.hero__lead { font-size: clamp(1.05rem, 1vw + .8rem, 1.3rem); max-width: 40rem; color: #EDE6D6; margin-bottom: var(--s6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s4); }

/* ---------- estimate form ---------- */
.estimate { position: relative; z-index: 2; margin-top: clamp(-7.5rem, -10vw, -5rem); }
.estimate__card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.25rem, 3vw, 2.25rem); border-top: 6px solid var(--gold); }
.estimate__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; margin-bottom: var(--s5); }
.estimate__head h2 { font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem); }
.checks { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; font-weight: 600; font-size: .95rem; color: var(--muted); }
.checks li { display: flex; align-items: center; gap: .45rem; }
.checks .ico { width: 1.4rem; height: 1.4rem; padding: .25rem; border-radius: 50%; background: var(--gold); color: var(--on-gold); stroke-width: 3; }

.form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field--wide { grid-column: span 2; }
.field label { font-weight: 700; font-size: .875rem; color: var(--teal); }
.req { color: var(--error); }
.field input, .field select { min-height: 52px; padding: .7rem 1rem; border: 1.5px solid #B9B29E; border-radius: 12px; background: #fff; width: 100%; transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.field select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317393E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right .9rem center / 18px; padding-right: 2.5rem; }
.field input::placeholder { color: #6B7A7D; }
.field input:hover, .field select:hover { border-color: var(--teal); }
.field input:focus-visible, .field select:focus-visible { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(192,140,52,.55); }
.field [aria-invalid="true"] { border-color: var(--error); }
.err { color: var(--error); font-size: .85rem; font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__submit { grid-column: span 2; align-self: end; }
.form__status { margin-top: var(--s4); font-weight: 600; }
.form__notice { display: flex; align-items: flex-start; gap: .6rem; margin-top: var(--s4); padding: .8rem 1rem; border-radius: 12px; background: var(--gold-tint); color: var(--ink); font-size: .95rem; }
.form__notice .ico { margin-top: .2rem; color: var(--gold-deep); }
.form__notice a { color: var(--teal); font-weight: 700; white-space: nowrap; }
.form__privacy { margin-top: var(--s3); font-size: .85rem; color: var(--muted); }
.form__status:empty { display: none; }
.form__status.is-ok { color: var(--ok); background: #E7F4EC; padding: .9rem 1.1rem; border-radius: 12px; }
.form__status.is-error { color: var(--error); background: #FDECEA; padding: .9rem 1.1rem; border-radius: 12px; }

/* ---------- trust strip ---------- */
.trust { padding-block: var(--s7) var(--s5); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust__item { display: flex; align-items: center; gap: .9rem; padding: .5rem; }
.trust__item .ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--teal); color: var(--gold-light); }
.trust__item strong { display: block; color: var(--teal); line-height: 1.2; }
.trust__item span { font-size: .875rem; color: var(--muted); }

/* ---------- sections ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tint { background: var(--gold-tint); }
.section--dark { background: var(--teal); color: #E9E4D6; }
.section--dark h2 { color: #fff; }
.section__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__head--center { text-align: center; max-width: 46rem; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__head--split { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; }
.section__sub { margin-top: var(--s4); color: var(--muted); font-size: 1.0625rem; }
.section__sub--light { color: #CFD8D6; }

/* ---------- problems ---------- */
.problems { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.problem { background: #fff; border: 2px solid transparent; border-radius: var(--radius); padding: 1.5rem 1.25rem; text-align: center; box-shadow: var(--shadow); transition: transform .25s var(--ease), border-color .25s var(--ease); }
.problem:hover { transform: translateY(-4px); border-color: var(--gold); }
.problem--hl { border-color: var(--gold); }
.problem__icon { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); }
.problem__icon .ico { width: 28px; height: 28px; }
.problem h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.problem p { font-size: .95rem; color: var(--muted); line-height: 1.5; }

/* ---------- services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid transparent; display: flex; flex-direction: column; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card img { aspect-ratio: 3/2; width: 100%; object-fit: cover; }
.card__body { position: relative; padding: 2.1rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__icon { position: absolute; top: -24px; left: 1.25rem; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--on-gold); border: 4px solid #fff; }
.card__icon .ico { width: 22px; height: 22px; }
.card p { color: var(--muted); font-size: .95rem; line-height: 1.5; flex: 1; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--teal); text-decoration: none; min-height: 44px; }
.card__link:hover { color: var(--gold-deep); }
.card__link .ico { width: 1.1em; height: 1.1em; }

/* ---------- before / after ---------- */
.ba { max-width: 900px; margin: 0 auto var(--s7); }
.ba__stage { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--teal); user-select: none; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); filter: saturate(.75); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; pointer-events: none; }
.ba__handle .ico { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; padding: 12px; border-radius: 50%; background: var(--gold); color: var(--on-gold); border: 3px solid #fff; box-shadow: var(--shadow); }
.ba__tag { position: absolute; top: 1rem; padding: .35rem .8rem; border-radius: 999px; font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--teal); color: #fff; }
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; background: var(--gold); color: var(--on-gold); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; touch-action: pan-y; }
.ba__stage:has(.ba__range:focus-visible) { outline: 3px solid var(--gold); outline-offset: 4px; }
.ba figcaption { text-align: center; margin-top: var(--s3); font-size: .9rem; color: var(--muted); }

/* ---------- before/after portfolio ---------- */
.pf { margin-bottom: var(--s8); }
.pf__cats { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: var(--s6); }
.pf__select { display: none; max-width: 22rem; margin: 0 auto var(--s5); }
.pf__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; max-width: 1040px; margin-inline: auto; }
.pf .ba { margin: 0; max-width: none; }
.pf .ba__stage { aspect-ratio: 836 / 941; }
.ba__kind { position: absolute; left: 1rem; bottom: 1rem; padding: .3rem .75rem; border-radius: 999px; background: rgba(15,42,46,.88); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; pointer-events: none; }
.pf__cat { font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .4rem; }
.pf__title { font-size: clamp(1.5rem, 1.6vw + 1rem, 2.1rem); margin-bottom: var(--s5); }
.pf__sets { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: var(--s5); }
.pf__set { position: relative; width: 84px; height: 84px; padding: 0; border-radius: 12px; overflow: hidden; border: 3px solid transparent; background: var(--teal); cursor: pointer; transition: border-color .18s var(--ease), transform .18s var(--ease); }
.pf__set img { width: 100%; height: 100%; object-fit: cover; }
.pf__set:hover { transform: translateY(-2px); }
.pf__set[aria-pressed="true"] { border-color: var(--gold); box-shadow: 0 0 0 2px #fff inset; }
.pf__note { font-size: .875rem; color: var(--muted); max-width: 30rem; margin-bottom: var(--s5); padding-left: .9rem; border-left: 3px solid var(--gold); }
.pf__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.pf__nav { display: flex; gap: .5rem; }
.pf__btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--teal); background: transparent; color: var(--teal); cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease); }
.pf__btn:hover { background: var(--teal); color: #fff; }
.gallery__sub { text-align: center; margin: -.75rem 0 var(--s5); font-size: .95rem; }
.gallery__title { text-align: center; margin-bottom: var(--s5); font-size: clamp(1.4rem, 1.4vw + 1rem, 1.9rem); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: var(--s6); }
.chip { min-height: 44px; padding: .5rem 1.15rem; border-radius: 999px; border: 2px solid var(--teal); background: transparent; color: var(--teal); font-weight: 700; cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease); }
.chip:hover { background: var(--gold-tint); }
.chip.is-active { background: var(--teal); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 1rem; }
.tile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--teal); }
.tile--wide { grid-column: span 2; grid-row: span 2; }
.tile[hidden] { display: none; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile__cap { position: absolute; inset: auto 0 0 0; padding: 2.5rem 1rem .9rem; color: #fff; font-weight: 700; display: flex; flex-direction: column; background: linear-gradient(transparent, rgba(15,42,46,.9)); }
.tile__cap em { font-style: normal; font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.gallery__empty { text-align: center; color: var(--muted); margin-top: var(--s5); }

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.process__photo { margin-top: var(--s6); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--gold); }
.process__photo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.steps { display: grid; gap: .9rem; counter-reset: s; }
.step { display: flex; gap: 1.25rem; align-items: center; background: #fff; border: 2px solid transparent; border-radius: var(--radius); padding: 1.15rem 1.4rem; box-shadow: var(--shadow); transition: border-color .25s var(--ease), transform .25s var(--ease); }
.step:hover, .step--on { border-color: var(--gold); }
.step:hover { transform: translateX(4px); }
.step__n { flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--gold-tint); color: var(--teal); font-weight: 800; font-size: 1.2rem; font-stretch: 110%; }
.step--on .step__n, .step:hover .step__n { background: var(--gold); color: var(--on-gold); }
.step h3 { margin-bottom: .2rem; }
.step p { color: var(--muted); font-size: .95rem; line-height: 1.5; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; object-position: 12% 50%; width: 100%; box-shadow: var(--shadow-lg); }
.about__badge { position: absolute; left: -1rem; bottom: 2rem; display: flex; align-items: center; gap: .85rem; background: #fff; padding: .9rem 1.25rem .9rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); border-left: 5px solid var(--gold); }
.about__badge strong { display: block; color: var(--teal); line-height: 1.1; }
.about__badge span:not(.mark) { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.mark { display: grid; grid-template: 1fr 1fr / 1fr 1fr; gap: 3px; width: 34px; height: 34px; }
.mark i { background: var(--gold); } .mark i:nth-child(3) { background: var(--teal); }
.about__text > p:not(.eyebrow) { color: var(--muted); font-size: 1.0625rem; margin-top: var(--s4); }
.about h2 { margin-bottom: var(--s2); }
.why { display: grid; gap: 1rem; margin-block: var(--s5); }
.why li { display: flex; gap: .9rem; align-items: flex-start; }
.why .ico { margin-top: .15rem; width: 1.6rem; height: 1.6rem; padding: .3rem; border-radius: 50%; background: var(--gold); color: var(--on-gold); stroke-width: 3; }
.why strong { color: var(--teal); }
.badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px; background: var(--gold-tint); color: var(--teal); font-weight: 700; font-size: .875rem; }
.badge .ico { color: var(--gold-deep); }

/* ---------- testimonials ---------- */
.reviews { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; align-items: stretch; }
.review { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; }
.review p { flex: 1; font-size: 1.05rem; }
.stars { display: inline-flex; gap: .15rem; color: var(--gold); }
.stars .ico { fill: currentColor; stroke: none; width: 1.3rem; height: 1.3rem; }
.review footer { display: flex; flex-wrap: wrap; align-items: baseline; gap: .1rem .6rem; font-size: .9rem; color: var(--muted); padding-top: 1rem; border-top: 1px solid var(--line); }
.review footer strong { color: var(--teal); }
.sample { margin-left: auto; font-style: normal; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--gold-tint); color: var(--gold-deep); padding: .2rem .55rem; border-radius: 6px; }
.review--dark { background: var(--teal); color: #E9E4D6; justify-content: center; align-items: flex-start; }
.review--dark h3 { color: #fff; font-size: 1.6rem; }
.review--dark p { flex: 0; }

/* ---------- service area ---------- */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area { padding: 1.4rem; border: 1px solid rgba(223,180,99,.35); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.area h3 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: .75rem; }
.area ul { display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.area li { font-size: .875rem; padding: .2rem .65rem; border-radius: 999px; background: rgba(255,255,255,.09); color: #F1EBDD; }
.area__note { margin-top: var(--s6); text-align: center; font-size: 1.1rem; }
.area__note a { color: var(--gold-light); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.assure { display: grid; gap: 1rem; margin-top: var(--s6); }
.assure__item { display: flex; gap: 1rem; padding: 1.15rem 1.25rem; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); border-left: 5px solid var(--gold); }
.assure__item .ico { width: 40px; height: 40px; padding: 8px; border-radius: 50%; background: var(--teal); color: var(--gold-light); }
.assure h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.assure p { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.faq__list { display: grid; gap: .75rem; }
details { background: #fff; border-radius: var(--radius); border: 2px solid transparent; box-shadow: var(--shadow); transition: border-color .2s var(--ease); }
details[open] { border-color: var(--gold); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.4rem; min-height: 56px; font-weight: 700; color: var(--teal); cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--gold-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317393E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform .25s var(--ease), background-color .25s var(--ease); }
details[open] summary::after { transform: rotate(45deg); background-color: var(--gold); }
details p { padding: 0 1.4rem 1.3rem; color: var(--muted); }

/* ---------- final CTA ---------- */
.cta { background: var(--gold); color: var(--on-gold); padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; }
.cta h2 { color: var(--teal-900); font-size: clamp(1.7rem, 2.4vw + 1rem, 2.6rem); }
.cta p { margin-top: .4rem; font-size: 1.1rem; font-weight: 500; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- footer ---------- */
.footer { background: var(--teal); color: #D9E0DE; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__brand img { width: 260px; height: auto; margin-bottom: 1.25rem; }
.footer__brand p { max-width: 24rem; }
.footer__lic { margin-top: 1rem; font-weight: 700; letter-spacing: .06em; color: var(--gold-light); }
.footer__h { font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer ul { display: grid; gap: .55rem; }
.footer a { text-decoration: none; }
.footer ul a:hover { color: var(--gold-light); text-decoration: underline; }
.contact li { display: flex; gap: .7rem; align-items: flex-start; }
.contact .ico { margin-top: .25rem; color: var(--gold-light); }
.footer .btn { margin-top: 1.25rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.14); font-size: .875rem; color: #B9C6C4; }
.footer__bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding-block: 1.1rem; }

/* ---------- mobile action bar ---------- */
.mobilebar { display: none; }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .problems { grid-template-columns: repeat(3, 1fr); }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form { grid-template-columns: repeat(2, 1fr); }
  .form__submit { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: grid; }
  .header__cta { display: none; }
  .brand img { height: 42px; }
  .nav { position: fixed; inset: calc(var(--header-h) + 0px) 0 0 0; margin: 0; background: #fff; padding: 1.25rem 1rem 2rem; overflow-y: auto; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav ul { flex-direction: column; gap: .25rem; }
  .nav a:not(.btn) { font-size: 1.15rem; padding: .95rem 1rem; border-radius: 12px; }
  .nav__cta-mobile { display: inline-flex; width: 100%; margin-top: 1.25rem; }
  .topbar .topbar__lic { display: none; }
  .process, .about, .faq { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .about__badge { left: 1rem; }
  .reviews { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .pf__body { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 640px) {
  .topbar .topbar__msg { font-size: .75rem; white-space: normal; }
  .services, .areas, .footer__grid { grid-template-columns: 1fr; }
  .problems { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .hero { padding-bottom: 9rem; }
  .hero__actions .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .pf__cats { display: none; }
  .pf__select { display: flex; }
  .pf__set { width: 72px; height: 72px; }
  .tile--wide { grid-column: auto; grid-row: auto; }
  .cta__actions, .cta__actions .btn { width: 100%; }
  .step { padding: 1rem; gap: 1rem; }
  .step__n { width: 48px; height: 48px; }
  .trust__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 76px; }
  .mobilebar { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; position: fixed; inset: auto 0 0 0; z-index: 60; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(15,42,46,.1); }
  .mobilebar .btn { width: 100%; padding-inline: .5rem; }
}

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