/* =========================================================
   Ashgrove Painting - Editorial Premium
   Palette locked: plum #6B5B95 accent, lavender #C7B8D8 secondary,
   ink #211E26, warm paper #FBFAF8. Light theme, one accent, one radius.
   Type: Cormorant Garamond (display) + Inter (body/UI).
   ========================================================= */

:root {
  /* brand */
  --accent: #6B5B95;
  --accent-deep: #564878;
  --accent-soft: #C7B8D8;
  --accent-tint: #EFEAF3;
  --accent-wash: #F6F2F9;

  --ink: #211E26;
  --ink-2: #4A4552;
  --ink-3: #756F7E;
  --paper: #FBFAF8;
  --paper-2: #F4F1EC;
  --line: #E7E2DC;
  --line-soft: #EFEBE5;
  --white: #FFFFFF;

  /* type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* shape: ONE radius scale (interactive = pill, surfaces = 14px) */
  --r: 14px;
  --r-sm: 10px;
  --r-pill: 999px;

  /* spacing rhythm */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --sec-pad: clamp(4.5rem, 9vw, 8rem);

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 18px 50px -28px rgba(33, 30, 38, 0.30);
  --shadow-sm: 0 6px 22px -14px rgba(33, 30, 38, 0.28);

  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* NAV-SAFETY: [hidden] must always win over any display rule */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea { font: inherit; color: inherit; }

.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: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--white);
  padding: 10px 16px; border-radius: var(--r-sm); font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* visible focus everywhere */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .section__lead { margin-inline: auto; }

.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.12; /* descender clearance for italic */
}

.section__lead {
  margin-top: 1.25rem;
  font-size: 1.06rem;
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.7;
}

/* ---------- buttons (one pill system) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.92rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { flex: 0 0 auto; }

.btn--solid { background: var(--accent); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(107, 91, 149, 0.65); }
.btn--solid:active { transform: translateY(0) scale(0.985); }

.btn--ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent-soft); }
.btn--ghost:hover { background: var(--accent-tint); border-color: var(--accent); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(0) scale(0.985); }

.btn--light { background: var(--white); color: var(--accent-deep); box-shadow: 0 16px 40px -22px rgba(0,0,0,0.5); }
.btn--light:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 20px 48px -22px rgba(0,0,0,0.6); }
.btn--light:active { transform: translateY(0) scale(0.985); }

.btn--outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--outline-light:active { transform: translateY(0) scale(0.985); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.nav.is-stuck {
  background: rgba(251, 250, 248, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(33, 30, 38, 0.45);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: var(--nav-h);
  transition: height 0.3s var(--ease);
}
.nav.is-stuck .nav__inner { height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand__mark { color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.005em; }
.brand__sub {
  font-family: var(--body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0; transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--accent); transition: width 0.28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.phone-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.15rem; border-radius: var(--r-pill);
  background: var(--accent); color: var(--white);
  font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.phone-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.phone-cta svg { color: var(--white); }

/* mobile toggle */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); }
.nav__toggle-bars { display: grid; gap: 5px; width: 22px; margin-inline: auto; }
.nav__toggle-bars i { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav__mobile {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 0.6rem var(--gutter) 1.4rem;
}
.nav__mobile nav { display: flex; flex-direction: column; }
.nav__mobile a {
  padding: 0.95rem 0.25rem; font-size: 1.05rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile-cta { margin-top: 1rem; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__wash { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.hero__wash--1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -14%; right: -8%; background: radial-gradient(circle, var(--accent-soft), transparent 68%); }
.hero__wash--2 { width: 38vw; height: 38vw; max-width: 480px; max-height: 480px; bottom: -18%; left: -10%; background: radial-gradient(circle, var(--accent-tint), transparent 70%); opacity: 0.8; }

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  min-height: calc(100dvh - var(--nav-h) - 6rem);
}

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--accent); line-height: 1.12; }

.hero__sub {
  font-size: 1.12rem; color: var(--ink-2); max-width: 46ch; line-height: 1.7;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem;
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
}
.trust-strip svg { color: var(--accent); flex: 0 0 auto; }

