/* ─────────────────────────────────────────────────────────────
   Thistle Flooring — editorial luxury
   forest · cream · charcoal · gold
   ───────────────────────────────────────────────────────────── */

:root {
  --forest: #0f241c;
  --forest-2: #16352a;
  --forest-3: #1e4638;
  --forest-4: #2a5a48;
  --cream: #f6f1e7;
  --ivory: #fbf8f2;
  --paper: #efe8d8;
  --sand: #e4d9c5;
  --charcoal: #2b2825;
  --ink: #1a1816;
  --muted: #6d665d;
  --gold: #c4a35a;
  --gold-2: #d4b86a;
  --gold-dk: #8e6e32;
  --line: rgba(196, 163, 90, 0.38);
  --line-soft: rgba(15, 36, 28, 0.1);
  --white: #ffffff;
  --announce: 36px;
  --header: 78px;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -28px rgba(15, 36, 28, 0.45);
  --max: 1180px;
  --wide: 1360px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  hanging-punctuation: first last;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: 12px; top: -40px;
  background: var(--gold);
  color: var(--forest);
  padding: 8px 14px;
  z-index: 200;
}
.skip:focus { top: 8px; }

/* ── type ── */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 0 0 14px;
}

h1, h2, h3, h4, .serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }

h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  line-height: 0.96;
  margin: 0;
  color: var(--ivory);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--forest);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--forest);
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 40rem;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 22px 0;
}

/* ── layout ── */
.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.wrap-wide {
  width: min(var(--wide), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }

/* ── announcement ── */
.announce {
  height: var(--announce);
  background: var(--gold);
  color: var(--forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 40;
}
.announce a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.announce a:hover { opacity: 0.75; }
.announce .short { display: none; }
.announce .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.45;
}

/* ── header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(15, 36, 28, 0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(196, 163, 90, 0.18);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(15, 36, 28, 0.98);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.5);
}

.header-inner {
  height: 100%;
  width: min(var(--wide), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  color: rgba(246, 241, 231, 0.82);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 13px;
  position: relative;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold-2); }
.nav a.is-active { color: var(--gold); }
.nav a.is-active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 6px;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(246, 241, 231, 0.45);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: rgba(15, 36, 28, 0.28);
}
.btn-outline-dark:hover {
  border-color: var(--gold-dk);
  color: var(--gold-dk);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-forest:hover { background: var(--forest-3); }

.header-cta { margin-left: 10px; padding: 12px 20px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--announce) - var(--header));
  min-height: calc(100svh - var(--announce) - var(--header));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.04);
  filter: saturate(0.92);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,36,28,0.42) 0%, rgba(15,36,28,0.62) 48%, rgba(10,22,17,0.9) 100%),
    radial-gradient(ellipse at 50% 42%, transparent 10%, rgba(15,36,28,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 24px 100px;
  max-width: 920px;
}
.hero-logo {
  width: min(340px, 70vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
}
.hero-kicker {
  color: var(--gold);
  letter-spacing: 0.34em;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero h1 { text-shadow: 0 8px 36px rgba(0,0,0,0.45); }
.hero .gold-rule { margin: 26px auto; background: var(--gold); }
.hero-sub {
  color: rgba(246, 241, 231, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 34rem;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(246,241,231,0.55);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold), transparent);
  display: block;
}

.place-bar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 16px 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid rgba(196, 163, 90, 0.22);
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}
.place-bar strong {
  color: var(--gold);
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.22em;
}

/* inner page heroes */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
  background: var(--forest);
}
.page-hero .hero-media img { object-position: center 55%; }
.page-hero-body {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 56px;
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { color: rgba(246,241,231,0.75); }

/* ── intro ── */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split.flip { grid-template-columns: 0.95fr 1.05fr; }
.split.flip .split-copy { order: 2; }

.before-after {
  display: grid;
  gap: 18px;
}
.before-after figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.before-after img,
.split .before-after img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.before-after figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 14px 12px;
  background: linear-gradient(transparent, rgba(15,36,28,0.82));
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.stat-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-row span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.svc-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  isolation: isolate;
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  z-index: -2;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,28,0.1) 20%, rgba(15,36,28,0.88) 100%);
  z-index: -1;
  transition: background 0.4s;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-card .num {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.svc-card h3 { color: var(--ivory); margin: 0 0 6px; }
.svc-card p {
  margin: 0;
  color: rgba(246,241,231,0.75);
  font-size: 0.92rem;
  line-height: 1.5;
}
.svc-card .price {
  margin-top: 14px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── specials teaser ── */
.specials-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 48px;
}
.special-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 36px;
  isolation: isolate;
}
.special-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}
.special-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,28,0.15), rgba(15,36,28,0.82));
  z-index: -1;
}
.special-card:hover img { transform: scale(1.05); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 6px 12px;
  width: fit-content;
  margin-bottom: 16px;
  font-weight: 600;
}
.special-card h3 { color: var(--ivory); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.special-card p { color: rgba(246,241,231,0.8); max-width: 34ch; }

/* ── gallery grid ── */
.gallery-grid {
  columns: 3;
  column-gap: 14px;
  margin-top: 40px;
}
.preview-grid { columns: 4; }
.g-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--paper);
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.g-item:hover img { transform: scale(1.04); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(15,36,28,0.82));
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover figcaption { opacity: 1; transform: none; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  transition: 0.2s;
}
.filter-btn.is-on,
.filter-btn:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--paper);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 14, 0.94);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-cap {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(196,163,90,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 22px;
  display: grid;
  place-items: center;
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
}

/* ── quote band ── */
.quote-band {
  background: var(--forest);
  color: var(--ivory);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,163,90,0.12), transparent 55%);
  pointer-events: none;
}
.quote-band h2 { color: var(--ivory); }
.quote-band p { color: rgba(246,241,231,0.72); margin: 0 auto 32px; max-width: 36rem; }
.contact-mini {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(246,241,231,0.7);
  letter-spacing: 0.04em;
}
.contact-mini a { color: var(--gold); }
.contact-mini a:hover { color: var(--gold-2); }

