/* =========================================================
   Anthony's Tile — redesign stylesheet
   Single stylesheet, no build step. Tokens first, then layout.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette pulled from the logo's three tiles: clay, slate, sand */
  --clay: #9b3d2a;
  --clay-hi: #b4503c;
  --clay-dim: #7d3021;
  --slate: #2f4a5c;
  --sand: #c9a87c;
  --sand-soft: #e8d9c2;

  --ink: #17130f;
  --ink-2: #4a4038;
  --ink-3: #7a6e63;

  --paper: #fbf8f4;
  --paper-2: #f3ede5;
  --line: #e3d9cc;
  --white: #fff;

  --shadow-sm: 0 1px 2px rgb(23 19 15 / 0.06), 0 2px 8px rgb(23 19 15 / 0.05);
  --shadow-md: 0 8px 24px rgb(23 19 15 / 0.08), 0 2px 6px rgb(23 19 15 / 0.05);
  --shadow-lg: 0 24px 60px rgb(23 19 15 / 0.14), 0 6px 16px rgb(23 19 15 / 0.07);

  --radius: 4px;
  --radius-lg: 10px;

  --gutter: 20px;
  --maxw: 1200px;

  /* The "* fallback" faces carry size-adjust/ascent-override (see fonts.css)
     so the swap to the real webfont does not move any text. */
  --font-display: "Fraunces", "Fraunces fallback", Georgia, serif;
  --font-body: "Inter", "Inter fallback", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 900px) {
  :root { --gutter: 40px; --header-h: 84px; }
}

/* ---------- 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; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
/* <picture> wraps every photo for the WebP source; it must not become a box
   in the layout, or the grid sizing below would apply to it instead of img. */
picture { display: contents; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 72px; }
@media (min-width: 900px) { .section { padding-block: 112px; } }

.section--tight { padding-block: 56px; }

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 8px; }

/* Section label: "01 — Services" */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--clay);
  flex: none;
}

.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.3rem); }
.section-head p {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--ink-2);
  max-width: 58ch;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--clay);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { --btn-bg: var(--clay-hi); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: rgb(251 248 244 / 0.4);
  box-shadow: none;
}
.btn--light:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); border-color: var(--paper); }

.btn--sm { padding: 11px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.icon { width: 1.1em; height: 1.1em; flex: none; stroke-width: 1.8; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(251 248 244 / 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 18px rgb(23 19 15 / 0.05); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: 30px; }
}
.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  padding-block: 6px;
  transition: color 0.18s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav a:hover, .nav a[aria-current="true"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }

.header__cta { display: none; white-space: nowrap; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

.header__phone {
  display: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
@media (min-width: 780px) { .header__phone { display: inline-flex; align-items: center; gap: 8px; } }
.header__phone:hover { color: var(--clay); }

.burger {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.24s var(--ease), opacity 0.16s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 32px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s var(--ease), visibility 0.3s;
  overflow-y: auto;
}
.drawer.is-open { transform: none; visibility: visible; }
@media (min-width: 1000px) { .drawer { display: none; } }
.drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 48px;
  padding-bottom: 64px;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding-top: 72px; padding-bottom: 100px; } }

/* Faint grout-line grid behind the hero — the tile motif of the whole page */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(90% 70% at 20% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(90% 70% at 20% 30%, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: 64px; }
}

.hero__place {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 22px;
}
.hero__place .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgb(155 61 42 / 0.15);
}

.hero h1 {
  font-size: clamp(2.7rem, 1.4rem + 5.4vw, 4.9rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.hero__lede {
  font-size: clamp(1.04rem, 1rem + 0.3vw, 1.19rem);
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__proof div { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-2); }
.hero__proof svg { color: var(--clay); }

/* Layered hero images */
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); }

/* The width/height attributes on these <img> tags exist to reserve space before
   CSS loads, but they also set a presentational height that beats CSS
   aspect-ratio — which silently made the inset 800px tall and overlap the hero
   copy on mobile. height:auto hands control back to aspect-ratio. */
