/* =====================================================================
   GT Stone and Cabinets Installation — style.css
   Visual system: "Clean Split" — warm white, terracotta, blue-grey
   Pure static. Mobile-first. All colors via :root custom properties.
   ===================================================================== */

:root {
  /* palette */
  --color-bg: #fefcf9;
  --color-surface: #ffffff;
  --color-surface-warm: #f8f1e9;
  --color-primary: #c9704a;
  --color-primary-hover: #d4805c; /* ~8% lighter for button hover */
  --color-primary-deep: #a9572f;
  --color-accent2: #e7eef2;       /* pale blue-grey cool-contrast */
  --color-accent2-deep: #d3e0e7;
  --color-text: #2e2a28;
  --color-muted: #756b64;
  --color-border: #ece0d3;
  --color-border-cool: #d7e2e8;

  /* type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --container-narrow: 860px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(46, 42, 40, 0.08);
  --shadow-md: 0 10px 30px rgba(46, 42, 40, 0.10);
  --shadow-lg: 0 24px 60px rgba(46, 42, 40, 0.14);
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
  --section-y: 96px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 300;
  background: var(--color-primary); color: #fff;
  padding: 0.6rem 1rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }
/* inline icon SVGs never have intrinsic size — constrain them everywhere */
.btn svg, .nav-phone svg, .float-call svg, .card__more svg { width: 1.15em; height: 1.15em; flex: none; }
.nav-phone svg { width: 17px; height: 17px; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--color-primary-deep); text-underline-offset: 3px; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; border-radius: 3px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 560;
  line-height: 1.12;
  color: var(--color-text);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 1.85rem + 2.4vw, 3.5rem); line-height: 1.04; letter-spacing: -0.022em; font-weight: 460; }
h2 { font-size: clamp(1.75rem, 1.35rem + 1.9vw, 2.6rem); line-height: 1.08; letter-spacing: -0.018em; font-weight: 460; }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem); font-weight: 600; }
p { text-wrap: pretty; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.95rem;
}
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); color: var(--color-muted); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: 48px; }
.section--alt { background: var(--color-accent2); }
.section--warm { background: var(--color-surface-warm); }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.75rem; color: var(--color-muted); }
.divider { height: 4px; width: 56px; background: var(--color-primary); border-radius: 2px; margin-top: 1.1rem; }
.section-head--center .divider { margin-inline: auto; }

