/* ============================
   Bailey Hague Joinery — Design System
   Warm editorial, family-craft, premium
   ============================ */
:root {
  --forest: #1e3a2f;
  --forest-dark: #142720;
  --forest-light: #2a5a45;
  --cream: #f7f2e8;
  --cream-warm: #efe6d3;
  --cream-deep: #e8dcc4;
  --ink: #1a1a17;
  --ink-soft: #3d3d38;
  --ink-mute: #6d6d66;
  --line: #d9cfba;
  --gold: #a97a3a;
  --star: #f4b400;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.eyebrow.light { color: rgba(247, 242, 232, 0.6); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--forest);
}

h1 {
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 300;
}
h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ============================ REVEAL ANIMATIONS ============================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity 0.2s ease; }
  .hero-slide.active { transform: none !important; animation: none !important; }
}

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
body.nav-open .nav { z-index: 200; }
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
}
.brand svg { color: var(--forest); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .brand-name { font-size: 20px; }
  .nav-links { gap: 22px !important; font-size: 13.5px; }
}
@media (max-width: 480px) {
  .brand-name { font-size: 18px; }
}
.brand-sub {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .nav-links { gap: 28px; font-size: 14.5px; }
}
.nav-links a { color: var(--ink-soft); white-space: nowrap; }
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  padding: 11px 20px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--forest-dark); transform: translateY(-1px); }

/* ============================ HERO ============================ */
.hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(56px, 8vw, 100px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 28px; }

/* Editorial hero variant — full-bleed right image, headline overlap */
.hero-editorial {
  max-width: none;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 96px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: visible;
}
.hero-editorial .hero-copy {
  padding-left: var(--gutter);
  padding-right: clamp(24px, 3vw, 48px);
  align-self: center;
  position: relative;
  z-index: 2;
}
.hero-editorial .hero-headline {
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--forest);
}
.hero-editorial .hero-headline .headline-overlap {
  display: inline-block;
  position: relative;
  color: var(--forest);
  padding-right: 0.15em;
}
.hero-editorial .lede {
  max-width: 480px;
}
.hero-imagery-large {
  position: relative;
  height: clamp(480px, 58vw, 680px);
  margin-left: clamp(-80px, -6vw, -32px);
}
.hero-imagery-large .hero-slideshow {
  border-radius: 6px 0 0 6px;
  box-shadow: 0 40px 80px -30px rgba(30, 58, 47, 0.35);
}
.hero-imagery-large .hero-slide.active {
  transform: scale(1.02);
  transition: transform 20s ease-out;
}

/* ============================ HERO COVER (full-bleed image) ============================ */
.hero.hero-cover {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: clamp(600px, 88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background-color: #1a2028;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-cover-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cover-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-cover-slide.active {
  opacity: 1;
}
.hero-cover-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20, 30, 40, 0.35) 0%, rgba(20, 30, 40, 0.15) 45%, rgba(20, 30, 40, 0.05) 75%),
    linear-gradient(180deg, rgba(20, 30, 40, 0.05) 0%, rgba(20, 30, 40, 0) 40%, rgba(20, 30, 40, 0.25) 100%);
}
.hero-cover-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 48px);
  max-width: 900px;
}
.hero-cover-welcome {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(12px, 1.05vw, 15px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 clamp(20px, 2vw, 28px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.hero-cover-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 20px;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 4px 24px rgba(0, 0, 0, 0.5);
}
.hero-cover-subhead {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 500;
  margin: 0 0 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-cover-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-outline {
  display: inline-block;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.hero-cover-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 18px clamp(24px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(15, 24, 20, 0) 0%, rgba(15, 24, 20, 0.7) 60%, rgba(15, 24, 20, 0.85) 100%);
  color: rgba(255, 255, 255, 0.95);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cover-trust .trust-item strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-cover-trust .trust-item span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-cover-trust .trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 720px) {
  .hero.hero-cover {
    min-height: 620px;
    background-position: center;
  }
  .hero-cover-scrim {
    background:
      radial-gradient(ellipse at center, rgba(20, 30, 40, 0.5) 0%, rgba(20, 30, 40, 0.25) 50%, rgba(20, 30, 40, 0.1) 80%),
      linear-gradient(180deg, rgba(20, 30, 40, 0.1) 0%, rgba(20, 30, 40, 0.15) 60%, rgba(20, 30, 40, 0.4) 100%);
  }
  .hero-cover-center {
    padding: 0 24px 100px;
  }
  .hero-cover-headline {
    font-size: clamp(28px, 7.6vw, 40px);
    margin-bottom: 16px;
  }
  .hero-cover-subhead {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    margin-bottom: 28px;
  }
  .btn-hero-outline {
    padding: 12px 34px;
    font-size: 11px;
  }
  .hero-cover-trust {
    padding: 14px 20px;
    gap: 18px;
    justify-content: space-around;
  }
  .hero-cover-trust .trust-divider { display: none; }
  .hero-cover-trust .trust-item {
    text-align: center;
  }
  .hero-cover-trust .trust-item strong { font-size: 15px; }
  .hero-cover-trust .trust-item span { font-size: 9.5px; letter-spacing: 0.05em; }
}

/* ============================ WORK STRIP ============================ */
.work-strip {
  overflow: hidden;
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.work-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.work-strip-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.95vw, 14px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 22, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 720px) {
  .work-strip-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 12px 20px;
  }
}
.work-strip-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: work-strip-scroll 80s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* iOS Safari hardware-accel */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 720px) {
  .work-strip-track { animation-duration: 50s; }
}
@media (hover: hover) and (pointer: fine) {
  .work-strip:hover .work-strip-track {
    animation-play-state: paused;
  }
}
.work-strip-item {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 440px);
  height: clamp(320px, 32vw, 480px);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
  text-decoration: none;
}
.work-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 20, 18, 0.15) 100%);
  transition: opacity .4s ease;
  opacity: 0.5;
}
.work-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(30, 58, 47, 0.35);
}
.work-strip-item:hover::after { opacity: 0; }