.hero__shot {
  position: relative;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}
.hero__shot-2 {
  position: absolute;
  right: -10px;
  bottom: -34px;
  width: 44%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border: 7px solid var(--paper);
  box-shadow: var(--shadow-md);
}
@media (min-width: 980px) { .hero__shot-2 { right: -34px; bottom: -44px; width: 47%; } }

/* Sand block behind the hero image, offset like a tile underlayment */
.hero__media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 58%;
  height: 58%;
  background: var(--sand-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero__badge {
  position: absolute;
  left: -14px;
  top: 34px;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; }
.hero__badge span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }

/* ---------- Service-area marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
  padding-block: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee span::after { content: "◆"; color: var(--sand); font-size: 0.6rem; letter-spacing: 0; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  position: relative;
  background: var(--paper);
  padding: 36px 30px 34px;
  transition: background-color 0.22s var(--ease);
}
.service::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.service:hover { background: var(--white); }
.service:hover::after { transform: scaleX(1); }

.service__num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--sand);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}
.service h3 { font-size: 1.42rem; margin-bottom: 12px; }
.service p { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 18px; }
.service ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.service li {
  font-size: 0.77rem;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-3);
  background: var(--paper-2);
}

/* ---------- Process ---------- */
.process { background: var(--paper-2); }
.process__grid { display: grid; gap: 34px; }
@media (min-width: 820px) { .process__grid { grid-template-columns: repeat(3, 1fr); gap: 44px; } }

.step { position: relative; padding-top: 26px; border-top: 2px solid var(--ink); }
.step__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--sand);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }

/* ---------- Gallery ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter {
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.filter:hover { border-color: var(--ink-3); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 820px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .gallery__item--wide { grid-column: span 2; }
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  display: block;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgb(23 19 15 / 0.78));
  color: var(--white);
  text-align: left;
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery__item:hover .gallery__cap,
.gallery__item:focus-visible .gallery__cap { opacity: 1; transform: none; }
.gallery__cap small { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }

.gallery__item[hidden] { display: none; }

.gallery-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(23 19 15 / 0.93);
  border: 0;
}
.lightbox::backdrop { background: rgb(23 19 15 / 0.9); }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: var(--radius-lg); object-fit: contain; }
.lightbox__cap { color: var(--paper); text-align: center; margin-top: 16px; font-size: 0.92rem; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgb(251 248 244 / 0.12);
  color: var(--paper);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox__close:hover { background: rgb(251 248 244 / 0.24); }

/* ---------- Testimonials ---------- */
.reviews { background: var(--ink); color: var(--paper); }
.reviews h2 { color: var(--paper); }
.reviews .eyebrow { color: rgb(251 248 244 / 0.6); }
.reviews .section-head p { color: rgb(251 248 244 / 0.72); }

.reviews__grid { display: grid; gap: 20px; }
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.review {
  background: rgb(251 248 244 / 0.05);
  border: 1px solid rgb(251 248 244 / 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.review__stars { display: flex; gap: 3px; color: var(--sand); margin-bottom: 18px; }
.review blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--paper);
}
.review figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgb(251 248 244 / 0.12);
  font-size: 0.88rem;
}
.review figcaption strong { display: block; font-weight: 600; }
.review figcaption span { color: rgb(251 248 244 / 0.55); font-size: 0.8rem; }

.reviews__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Areas + hours ---------- */
.areas__grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .areas__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }

