:root {
  --green-dark: #1e3d2f;
  --green: #2d5940;
  --green-light: #4a7a5c;
  --gold: #c9a227;
  --cream: #f7f5ef;
  --cream-2: #eef3ea;
  --text: #26261f;
  --text-soft: #5a5b52;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(30, 61, 47, 0.25);
  --shadow-hard: 6px 6px 0 var(--green-dark);
  --max: 1140px;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --header-h: 100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--green-dark);
}

p { margin: 0 0 1em; color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
/* height:auto is required — the width/height attributes on <img> would
   otherwise force the literal pixel height and distort the photo. */
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Anchors land below the sticky header, not underneath it */
section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============ SCROLL-REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ SECTION KICKER (editorial numbering) ============ */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}
.kicker-num { color: var(--gold); }
.kicker-dash { color: rgba(30,61,47,.35); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary:hover { box-shadow: 0 8px 18px -6px rgba(201,162,39,.6); }
.btn-ghost { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-ghost:hover { background: var(--green-dark); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(30,61,47,.08);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -14px rgba(30,61,47,.35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: var(--header-h);
  transition: min-height .3s ease, padding .3s ease;
}
.site-header.is-scrolled .header-inner { min-height: 60px; padding-top: 8px; padding-bottom: 8px; }

.brand { display: flex; align-items: center; gap: 16px; }
/* The plaque is deliberately taller than the nav bar and hangs below it.
   translateY keeps it out of layout flow so it never stretches the header. */
.brand-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid #b8975a; /* brand brass */
  border-radius: 0; /* rectangular */
  padding: 12px 22px 12px 14px;
  box-shadow: 5px 5px 0 #142e23; /* brand deep green — hard offset so the border pops */
  position: relative;
  z-index: 2;
  /* Negative block margins give the height back to the layout so the taller
     plaque does not stretch the bar; translateY then drops the overhang below it. */
  margin-block: -34px;
  transform: translateY(20px);
  transition: box-shadow .25s ease, transform .25s ease, padding .3s ease;
}
.brand:hover .brand-card {
  transform: translateY(17px) translateX(-2px);
  box-shadow: 7px 7px 0 #142e23;
}
.site-header.is-scrolled .brand-card {
  margin-block: -18px;
  transform: translateY(12px);
  padding: 8px 18px 8px 10px;
}
.site-header.is-scrolled .brand:hover .brand-card { transform: translateY(9px) translateX(-2px); }
.brand-mark-img {
  width: 104px;
  height: auto;
  display: block;
  transition: width .3s ease;
}
.site-header.is-scrolled .brand-mark-img { width: 68px; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--green-dark);
}

/* Cascara wordmark type (Pagella is a Palatino clone; use system Palatino) */
.wordmark { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.05; }
.wordmark-name {
  font-family: 'TeX Gyre Pagella', Palatino, 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: 1.95rem;
  letter-spacing: .13em;
  margin-right: -.13em; /* cancel trailing tracking so the word is optically centred */
  text-transform: uppercase;
  color: #1b3a2d;
}
.wordmark-sub {
  font-family: 'TeX Gyre Pagella', Palatino, 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: .8rem;
  letter-spacing: .42em;
  margin-right: -.42em; /* cancel trailing tracking so the word is optically centred */
  text-transform: uppercase;
  color: #8a6e3a;
  margin-top: 4px;
}

.site-nav { display: flex; gap: 36px; margin-left: 24px; flex: 1; }
.site-nav a {
  position: relative;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 6px;
  white-space: nowrap;
  transition: color .2s ease;
}
/* Tighten spacing before the nav is forced to wrap on mid-size screens */
@media (max-width: 1240px) {
  .site-nav { gap: 22px; margin-left: 16px; }
  .site-nav a { font-size: .93rem; }
}
@media (max-width: 1080px) {
  :root { --header-h: 92px; }
  .site-nav { gap: 16px; margin-left: 10px; }
  .site-nav a { font-size: .88rem; }
  .header-actions .btn-primary { padding: 10px 15px; font-size: .88rem; }
  .brand-mark-img { width: 74px; }
  .wordmark-name { font-size: 1.35rem; }
  .wordmark-sub { font-size: .58rem; letter-spacing: .34em; margin-right: -.34em; }
  .brand-card { padding: 9px 15px 9px 10px; gap: 11px; margin-block: -16px; transform: translateY(14px); }
  .brand:hover .brand-card { transform: translateY(11px) translateX(-2px); }
  .site-header.is-scrolled .brand-card { margin-block: -10px; transform: translateY(9px); }
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.site-nav a:hover { color: var(--green-dark); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--green-dark); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO (photo slideshow) ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-start;
  color: #fff;
  /* cancel the generic `section` padding so .hero-inner alone sets the top gap */
  padding: 0;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
/* Single locked photo: no zoom, just the image */
.hero-slide:only-child { animation: none; transform: none; }
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(20, 40, 30, .82) 0%, rgba(20, 40, 30, .55) 45%, rgba(20, 40, 30, .18) 75%),
    linear-gradient(to top, rgba(20, 40, 30, .55) 0%, transparent 30%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 24px 110px;
  /* .hero is a flex container, so without width:100% this shrinks to its content
     and the auto margins centre that narrow box. Filling to max-width keeps the
     headline's left edge on the same line as the logo. */
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-inner { padding-top: 40px; padding-bottom: 22px; }
  /* leave room for the trust strip so all four cards land above the fold */
  .hero { min-height: min(74vh, 700px); }
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  max-width: 15ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  font-style: italic;
  /* brighter than the brand gold so it reads clearly on the dark photo */
  color: #e3bb46;
  margin: -.2em 0 .95em;
  padding-left: 18px;
  border-left: 4px solid #e3bb46;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 55ch;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.hero-lines {
  margin-top: 30px;
  max-width: 440px;
  background: rgba(15, 23, 18, .55);
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(3px);
  padding: 6px 22px;
  border-radius: 0 10px 10px 0;
}
.hero-lines li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  font-weight: 500;
  font-size: .98rem;
  color: rgba(247, 245, 239, .95);
  border-bottom: 1px solid rgba(201, 162, 39, .28);
}
.hero-lines li:last-child { border-bottom: none; }
.hero-line-num {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
}