/* ── footer ── */
.site-footer {
  background: #0b1b15;
  color: rgba(246,241,231,0.72);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(196,163,90,0.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,241,231,0.08);
}
.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.95rem; max-width: 28ch; line-height: 1.65; }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 8px 0 16px;
  font-weight: 500;
}
.site-footer a { color: rgba(246,241,231,0.72); }
.site-footer a:hover { color: var(--gold); }
.site-footer li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(246,241,231,0.4);
  letter-spacing: 0.06em;
}

/* ── page sections: services ── */
.material {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line-soft);
}
.material:last-child { border-bottom: 0; }
.material:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.material:nth-child(even) .material-copy { order: 2; }
.material img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 70%;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.checklist li::before {
  content: "";
  width: 10px; height: 1px;
  background: var(--gold);
  margin-top: 12px;
  flex-shrink: 0;
}
.price-lock {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.price-lock em {
  font-family: var(--serif);
  font-style: normal;
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
}
.price-lock span { color: var(--muted); font-size: 0.95rem; }

/* ── offer pages ── */
.offer-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px 40px 36px;
  position: relative;
}
.offer-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.offer-price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--forest);
  line-height: 1;
  margin: 8px 0 10px;
}
.offer-price small {
  font-size: 0.38em;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-family: var(--sans);
}
.include-list { margin: 22px 0 28px; }
.include-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}
.include-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 11px;
}

.limited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 12px;
}
.limited::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(196,163,90,0.22);
}

/* ── contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  background: var(--forest);
  color: var(--ivory);
  padding: 40px 36px;
}
.contact-card img { height: 58px; width: auto; }
.contact-card h3 { color: var(--ivory); }
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-2); }
.contact-card dl { margin: 24px 0 0; }
.contact-card dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 6px;
}
.contact-card dd { margin: 0; font-size: 1.15rem; }

form { display: grid; gap: 16px; }
label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
input, select, textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 13px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold-dk); }
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.form-success,
.form-error {
  display: none;
  padding: 14px 16px;
  font-size: 0.95rem;
}
.form-success {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  color: var(--forest);
}
.form-error {
  background: #f7ece6;
  border-left: 3px solid #a45a3a;
  color: #5c2e1e;
}
.form-success.is-on,
.form-error.is-on { display: block; }
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}
.btn[disabled] { opacity: 0.65; cursor: wait; transform: none; }

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.trio > div {
  background: var(--ivory);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
}

/* ── details ── */
.note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}
.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.16s; }
.reveal-d3 { animation-delay: 0.24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ── mobile nav ── */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trio { grid-template-columns: 1fr; }
  .specials-grid, .split, .split.flip,
  .material, .material:nth-child(even),
  .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .split.flip .split-copy,
  .material:nth-child(even) .material-copy { order: 0; }
  .split img, .material img { height: 380px; }
  .split .before-after img { height: 240px; }
  .gallery-grid, .preview-grid { columns: 2; }
  .footer-grid { gap: 32px; }
  .stat-row { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 1100px) {
  .brand img { height: 50px; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: calc(var(--announce) + var(--header));
    left: 0; right: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(196,163,90,0.2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s var(--ease);
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(246,241,231,0.08);
    font-size: 14px;
  }
  .nav a.is-active::after, .nav a:hover::after { display: none; }
  .nav .btn { margin-top: 14px; width: 100%; }
}

@media (max-width: 820px) {
  :root { --header: 68px; }
  .brand img { height: 48px; }
  .hero { min-height: auto; }
  .hero-content { padding: 40px 20px 56px; }
  .hero-logo { width: min(260px, 78vw); }
  .hero-scroll { display: none; }
  .announce { font-size: 10px; letter-spacing: 0.12em; padding: 0 12px; overflow: hidden; }
  .announce .dot,
  .announce a:last-of-type,
  .announce .full { display: none; }
  .announce .short { display: inline; }
  .section { padding: 72px 0; }
  .place-bar {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 14px 16px;
    line-height: 1.5;
  }
  .place-bar strong { letter-spacing: 0.12em; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 340px; }
  .gallery-grid, .preview-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .wrap, .wrap-wide, .page-hero-body {
    width: min(100% - 32px, var(--max));
  }
  .offer-panel { padding: 28px 22px; }
  .lightbox { padding: 20px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Clear quote access and a compact opening section. */
.hero { min-height: 540px; }
.hero-content { padding: 64px 24px; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.hero-scroll { display: none; }
.announce a:last-of-type { display: inline; }
#quote { scroll-margin-top: calc(var(--header) + 24px); }
.contact-card dd { overflow-wrap: anywhere; }
.mobile-contact { display: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-dk); outline-offset: 4px; }
@media (max-width: 1100px) {
  .nav { visibility: hidden; }
  .nav.is-open { visibility: visible; }
}
@media (max-width: 980px) {
  .quote-form-panel { grid-row: 1; }
}
@media (max-width: 820px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .hero { min-height: auto; }
  .hero-content { padding: 48px 20px; }
  .mobile-contact { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; align-items: center; justify-content: space-evenly; gap: 16px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: var(--forest); color: var(--cream); border-top: 1px solid var(--gold); }
  .mobile-contact > a { flex: 1; text-align: center; }
  .mobile-contact > a:first-child { padding: 12px; }
  .g-item figcaption { position: static; opacity: 1; transform: none; background: var(--forest); padding: 12px 16px; }
}

/* Give the cleaned-up wordmark enough room to remain legible. */
.brand img { width: 198px; height: 66px; object-fit: contain; }
.footer-brand img { width: 240px; height: 80px; object-fit: contain; }
@media (max-width: 1100px) {
  .brand img { width: 174px; height: 58px; }
}
@media (max-width: 820px) {
  .brand img { width: 162px; height: 54px; }
}

/* Black drops out against each dark surface without a colored rectangle. */
.brand img, .footer-brand img, .contact-card > img { mix-blend-mode: screen; }
/* A solid header gives the logo a consistent blending surface while scrolling. */
.site-header, .site-header.is-scrolled {
  background: var(--forest);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