@media (min-width: 768px) {
  .section { padding-block: var(--section-y); }
  .container { padding-inline: 32px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.18s var(--ease-entrance), background-color 0.18s ease,
    filter 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); color: #fff; transform: scale(1.03); }
.btn--ghost { color: var(--color-primary-deep); border-color: var(--color-primary); background: transparent; }
.btn--ghost:hover { background: rgba(201, 112, 74, 0.08); transform: scale(1.03); }
.btn--light { background: #fff; color: var(--color-primary-deep); border-color: #fff; }
.btn--light:hover { filter: brightness(0.97); transform: scale(1.03); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.03rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.tel-link { color: inherit; text-decoration: none; }
.tel-link:hover { text-decoration: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
}
/* homepage: header floats over the photo hero until you scroll */
body.hero-page .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(30, 26, 24, 0.40), rgba(30, 26, 24, 0));
  box-shadow: none;
  border-bottom-color: transparent;
}
body.hero-page .site-header:not(.is-scrolled) .brand { color: #fff; }
body.hero-page .site-header:not(.is-scrolled) .brand span { color: #f0c3ab; }
body.hero-page .site-header:not(.is-scrolled) .nav-links a { color: #fff; }
body.hero-page .site-header:not(.is-scrolled) .nav-links a.is-active { color: #f0c3ab; }
/* the Services dropdown panel is a white card — keep its links dark on the hero */
body.hero-page .site-header:not(.is-scrolled) .nav-drop-panel a { color: var(--color-text); }
body.hero-page .site-header:not(.is-scrolled) .nav-drop-panel a:hover { color: var(--color-primary-deep); }
body.hero-page .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(255, 255, 255, 0.5); }
body.hero-page .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  transition: min-height 0.3s ease;
}
.site-header.is-scrolled .nav { min-height: 62px; }
.brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.15;
  color: var(--color-text);
  text-decoration: none;
  margin-right: auto;
  max-width: 62%;
}
.brand span { color: var(--color-primary); }

.nav-links { display: none; }
.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-links a:hover { color: var(--color-primary-deep); }
.nav-links a.is-active { color: var(--color-primary-deep); font-weight: 600; }

.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: none;
  flex-direction: column;
}
.nav-drop:hover .nav-drop-panel, .nav-drop.is-open .nav-drop-panel { display: flex; }
.nav-drop-panel a { font-size: 0.88rem; padding: 0.55rem 0.7rem; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  flex: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.nav-phone span { white-space: nowrap; }
.nav-phone svg { flex: none; }
.nav-phone:hover { background: var(--color-primary-hover); color: #fff; transform: scale(1.03); }

.nav-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  position: relative;
  background: var(--color-surface);
  flex: none;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--color-text);
  transition: transform 0.22s var(--ease-entrance), opacity 0.22s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateX(102%);
  transition: transform 0.3s var(--ease-entrance);
  z-index: 99;
  padding: calc(var(--header-h) + 20px) 22px 40px;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 0.9rem 0.25rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu a.is-active { color: var(--color-primary-deep); font-weight: 600; }
.mobile-menu .mm-sub { font-size: 0.9rem; padding-left: 1rem; color: var(--color-muted); }
.menu-backdrop {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(46, 42, 40, 0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
body.menu-open .menu-backdrop { opacity: 1; pointer-events: auto; }

@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 0.15rem; }
  .nav-toggle, .mobile-menu, .menu-backdrop { display: none; }
}

/* ---------- hero: single full-bleed image ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
/* soft, directional warm gradient — just enough for the text to read */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(96deg, rgba(30, 26, 24, 0.62) 0%, rgba(30, 26, 24, 0.30) 42%, rgba(30, 26, 24, 0) 72%),
    linear-gradient(0deg, rgba(30, 26, 24, 0.42) 0%, rgba(30, 26, 24, 0) 42%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  color: #fff;
  padding-block: clamp(96px, 15vh, 150px);
}
.hero__inner .eyebrow {
  color: #ecc6ae;
  animation: heroUp 0.6s var(--ease-entrance) 0.15s backwards;
}
.hero__inner h1 {
  color: #fff;
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);
  animation: heroUp 0.6s var(--ease-entrance) 0.3s backwards;
}
.hero__inner .hero__sub {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.2rem);
  max-width: 34rem;
  animation: heroUp 0.6s var(--ease-entrance) 0.45s backwards;
}
.hero__inner .btn-row {
  margin-top: 1.8rem;
  animation: heroUp 0.6s var(--ease-entrance) 0.6s backwards;
}
.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
}
.hero .btn--outline:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes heroUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- trust / stats bar ---------- */
.statbar { background: var(--color-text); color: var(--color-bg); }
.statbar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  padding-block: 40px;
  text-align: center;
}
.stat { position: relative; padding-top: 15px; }
.stat::before { /* fabricator's registration tick */
  content: ""; position: absolute; top: 0; left: 50%;
  width: 1px; height: 9px; background: var(--color-primary);
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.4rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: #fff; line-height: 1;
}
.stat__label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 0.55rem; }
@media (min-width: 768px) { .statbar .container { grid-template-columns: repeat(4, 1fr); } }

/* ---------- dimension line (used only on real measurements) ---------- */
.measure {
  display: flex; flex-wrap: wrap; gap: 1rem 1.9rem;
  padding-top: 0.95rem;
  position: relative;
  border-top: 1px solid var(--color-border);
}
.measure::before, .measure::after {
  content: ""; position: absolute; top: -4px;
  width: 1px; height: 9px; background: var(--color-primary);
}
.measure::before { left: 0; }
.measure::after { right: 0; }
.measure__item { display: flex; align-items: baseline; gap: 0.4rem; }
.measure__val {
  font-family: var(--font-head); font-weight: 560;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem; color: var(--color-text);
}
.measure__unit { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--color-muted); }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease-entrance), box-shadow 0.2s ease, border-color 0.2s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.card__media { aspect-ratio: 16 / 10; background: var(--color-accent2); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body p { color: var(--color-muted); font-size: 0.95rem; }
.card__more { margin-top: auto; font-weight: 600; font-size: 0.9rem; color: var(--color-primary-deep); text-decoration: none; }

.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
  flex: none; width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-accent2);
  color: var(--color-primary-deep);
  display: grid; place-items: center;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: 0.3rem; }
