/* Self-hosted Google Fonts (latin subset) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lora-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/lora-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/lora-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora Fallback';
  src: local('Georgia');
  size-adjust: 106%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107.6%;
}

/* ============================================================
   Glaze Flooring — Design System
   Warm, natural, premium hardwood aesthetic.
   ============================================================ */

/* ---- Design tokens ---------------------------------------- */
:root {
  --ivory: #faf7f2;
  --cream: #f3ede3;
  --sand: #ece3d6;
  --taupe: #d8cfc2;
  --stone: #9c9183;
  --charcoal: #1e1b17;
  --charcoal-soft: #423b32;
  --muted: #6b6359;
  --walnut: #5e3d23;
  --walnut-deep: #4a2f1b;
  --oak: #b5824e;
  --bronze: #8a5a1f;
  --line: rgba(30, 27, 23, 0.12);
  --line-strong: rgba(30, 27, 23, 0.2);
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(30, 27, 23, 0.08), 0 1px 2px rgba(30, 27, 23, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(30, 27, 23, 0.25);
  --shadow-lg: 0 30px 60px -20px rgba(30, 27, 23, 0.35);

  --font-serif: "Lora", "Lora Fallback", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Inter Fallback", Arial, system-ui, sans-serif;

  --container: 1160px;
  --container-narrow: 820px;
  --radius: 14px;
  --radius-lg: 22px;
  --space-section: clamp(3.5rem, 8vw, 7rem);

  --header-h: 76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--walnut);
  text-decoration-color: rgba(94, 61, 35, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--walnut);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  /* Keep "fl"/"fi" as separate letters in headings ("floors"). */
  font-variant-ligatures: no-common-ligatures;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}
p {
  margin: 0 0 1.1rem;
}

/* ---- Utilities -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-section);
}

.section--tint {
  background: var(--cream);
}

.section--dark {
  background: var(--charcoal);
  color: var(--taupe);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--ivory);
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bronze);
  margin: 0 0 1rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
}
.section--dark .lead {
  color: var(--taupe);
}

.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: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

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

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--walnut);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--walnut-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--charcoal);
  background: rgba(30, 27, 23, 0.04);
}
.btn-light {
  background: var(--ivory);
  color: var(--charcoal);
}
.btn-light:hover {
  background: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
}
.brand:hover {
  text-decoration: none;
}
.brand .mark {
  width: 38px;
  height: 38px;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 4px;
  white-space: nowrap;
}
.brand-text {
  line-height: 1.05;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.primary-nav a {
  color: var(--charcoal-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}
.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--walnut);
}
.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone:hover {
  color: var(--walnut);
}
.header-phone svg {
  color: var(--bronze);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer is hidden on desktop; the mobile media query turns it into a
   slide-in panel. (Without this base rule it would render as plain content.) */
.mobile-nav {
  display: none;
}

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 17, 13, 0.9) 0%,
    rgba(20, 17, 13, 0.72) 42%,
    rgba(20, 17, 13, 0.35) 100%
  );
}
/* Bright hero photo (white kitchen): deeper scrim behind the text column,
   fading out to the right so the room still reads. */
.hero--bright .hero-media img {
  object-position: center 65%;
}
.hero--bright .hero-media::after {
  background: linear-gradient(
    100deg,
    rgba(20, 17, 13, 0.92) 0%,
    rgba(20, 17, 13, 0.84) 38%,
    rgba(20, 17, 13, 0.55) 62%,
    rgba(20, 17, 13, 0.12) 100%
  );
}
.hero--bright h1,
.hero--bright p,
.hero--bright .eyebrow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) {
  .hero--bright .hero-media::after {
    background: linear-gradient(180deg, rgba(20, 17, 13, 0.8), rgba(20, 17, 13, 0.86));
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 12vw, 9rem);
  max-width: 42rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}