/* ============================ WORK SLIDESHOW (homepage) ============================ */
.work-slideshow {
  position: relative;
  width: 100%;
  height: clamp(420px, 55vw, 620px);
  overflow: hidden;
  background: #1a2028;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.work-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
  text-decoration: none;
}
.work-slide.active {
  opacity: 1;
}
.work-slide-caption {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 40px);
  background: rgba(15, 22, 18, 0.62);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.work-slide.active .work-slide-caption {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px) {
  .work-slideshow { height: 62vw; min-height: 320px; }
  .work-slide-caption { font-size: 10px; padding: 8px 14px; letter-spacing: 0.08em; }
}

@keyframes work-strip-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 10px), 0, 0); } /* half + half of gap */
}
@media (prefers-reduced-motion: reduce) {
  .work-strip-track { animation: none; }
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: 0;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn-primary.large { padding: 18px 34px; font-size: 16px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  background: transparent;
  color: var(--forest);
  border-radius: 999px;
  border: 1px solid var(--forest);
  font-size: 15px;
  font-weight: 500;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--forest); color: var(--cream); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* Hero slideshow */
.hero-imagery {
  position: relative;
  height: clamp(420px, 55vw, 620px);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(30, 58, 47, 0.3);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s var(--ease-out), transform 8s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.hero-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: var(--cream);
  padding: 14px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-tag span:first-child {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--forest);
  font-weight: 500;
}
.hero-tag span:last-child {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(247, 242, 232, 0.5);
  border: 0;
  cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}
.dot.active {
  background: var(--cream);
  width: 40px;
}

/* ============================ CREDENTIALS ============================ */
.credentials {
  background: var(--forest);
  color: var(--cream);
  border-top: 1px solid var(--forest-dark);
  border-bottom: 1px solid var(--forest-dark);
}
.creds-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.creds-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.5);
  font-weight: 500;
}
.creds-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.creds-list span:nth-child(odd) { font-weight: 500; }
.creds-list span:nth-child(even) { opacity: 0.4; }

/* ============================ SECTIONS ============================ */
.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) var(--gutter);
}
.section-alt {
  background: var(--cream-warm);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section-alt > * {
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
/* Content-section already handles its own max-width and padding, so it shouldn't be double-wrapped */
.content-section.section-alt > * {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.content-section.section-alt {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section-header {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 620px;
}
.section-header.center .section-lede { margin-left: auto; margin-right: auto; }

/* ============================ TILES ============================ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}
.section-alt .tile { background: var(--cream); }
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(30, 58, 47, 0.25);
  border-color: var(--forest);
}
.tile-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out);
}
.tile:hover .tile-img { transform: scale(1.04); }
.tile-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tile-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.tile-arrow {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
  transition: transform .2s ease;
  display: inline-block;
}
.tile:hover .tile-arrow { transform: translateX(4px); }

/* ============================ STORY ============================ */
/* Full-bleed textured backdrop that sits behind the story section */
.story-wrap {
  position: relative;
  background:
    linear-gradient(180deg, rgba(247,242,232,0.55) 0%, rgba(247,242,232,0.25) 30%, rgba(247,242,232,0.25) 70%, rgba(247,242,232,0.55) 100%),
    url('images/texture-plaster.webp');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid rgba(30, 58, 47, 0.06);
  border-bottom: 1px solid rgba(30, 58, 47, 0.06);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: transparent;
}
.story-copy p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 560px;
}
.story-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 30px 60px -24px rgba(30, 58, 47, 0.3);
}
.link-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* ============================ FILTER BAR ============================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.filter {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.filter:hover { border-color: var(--forest); color: var(--forest); }
.filter.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ============================ MOBILE NAV BURGER ============================ */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 200;
  position: relative;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 39, 32, 0.45);
  opacity: 0;
  pointer-events: none !important;
  transition: opacity 0.28s ease;
  z-index: 90;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto !important;
}
body.nav-open { overflow: hidden; }

/* ============================ GALLERY ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 14px;
}
.gallery-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--forest);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 39, 32, 0) 55%, rgba(20, 39, 32, 0.55) 100%);
  transition: opacity .3s ease;
  opacity: 0.7;
  pointer-events: none;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 39, 32, 0.06);
  border-radius: 6px;
  pointer-events: none;
  z-index: 3;
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item:hover::before { opacity: 0.9; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.hidden { opacity: 0; transform: scale(0.96); pointer-events: none; position: absolute; visibility: hidden; }
.gallery-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 20px;
  z-index: 2;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.7);
  font-weight: 500;
}
.cap-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

/* ============================ REVIEWS ============================ */
.reviews { padding-top: clamp(56px, 8vw, 96px); }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--cream-warm);
  border-radius: 999px;
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; }
.stars-small { display: flex; gap: 1px; }
.stars-small svg { width: 14px; height: 14px; }
.rating-number { font-size: 14px; color: var(--ink-soft); }
.rating-number strong { color: var(--forest); font-family: var(--font-display); font-size: 16px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--cream-warm);
  padding: 32px 30px;
  border-radius: 6px;
  border-left: 3px solid var(--forest);
}
.review p {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--forest);
  font-weight: 400;
  margin-bottom: 18px;
  font-style: italic;
}
.review footer {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  font-style: normal;
}
.review-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================ FAQ ============================ */
.faq { padding-top: clamp(64px, 8vw, 96px); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--forest-light); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--forest);
  position: relative;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--forest);
  transition: opacity .3s ease;
}
.faq-icon::before {
  top: 50%;
  left: 25%;
  right: 25%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 25%;
  bottom: 25%;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-answer {
  padding: 0 0 28px;
}
.faq-answer p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 700px;
}