.feature p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- split (interior/exterior style rows) ---------- */
.media-row { display: grid; gap: 2rem; align-items: center; }
.media-row__img img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--color-border); aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 900px) {
  .media-row { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .media-row--flip .media-row__img { order: 2; }
}

/* ---------- numbered process ---------- */
.steps { display: grid; gap: 1.3rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding: 1.3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
}
.step__n {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--color-primary);
  line-height: 1;
  min-width: 1.6ch;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.step p { color: var(--color-muted); font-size: 0.95rem; }

/* ---------- categorized services list ---------- */
.svc-cat { margin-bottom: 2.4rem; }
.svc-cat h3 { color: var(--color-primary-deep); margin-bottom: 0.9rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-border-cool); }
.svc-list { display: grid; gap: 0.6rem; }
.svc-list li {
  display: flex; align-items: baseline; gap: 0.6rem;
  padding: 0.55rem 0;
}
.svc-list li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--color-primary); transform: translateY(-1px); }
.svc-list a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.svc-list a:hover { color: var(--color-primary-deep); }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 800px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.1rem 1.2rem;
  font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--color-text);
}
.faq-q::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a > div { padding: 0 1.2rem 1.2rem; color: var(--color-muted); }
.faq-a p + p { margin-top: 0.7rem; }

/* ---------- gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.6rem; }
.gallery-filters button {
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-weight: 600; font-size: 0.85rem;
  color: var(--color-muted);
  transition: all 0.15s ease;
}
.gallery-filters button.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer; background: var(--color-accent2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.4s var(--ease-entrance); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .chip {
  position: absolute; left: 12px; bottom: 12px;
  width: 26px; height: 26px; border-radius: 6px;
  border: 2px solid #fff; box-shadow: var(--shadow-sm);
}
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 0.9rem 0.7rem 48px;
  background: linear-gradient(transparent, rgba(46,42,40,0.72));
  color: #fff; font-size: 0.82rem; font-weight: 600;
}
.gallery-item.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(46, 42, 40, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ---------- testimonials (centered single-column stack) ---------- */
.testi-stack { max-width: 720px; margin-inline: auto; display: grid; gap: 1.4rem; }
.testi {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
}
.testi__stars { color: var(--color-primary); letter-spacing: 2px; margin-bottom: 0.7rem; }
.testi__quote { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.5; color: var(--color-text); }
.testi__who { margin-top: 1rem; font-size: 0.88rem; color: var(--color-muted); }
.testi__who strong { color: var(--color-text); }

/* ---------- mid-page CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--color-surface-warm);
  border-top: 2px solid var(--color-primary); /* the seam */
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { color: var(--color-muted); max-width: 560px; margin: 0 auto 1.5rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- contact form ---------- */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  background: var(--color-bg);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: var(--color-primary-deep); font-size: 0.8rem; margin-top: 0.25rem; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--color-primary-deep); }
.form-status {
  margin-top: 1rem; padding: 1rem; border-radius: var(--radius);
  background: var(--color-accent2); color: var(--color-text);
  font-weight: 600; display: none;
}
.form-status.show { display: block; }

.contact-aside { display: grid; gap: 1.2rem; align-content: start; }
.contact-aside .row { border-left: 3px solid var(--color-primary); padding-left: 1rem; }
.contact-aside .row h3 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.25rem; }
.contact-aside .row a { color: var(--color-text); text-decoration: none; font-weight: 600; }
.map-embed {
  margin-top: 1rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 10; background: var(--color-accent2);
}
.map-embed img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 40px; background: var(--color-accent2); }
.page-hero .breadcrumb { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 0.9rem; }
.page-hero .breadcrumb a { color: var(--color-muted); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--color-primary-deep); }
.page-hero h1 { max-width: 800px; }
.page-hero .lead { margin-top: 0.9rem; max-width: 680px; }
.page-hero .btn-row { margin-top: 1.5rem; }
@media (min-width: 768px) { .page-hero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 64px; } }