.areas__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.areas__list li {
  background: var(--paper);
  padding: 15px 18px;
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.areas__list svg { color: var(--sand); flex: none; }

.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.hours-card h3 { font-size: 1.3rem; margin-bottom: 18px; }
.hours-card dl { margin: 0 0 22px; display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; font-size: 0.94rem; }
.hours-card dt { color: var(--ink-2); }
.hours-card dd { margin: 0; font-weight: 600; text-align: right; }
.hours-card dd.closed { color: var(--ink-3); font-weight: 500; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.status--open { background: #e6f2ea; color: #1d6b3f; }
.status--closed { background: var(--paper-2); color: var(--ink-2); }
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.18s var(--ease);
}
.faq__q:hover { color: var(--clay); }
.faq__q .chev {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.28s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); background: var(--clay); color: var(--white); border-color: var(--clay); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { color: var(--ink-2); font-size: 0.98rem; padding-bottom: 24px; margin: 0; max-width: 68ch; }

/* ---------- Contact ---------- */
.contact { background: var(--paper-2); }
.contact__grid { display: grid; gap: 28px; }
@media (min-width: 940px) { .contact__grid { grid-template-columns: 1fr 0.86fr; gap: 40px; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .form-card { padding: 42px 40px; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.field .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgb(155 61 42 / 0.14);
}
.field-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: 0.82rem; color: var(--ink-3); margin: 14px 0 0; }

.info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 640px) { .info-card { padding: 42px 38px; } }
.info-card h3 { color: var(--paper); font-size: 1.5rem; }
.info-card > p { color: rgb(251 248 244 / 0.7); font-size: 0.96rem; margin: -12px 0 0; }

.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row svg { color: var(--sand); flex: none; margin-top: 3px; }
.info-row a, .info-row span { text-decoration: none; }
.info-row strong { display: block; font-size: 0.75rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgb(251 248 244 / 0.5); margin-bottom: 3px; font-weight: 600; }
.info-row .big { font-family: var(--font-display); font-size: 1.5rem; }
.info-row a:hover { color: var(--sand); }

.socials { display: flex; gap: 10px; margin-top: auto; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgb(251 248 244 / 0.2);
  border-radius: 50%;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.socials a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgb(251 248 244 / 0.62);
  padding-block: 52px 110px;
  font-size: 0.9rem;
}
@media (min-width: 720px) { .footer { padding-bottom: 52px; } }
.footer__grid { display: grid; gap: 32px; margin-bottom: 36px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; } }
.footer h4 { color: var(--paper); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { text-decoration: none; transition: color 0.16s var(--ease); }
.footer a:hover { color: var(--paper); }
.footer .brand__name { color: var(--paper); }
.footer__bottom {
  border-top: 1px solid rgb(251 248 244 / 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ---------- Mobile action bar ---------- */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgb(23 19 15 / 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 720px) { .actionbar { display: none; } }
.actionbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 8px;
  background: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}
.actionbar a.primary { background: var(--clay); color: var(--white); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* A closed <dialog> gets display:none from the UA sheet, but any author
   `display` on .lightbox beats the UA rule and leaves the close button
   floating on the page. Re-hide it explicitly. */
.lightbox:not([open]) { display: none; }

/* Gallery rows: fixed row height instead of per-tile aspect ratio, so the
   double-width tiles sit flush with the single-width ones instead of
   stretching their row 1.5x taller. */
.gallery { grid-auto-rows: 150px; }
@media (min-width: 560px) { .gallery { grid-auto-rows: 190px; } }
@media (min-width: 820px) { .gallery { grid-auto-rows: 230px; } }
.gallery__item { aspect-ratio: auto; height: 100%; }

/* ---------- Google review summary bar ---------- */
.gsummary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 36px;
  padding: 26px 30px;
  margin-bottom: 28px;
  background: rgb(251 248 244 / 0.05);
  border: 1px solid rgb(251 248 244 / 0.14);
  border-radius: var(--radius-lg);
}

.gsummary__score { display: flex; align-items: center; gap: 18px; }
.gsummary__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--paper);
}
.gsummary__stars { display: flex; gap: 3px; color: var(--sand); margin-bottom: 6px; }
.gsummary__count { font-size: 0.92rem; color: rgb(251 248 244 / 0.66); }

.gsummary__src {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 36px;
  border-left: 1px solid rgb(251 248 244 / 0.14);
  font-size: 0.9rem;
  color: rgb(251 248 244 / 0.66);
}
@media (max-width: 720px) {
  .gsummary__src { padding-left: 0; border-left: 0; }
}

.gsummary__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-left: auto; }