/* ============================ AREAS ============================ */
.areas {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.areas-inner {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 8px;
  margin: 32px 0 24px;
}
.area-list span,
.area-list a {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  background: var(--cream);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.area-list span { cursor: default; }
.area-list a { cursor: pointer; }
.area-list span:hover,
.area-list a:hover,
.area-list a:focus-visible { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* Clickable town pills (real area pages) */
.areas-lede {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 640px;
  margin: 12px auto -8px;
  text-align: center;
}
.area-list a.area-link {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  padding: 8px 8px 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(35, 62, 46, 0.18);
}
.area-list a.area-link .area-link-badge {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.area-list a.area-link:hover,
.area-list a.area-link:focus-visible {
  background: #1a2f22;
  border-color: #1a2f22;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(35, 62, 46, 0.28);
}
.area-list a.area-link:hover .area-link-badge,
.area-list a.area-link:focus-visible .area-link-badge {
  background: rgba(255, 255, 255, 0.24);
}

.areas-note {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================ CTA ============================ */
.cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 32, 26, 0.55) 0%, rgba(20, 32, 26, 0.62) 100%),
    url('images/orangery-hero.webp') center/cover no-repeat;
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  /* Soft dark spotlight behind the copy so text stays legible without dimming the whole photo */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 22, 18, 0.35) 0%, rgba(15, 22, 18, 0.15) 45%, rgba(15, 22, 18, 0) 75%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta h2 { color: var(--cream); margin-bottom: 20px; }
.cta-lede {
  font-size: 17.5px;
  color: rgba(247, 242, 232, 0.75);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 242, 232, 0.15);
}
.cta-details > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.cta-details span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.5);
}
.cta-details a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
}
.cta-details a:hover { color: var(--cream-deep); }
.cta .btn-primary {
  background: var(--cream);
  color: var(--forest);
}
.cta .btn-primary:hover { background: var(--cream-deep); }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--forest-dark);
  color: rgba(247, 242, 232, 0.7);
  padding: 72px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.12);
}
.footer-col a {
  display: block;
  color: rgba(247, 242, 232, 0.65);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 320px;
}
.footer-cred {
  font-size: 12.5px;
  color: rgba(247, 242, 232, 0.45);
  letter-spacing: 0.06em;
}
.footer-label {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-addr {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(247, 242, 232, 0.55);
}

/* Google reviews widget in footer */
.footer-reviews {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.12);
}
.footer-reviews-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.google-badge > svg { flex-shrink: 0; }
.google-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.google-badge-text span {
  font-size: 13px;
  color: rgba(247, 242, 232, 0.75);
}
.google-badge-text strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
}
.review-link {
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid rgba(247, 242, 232, 0.3);
  border-radius: 999px;
  transition: all .2s ease;
}
.review-link:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

.footer-bottom {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(247, 242, 232, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(247, 242, 232, 0.4); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================ PRODUCT PAGE ============================ */
.product-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--ink-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb a.home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-weight: 500;
}
.breadcrumb a.home::before {
  content: "←";
  display: inline-block;
  transition: transform 0.2s ease;
}
.breadcrumb a.home:hover::before { transform: translateX(-3px); }
.breadcrumb span.sep { opacity: 0.5; }

/* ============================ RELATED PRODUCTS ============================ */
.related {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) var(--gutter) clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(45, 58, 51, 0.08);
}
.related-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.related-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--forest);
  margin: 0;
  letter-spacing: -0.01em;
}
.related-header a {
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.related-header a:hover { color: var(--forest); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-warm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 58, 51, 0.12);
}
.related-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.related-card:hover .related-img { transform: scale(1.04); }
.related-body {
  padding: 20px 22px 22px;
}
.related-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.related-body p {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin: 0 0 10px;
  line-height: 1.55;
}
.related-body span.arrow {
  font-size: 13px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
.product-hero-copy h1 { margin-bottom: 24px; }
.product-hero-copy .lede { max-width: 540px; }
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 540px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.feature-item {
  display: flex;
  gap: 14px;
}
.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  display: grid;
  place-items: center;
  color: var(--cream);
}
.feature-icon svg { width: 16px; height: 16px; }
.feature-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.product-hero-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(30, 58, 47, 0.3);
}

/* Spec block */
.spec-section {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(64px, 8vw, 96px) var(--gutter);
}
.spec-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.spec-header h2 { color: var(--cream); }
.spec-header .eyebrow { color: rgba(247, 242, 232, 0.6); }
.spec-list {
  display: grid;
  gap: 20px;
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.15);
}
.spec-row:last-child { border-bottom: 0; }
.spec-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.55);
  font-weight: 500;
  padding-top: 4px;
}
.spec-value {
  font-size: 15.5px;
  color: var(--cream);
  line-height: 1.6;
}

/* Content block for product page */
.content-section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.content-section.flip .content-image { order: 2; }
.content-copy p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 540px;
}
.content-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

/* ============================ CONTACT PAGE ============================ */
.contact-hero {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 88px) var(--gutter) clamp(32px, 4vw, 48px);
  text-align: center;
}
.contact-hero h1 { margin-bottom: 20px; }
.contact-hero .lede { margin: 0 auto 0; max-width: 620px; }