/* hero art panel */
.hero__art { position: relative; }
.hero__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  position: relative; z-index: 2;
}
.hero__swatches { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.swatch {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-sm);
  display: flex; align-items: flex-end; padding: 0.6rem;
  border: 1px solid rgba(33,30,38,0.06);
  overflow: hidden;
}
.swatch__name {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.02em;
  background: rgba(255,255,255,0.86); color: var(--ink);
  padding: 3px 8px; border-radius: var(--r-pill);
  backdrop-filter: blur(2px);
}
.swatch--a { background: linear-gradient(135deg, #FCFBF9, #F0EDE7); }
.swatch--b { background: linear-gradient(135deg, #F2F1F4, #E2E0E8); }
.swatch--c { background: linear-gradient(135deg, #7C6BA6, #564878); }
.swatch--c .swatch__name { background: rgba(255,255,255,0.92); }
.swatch--d { background: linear-gradient(135deg, #F4EEE6, #E7DDCF); }

.hero__panel-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft);
}
.hero__panel-label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.01em; }
.hero__brush { color: var(--accent); }

.hero__photo-slot {
  margin-top: -2.2rem; margin-left: auto; margin-right: -0.5rem;
  width: 72%; aspect-ratio: 4 / 3;
  border-radius: var(--r);
  background:
    repeating-linear-gradient(135deg, rgba(107,91,149,0.05) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, var(--accent-wash), var(--accent-tint));
  border: 1px solid var(--accent-soft);
  position: relative; z-index: 1;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.slot__tag {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-deep);
  background: rgba(255,255,255,0.78); padding: 6px 12px; border-radius: var(--r-pill);
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats { background: var(--white); border-block: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
}
.stat { text-align: center; padding-inline: 0.6rem; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 56%; width: 1px; background: var(--line);
}
.stat__num {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.3rem); line-height: 1; color: var(--accent);
  letter-spacing: -0.01em;
}
.stat__label { display: block; margin-top: 0.55rem; font-size: 0.85rem; color: var(--ink-2); font-weight: 500; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.9rem 1.7rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.svc__icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: var(--r-sm); background: var(--accent-tint); color: var(--accent-deep);
  margin-bottom: 1.2rem;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.svc:hover .svc__icon { background: var(--accent); color: var(--white); }
.svc__title { font-family: var(--display); font-weight: 600; font-size: 1.5rem; line-height: 1.15; margin-bottom: 0.5rem; }
.svc__copy { font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--paper-2); }
.process__layout {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.process__intro { position: sticky; top: calc(var(--nav-h) + 2rem); }
.process__intro .btn { margin-top: 1.8rem; }

.process__steps { display: grid; gap: 0.5rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step__no {
  font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: 2rem; color: var(--accent-soft); line-height: 1; min-width: 2.4ch;
  transition: color 0.3s var(--ease);
}
.step:hover .step__no { color: var(--accent); }
.step__title { font-family: var(--display); font-weight: 600; font-size: 1.5rem; line-height: 1.15; margin-bottom: 0.35rem; }
.step__body p { font-size: 0.97rem; color: var(--ink-2); line-height: 1.65; max-width: 48ch; }

/* =========================================================
   WORK / GALLERY
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 240px);
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}
.tile {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
/* explicit composition so the 5 tiles fill 4 cols x 2 rows with no holes:
   t1 = col1 rows1-2 | t2 = col2 r1 | t3 = cols3-4 r1 | t4 = col2 r2 | t5 = cols3-4 r2 */
.gallery .tile:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.gallery .tile:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery .tile:nth-child(3) { grid-column: 3 / span 2; grid-row: 1; }
.gallery .tile:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery .tile:nth-child(5) { grid-column: 3 / span 2; grid-row: 2; }
.tile__art { position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.tile:hover .tile__art { transform: scale(1.05); }

/* on-brand colour-field placeholders (paint swatches) */
.tile__art--1 { background: linear-gradient(160deg, #8E7CB8, #564878); }
.tile__art--2 { background: linear-gradient(160deg, #F4EEE6, #DBCFBE); }
.tile__art--3 { background: linear-gradient(160deg, #C7B8D8, #9A88BC); }
.tile__art--4 { background: linear-gradient(160deg, #F6F2F9, #E3DAEC); }
.tile__art--5 { background: linear-gradient(160deg, #EFEAF3, #C7B8D8 70%, #8E7CB8); }

.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem 0.95rem;
  font-size: 0.85rem; font-weight: 600; color: var(--white);
  background: linear-gradient(to top, rgba(33,30,38,0.62), transparent);
  letter-spacing: 0.01em;
}

/* =========================================================
   GET A FREE QUOTE + FORM
   ========================================================= */
.callback { background: linear-gradient(180deg, var(--paper), var(--accent-wash)); }
.callback__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.callback__points { display: grid; gap: 0.9rem; margin-top: 2rem; }
.callback__points li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start;
  font-size: 1rem; color: var(--ink); font-weight: 500;
}
.callback__points svg { color: var(--accent); margin-top: 1px; }

/* form */
.qform {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
}
.qform__title { font-family: var(--display); font-weight: 600; font-size: 1.9rem; line-height: 1.1; }
.qform__intro { font-size: 0.95rem; color: var(--ink-2); margin-top: 0.4rem; margin-bottom: 1.6rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #76707E; opacity: 1; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field textarea { resize: vertical; min-height: 92px; }

.field__error { font-size: 0.8rem; font-weight: 500; color: #B23A52; display: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #B23A52; }
.field.is-invalid .field__error { display: block; }

.qform__submit { width: 100%; margin-top: 0.4rem; }
.qform__note { font-size: 0.8rem; color: var(--ink-3); text-align: center; margin-top: 0.9rem; }

.qform__success {
  position: absolute; inset: 0;
  background: var(--white);
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  animation: fadeScale 0.4s var(--ease);
}
.qform__success-mark { color: var(--accent); margin-bottom: 1rem; }
.qform__success h4 { font-family: var(--display); font-weight: 600; font-size: 1.8rem; line-height: 1.1; margin-bottom: 0.5rem; }
.qform__success p { font-size: 0.97rem; color: var(--ink-2); max-width: 34ch; }
.qform__success a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews__stars {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 1.1rem; justify-content: center;
}
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.reviews__rating { font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }

.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review blockquote {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.32rem; line-height: 1.4; color: var(--ink);
}
.review__by { display: flex; align-items: center; gap: 0.8rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent-deep);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
}
.review__name { display: block; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.review__loc { display: block; font-size: 0.82rem; color: var(--ink-3); }

/* =========================================================
   AREAS
   ========================================================= */
.areas__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.areas__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.areas__list li {
  font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--ink);
  padding: 1.05rem 0.4rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.7rem;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.areas__list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-soft); flex: 0 0 auto; transition: background-color 0.25s var(--ease);
}
.areas__list li:hover { color: var(--accent); padding-left: 0.9rem; }
.areas__list li:hover::before { background: var(--accent); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta {
  background:
    radial-gradient(120% 140% at 80% 0%, var(--accent) 0%, var(--accent-deep) 55%, #3F345C 100%);
  color: var(--white);
}
.finalcta__inner { text-align: center; padding-block: clamp(4rem, 8vw, 6.5rem); max-width: 760px; }
.finalcta__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 3.7rem); line-height: 1.06; letter-spacing: -0.01em;
}
.finalcta__sub { margin-top: 1.1rem; font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 52ch; margin-inline: auto; }
.finalcta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2.2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.brand--foot { color: var(--white); }
.brand--foot .brand__mark { color: var(--accent-soft); }
.brand--foot .brand__sub { color: rgba(255,255,255,0.55); }
.footer__blurb { margin-top: 1.1rem; font-size: 0.92rem; line-height: 1.65; max-width: 34ch; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--white);
  border: 1px solid rgba(255,255,255,0.16);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.footer__h {
  font-family: var(--body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
  margin-bottom: 1.1rem;
}
.footer__list { display: grid; gap: 0.65rem; }
.footer__list li, .footer__list a { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: color 0.2s var(--ease); }
.footer__list a:hover { color: var(--white); }
.footer__list--areas { grid-template-columns: 1fr 1fr; gap: 0.65rem 1rem; }

.footer__bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.1rem;
}
.footer__meta li { position: relative; }
.footer__meta li + li { padding-left: 1.1rem; }
.footer__meta li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(255,255,255,0.22);
}

/* =========================================================
   STICKY MOBILE CALL BAR
   ========================================================= */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1rem;
  background: var(--accent); color: var(--white);
  font-weight: 600; font-size: 0.97rem;
  box-shadow: 0 -8px 28px -16px rgba(33,30,38,0.6);
  padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
}
.callbar svg { color: var(--white); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .phone-cta span { display: none; }
  .phone-cta { padding: 0.6rem; }
  .nav__toggle { display: grid; place-items: center; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; padding-top: 1rem; }
  .hero__art { max-width: 460px; }
  .hero__photo-slot { width: 66%; }

  .process__layout { grid-template-columns: 1fr; }
  .process__intro { position: static; }

  .callback__grid { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }

  .areas__layout { grid-template-columns: 1fr; }

  /* tablet gallery: tidy 2-col, reset desktop explicit placement */
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(160px, 30vw, 220px); }
  .gallery .tile:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery .tile:nth-child(1) { grid-column: 1 / span 2; }

  .callbar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .stat + .stat::before { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .gallery { grid-auto-rows: clamp(150px, 42vw, 200px); }

  .field-row { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .tile:nth-child(1) { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tile:hover .tile__art { transform: none; }
}

/* reduced transparency fallback for the glassy nav */
@media (prefers-reduced-transparency: reduce) {
  .nav { background: var(--paper); }
  .nav.is-stuck { background: var(--paper); }
}
