/* ============================================================
   Granite Coast Hardscapes — demo site
   Design + build: Bay State Sites
   Editorial landscape-architecture direction. Dark, earthy,
   quiet. All imagery is CSS/SVG — no external requests.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-italic-var.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #0e130e;
  --bg-raised: #131a12;
  --bg-lifted: #182016;
  --ink: #eae4d6;
  --ink-soft: rgba(234, 228, 214, 0.76);
  --ink-faint: rgba(234, 228, 214, 0.55);
  --sage: #8fa382;
  --copper: #c47a3f;
  --copper-bright: #d08a4e;
  --hairline: rgba(234, 228, 214, 0.14);
  --hairline-soft: rgba(234, 228, 214, 0.09);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --pad: clamp(1.25rem, 5vw, 3rem);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 350;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

::selection {
  background: var(--copper);
  color: var(--bg);
}

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

/* Film-grain overlay — one tiny inline SVG, tiled */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
h1,
h2,
h3,
.serif {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 em,
h2 em,
h3 em,
.ital {
  font-style: italic;
  font-weight: 340;
  color: var(--sage);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34em;
}

/* ---------- Layout utilities ---------- */
.wrap {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hairline-top {
  border-top: 1px solid var(--hairline-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.note-band {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

/* Numbered section headers — "No. 02 — Selected work" */
.sec-head {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.sec-no {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.sec-no-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--copper);
  white-space: nowrap;
}

.sec-no-rule {
  flex: 0 1 6rem;
  height: 1px;
  background: var(--hairline);
}

.sec-no-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
}

.sec-title {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  max-width: 15em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 2.1em;
  background: var(--copper);
  color: #10150f;
  border: 1px solid var(--copper);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.btn:hover {
  background: var(--copper-bright);
  border-color: var(--copper-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
}

.btn-ghost:hover {
  background: rgba(234, 228, 214, 0.06);
  border-color: rgba(234, 228, 214, 0.35);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.7em 1.4em;
  font-size: 0.7rem;
}

.text-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 122, 63, 0.4);
  padding-bottom: 0.25em;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover {
  color: var(--copper-bright);
  border-color: var(--copper-bright);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--copper);
  color: #10150f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75em 1.25em;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s ease-out;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 19, 14, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 460;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle-bars {
  position: relative;
  width: 1.1rem;
  height: 1px;
  background: var(--ink);
  transition: background 0.2s;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: calc(-1 * var(--pad));
  right: calc(-1 * var(--pad));
  background: var(--bg-raised);
  border-bottom: 1px solid var(--hairline);
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  padding: 1rem var(--pad) 1.5rem;
}

.site-nav a {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline-soft);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--copper);
}

.site-nav .nav-cta {
  padding-top: 1.25rem;
}

.site-nav .nav-cta a {
  border-bottom: none;
}

@media (min-width: 56.25em) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: block;
    position: static;
    background: none;
    border: none;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    padding: 0;
  }
  .site-nav a {
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
  }
  .site-nav a:hover {
    border-color: var(--hairline);
  }
  .site-nav a[aria-current="page"] {
    border-color: var(--copper);
  }
  .site-nav .nav-cta {
    padding-top: 0;
  }
  .site-nav .nav-cta .btn {
    border-bottom: 1px solid var(--copper);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 13vw, 10rem) clamp(5rem, 12vw, 9rem);
  background: radial-gradient(120% 90% at 85% 0%, #17200f 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #10160f 100%);
}

.hero-contours {
  position: absolute;
  top: 50%;
  right: -12%;
  width: clamp(22rem, 55vw, 42rem);
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-contours text {
  font-family: var(--sans);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.hero .eyebrow {
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 9.5vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.hero .lede {
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.hero-foot {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

@media (min-width: 40em) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Philosophy ---------- */
.philosophy-grid {
  display: grid;
  gap: 2.5rem;
}

.philosophy-copy p + p {
  margin-top: 1.4em;
}

.philosophy-copy {
  color: var(--ink-soft);
  max-width: 38em;
}

.philosophy-aside {
  border-left: 1px solid var(--hairline);
  padding-left: 1.75rem;
  align-self: end;
}

.philosophy-aside p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--sage);
  max-width: 18em;
}

@media (min-width: 56.25em) {
  .philosophy-grid {
    grid-template-columns: 7fr 5fr;
    gap: clamp(3rem, 7vw, 6rem);
  }
}

/* ---------- CSS-art project panels ---------- */
.art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background-color: var(--bg-raised);
  aspect-ratio: 4 / 3;
  transition: transform 0.8s var(--ease);
}

.art::before {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(234, 228, 214, 0.12);
  pointer-events: none;
  z-index: 2;
}

/* 01 — harbor terrace: hedge line, low copper sun, coursed bluestone */
.art--terrace {
  background: radial-gradient(34% 26% at 78% 16%, rgba(196, 122, 63, 0.55) 0%, rgba(196, 122, 63, 0.12) 55%, transparent 75%),
    linear-gradient(180deg, #161e14 0%, #1a2317 30%, #243020 44%, #2a3725 46%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(10, 14, 10, 0.5) 0 1px, transparent 1px 2.4rem),
    repeating-linear-gradient(90deg, rgba(10, 14, 10, 0.4) 0 1px, transparent 1px 5.5rem),
    linear-gradient(180deg, #4c4a3b 46%, #464739 66%, #3c4032 88%, #343827 100%);
}

/* 02 — river walk: treeline, grasses raked at an angle, dark water, steppers */
.art--river {
  background: linear-gradient(180deg, #131b12 0%, #182114 24%, #1e2a19 30%, transparent 30%),
    radial-gradient(3.2rem 1.3rem at 50% 46%, #55523f 60%, rgba(85, 82, 63, 0) 72%),
    radial-gradient(2.7rem 1.1rem at 44% 58%, #504d3b 60%, rgba(80, 77, 59, 0) 72%),
    radial-gradient(2.3rem 1rem at 53% 70%, #4b483a 60%, rgba(75, 72, 58, 0) 72%),
    radial-gradient(2rem 0.9rem at 46% 82%, #454338 60%, rgba(69, 67, 56, 0) 72%),
    radial-gradient(140% 55% at 50% 112%, #24372f 0%, #1d2d27 42%, transparent 62%),
    repeating-linear-gradient(104deg, rgba(143, 163, 130, 0.14) 0 2px, transparent 2px 1.6rem),
    linear-gradient(180deg, #2b3521 30%, #333e26 62%, #29331f 100%);
}

/* 03 — village courtyard: hydrangea mass, copper light, fanned cobbles */
.art--courtyard {
  background: radial-gradient(46% 40% at 20% 24%, rgba(143, 163, 130, 0.5) 0%, rgba(143, 163, 130, 0.14) 55%, transparent 75%),
    radial-gradient(34% 30% at 82% 18%, rgba(196, 122, 63, 0.32) 0%, transparent 70%),
    linear-gradient(180deg, #1a2317 0%, #202b1b 38%, transparent 38%),
    repeating-radial-gradient(circle at 50% 130%, rgba(10, 14, 10, 0.42) 0 2px, transparent 2px 1.9rem),
    repeating-linear-gradient(90deg, rgba(10, 14, 10, 0.22) 0 1px, transparent 1px 2.6rem),
    linear-gradient(180deg, #45432f 38%, #47443a 68%, #3b3a2e 100%);
}

/* 04 — dry-laid wall: battered courses of fieldstone, moss at the foot */
.art--wall {
  background: radial-gradient(40% 30% at 24% 12%, rgba(196, 122, 63, 0.28) 0%, transparent 70%),
    linear-gradient(180deg, #141c12 0%, #1a2316 22%, transparent 22%),
    radial-gradient(120% 30% at 50% 104%, #23301d 0%, #1d2918 45%, transparent 62%),
    repeating-linear-gradient(0deg, rgba(10, 14, 10, 0.55) 0 2px, transparent 2px 1.7rem),
    repeating-linear-gradient(90deg, rgba(10, 14, 10, 0.32) 0 1px, transparent 1px 3.4rem),
    repeating-linear-gradient(86deg, rgba(234, 228, 214, 0.045) 0 6px, transparent 6px 4.6rem),
    linear-gradient(180deg, #4a483a 22%, #43443a 55%, #3a3d31 82%, #313626 100%);
}

/* 05 — planting plan: drifts of sage over dark loam */
.art--garden {
  background: radial-gradient(38% 34% at 26% 34%, rgba(143, 163, 130, 0.55) 0%, rgba(143, 163, 130, 0.16) 55%, transparent 78%),
    radial-gradient(30% 28% at 62% 22%, rgba(143, 163, 130, 0.4) 0%, transparent 72%),
    radial-gradient(26% 24% at 80% 58%, rgba(196, 122, 63, 0.3) 0%, transparent 72%),
    radial-gradient(34% 30% at 44% 72%, rgba(143, 163, 130, 0.34) 0%, transparent 74%),
    repeating-linear-gradient(0deg, rgba(234, 228, 214, 0.035) 0 1px, transparent 1px 1.3rem),
    linear-gradient(160deg, #151d12 0%, #1a2415 48%, #131a10 100%);
}

/* 06 — seasonal care: raked lawn stripes toward a low sun */
.art--seasons {
  background: radial-gradient(30% 24% at 76% 18%, rgba(196, 122, 63, 0.5) 0%, rgba(196, 122, 63, 0.1) 55%, transparent 72%),
    linear-gradient(180deg, #131b11 0%, #182113 26%, transparent 26%),
    repeating-linear-gradient(78deg, rgba(10, 14, 10, 0.28) 0 1.6rem, rgba(143, 163, 130, 0.09) 1.6rem 3.2rem),
    linear-gradient(180deg, #2c371f 26%, #33402a 64%, #26301c 100%);
}

/* ---------- Selected work grid ---------- */
.work-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.work-card {
  display: block;
}

.work-card figcaption {
  padding-top: 1.4rem;
}

.work-index {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--copper);
}

.work-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0.5rem 0 0.4rem;
}

.work-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.work-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 30em;
}

@media (min-width: 56.25em) {
  .work-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
  .work-card:nth-child(1) {
    grid-column: 1 / span 7;
  }
  .work-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: 7rem;
  }
  .work-card:nth-child(3) {
    grid-column: 3 / span 6;
    margin-top: -2rem;
  }
  .work-card:nth-child(2) .art {
    aspect-ratio: 3 / 4;
  }
  .work-card:nth-child(3) .art {
    aspect-ratio: 16 / 10;
  }
}

@media (hover: hover) {
  .work-card:hover .art,
  .service-side:hover .art {
    transform: scale(1.02);
  }
}

/* ---------- Services preview (index) ---------- */
.svc-rows {
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.svc-rows li {
  border-bottom: 1px solid var(--hairline);
}

.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1.25rem 2rem;
  padding: 1.6rem 0.25rem;
  text-decoration: none;
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.svc-row:hover {
  background: rgba(234, 228, 214, 0.035);
  padding-left: 0.9rem;
}

.svc-row-no {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--copper);
}

.svc-row-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  letter-spacing: -0.01em;
}

.svc-row-hint {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.3rem;
}

.svc-row-arrow {
  color: var(--sage);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.svc-row:hover .svc-row-arrow {
  transform: translateX(6px);
  color: var(--copper);
}

/* ---------- Testimonials ---------- */
.demo-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(196, 122, 63, 0.45);
  border-radius: 999px;
  padding: 0.45em 1.1em;
  margin-top: 1.5rem;
}

.quotes {
  display: grid;
  gap: 1.5rem;
}

.quote {
  border: 1px solid var(--hairline-soft);
  border-radius: 2px;
  background: var(--bg-raised);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote blockquote p {
  font-family: var(--display);
  font-weight: 360;
  font-size: 1.18rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.quote blockquote p::before {
  content: "\201C";
  color: var(--copper);
}

.quote blockquote p::after {
  content: "\201D";
  color: var(--copper);
}

.quote figcaption {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  border-top: 1px solid var(--hairline-soft);
  padding-top: 1.1rem;
}

@media (min-width: 56.25em) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
  .quote:nth-child(2) {
    transform: translateY(2rem);
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(90% 130% at 12% 0%, rgba(196, 122, 63, 0.16) 0%, transparent 55%),
    radial-gradient(70% 110% at 88% 100%, rgba(143, 163, 130, 0.12) 0%, transparent 60%),
    var(--bg-raised);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.cta-band .wrap {
  display: grid;
  gap: 2.5rem;
}

.cta-band h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  max-width: 12em;
}

.cta-band .lede {
  margin-top: 1.25rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  align-self: end;
}

.cta-tel {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.15em;
  transition: border-color 0.3s var(--ease);
}

.cta-tel:hover {
  border-color: var(--copper);
}

@media (min-width: 56.25em) {
  .cta-band .wrap {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: clamp(4.5rem, 10vw, 7.5rem) clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--hairline-soft);
}

.page-hero .eyebrow {
  margin-bottom: 1.75rem;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
}

/* ---------- Services page ---------- */
.service {
  border-bottom: 1px solid var(--hairline-soft);
}

.service:last-of-type {
  border-bottom: none;
}

.service-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.service-info .sec-no {
  margin-bottom: 1.5rem;
}

.service-info h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1.4rem;
}

.service-info > p {
  color: var(--ink-soft);
  max-width: 36em;
}

.service-info > p + p {
  margin-top: 1.3em;
}

.service-list {
  list-style: none;
  margin-top: 2rem;
  border-top: 1px solid var(--hairline-soft);
}

.service-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}

.service-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 1px;
  background: var(--copper);
  transform: translateY(-0.28em);
}

.service-side .art {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.5rem;
}

.price-hint {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.1rem 0.25rem;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
}

.service-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  max-width: 42em;
}

@media (min-width: 56.25em) {
  .service-grid {
    grid-template-columns: 7fr 4fr;
    align-items: start;
  }
  .service:nth-of-type(even) .service-grid {
    grid-template-columns: 4fr 7fr;
  }
  .service:nth-of-type(even) .service-info {
    order: 2;
  }
  .service:nth-of-type(even) .service-side {
    order: 1;
  }
}

/* ---------- About: story, process, towns ---------- */
.story-grid {
  display: grid;
  gap: 2.5rem;
}

.story-copy {
  color: var(--ink-soft);
  max-width: 38em;
}

.story-copy p + p {
  margin-top: 1.4em;
}

.pull-quote {
  border-left: 1px solid var(--copper);
  padding-left: 1.75rem;
  align-self: center;
}

.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--sage);
  max-width: 16em;
}

@media (min-width: 56.25em) {
  .story-grid {
    grid-template-columns: 7fr 5fr;
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.timeline {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.timeline li {
  counter-increment: step;
  position: relative;
  padding: 2.25rem 0 2.25rem 4.5rem;
  border-bottom: 1px solid var(--hairline-soft);
}

.timeline li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 2.4rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--copper);
}

.timeline h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}

.timeline p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 38em;
}

@media (min-width: 56.25em) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(3rem, 6vw, 5rem);
  }
  .timeline li:nth-child(-n + 2) {
    border-top: none;
  }
}

.towns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.towns li {
  font-family: var(--display);
  font-weight: 380;
  font-size: 1.1rem;
  padding: 1.1rem 0.25rem;
  border-bottom: 1px solid var(--hairline-soft);
}

.towns li span {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.15rem;
}

.towns-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
  max-width: 42em;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.call-card {
  background: radial-gradient(120% 140% at 0% 0%, rgba(196, 122, 63, 0.18) 0%, transparent 60%),
    var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.call-card .eyebrow {
  margin-bottom: 1rem;
}

.call-number {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.1em;
  transition: color 0.3s var(--ease);
}

.call-number:hover {
  color: var(--copper-bright);
}

.call-card p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contact-details {
  border-top: 1px solid var(--hairline);
}

.contact-details div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 0.92rem;
}

.contact-details dt {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 0.2rem;
}

.contact-details dd {
  color: var(--ink-soft);
}

@media (min-width: 56.25em) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
  }
}

/* ---------- Form ---------- */
.quote-form {
  border: 1px solid var(--hairline-soft);
  border-radius: 2px;
  background: var(--bg-raised);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form-row {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

@media (min-width: 40em) {
  .form-row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(234, 228, 214, 0.45);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(234, 228, 214, 0.3);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
  border-color: var(--copper);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%238fa382' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.9rem;
}

.form-foot small {
  font-size: 0.78rem;
  color: var(--ink-faint);
  max-width: 24em;
}

.form-success {
  border: 1px solid rgba(143, 163, 130, 0.5);
  border-radius: 2px;
  background: rgba(143, 163, 130, 0.08);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form-success h2 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.form-success p {
  color: var(--ink-soft);
  max-width: 32em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline-soft);
  background: #0b100b;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.footer-word {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.footer-blurb {
  font-size: 0.9rem;
  color: var(--ink-faint);
  max-width: 22em;
}

.footer-head {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-tel {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.1em;
  margin-bottom: 0.9rem;
  transition: border-color 0.3s var(--ease);
}

.footer-tel:hover {
  border-color: var(--copper);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (min-width: 56.25em) {
  .footer-grid {
    grid-template-columns: 5fr 3fr 4fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.footer-legal {
  border-top: 1px solid var(--hairline-soft);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

.footer-legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-legal a:hover {
  color: var(--copper-bright);
}

/* ---------- Reveal motion ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--d, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .art,
  .btn,
  .svc-row,
  .svc-row-arrow {
    transition: none;
  }
  .work-card:hover .art,
  .service-side:hover .art {
    transform: none;
  }
  .btn:hover {
    transform: none;
  }
}