.contact-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) var(--gutter) clamp(72px, 10vw, 120px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--cream-warm);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--cream);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.check-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream-warm);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.check-tag:hover { border-color: var(--forest); }
.check-tag input { accent-color: var(--forest); }
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 14px;
  text-align: center;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info-card {
  padding: 28px 26px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 6px;
}
.info-card h3 { color: var(--cream); font-size: 20px; margin-bottom: 20px; }
.info-line {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 242, 232, 0.15);
  align-items: flex-start;
}
.info-line:last-child { border-bottom: 0; padding-bottom: 0; }
.info-line:first-child { padding-top: 0; }
.info-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.15);
  display: grid;
  place-items: center;
  color: var(--cream);
}
.info-icon svg { width: 15px; height: 15px; }
.info-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-body strong {
  color: rgba(247, 242, 232, 0.6);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.info-body a, .info-body span {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}
.info-body a:hover { opacity: 0.8; }
.info-body address { font-style: normal; }

.info-hours {
  padding: 24px 26px;
  background: var(--cream-warm);
  border-radius: 6px;
  border: 1px solid var(--line);
}
.info-hours h3 { font-size: 18px; margin-bottom: 12px; }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: var(--forest); font-weight: 500; }

/* Map placeholder */
.map-block {
  max-width: var(--wrap);
  margin: 0 auto clamp(72px, 10vw, 120px);
  padding: 0 var(--gutter);
}
.map-frame {
  aspect-ratio: 16 / 6;
  background: linear-gradient(135deg, #2a5a45 0%, #1e3a2f 100%);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(247, 242, 232, 0.08) 2px, transparent 3px),
    radial-gradient(circle at 60% 70%, rgba(247, 242, 232, 0.08) 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(247, 242, 232, 0.08) 2px, transparent 3px);
  background-size: 100px 100px;
}
.map-pin {
  z-index: 2;
  text-align: center;
}
.map-pin svg { margin: 0 auto 10px; }
.map-pin strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.map-pin span { font-size: 14px; color: rgba(247, 242, 232, 0.7); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .hero-imagery { height: 520px; order: -1; margin-bottom: 8px; }
  /* Editorial hero — stack on mobile, full width image on top */
  .hero-editorial { grid-template-columns: 1fr; padding: 20px 0 40px; }
  .hero-editorial .hero-copy { padding: 0 var(--gutter); order: 2; }
  .hero-editorial .hero-headline { font-size: clamp(40px, 10vw, 56px); }
  .hero-imagery-large { height: clamp(360px, 70vw, 480px); margin-left: 0; order: -1; margin-bottom: 24px; }
  .hero-imagery-large .hero-slideshow { border-radius: 0; }
  /* Work strip — smaller tiles on mobile */
  .work-strip { padding: 32px 0; }
  .work-strip-item { width: 260px; height: 300px; }
  .hero-copy { padding-top: 8px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story-image { aspect-ratio: 16 / 10; order: -1; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  /* Mobile drawer — see .nav-burger block for open state */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 88px 28px 32px;
    gap: 4px !important;
    box-shadow: -12px 0 40px rgba(20, 39, 32, 0.14);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150 !important;
    overflow-y: auto;
    isolation: isolate;
  }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 20px !important;
    font-weight: 500;
    color: var(--forest) !important;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(20, 39, 32, 0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-burger { display: flex !important; }
  .nav-cta { display: none; }
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .product-hero-image { min-height: 420px; order: -1; }
  .spec-inner { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
  .content-section { grid-template-columns: 1fr; }
  .content-section.flip .content-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand-sub { display: none; }
  .tile-grid { grid-template-columns: 1fr; }
  /* Two-column editorial mosaic on mobile — every tile the same portrait ratio, subject centred */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: unset;
    gap: 8px;
  }
  .gallery-item {
    aspect-ratio: 4 / 5;
    background-position: center 40%;
    border-radius: 4px;
  }
  /* Neutralise desktop span overrides so nothing goes taller/wider than a single portrait cell */
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
  /* Every 5th tile takes the full width as a featured row — creates rhythm without breaking the grid */
  .gallery-item:nth-child(5n) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
    background-position: center 45%;
  }
  /* Compact captions that read like a project index */
  .gallery-caption { left: 10px; right: 10px; bottom: 10px; gap: 2px; }
  .cap-eyebrow { font-size: 9px; letter-spacing: 1.2px; }
  .cap-title { font-size: 12px; line-height: 1.25; }
  /* Slightly stronger gradient so captions stay readable on lighter doors */
  .gallery-item::before {
    background: linear-gradient(180deg, rgba(20, 39, 32, 0) 45%, rgba(20, 39, 32, 0.7) 100%);
    opacity: 0.85;
  }
  .hero-trust { gap: 14px; }
  .trust-item strong { font-size: 20px; }
  .cta-details { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-reviews-inner { flex-direction: column; text-align: center; }
  .nav-cta { display: none; }
  .product-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .faq-item summary { font-size: 17px; }
}

/* Hidden companion <img> tags on background-image gallery tiles.
   Not visually rendered (background-image provides the visual) but
   readable by Google Image Search and assistive tech via alt attribute. */
.gallery-item-img {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* =====================================================
   Lightbox / Flickbook Gallery
   ===================================================== */

.gallery-cta {
  display: flex;
  justify-content: center;
  margin: 32px 0 8px;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gallery:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-gallery svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 18, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  padding-top: 56px;
}

.lightbox-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 0;
  color: rgba(247, 242, 232, 0.95);
  z-index: 3;
  pointer-events: none;
}

.lightbox-header > div,
.lightbox-header > button {
  pointer-events: auto;
}

.lightbox-header-text {
  background: rgba(15, 20, 18, 0.55);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 4px;
}

.lightbox-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lightbox-counter {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(247, 242, 232, 0.65);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.lightbox-close {
  background: transparent;
  border: 1px solid rgba(247, 242, 232, 0.3);
  color: rgba(247, 242, 232, 0.9);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(247, 242, 232, 0.1);
  border-color: rgba(247, 242, 232, 0.6);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 60px;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 20, 18, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 242, 232, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  text-align: center;
  color: rgba(247, 242, 232, 0.9);
  background: rgba(15, 20, 18, 0.6);
  backdrop-filter: blur(6px);
  padding: 10px 18px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.lightbox-nav {
  background: rgba(247, 242, 232, 0.1);
  border: 1px solid rgba(247, 242, 232, 0.25);
  color: rgba(247, 242, 232, 0.95);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(247, 242, 232, 0.2);
  border-color: rgba(247, 242, 232, 0.5);
}

.lightbox-nav.prev { left: 0; }
.lightbox-nav.next { right: 0; }

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(247, 242, 232, 0.3) transparent;
}

.lightbox-thumbs::-webkit-scrollbar {
  height: 6px;
}
.lightbox-thumbs::-webkit-scrollbar-thumb {
  background: rgba(247, 242, 232, 0.3);
  border-radius: 999px;
}

.lightbox-thumb {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  opacity: 0.55;
}

.lightbox-thumb:hover {
  opacity: 0.85;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: rgba(247, 242, 232, 0.9);
}

.lightbox-thumb-num {
  position: absolute;
  top: 3px;
  left: 3px;
  background: rgba(15, 20, 18, 0.85);
  color: #fff;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.lightbox-note {
  text-align: center;
  color: rgba(247, 242, 232, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 2px 8px 4px;
  flex-shrink: 0;
}

/* Mobile lightbox */
@media (max-width: 720px) {
  .lightbox {
    padding: 10px;
  }
  .lightbox-inner {
    max-height: 100vh;
    gap: 12px;
  }
  .lightbox-header {
    padding: 6px 10px 0;
  }
  .lightbox-title {
    font-size: 15px;
  }
  .lightbox-counter {
    font-size: 11px;
  }
  .lightbox-close {
    width: 34px;
    height: 34px;
  }
  .lightbox-stage {
    padding: 50px 12px 12px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-nav.prev { left: -4px; }
  .lightbox-nav.next { right: -4px; }
  .lightbox-number {
    top: 10px;
    left: 10px;
    font-size: 16px;
    padding: 5px 12px;
  }
  .lightbox-caption {
    bottom: 8px;
    font-size: 12px;
    padding: 7px 12px;
  }
  .lightbox-thumb {
    width: 54px;
    height: 54px;
  }
  .lightbox-note {
    font-size: 10px;
  }
}

/* =====================================================
   Project Case Studies
   ===================================================== */

.project-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 70vh;
  background: var(--paper);
}

.project-hero-copy {
  padding: 80px 8vw 60px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-hero-copy .breadcrumb {
  margin-bottom: 24px;
}

.project-hero-image {
  background-size: cover;
  background-position: center;
}

.project-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(15, 20, 18, 0.7);
  letter-spacing: 0.03em;
}

.project-meta-inline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-meta-inline span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.project-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.project-body p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(15, 20, 18, 0.85);
  margin: 0 0 22px;
}

.project-body p.lede {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}

.project-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 44px 0 16px;
  letter-spacing: -0.01em;
}

.project-quote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.project-quote footer {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: rgba(15, 20, 18, 0.65);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.project-spec-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 36px;
  margin: 40px 0;
}

.project-spec-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 20, 18, 0.55);
  margin: 0 0 20px;
}

.project-spec-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.project-spec-list dt {
  color: rgba(15, 20, 18, 0.6);
}

.project-spec-list dd {
  color: var(--ink);
  margin: 0;
}

.project-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.project-photo-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.project-photo-strip img:hover {
  transform: scale(1.015);
}

.project-cta-inline {
  text-align: center;
  padding: 40px 24px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.project-cta-inline h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin: 0 0 12px;
}

.project-cta-inline p {
  color: rgba(15, 20, 18, 0.7);
  margin-bottom: 20px;
}

/* Project navigation (prev/next between projects) */
.project-pager {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.project-pager a {
  flex: 1;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 0;
}

.project-pager a:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.project-pager .pager-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 20, 18, 0.55);
  margin-bottom: 6px;
}