.hero .eyebrow,
.page-hero .eyebrow,
.section--dark .eyebrow,
.cta-band .eyebrow {
  color: var(--oak);
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.8rem;
  max-width: 34rem;
}
.hero .btn-row {
  margin-bottom: 1.6rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-trust svg {
  color: var(--oak);
  flex: none;
}

/* page hero (interior pages) */
.page-hero {
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-media::after {
  /* Deep scrim behind the text column (left), fading out so the flooring photo reads. */
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.12), rgba(20, 17, 13, 0.3)),
    linear-gradient(90deg, rgba(20, 17, 13, 0.8) 0%, rgba(20, 17, 13, 0.72) 42%, rgba(20, 17, 13, 0.38) 68%, rgba(20, 17, 13, 0.08) 100%);
}
.page-hero .hero-media img {
  object-position: center 65%;
}
.page-hero h1,
.page-hero p,
.page-hero .breadcrumbs {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) {
  .page-hero .hero-media::after {
    background: linear-gradient(180deg, rgba(20, 17, 13, 0.78), rgba(20, 17, 13, 0.84));
  }
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  max-width: 48rem;
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 0;
  max-width: 38rem;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs span {
  margin-inline: 0.4rem;
}

/* ---- Trust strip ------------------------------------------ */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: 2.25rem;
}
.trust-item {
  text-align: center;
}
.trust-item .stat {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--walnut);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-item .label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- Grids & cards ---------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-media img {
  transform: scale(1.04);
}
.card-body {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  margin-bottom: 0.5rem;
}
.card-body p {
  color: var(--muted);
  font-size: 0.98rem;
}
.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--walnut);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link:hover {
  gap: 0.65rem;
}

/* service card icon badge */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--walnut);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ---- Split / feature -------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split-media {
  order: 2;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Portrait (owner photo) — show full image, no landscape crop */
.split-media img.owner-photo {
  aspect-ratio: 2 / 3;
  max-width: 420px;
  margin-inline: auto;
  object-position: center top;
}
.checklist {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.checklist svg {
  color: var(--bronze);
  flex: none;
  margin-top: 3px;
}

/* ---- Process timeline ------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.section--tint .step {
  background: var(--ivory);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--oak);
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.step p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

/* ---- Testimonials ----------------------------------------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.section--dark .quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--taupe);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--oak);
  margin-bottom: 0.5rem;
}
.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
}
.section--dark .quote-card blockquote {
  color: var(--ivory);
}
.quote-author {
  margin-top: auto;
  font-weight: 600;
  color: var(--charcoal);
}
.section--dark .quote-author {
  color: var(--ivory);
}
.quote-author span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--muted);
}
.section--dark .quote-author span {
  color: var(--stone);
}
.stars {
  color: var(--oak);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

/* ---- Gallery ---------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.3rem 1rem 0.85rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(transparent, rgba(20, 17, 13, 0.7));
}

/* ---- Guide article prose ---------------------------------- */
.prose h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}
.prose h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}
.prose p,
.prose li {
  font-size: 1.05rem;
  line-height: 1.7;
}
.prose ul,
.prose ol {
  padding-left: 1.4rem;
  margin: 0 0 1.25rem;
}
.prose li {
  margin-bottom: 0.4rem;
}
a.chip {
  text-decoration: none;
}
a.chip:hover {
  border-color: var(--walnut);
  color: var(--walnut);
}

/* ---- Service-area list ------------------------------------ */
.area-groups h2 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  white-space: nowrap;
}
.area-groups h2 a,
.section-head h2 a {
  color: inherit;
  text-decoration-color: var(--oak);
}
@media (max-width: 520px) {
  .area-groups h2 {
    white-space: normal;
  }
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
}
.area-list li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.area-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--walnut);
}
.area-list a:hover {
  border-color: var(--walnut);
  color: var(--walnut);
}
@media (max-width: 480px) {
  .area-list {
    grid-template-columns: 1fr;
  }
}

/* ---- Pills / chips ---------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
}
.section--tint .chip {
  background: var(--ivory);
}

.species-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.section--tint .species-card {
  background: var(--ivory);
}
.species-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.species-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

/* ---- Species cards with real grain photos ---------------- */
.species-card--photo {
  padding: 0;
  overflow: hidden;
}
.species-card--photo .species-photo {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  overflow: hidden;
}
.species-card--photo .species-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.species-card--photo:hover .species-photo img {
  transform: scale(1.04);
}
.species-card--photo h3 {
  margin: 1rem 1.25rem 0.25rem;
}
.species-card--photo p {
  margin: 0 1.25rem 1.25rem;
}
.gallery-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .gallery-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- FAQ accordion ---------------------------------------- */
.faq {
  max-width: 50rem;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  position: relative;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--bronze);
  transition: transform 0.2s ease;
  font-family: var(--font-sans);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item .faq-body {
  padding: 0 2.5rem 1.4rem 0;
  color: var(--muted);
  margin: 0;
}