.hero-creds {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}


/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--green-dark); color: #fff; padding: 0; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 24px;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { color: var(--gold); font-size: 1rem; }
.trust-item span { font-size: .85rem; color: rgba(255,255,255,.75); }

/* Section shared */
section { padding: 80px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-sub { max-width: 60ch; font-size: 1.05rem; margin-bottom: 40px; }

/* ============ SERVICES ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translate(-3px, -6px);
  box-shadow: var(--shadow-hard);
  border-color: var(--green-dark);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background .3s ease, color .3s ease;
}
.card:hover .card-icon { background: var(--gold); color: var(--green-dark); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: .95rem; }
.card[data-service] { cursor: pointer; }
.card-more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  opacity: .65;
  transition: opacity .2s ease, color .2s ease;
}
.card:hover .card-more { opacity: 1; color: var(--gold); }

/* ============ SERVICE MODAL ============ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 25, 20, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.service-modal[hidden] { display: none; }
.service-modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  animation: lightboxIn .25s ease;
}
.service-modal-photo { min-height: 100%; }
.service-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-modal-body {
  padding: 36px 32px;
  overflow-y: auto;
  max-height: 90vh;
}
.service-modal-body h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.service-modal-body > p { font-size: .98rem; }
.service-modal-how {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--green);
  margin: 20px 0 10px;
}
#service-modal-points li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: .93rem;
  color: var(--text);
  border-bottom: 1px solid rgba(30,61,47,.1);
}
#service-modal-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
#service-modal-cta { margin-top: 22px; }
.service-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(30,61,47,.85);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.service-modal-close:hover { background: var(--green-dark); }

@media (max-width: 720px) {
  .service-modal { padding: 12px; }
  .service-modal-card { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .service-modal-photo { max-height: 220px; }
  .service-modal-body { max-height: none; padding: 24px 20px 28px; }
}

/* ============ PROCESS ============ */
.process { background: var(--cream-2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.process-num {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
}
.process-step h3 { font-size: 1.08rem; margin: 10px 0 8px; }
.process-step p { margin: 0; font-size: .93rem; }

/* ============ STRATA BAND ============ */
.strata-band { background: var(--green-dark); color: #fff; }
.strata-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.strata-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.strata-band > .wrap > .strata-copy > p { color: rgba(255,255,255,.82); }
.strata-copy p { color: rgba(255,255,255,.82); }
.strata-kicker { color: var(--gold); }
.strata-kicker .kicker-dash { color: rgba(255,255,255,.35); }
.strata-points { margin: 22px 0 26px; }
.strata-points li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}
.strata-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.strata-photo { margin: 0; }
.strata-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid rgba(255,255,255,.9);
}
.strata-photo figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ GALLERY (masonry) ============ */
.gallery { background: var(--cream-2); }
/* Mixed-width masonry that still always lands as a complete rectangle.
   Tiles run in a repeating WIDE, narrow, narrow pattern, so every group of
   three fills exactly one 4-column row: 8 wide + 16 narrow = 32 cells = 8 rows.
   All tiles are one row tall (no row spans), which is what previously left
   holes at the bottom. See the breakpoints below for the 3- and 2-column cases. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--green-dark);
}
.gallery-tile.span-wide { grid-column: span 2; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 12px;
  background: linear-gradient(to top, rgba(20,40,30,.85), transparent);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.gallery-tile:hover figcaption,
.gallery-tile:focus-visible figcaption { opacity: 1; transform: translateY(0); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 25, 20, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: lightboxIn .25s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.lightbox-figure figcaption {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  color: var(--gold);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  position: relative;
  transform: rotate(2deg);
  transition: transform .35s ease;
}
.about-photo:hover { transform: rotate(0deg) scale(1.02); }
.about-photo img {
  border-radius: 6px;
  border: 10px solid #fff;
  box-shadow: var(--shadow-hard);
}
.about-photo-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 110px;
  height: 28px;
  background: rgba(201, 162, 39, .55);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.about-points { margin-top: 18px; }
.about-points li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(30,61,47,.12);
  position: relative;
  font-weight: 500;
  color: var(--text);
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============ ORIGIN STORY ============ */
.origin { background: var(--cream-2); }
.origin-inner {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 56px;
  align-items: center;
}
.origin-photo { margin: 0; }
.origin-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 10px solid #fff;
  box-shadow: var(--shadow-hard);
}
.origin-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.origin-copy p:last-child { margin-bottom: 0; }
.origin-kicker { color: var(--green); }

/* ============ SERVICE AREA + MAP ============ */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.area-chips { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 12px; }
.chip {
  font: inherit;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(30,61,47,.15);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--green-dark);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.chip:hover, .chip:focus-visible { background: var(--green-dark); color: #fff; border-color: var(--green-dark); transform: translateY(-2px); }
.chip.is-home { border-color: var(--gold); font-weight: 600; }
.chip.is-home span {
  font-family: var(--mono);
  font-size: .62rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.chip-static { cursor: default; }
.chip-static:hover { background: var(--white); color: var(--green-dark); transform: none; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
  outline: 1px solid rgba(30,61,47,.15);
}
#service-map { height: 420px; width: 100%; background: var(--cream-2); }

.leaflet-tile-pane { filter: grayscale(35%) sepia(10%) saturate(85%) brightness(1.02); }
.leaflet-popup-content-wrapper { border-radius: 10px; font-family: 'Inter', sans-serif; }
.leaflet-popup-content { margin: 10px 14px; font-size: .9rem; color: var(--text); }
.leaflet-popup-content strong { font-family: 'Fraunces', serif; color: var(--green-dark); font-size: 1rem; }
.leaflet-control-attribution { font-size: 10px; background: rgba(247,245,239,.85) !important; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  background-image:
    linear-gradient(rgba(24, 40, 28, .78), rgba(24, 40, 28, .78)),
    url('images/work/cta-hydrangea.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 20px; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.cta-banner-inner .hero-cta { justify-content: center; }

/* ============ CONTACT ============ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.contact-list svg { color: var(--green); flex-shrink: 0; }
.hours-note { font-size: .9rem; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-dark);
}
.quote-form input,
.quote-form textarea {
  font: inherit;
  padding: 11px 13px;
  border: 1px solid rgba(30,61,47,.2);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.hidden-field { position: absolute; left: -9999px; }
.form-note { font-size: .9rem; color: var(--green); min-height: 1.2em; margin: 0; }
/* Failure state has to be visually distinct from success — a customer who
   skims past a grey "didn't send" line is a lost job. */
.form-note.is-error { color: #a8321f; font-weight: 500; }
.form-note.is-error a { text-decoration: underline; font-weight: 600; }
.quote-form button[type="submit"]:disabled { opacity: .65; cursor: not-allowed; }

/* ============ FOOTER ============ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.85); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding: 56px 24px 40px;
}
.footer-col h3 {
  color: var(--gold);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .92rem; color: rgba(255,255,255,.78); }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-tagline {
  margin: 16px 0 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  max-width: 34ch;
}
.footer-creds {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-cta { margin-top: 18px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-logo-card {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(184, 151, 90, .55);
  border-radius: 10px;
  padding: 12px 16px 8px;
}
.footer-logo { display: block; width: 110px; height: auto; }
.footer-copy { margin: 0; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============ FORM EXTRAS ============ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form select {
  font: inherit;
  padding: 11px 13px;
  border: 1px solid rgba(30,61,47,.2);
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
}
.quote-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.cta-sub { color: rgba(255,255,255,.85); margin: -8px 0 22px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1040px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 185px; }
  .gallery-tile.span-wide { grid-column: span 1; } /* 24 x 1 cell = 8 exact rows */
  .about-inner, .contact-inner, .strata-inner, .origin-inner { grid-template-columns: 1fr; }
  .strata-inner, .origin-inner { gap: 36px; }
  .about-photo { max-width: 480px; margin: 0 auto; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .area-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 8px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(30,61,47,.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease;
  }
  .site-nav.open { max-height: 400px; opacity: 1; pointer-events: auto; }
  .site-nav a {
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .site-nav.open a { opacity: 1; transform: translateY(0); }
  .site-nav.open a:nth-child(1) { transition-delay: .05s; }
  .site-nav.open a:nth-child(2) { transition-delay: .1s; }
  .site-nav.open a:nth-child(3) { transition-delay: .15s; }
  .site-nav.open a:nth-child(4) { transition-delay: .2s; }
  .site-nav.open a:nth-child(5) { transition-delay: .25s; }
  .site-nav.open a:nth-child(6) { transition-delay: .3s; }
  .site-nav a::after { display: none; }

  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }

  /* Compact header — a 128px bar eats too much of a phone screen */
  :root { --header-h: 76px; }
  .header-inner { min-height: 76px; padding-top: 10px; padding-bottom: 10px; }
  .site-header.is-scrolled .header-inner { min-height: 64px; }
  .brand-card { padding: 7px 13px 7px 8px; gap: 10px; box-shadow: 3px 3px 0 #142e23; margin-block: -10px; transform: translateY(10px); }
  .site-header.is-scrolled .brand-card { margin-block: -6px; transform: translateY(7px); padding: 5px 11px 5px 6px; }
  .brand:hover .brand-card { transform: translateY(10px); }
  .brand-mark-img { width: 58px; }
  .site-header.is-scrolled .brand-mark-img { width: 44px; }
  .wordmark-name { font-size: 1.18rem; letter-spacing: .1em; margin-right: -.1em; }
  .wordmark-sub { font-size: .53rem; letter-spacing: .3em; margin-right: -.3em; margin-top: 3px; }

  /* Tighter vertical rhythm throughout */
  .wrap { padding: 0 20px; }
  section { padding: 56px 0; }
  .section-sub { margin-bottom: 28px; }
  .section-title { font-size: clamp(1.45rem, 6.4vw, 1.9rem); }

  .hero { min-height: auto; }
  .hero-inner { padding: 26px 20px 48px; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.4rem); max-width: none; }
  .hero-sub { font-size: 1rem; }
  .hero-tagline { font-size: 1.1rem; padding-left: 12px; margin-bottom: .75em; }
  .hero-lines { margin-top: 24px; padding: 4px 16px; max-width: none; }
  .hero-lines li { font-size: .92rem; padding: 11px 0; gap: 11px; }
  .hero-creds { font-size: .72rem; letter-spacing: .06em; margin-top: 16px; }

  .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px 20px; }
  .trust-item strong { font-size: .92rem; }
  .trust-item span { font-size: .78rem; }

  /* Minimum 44px tap targets and no sub-11px body text on phones */
  .nav-toggle { width: 44px; height: 44px; }
  .btn { min-height: 46px; }
  .section-kicker { font-size: .72rem; }
  .card-more { font-size: .68rem; }
  .footer-creds { font-size: .68rem; }
  .footer-col li { font-size: .95rem; }
  .footer-col a, .contact-list a { display: inline-block; padding: 3px 0; }
  .wordmark-sub { font-size: .52rem; }

  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 22px 20px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 12px; }

  .process-steps { grid-template-columns: 1fr; gap: 14px; }
  .process-step { padding: 22px 20px; }

  .strata-points li { font-size: .9rem; padding: 9px 0 9px 24px; }

  /* Two-up gallery keeps the page from becoming an endless scroll */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .gallery-tile.span-wide { grid-column: span 2; } /* 32 cells = 16 exact rows */
  .gallery-tile figcaption {
    opacity: 1;
    transform: none;
    font-size: .72rem;
    padding: 24px 10px 9px;
    line-height: 1.3;
  }

  .about-photo { transform: none; }
  .about-photo img { border-width: 7px; }
  .about-points li { font-size: .93rem; }
  .origin-inner { grid-template-columns: 1fr; gap: 28px; }
  .origin-photo img { border-width: 7px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .footer-bottom { padding: 18px 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 22px 18px; }
  .cta-banner { padding: 64px 0; }
  #service-map { height: 320px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============ WIDESCREEN / 4K ============ */
/* Below ~1440px the 1140px container is right. On big monitors it leaves the
   header stranded in the middle, so the container and the logo scale up together. */
@media (min-width: 1440px) {
  :root { --max: 1320px; }
  .brand-mark-img { width: 124px; }
  .site-header.is-scrolled .brand-mark-img { width: 80px; }
  .wordmark-name { font-size: 2.3rem; }
  .wordmark-sub { font-size: .95rem; }
  .brand-card { padding: 15px 26px 15px 17px; gap: 19px; margin-block: -42px; transform: translateY(25px); }
  .brand:hover .brand-card { transform: translateY(22px) translateX(-2px); }
  .hero-inner { padding-top: 66px; }
}
@media (min-width: 1920px) {
  :root { --max: 1500px; }
  .brand-mark-img { width: 150px; }
  .site-header.is-scrolled .brand-mark-img { width: 92px; }
  .wordmark-name { font-size: 2.75rem; }
  .wordmark-sub { font-size: 1.12rem; }
  .brand-card { padding: 18px 30px 18px 20px; gap: 22px; margin-block: -50px; transform: translateY(30px); }
  .brand:hover .brand-card { transform: translateY(27px) translateX(-2px); }
  .site-nav { gap: 44px; }
  .site-nav a { font-size: 1.02rem; }
  .hero-inner { padding-top: 84px; }
}

/* Keep long-form copy readable when the container widens */
.about-inner p, .origin-copy p, .strata-copy p { max-width: 62ch; }


/* ============ FAQ ============ */
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green); }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p { margin: 0; font-size: .96rem; }

/* ============ BLOG (listing + posts) ============ */
/* Shared by blog/index.html and individual posts. Subpages reuse the main
   header/footer; these classes only cover what's unique to blog pages. */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: .3em; }
.page-hero .page-hero-sub { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0; font-size: 1.05rem; }
.page-hero .section-kicker { color: var(--gold); }
.page-hero .kicker-dash { color: rgba(255,255,255,.35); }

.breadcrumb {
  font-family: var(--mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  margin: 0 0 8px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--gold); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover {
  transform: translate(-3px, -6px);
  box-shadow: var(--shadow-hard);
  border-color: var(--green-dark);
}
.post-card-photo { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-dark); }
.post-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-photo img { transform: scale(1.05); }
.post-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.post-card h2 { font-size: 1.2rem; margin-bottom: 8px; }
.post-card p { font-size: .93rem; margin: 0 0 16px; flex: 1; }
.post-card .card-more { margin-top: 0; }

/* Individual post article */
.post-article { max-width: 760px; margin: 0 auto; }
.post-article .post-meta {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.post-article h2 { font-size: 1.5rem; margin-top: 1.6em; }
.post-article h3 { font-size: 1.15rem; margin-top: 1.4em; }
.post-article p, .post-article li { font-size: 1.02rem; line-height: 1.7; }
.post-article ul, .post-article ol { margin: 0 0 1.2em; padding-left: 22px; }
.post-article ul { list-style: disc; }
.post-article ol { list-style: decimal; }
.post-article li { margin-bottom: .45em; color: var(--text-soft); }
.post-figure { margin: 28px 0; }
.post-figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.post-figure figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.post-callout {
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 26px 0;
}
.post-callout p { margin: 0; font-size: .98rem; }
.post-cta {
  background: var(--green-dark);
  border-radius: var(--radius);
  color: #fff;
  padding: 30px 28px;
  margin-top: 44px;
  text-align: center;
}
.post-cta h2 { color: #fff; margin-top: 0; font-size: 1.35rem; }
.post-cta p { color: rgba(255,255,255,.82); }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 0 36px; }
  .faq-item summary { padding: 15px 18px; font-size: .98rem; }
  .faq-answer { padding: 0 18px 15px; }
}

/* Short desktop screens (1280x800, 1366x768 laptops): tighten the hero so the
   four trust cards still clear the fold. Taller monitors keep the roomier type. */
@media (min-width: 1024px) and (max-height: 880px) {
  /* smaller plaque overhang here so it doesn't sit on top of the eyebrow */
  .brand-card { margin-block: -30px; transform: translateY(12px); }
  .brand:hover .brand-card { transform: translateY(9px) translateX(-2px); }
  .brand-mark-img { width: 88px; }
  .hero-inner { padding-top: 30px; padding-bottom: 12px; }
  .hero h1 { font-size: clamp(1.95rem, 3.3vw, 2.7rem); }
  .hero-tagline { font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin-bottom: .7em; }
  .hero-sub { font-size: 1rem; }
  .hero-lines { margin-top: 20px; }
  .hero-lines li { padding: 8px 0; font-size: .92rem; }
  .hero-creds { margin-top: 12px; }
  .trust-inner { padding: 16px 24px; }
}