.project-pager .pager-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-pager .next { text-align: right; }

/* Projects index page */
.projects-hero {
  padding: 100px 24px 60px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.projects-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 20px 0 24px;
  color: var(--ink);
}

.projects-hero p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(15, 20, 18, 0.75);
  max-width: 640px;
  margin: 0 auto;
}

.projects-index-grid {
  max-width: 1280px;
  margin: 40px auto 100px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.project-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 20, 18, 0.08);
  border-color: rgba(15, 20, 18, 0.15);
}

.project-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-img {
  transform: scale(1.03);
}

.project-card-body {
  padding: 24px 24px 26px;
}

.project-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.project-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.project-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(15, 20, 18, 0.65);
  margin: 0 0 12px;
}

.project-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(15, 20, 18, 0.5);
  letter-spacing: 0.03em;
  display: flex;
  gap: 12px;
  align-items: center;
}

.project-card-meta::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(15, 20, 18, 0.3);
}

@media (max-width: 900px) {
  .project-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .project-hero-copy {
    padding: 60px 24px 40px;
  }
  .project-hero-image {
    min-height: 60vh;
  }
  .project-spec-list {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .project-spec-list dt {
    margin-top: 8px;
    font-weight: 600;
  }
  .project-body {
    padding: 60px 24px 40px;
  }
  .project-body p {
    font-size: 16px;
  }
  .project-body p.lede {
    font-size: 20px;
  }
  .project-pager {
    flex-direction: column;
  }
  .project-photo-strip img {
    height: 240px;
  }
}

/* Anchor-tag gallery tiles (link-through) */
a.gallery-item.gallery-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.gallery-item.gallery-link:hover .cap-title {
  text-decoration: none;
}

/* Lead form additions */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-success {
  padding: 32px 28px;
  background: #f5f0e6;
  border: 1px solid #e0d4bc;
  border-radius: 6px;
  text-align: center;
  margin-top: 16px;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin: 0 auto 16px;
  background: #2d4a3e;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 600;
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #2d4a3e;
}
.form-success p {
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0 0 12px;
}
.form-success .success-ref {
  font-size: 13px;
  color: #7a7a7a;
  letter-spacing: 0.03em;
  margin-top: 20px;
}
.form-success .success-ref span {
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  color: #2d4a3e;
  font-weight: 600;
}

/* Flush vs storm-proof comparison block */
.compare-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 32px;
}
.compare-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.compare-col {
  padding: 40px 36px;
  background: #f5f0e6;
  border: 1px solid #e0d4bc;
  border-radius: 8px;
}
.compare-col.highlight {
  background: #f0ebe0;
  border-color: #2d4a3e;
  border-width: 2px;
}
.compare-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 24px;
  color: #2d4a3e;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.compare-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(45, 74, 62, 0.1);
  position: relative;
  line-height: 1.5;
  color: #4a4a4a;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #2d4a3e;
  border-bottom: 2px solid #2d4a3e;
  transform: rotate(-45deg);
}
.compare-list strong {
  color: #2d4a3e;
  font-weight: 600;
}
.compare-note {
  text-align: center;
  color: #4a4a4a;
  font-size: 15px;
  max-width: 640px;
  margin: 32px auto 0;
  line-height: 1.55;
}
.compare-note a { color: #2d4a3e; text-decoration: underline; }

@media (max-width: 800px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col { padding: 32px 24px; }
}

/* User request: hide caption overlays on gallery photos — captions weren't always matching the actual image */
.gallery-caption { display: none !important; }
.lightbox-caption { display: none !important; }

/* ============================ WHY US ============================ */
.why-us {
  padding-top: clamp(72px, 9vw, 108px);
  padding-bottom: clamp(72px, 9vw, 108px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 72px);
}
.why-item {
  padding: 8px 4px 0;
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: rgba(30, 58, 47, 0.06);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.why-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================ ACCOYA SECTION ============================ */
.accoya-section {
  position: relative;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  padding: clamp(96px, 12vw, 160px) 0;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.accoya-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 26, 0.72) 0%, rgba(20, 32, 26, 0.5) 50%, rgba(20, 32, 26, 0.2) 100%),
    linear-gradient(180deg, rgba(20, 32, 26, 0.15) 0%, rgba(20, 32, 26, 0.3) 100%);
  pointer-events: none;
}
.accoya-grid { position: relative; z-index: 1; width: 100%; }
.accoya-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
.accoya-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
  text-align: left;
}
.accoya-copy .eyebrow {
  color: rgba(247, 242, 232, 0.6);
}
.accoya-copy h2 {
  color: var(--cream);
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.accoya-copy > p {
  color: rgba(247, 242, 232, 0.96);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 36px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.accoya-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.accoya-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.12);
}
.accoya-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.accoya-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: rgba(247, 242, 232, 0.55);
  line-height: 1;
  letter-spacing: -0.01em;
  padding-top: 2px;
}
.accoya-list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--cream);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.accoya-list li p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(247, 242, 232, 0.94);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.accoya-note {
  font-size: 14px;
  color: rgba(247, 242, 232, 0.62);
  font-style: italic;
  margin: 0;
  max-width: 520px;
}
.accoya-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 32px;
  min-height: 480px;
}
.accoya-badge {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.55);
  border: 3px solid var(--forest);
  outline: 1px solid rgba(30, 58, 47, 0.2);
  outline-offset: 8px;
  align-self: center;
}
.accoya-caption {
  text-align: right;
  padding-right: 4px;
  border-right: 2px solid rgba(247, 242, 232, 0.4);
  padding: 6px 14px 6px 0;
}
.accoya-caption-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.accoya-caption-sub {
  font-size: 12.5px;
  color: rgba(247, 242, 232, 0.7);
  margin: 0;
  letter-spacing: 0.02em;
}
.accoya-badge-num {
  font-family: var(--font-display);
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.accoya-badge-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
  text-align: center;
  line-height: 1.3;
  color: var(--forest);
}
@media (max-width: 900px) {
  .accoya-section { min-height: 0; padding: 72px 0; }
  .accoya-overlay { background: linear-gradient(180deg, rgba(20, 32, 26, 0.9) 0%, rgba(20, 32, 26, 0.94) 100%); }
  .accoya-grid { grid-template-columns: 1fr; gap: 40px; align-items: initial; }
  .accoya-side { min-height: 0; align-items: center; }
  .accoya-badge { width: 148px; height: 148px; }
  .accoya-badge-num { font-size: 58px; }
  .accoya-caption { text-align: center; border-right: none; border-top: 2px solid rgba(247, 242, 232, 0.4); padding: 12px 0 0; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #eee6d3 100%);
  padding: 120px 32px 90px;
  text-align: center;
}
.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 16px 0 24px;
}
.about-hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.about-section {
  padding: 100px 32px;
  background: var(--cream);
}
.about-columns {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.about-col h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--forest);
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.about-col p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
@media (max-width: 800px) {
  .about-columns { grid-template-columns: 1fr; gap: 40px; }
  .about-section { padding: 60px 24px; }
}