/* Source badge on an individual card */
.review__src {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(251 248 244 / 0.5);
  margin-left: auto;
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.review__top .review__stars { margin-bottom: 0; }

/* Owner's reply — proof he actually answers people */
.review__reply {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgb(251 248 244 / 0.05);
  border-left: 2px solid var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.87rem;
  color: rgb(251 248 244 / 0.74);
}
.review__reply strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(251 248 244 / 0.5);
  margin-bottom: 5px;
}

.review blockquote a { color: var(--sand); }

/* ---------- Before & after ---------- */
.ba { background: var(--paper-2); }
.ba__grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .ba__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.ba__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.ba__shot { position: relative; margin: 0; background: var(--paper-2); }
.ba__shot img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.ba__shot figcaption {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgb(23 19 15 / 0.72);
  color: var(--paper);
  backdrop-filter: blur(4px);
}
.ba__shot--after figcaption { background: var(--clay); }
.ba__body { padding: 20px 22px 22px; }
.ba__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ba__body p { font-size: 0.9rem; color: var(--ink-2); margin: 0; }

/* Hero badge is a link now */
.hero__badge { text-decoration: none; transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.hero__badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero__badge strong { color: var(--sand); }

/* Positive-attribute chips Google attaches to some reviews */
.review__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: -8px 0 18px; }
.review__tags span {
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgb(251 248 244 / 0.16);
  color: rgb(251 248 244 / 0.62);
}

/* Seven nav items plus the phone number and CTA need more room than 1000px
   before the brand starts wrapping. */
.brand__name { white-space: nowrap; }
@media (min-width: 1000px) and (max-width: 1239px) {
  .nav { display: none; }
  .burger { display: inline-grid; }
}
@media (min-width: 1240px) { .nav { gap: 22px; } }
.brand { flex: 0 0 auto; }
.nav a { white-space: nowrap; }

/* ---------- Quote form: honeypot + status ---------- */
/* Off-screen rather than display:none — some bots skip hidden inputs. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 14px 0 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-status:empty { display: none; }
.form-status.is-ok,
.form-status.is-error {
  padding: 12px 14px;
  border-radius: var(--radius);
  border-left: 3px solid currentColor;
}
.form-status.is-ok { background: #e6f2ea; color: #1d6b3f; }
.form-status.is-error { background: #fbecea; color: #8c2d1c; }

.btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

/* ---------- Intro / service-area statement ---------- */
.intro { border-bottom: 1px solid var(--line); }
.intro__grid { display: grid; gap: 22px; }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}
.intro h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.15rem); }
.intro p { color: var(--ink-2); font-size: 1rem; }
.intro p:last-child { margin-bottom: 0; }
.intro a { color: var(--clay); font-weight: 600; }

.footer__bottom a { text-decoration: underline; }
.form-note a { color: var(--clay); }

/* ---------- Standalone legal pages ---------- */
.legal { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: 24px; }
.legal h2 { font-size: 1.3rem; margin-top: 38px; margin-bottom: 10px; }
.legal p { color: var(--ink-2); }
.legal a { color: var(--clay); font-weight: 600; }
.legal__lede { font-size: 1.1rem; color: var(--ink); }
.legal__updated { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.86rem; color: var(--ink-3); }

/* Replacements for what used to be inline style attributes — inline styles are
   blocked by the Content-Security-Policy in netlify.toml. */
.section--flush-top { padding-top: 0; }
.footer__brand { margin-bottom: 16px; }
.footer__blurb { max-width: 34ch; }
.footer__phone { color: var(--paper); font-weight: 600; }