/* ---- CTA band --------------------------------------------- */
.cta-band {
  background: var(--walnut);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  font-size: 1.12rem;
}
.cta-band .btn-row {
  justify-content: center;
}

/* ---- Forms ------------------------------------------------ */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.field {
  margin-bottom: 1.15rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.field .req {
  color: var(--bronze);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--walnut);
  box-shadow: 0 0 0 3px rgba(94, 61, 35, 0.15);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input[type="file"] {
  padding: 0.55rem 0.6rem;
  background: var(--cream);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.field .error-msg {
  color: #a5331f;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #a5331f;
}
.field.has-error .error-msg {
  display: block;
}
.form-microcopy {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
/* honeypot */
.h-captcha {
  min-height: 78px;
}
.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.form-status.is-error {
  display: block;
  background: #fbeae6;
  color: #8a2a18;
  border: 1px solid #e7b6ab;
}
.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f1e8;
  color: #2f7d46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.form-success h3 {
  margin-bottom: 0.5rem;
}
.is-form-sent .estimate-form {
  display: none;
}
.is-form-sent .form-success {
  display: block;
}

/* contact info list */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.3rem;
}
.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-list .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  color: var(--walnut);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-list strong {
  display: block;
  color: var(--charcoal);
}
.contact-list a {
  text-decoration: none;
}

/* ---- Service-area cards ----------------------------------- */
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.section--tint .area-card {
  background: var(--ivory);
}
.area-card .region {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
  font-weight: 600;
}
.area-card h3 {
  margin: 0.3rem 0 0.6rem;
}
.area-card p {
  color: var(--muted);
  margin: 0;
}

/* ---- Note / callout --------------------------------------- */
.note {
  background: var(--sand);
  border-left: 4px solid var(--oak);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--taupe);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer h2 {
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.site-footer a {
  color: var(--taupe);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--ivory);
  text-decoration: underline;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}
.footer-brand .brand {
  color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.95rem;
  color: var(--stone);
  max-width: 22rem;
}
.footer-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory) !important;
  margin-top: 0.5rem;
}
.footer-cta-phone:hover {
  text-decoration: none !important;
  color: var(--oak) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--stone);
}
.footer-bottom a {
  color: var(--stone);
}
.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
}
.social-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
}

/* ---- Sticky mobile bar ------------------------------------ */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px -8px rgba(30, 27, 23, 0.25);
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobile-bar .btn {
  flex: 1;
  padding: 0.85rem 0.5rem;
}

/* ---- Prose (rich text) ------------------------------------ */
.prose h2 {
  margin-top: 2.5rem;
}
.prose h3 {
  margin-top: 1.8rem;
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin-bottom: 0.4rem;
}

/* ---- Scroll-reveal animation ------------------------------ */
/* Only hide reveal elements when JS is available to bring them back. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 64px;
  }
  .primary-nav,
  .header-phone,
  .header-actions .btn-primary {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  /* mobile drawer */
  .mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--ivory);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 1.5rem clamp(1.1rem, 4vw, 2.5rem) 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    visibility: hidden;
  }
  .mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .mobile-nav a.mn-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--charcoal);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.35rem;
  }
  .mobile-nav .btn {
    margin-top: 1.25rem;
  }
  .mobile-nav-phone {
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 600;
    color: var(--walnut);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
  }
  body.nav-open {
    overflow: hidden;
  }

  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split-media {
    order: 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .btn {
    width: 100%;
  }
  .hero .btn-row .btn,
  .cta-band .btn-row .btn,
  .mobile-bar .btn {
    width: auto;
  }
  .mobile-bar .btn {
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
  }
  .hero .btn-row,
  .cta-band .btn-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .floor-explorer {
    grid-template-columns: 1fr;
  }
  .fe-swatches {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .fe-swatches {
    grid-template-columns: repeat(2, 1fr);
  }
  .fe-caption .fe-name {
    font-size: 1.1rem;
  }
  .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
}

/* print niceties */
@media print {
  .site-header,
  .mobile-bar,
  .cta-band,
  .nav-toggle {
    display: none !important;
  }
}