.about-beliefs {
  background: var(--forest);
  color: var(--cream);
  padding: 110px 32px;
}
.about-beliefs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-beliefs .eyebrow { color: rgba(244, 238, 224, 0.6); }
.about-beliefs h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 12px 0 60px;
}
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.belief-card {
  padding: 32px 24px;
  background: rgba(244, 238, 224, 0.06);
  border: 1px solid rgba(244, 238, 224, 0.12);
  border-radius: 4px;
}
.belief-num {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: rgba(244, 238, 224, 0.5);
  margin: 0 0 20px;
}
.belief-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.25;
}
.belief-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244, 238, 224, 0.75);
  margin: 0;
}
@media (max-width: 1000px) { .beliefs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .beliefs-grid { grid-template-columns: 1fr; } .about-beliefs { padding: 60px 24px; } }

.about-credentials {
  background: var(--cream);
  padding: 100px 32px;
}
.about-credentials-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.about-credentials h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 12px 0 50px;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.cred-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin: 0 0 12px;
}
.cred-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) { .creds-grid { grid-template-columns: 1fr; } .about-credentials { padding: 60px 24px; } }

.about-stats {
  background: #f2ead6;
  padding: 70px 32px;
  border-top: 1px solid rgba(35, 62, 46, 0.08);
  border-bottom: 1px solid rgba(35, 62, 46, 0.08);
}
.about-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  color: var(--forest);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0;
}
.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
@media (max-width: 720px) { .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; } }