/* answer-first callout under headings */
.answer-first {
  font-size: 1.08rem;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  padding-left: 1.1rem;
  margin-bottom: 1.4rem;
  max-width: 720px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--color-text); color: rgba(255,255,255,0.82); padding-block: 56px 24px; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }
.footer-brand .name { font-family: var(--font-head); font-size: 1.2rem; color: #fff; display: block; margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 34ch; }
.footer-brand .phone { margin-top: 0.9rem; font-size: 1.05rem; font-weight: 700; color: #fff; display: inline-block; }
.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.footer-col a, .footer-col li { display: block; padding: 0.28rem 0; font-size: 0.88rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between;
}

/* ---------- floating click-to-call ---------- */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-primary); color: #fff;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.2rem; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.float-call::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--color-primary);
  animation: ring 3s ease-out infinite;
}
.float-call svg { width: 18px; height: 18px; }
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
@media (min-width: 1024px) { .float-call { display: none; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- misc ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-tag { background: var(--color-accent2); color: var(--color-primary-deep); font-weight: 600; font-size: 0.8rem; padding: 0.35rem 0.75rem; border-radius: 999px; }

/* ==========================================================================
   DESIGN PASS — "the seam" signature + editorial section rhythm
   ========================================================================== */

/* brand mark: emphasise the trade, hover reveals a stone seam under it */
.brand strong, .brand b { font-weight: inherit; }
.brand .mark-a { font-family: var(--font-head); font-weight: 600; }
.brand .mark-b {
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.brand:hover .mark-b { border-bottom-color: var(--color-primary); }
.brand .mark-c { color: var(--color-muted); font-weight: 500; }

/* WHY US — a short manifesto beside seam-separated points (not icon cards) */
.manifesto { display: grid; gap: 2.6rem; }
@media (min-width: 900px) { .manifesto { grid-template-columns: 1.08fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); } }
.manifesto__lead {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.72rem);
  line-height: 1.42;
  color: var(--color-text);
}
.manifesto__lead b { font-weight: 560; color: var(--color-primary-deep); }
.manifesto__points { display: grid; align-content: start; }
.manifesto__point { padding: 1.35rem 0; border-top: 1px solid var(--color-primary); } /* seam */
.manifesto__point:last-child { border-bottom: 1px solid var(--color-primary); }
.manifesto__point h3 { font-family: var(--font-head); font-weight: 560; font-size: 1.12rem; margin-bottom: 0.35rem; }
.manifesto__point p { color: var(--color-muted); font-size: 0.95rem; }

/* FEATURED SERVICE — one wide editorial row above the card grid */
.feature-row { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .feature-row { grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4rem); } }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row__media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
}
.feature-row h2 { margin-top: 0.4rem; }
.feature-row p { color: var(--color-muted); margin-top: 0.7rem; }

/* SIGNATURE BEAT — the page's one memorable moment: the seam */
.seam-section { background: var(--color-accent2); text-align: center; }
.seam-section .container { max-width: 760px; }
.seam-section__line {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.5rem + 2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.seam-section__line em { font-style: italic; color: var(--color-primary-deep); }
.seam-section p { color: var(--color-muted); margin-top: 1.1rem; max-width: 52ch; margin-inline: auto; }
.seam-section__rule { width: 96px; height: 2px; background: var(--color-primary); margin: 1.8rem auto 0; } /* seam */

/* area list with seam separators instead of bullets */
.area-cols { columns: 2; column-gap: 2.4rem; max-width: 560px; }
.area-cols li { padding: 0.55rem 0; border-top: 1px solid var(--color-border); break-inside: avoid; }
.area-cols li:first-child { border-top: 0; }
.area-cols a { color: var(--color-text); text-decoration: none; font-weight: 500; }
.area-cols a:hover { color: var(--color-primary-deep); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__panel .eyebrow, .hero__panel h1, .hero__panel .hero__sub,
  .hero__panel .btn-row, .hero__proof, .hero__note { opacity: 1; }
}