.about-coverage, .about-cta {
  padding: 100px 32px;
  text-align: center;
}
.about-coverage-inner, .about-cta-inner {
  max-width: 780px;
  margin: 0 auto;
}
.about-coverage h2, .about-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.about-coverage .lede, .about-cta p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.cta-inline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  text-decoration: none;
}
.about-cta { background: var(--cream); padding-bottom: 120px; }
.cta-fine {
  font-size: 14px !important;
  color: var(--ink-mute) !important;
  margin-top: 20px !important;
}
.cta-fine a { color: var(--forest); text-decoration: none; border-bottom: 1px solid currentColor; }

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.areas-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #eee6d3 100%);
  padding: 120px 32px 90px;
  text-align: center;
}
.areas-hero-inner { max-width: 900px; margin: 0 auto; }
.areas-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 16px 0 24px;
}
.areas-hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.areas-primary {
  background: var(--cream);
  padding: 100px 32px;
}
.areas-primary-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.areas-primary h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 46px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 12px 0 50px;
}
.area-card {
  background: #ffffff;
  border: 1px solid rgba(35, 62, 46, 0.1);
  border-radius: 6px;
  padding: 36px 40px;
  margin-bottom: 24px;
}
.area-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(35, 62, 46, 0.08);
}
.area-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--forest);
  margin: 0;
  letter-spacing: -0.01em;
}
.area-postcodes {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin: 0;
  text-transform: uppercase;
}
.area-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.area-services {
  font-size: 14.5px !important;
  color: var(--ink-mute) !important;
  padding-top: 8px;
  border-top: 1px dashed rgba(35, 62, 46, 0.1);
  margin-top: 12px !important;
}
.area-services strong { color: var(--forest); font-weight: 500; }
.area-services a { color: var(--forest); text-decoration: none; border-bottom: 1px solid rgba(35, 62, 46, 0.3); }
.area-services a:hover { border-bottom-color: currentColor; }
@media (max-width: 680px) {
  .area-card { padding: 28px 24px; }
  .area-head h3 { font-size: 24px; }
  .areas-primary { padding: 60px 20px; }
}

.areas-wider {
  background: #f2ead6;
  padding: 100px 32px;
}
.areas-wider-inner { max-width: 1140px; margin: 0 auto; }
.areas-wider h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
}
.areas-wider .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 700px;
}
.wider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.wider-col h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--forest);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(35, 62, 46, 0.15);
}
.wider-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wider-col li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 5px 0;
}
@media (max-width: 900px) { .wider-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wider-grid { grid-template-columns: 1fr; } .areas-wider { padding: 60px 24px; } }

.areas-how {
  background: var(--forest);
  color: var(--cream);
  padding: 110px 32px;
}
.areas-how-inner { max-width: 1200px; margin: 0 auto; }
.areas-how .eyebrow { color: rgba(244, 238, 224, 0.6); }
.areas-how h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--cream);
  letter-spacing: -0.02em;
  margin: 12px 0 60px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step { padding: 24px 8px 0; }
.how-num {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: rgba(244, 238, 224, 0.5);
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 238, 224, 0.15);
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.25;
}
.how-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(244, 238, 224, 0.72);
  margin: 0;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .how-steps { grid-template-columns: 1fr; } .areas-how { padding: 60px 24px; } }

.areas-cta {
  background: var(--cream);
  padding: 100px 32px 120px;
  text-align: center;
}
.areas-cta-inner { max-width: 780px; margin: 0 auto; }
.areas-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.areas-cta p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

/* ============================================================
   GOOGLE REVIEWS SHOWCASE (prominent module)
   ============================================================ */
.reviews-showcase {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(56px, 7vw, 88px) var(--gutter);
}
.reviews-showcase-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.reviews-showcase .eyebrow { color: rgba(247, 242, 232, 0.6); margin-bottom: 14px; }
.rs-rating {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rs-score {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.03em;
}
.rs-stars { display: flex; gap: 4px; }
.rs-stars svg { width: 28px; height: 28px; }
.rs-count {
  font-size: 16px;
  color: rgba(247, 242, 232, 0.8);
  margin-top: 2px;
}
.rs-count strong { color: var(--cream); font-weight: 500; }
.rs-google {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(247, 242, 232, 0.65);
  margin-top: 6px;
}
.rs-google svg { width: 18px; height: 18px; flex-shrink: 0; }
.rs-body h2 {
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 300;
}
.rs-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 242, 232, 0.8);
  margin-bottom: 28px;
  max-width: 480px;
}
.rs-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.rs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--forest);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all .2s ease;
}
.rs-btn-primary:hover { background: var(--cream-deep); transform: translateY(-1px); }
.rs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border: 1px solid rgba(247, 242, 232, 0.35);
  border-radius: 999px;
  transition: all .2s ease;
}
.rs-btn-secondary:hover { background: rgba(247, 242, 232, 0.1); border-color: var(--cream); }
@media (max-width: 780px) {
  .reviews-showcase-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .rs-rating { align-items: center; }
  .rs-body p { margin-left: auto; margin-right: auto; }
  .rs-actions { justify-content: center; }
  .rs-google { justify-content: center; }
}

/* ============================================================
   LOCATION LANDING PAGES
   ============================================================ */
.loc-crosslinks {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter);
  text-align: center;
  font-size: 14px;
  color: var(--ink-mute);
}
.loc-breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
  font-size: 13px;
}
.loc-breadcrumb-bar .breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
}
.loc-crosslinks strong { color: var(--forest); font-weight: 500; }
.loc-crosslinks a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 62, 46, 0.3);
  margin: 0 2px;
}
.loc-crosslinks a:hover { border-bottom-color: currentColor; }

.loc-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--gutter);
  text-align: center;
}
.loc-intro h2 { margin-bottom: 24px; font-weight: 300; }
.loc-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-align: left;
}

/* Location photo grid */
.loc-photos {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 7vw, 88px);
}
.loc-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.loc-photo {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  transition: transform .4s var(--ease-out);
}
.loc-photo:hover { transform: translateY(-3px); }
.loc-photo.tall { grid-row: span 2; }
.loc-photo.wide { grid-column: span 2; }
@media (max-width: 780px) {
  .loc-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .loc-photo.wide { grid-column: span 2; }
  .loc-photo.tall { grid-row: span 1; }
}

/* Why homeowners pick us */
.loc-why {
  background: var(--cream-warm);
  padding: clamp(56px, 7vw, 88px) var(--gutter);
}
.loc-why-inner { max-width: var(--wrap); margin: 0 auto; }
.loc-why-inner .section-header { margin-left: 0; }
.loc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.loc-why-card {
  background: #ffffff;
  border: 1px solid rgba(35, 62, 46, 0.1);
  border-radius: 6px;
  padding: 32px 28px;
}
.loc-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.loc-why-icon svg { width: 20px; height: 20px; }
.loc-why-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.loc-why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 780px) {
  .loc-why-grid { grid-template-columns: 1fr; }
}

/* Location hero (uses product-hero pattern; small local badge) */
.loc-drive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--forest);
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.loc-drive svg { width: 15px; height: 15px; }

/* Other areas strip */
.loc-other-areas {
  background: var(--forest-dark);
  color: var(--cream);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
  text-align: center;
}
.loc-other-inner { max-width: 900px; margin: 0 auto; }
.loc-other-areas .eyebrow { color: rgba(247, 242, 232, 0.6); }
.loc-other-areas h2 { color: var(--cream); margin-bottom: 32px; font-weight: 300; }
.loc-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.loc-other-card {
  display: block;
  background: rgba(247, 242, 232, 0.06);
  border: 1px solid rgba(247, 242, 232, 0.15);
  border-radius: 6px;
  padding: 22px 18px;
  color: var(--cream);
  transition: all .2s ease;
}
.loc-other-card:hover { background: rgba(247, 242, 232, 0.12); transform: translateY(-2px); }
.loc-other-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 4px;
}
.loc-other-card span { font-size: 13px; color: rgba(247, 242, 232, 0.65); }
@media (max-width: 680px) {
  .loc-other-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================ HARDWARE PAGE ============================ */
.about-inner-narrow {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-inner-narrow > p {
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--ink-mute);
  font-size: 17px;
  line-height: 1.7;
}
.hardware-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  margin-top: 40px;
}
.hardware-col h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--forest);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.hardware-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hardware-col li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
}
.hardware-col li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--forest);
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 720px) {
  .hardware-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ========================================================================
   Thank-You Page (2026-07-20)
   ======================================================================== */
.thank-you-main {
  background: var(--cream);
  min-height: 70vh;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.thank-you-hero {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.thank-you-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.5rem;
}
.thank-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0;
}
.thank-lead {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
}
.thank-sub {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-family: var(--font-body);
}
.thank-sub a { color: var(--forest); text-decoration: underline; }
.thank-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-thank,
.btn-secondary-thank {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  border: 1.5px solid var(--forest);
}
.btn-primary-thank {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary-thank:hover { background: var(--forest-dark); border-color: var(--forest-dark); }
.btn-secondary-thank {
  background: transparent;
  color: var(--forest);
}
.btn-secondary-thank:hover { background: var(--forest); color: var(--cream); }

.thank-next {
  max-width: 720px;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.thank-next-inner .thank-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 1.75rem;
}
.thank-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.thank-steps li {
  position: relative;
  padding: 1.25rem 0 1.25rem 3.75rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  counter-increment: step;
}
.thank-steps li:last-child { border-bottom: 1px solid var(--line); }
.thank-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}
.thank-steps li strong { color: var(--forest); font-weight: 600; }

/* ============================================
   Photo marquee (Boston Spa gallery + reusable)
   ============================================ */
.loc-marquee {
  padding: 72px 0 88px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.loc-marquee .section-header { padding: 0 var(--gutter); }

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade edges for polish */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 20px;
  padding: 4px 0 8px;
  width: max-content;
  animation: marquee-scroll 80s linear infinite;
  will-change: transform;
}
.marquee.is-slow .marquee-track { animation-duration: 200s; }
.marquee.is-paused .marquee-track { animation-play-state: paused; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 300s; }
}
.marquee-item {
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: var(--cream-warm);
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.marquee-item:hover {
  box-shadow: 0 12px 28px rgba(35, 62, 46, 0.18);
  border-color: var(--forest);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.marquee-item:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}
@media (max-width: 700px) {
  .marquee-item { width: 240px; }
  .marquee-track { animation-duration: 60s; }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 20, 17, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  background: #1c211d;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-align: center;
  font-family: var(--font-body);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  padding: 0;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.lightbox-close { top: 20px; right: 20px; font-size: 26px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 30px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 700px) {
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
