/* ==========================================================================
   Bradley's Gardening
   Direction: nature-distilled (earthy, hand-made warmth) + trade/industrial
   display type. Barlow Condensed headings read as trade signage, not
   startup landing-page sans. Paper-grain texture + asymmetric grid.
   ========================================================================== */

:root {
  /* nature-distilled palette, re-tuned for 4.5:1 body contrast */
  --leaf:      #2E4A22;   /* deep leaf green - primary, headings */
  --leaf-lo:   #1B2E14;   /* darker, for depth */
  --grass:     #4A7C3A;   /* mid green - accents */
  --clay:      #B4531F;   /* terracotta - CTA / urgency (4.6:1 on cream) */
  --clay-lo:   #8F3F16;   /* hover */
  --earth:     #6B4423;   /* warm brown - rules, borders */
  --sand:      #E8DFC9;   /* sand beige - surfaces */
  --cream:     #F6F1E3;   /* soft cream - page bg */
  --cream-hi:  #FCF9F0;   /* raised surface */
  --ink:       #1C1A16;   /* near-black brown text (14.2:1 on cream) */
  --ink-2:     #4A453C;   /* secondary text (8.1:1) */
  --ink-3:     #6E675C;   /* tertiary / meta (5.2:1) */

  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --r: 3px;              /* sharp-ish: this is a trade, not a spa */
  --shadow: 0 2px 0 rgba(28,26,22,.10), 0 12px 28px -14px rgba(28,26,22,.34);
  --shadow-lift: 0 3px 0 rgba(28,26,22,.14), 0 22px 42px -18px rgba(28,26,22,.42);
  --dur: 180ms;
  --ease: cubic-bezier(.2,.7,.3,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  /* paper grain: two offset radial dot grids, extremely low alpha */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(107,68,35,.055) 1px, transparent 0),
    radial-gradient(circle at 3px 3px, rgba(107,68,35,.035) 1px, transparent 0);
  background-size: 7px 7px, 11px 11px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--leaf); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r) 0;
  font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===================== TICKER (service area marquee) ===================== */

.ticker {
  background: var(--leaf-lo);
  color: var(--sand);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 2px solid var(--clay);
  padding: 7px 0;
}
.ticker-track {
  display: flex; gap: 26px; align-items: center;
  white-space: nowrap; width: max-content;
  animation: slide 44s linear infinite;
}
.ticker-track .sep { color: var(--clay); font-size: 11px; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* ===================== HEADER ===================== */

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,241,227,.94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--earth);
}
.hdr-in {
  display: flex; align-items: center; gap: 20px;
  min-height: 72px; padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--leaf); flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b {
  font-family: var(--f-display); font-size: 25px; font-weight: 700;
  letter-spacing: -.01em; text-transform: uppercase;
}
.brand-txt em {
  font-style: normal; font-family: var(--f-display);
  font-size: 13px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--clay); margin-top: 2px;
}

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  font-family: var(--f-display); font-size: 17px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-2); text-decoration: none;
  padding: 9px 13px; border-radius: var(--r);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:hover { color: var(--leaf); background: rgba(74,124,58,.11); }
.nav a[aria-current="page"] { color: var(--clay); background: rgba(180,83,31,.10); }

.call-now {
  display: flex; align-items: center; gap: 9px; flex-shrink: 0;
  background: var(--clay); color: #fff; text-decoration: none;
  padding: 9px 16px; border-radius: var(--r);
  box-shadow: 0 2px 0 var(--clay-lo);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.call-now:hover { background: var(--clay-lo); transform: translateY(-1px); box-shadow: 0 3px 0 #6f3010; }
.call-now:active { transform: translateY(1px); box-shadow: 0 1px 0 #6f3010; }
.call-now svg { width: 19px; height: 19px; flex-shrink: 0; }
.call-now span { display: flex; flex-direction: column; line-height: 1.12; }
.call-now i {
  font-style: normal; font-family: var(--f-display); font-size: 11px;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .88;
}
.call-now span { font-family: var(--f-display); font-size: 18px; font-weight: 700; letter-spacing: .01em; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: transparent; border: 2px solid var(--earth); border-radius: var(--r);
  cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--leaf); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 24px;
  font-family: var(--f-display); font-size: 18px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; border-radius: var(--r);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-solid {
  background: var(--clay); color: #fff;
  box-shadow: 0 3px 0 var(--clay-lo);
}
.btn-solid:hover { background: var(--clay-lo); transform: translateY(-1px); box-shadow: 0 4px 0 #6f3010; }
.btn-solid:active { transform: translateY(2px); box-shadow: 0 1px 0 #6f3010; }
.btn-line {
  background: transparent; color: var(--leaf); border-color: var(--leaf);
  box-shadow: 0 3px 0 var(--leaf);
}
.btn-line:hover { background: var(--leaf); color: var(--cream); transform: translateY(-1px); box-shadow: 0 4px 0 var(--leaf-lo); }
.btn-line:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--leaf-lo); }
.btn-light { background: var(--cream-hi); color: var(--leaf); box-shadow: 0 3px 0 rgba(28,26,22,.22); }
.btn-light:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 4px 0 rgba(28,26,22,.26); }
.btn-light:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(28,26,22,.26); }
.btn.big { min-height: 56px; padding: 15px 30px; font-size: 20px; }

/* ===================== HERO (asymmetric 1.12fr / .88fr) ===================== */

.hero { padding: 62px 0 56px; position: relative; overflow: hidden; }
.hero::after {
  /* faint mowing-stripe motif, bottom-right, purely decorative */
  content: ''; position: absolute; right: -80px; bottom: -60px;
  width: 420px; height: 420px; pointer-events: none; opacity: .30;
  background: repeating-linear-gradient(115deg, transparent 0 13px, rgba(74,124,58,.13) 13px 26px);
  transform: rotate(-7deg);
}
.hero-in {
  display: grid; grid-template-columns: 1.12fr .88fr;
  gap: 52px; align-items: center; position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2);
  background: var(--cream-hi); border: 2px solid var(--earth);
  padding: 6px 14px; border-radius: 100px; margin: 0 0 22px;
}
.stars { color: var(--clay); letter-spacing: .1em; font-size: 14px; }
.stars.big { display: block; font-size: 19px; margin-bottom: 12px; }

h1 {
  font-family: var(--f-display); font-size: clamp(2.9rem, 6.4vw, 5.15rem);
  font-weight: 700; line-height: .93; letter-spacing: -.018em;
  text-transform: uppercase; color: var(--leaf);
  margin: 0 0 20px;
}
h1 em {
  display: block; font-style: normal; color: var(--clay);
  font-size: .53em; letter-spacing: .005em; line-height: 1.06; margin-top: .18em;
  text-transform: none;
}

.lede { font-size: 19px; line-height: 1.62; color: var(--ink-2); max-width: 54ch; margin: 0 0 28px; }
.lede.tight { font-size: 17px; margin-bottom: 24px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 30px; }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hero-points li {
  position: relative; padding-left: 27px;
  font-size: 15.5px; color: var(--ink-2);
}
.hero-points li::before {
  content: ''; position: absolute; left: 2px; top: .52em;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--clay); border-bottom: 2.5px solid var(--clay);
  transform: rotate(-45deg);
}

.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%; border: 3px solid var(--earth); border-radius: var(--r);
  box-shadow: var(--shadow-lift);
}
.hero-photo figcaption {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  text-align: center; margin-top: 12px;
}

/* ===================== FACT BAND ===================== */

.band { background: var(--leaf); color: var(--cream); border-block: 2px solid var(--leaf-lo); }
.band-in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 30px;
}
.band-item { text-align: center; padding: 6px 10px; border-right: 1px solid rgba(232,223,201,.22); }
.band-item:last-child { border-right: 0; }
.band-item b {
  display: block; font-family: var(--f-display); font-size: 46px; font-weight: 700;
  line-height: 1; letter-spacing: -.015em; color: #fff;
}
.band-item .half { font-size: .52em; color: var(--clay); vertical-align: .12em; }
.band-item span {
  display: block; font-family: var(--f-display); font-size: 13px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--sand); margin-top: 7px;
}

/* ===================== SECTIONS ===================== */

.sec { padding: 66px 0; }
.sec-tight { padding: 52px 0; }

.kicker {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  letter-spacing: .21em; text-transform: uppercase; color: var(--clay);
  margin: 0 0 10px; display: flex; align-items: center; gap: 11px;
}
.kicker::after { content: ''; flex: 1; height: 2px; background: rgba(180,83,31,.30); max-width: 110px; }

h2 {
  font-family: var(--f-display); font-size: clamp(2rem, 3.9vw, 3.05rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -.012em;
  text-transform: uppercase; color: var(--leaf);
  margin: 0 0 18px; max-width: 19ch;
}
.sec h2 { margin-bottom: 30px; }

/* ===================== SERVICE GRID (asymmetric bento) ===================== */

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-radius: var(--r); padding: 22px 20px 20px;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 0 rgba(28,26,22,.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.svc:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lift);
  border-color: var(--grass); background: #fff;
}
.svc-ico {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--leaf); color: var(--sand);
  margin-bottom: 4px; transition: background var(--dur) var(--ease);
}
.svc:hover .svc-ico { background: var(--clay); }
.svc-ico svg { width: 22px; height: 22px; }
.svc b {
  font-family: var(--f-display); font-size: 21px; font-weight: 700;
  letter-spacing: .012em; text-transform: uppercase; color: var(--leaf);
  line-height: 1.1;
}
.svc span { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

.more { margin: 26px 0 0; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 17px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--clay); text-decoration: none;
  border-bottom: 2px solid rgba(180,83,31,.34); padding-bottom: 3px;
  transition: border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.arrow-link:hover { border-color: var(--clay); gap: 13px; }

/* ===================== PHOTO STRIP ===================== */

.strip {
  display: grid; grid-template-columns: 1fr 1fr .78fr .78fr; gap: 12px;
  align-items: start;
}
.strip img {
  width: 100%; border: 3px solid var(--earth); border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.strip img:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* ===================== SPLIT (reasons + quote) ===================== */

.split { display: grid; grid-template-columns: 1.18fr .82fr; gap: 48px; align-items: start; }

.reasons { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.reasons li {
  padding-left: 20px; border-left: 4px solid var(--grass);
}
.reasons b {
  display: block; font-family: var(--f-display); font-size: 21px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .015em; color: var(--leaf); line-height: 1.14;
  margin-bottom: 4px;
}
.reasons span { font-size: 15.5px; line-height: 1.58; color: var(--ink-2); }

.quote-card {
  background: var(--leaf-lo); color: var(--sand);
  border: 3px solid var(--leaf); border-radius: var(--r);
  padding: 30px 26px; box-shadow: var(--shadow-lift);
  position: sticky; top: 92px;
}
.quote-card .stars { color: var(--clay); }
.quote-card blockquote {
  margin: 0 0 15px; font-size: 17px; line-height: 1.62; color: #fff;
  font-style: italic;
}
.quote-card cite {
  font-style: normal; font-family: var(--f-display); font-size: 14px;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--grass);
}
.quote-card hr { border: 0; border-top: 1px solid rgba(232,223,201,.24); margin: 20px 0 16px; }
.quote-card-foot { font-size: 14.5px; line-height: 1.55; color: var(--sand); margin: 0; }
.quote-card-foot b { color: #fff; }

/* ===================== STEPS ===================== */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps li {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-radius: var(--r); padding: 22px 20px;
  box-shadow: 0 2px 0 rgba(28,26,22,.08);
}
.step-n {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clay); color: #fff;
  font-family: var(--f-display); font-size: 24px; font-weight: 700; line-height: 1;
}
.steps b {
  display: block; font-family: var(--f-display); font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .012em; color: var(--leaf);
  line-height: 1.14; margin-bottom: 5px;
}
.steps div span { font-size: 15px; line-height: 1.55; color: var(--ink-2); }

/* ===================== FAQ ===================== */

.faq-sec { background: var(--sand); border-block: 2px solid var(--earth); }
.faq { display: grid; gap: 0; max-width: 900px; }
.faq details {
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-bottom-width: 0;
}
.faq details:first-of-type { border-radius: var(--r) var(--r) 0 0; }
.faq details:last-of-type { border-bottom-width: 2px; border-radius: 0 0 var(--r) var(--r); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  font-family: var(--f-display); font-size: 20px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .018em; color: var(--leaf);
  padding: 18px 52px 18px 20px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(74,124,58,.09); }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 13px; height: 13px; margin-top: -8px;
  border-right: 2.5px solid var(--clay); border-bottom: 2.5px solid var(--clay);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details[open] summary { background: rgba(74,124,58,.09); }
.faq details div { padding: 0 20px 20px; }
.faq details p { margin: 0; font-size: 16px; line-height: 1.62; color: var(--ink-2); max-width: 74ch; }

/* ===================== CTA BAND ===================== */

.cta-band {
  background: var(--clay); color: #fff;
  border-top: 3px solid var(--clay-lo);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.045) 0 12px, transparent 12px 24px);
}
.cta-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; padding-block: 46px; flex-wrap: wrap;
}
.cta-in h2 { color: #fff; margin: 0 0 8px; max-width: 22ch; }
.cta-in p { margin: 0; font-size: 17px; line-height: 1.58; max-width: 52ch; color: rgba(255,255,255,.94); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btns .btn-solid { background: var(--leaf); box-shadow: 0 3px 0 var(--leaf-lo); }
.cta-btns .btn-solid:hover { background: var(--leaf-lo); box-shadow: 0 4px 0 #0F1D0B; }
.cta-btns .btn-solid:active { box-shadow: 0 1px 0 #0F1D0B; }

/* ===================== FOOTER ===================== */

.ftr {
  background: var(--leaf-lo); color: var(--sand);
  border-top: 3px solid var(--clay);
  padding: 52px 0 26px;
}
.ftr .brand { color: var(--sand); }
.ftr .brand-mark { color: var(--sand); }
.ftr-grid {
  display: grid; grid-template-columns: 1.6fr .8fr .9fr 1.25fr;
  gap: 36px; padding-bottom: 34px;
  border-bottom: 1px solid rgba(232,223,201,.20);
}
.ftr-brand p { font-size: 15px; line-height: 1.6; color: var(--sand); margin: 15px 0 0; max-width: 42ch; }
.ftr-brand .abn {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .1em; margin-top: 12px; color: var(--grass);
}
.ftr-col h3 {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--grass);
  margin: 0 0 14px;
}
.ftr-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr-col a {
  font-size: 15px; color: var(--sand); text-decoration: none;
  border-bottom: 1px solid transparent; transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ftr-col a:hover { color: #fff; border-bottom-color: var(--clay); }
.ftr-call {
  display: block; font-family: var(--f-display); font-size: 33px; font-weight: 700;
  letter-spacing: .005em; color: #fff !important; text-decoration: none;
  margin-bottom: 12px; transition: color var(--dur) var(--ease);
}
.ftr-call:hover { color: var(--clay) !important; }
.ftr-addr { font-size: 15px; line-height: 1.55; color: var(--sand); margin: 0 0 12px; }
.ftr-map {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--grass) !important;
  text-decoration: none; margin-bottom: 14px;
  border-bottom: 1px solid rgba(74,124,58,.4) !important; padding-bottom: 2px;
  transition: color var(--dur) var(--ease);
}
.ftr-map:hover { color: #fff !important; }
.ftr-map svg { width: 17px; height: 17px; }
.ftr-hours {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .06em; color: var(--sand); margin: 0 0 10px;
}
.ftr-hours span { color: var(--ink-3); font-weight: 400; letter-spacing: 0; text-transform: none; }
.ftr-note { font-size: 14px; line-height: 1.5; color: var(--ink-3); margin: 0; max-width: 34ch; }

.ftr-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 22px;
}
.ftr-bottom p { margin: 0; font-size: 13.5px; color: var(--ink-3); }

/* ===================== STICKY CALL (mobile) ===================== */

.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(27,46,20,.96); backdrop-filter: blur(6px);
  border-top: 2px solid var(--clay);
}
.sticky-call .btn { width: 100%; }

/* ===================== LIGHTBOX ===================== */

.lb {
  position: fixed; inset: 0; z-index: 300;
  display: none; place-items: center;
  background: rgba(27,46,20,.95); padding: 24px;
}
.lb.open { display: grid; }
.lb figure { margin: 0; max-width: min(1000px, 100%); }
.lb img {
  max-width: 100%; max-height: 78vh; margin-inline: auto;
  border: 3px solid var(--sand); border-radius: var(--r);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.lb figcaption {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sand);
  text-align: center; margin-top: 15px;
}
.lb-x {
  position: absolute; top: 18px; right: 18px;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--sand); color: var(--leaf-lo);
  border: 0; border-radius: 50%; font-size: 27px; line-height: 1;
  cursor: pointer; transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lb-x:hover { background: var(--clay); color: #fff; transform: rotate(90deg); }

/* ===================== FORMS ===================== */

.form-card {
  background: var(--cream-hi); border: 3px solid var(--earth);
  border-radius: var(--r); padding: 32px 28px; box-shadow: var(--shadow-lift);
}
.field { margin-bottom: 17px; }
.field label {
  display: block; font-family: var(--f-display); font-size: 14px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--leaf);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px;
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: #fff; border: 2px solid var(--earth); border-radius: var(--r);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--grass);
  box-shadow: 0 0 0 3px rgba(74,124,58,.18);
  outline: none;
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid {
  border-color: #A32B15; background: #FDF2EF;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hint { font-size: 13.5px; color: var(--ink-3); margin: 6px 0 0; }
.form-note {
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
  background: rgba(74,124,58,.09); border-left: 4px solid var(--grass);
  padding: 12px 15px; border-radius: 0 var(--r) var(--r) 0; margin: 0 0 20px;
}
.form-status {
  margin-top: 16px; padding: 15px 17px; border-radius: var(--r);
  font-size: 15.5px; line-height: 1.55; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(74,124,58,.14); border: 2px solid var(--grass); color: var(--leaf-lo); }
.form-status.err { background: #FDF2EF; border: 2px solid #A32B15; color: #7A200F; }

/* ===================== UTILITY ===================== */

.page-head { padding: 48px 0 36px; background: var(--sand); border-bottom: 2px solid var(--earth); }
.page-head h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); margin-bottom: 12px; }
.page-head p { font-size: 18px; color: var(--ink-2); max-width: 62ch; margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.side-sticky { position: sticky; top: 92px; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.info-list li { padding-left: 20px; border-left: 4px solid var(--grass); }
.info-list b {
  display: block; font-family: var(--f-display); font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .015em; color: var(--leaf); line-height: 1.14; margin-bottom: 3px;
}
.info-list span { font-size: 15.5px; line-height: 1.58; color: var(--ink-2); }

.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gal-grid a {
  display: block; border: 3px solid var(--earth); border-radius: var(--r);
  overflow: hidden; background: var(--cream-hi); box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.gal-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--grass); }
.gal-grid img { width: 100%; }
.gal-grid figcaption, .gal-grid .cap {
  font-family: var(--f-display); font-size: 14px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-2);
  padding: 12px 15px; border-top: 2px solid var(--earth);
}
.gal-grid figure { margin: 0; }

.hours-tbl { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-tbl th, .hours-tbl td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(107,68,35,.22); }
.hours-tbl th {
  font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--leaf); width: 40%;
}
.hours-tbl td { font-size: 15.5px; color: var(--ink-2); }

.rev-list { display: grid; gap: 14px; }
.rev {
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-left-width: 5px; border-radius: var(--r); padding: 19px 21px;
}
.rev blockquote { margin: 0 0 9px; font-size: 16px; line-height: 1.6; color: var(--ink); font-style: italic; }
.rev cite {
  font-style: normal; font-family: var(--f-display); font-size: 14px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.rev .stars { color: var(--clay); display: block; margin-bottom: 7px; font-size: 15px; letter-spacing: .1em; }

.callout {
  background: var(--leaf); color: var(--sand);
  border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow);
}
.callout h3 {
  font-family: var(--f-display); font-size: 25px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .012em; color: #fff; margin: 0 0 10px; line-height: 1.1;
}
.callout p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.6; color: var(--sand); }
.callout .btn { width: 100%; }

.two-col-narrow { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: start; }

/* ===================== SECONDARY PAGE BLOCKS ===================== */

/* --- services.html: jump nav --- */
.svc-jump {
  display: flex; align-items: flex-start; gap: 18px;
  padding-block: 20px;
  background: var(--cream-hi);
  border-bottom: 2px solid var(--earth);
}
.svc-jump-lbl {
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--ink-3);
  margin: 5px 0 0; flex-shrink: 0;
}
.svc-jump-links { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-jump-links a {
  display: inline-block; font-family: var(--f-display); font-size: 15px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--leaf); text-decoration: none;
  background: var(--sand); border: 2px solid var(--earth);
  border-radius: 100px; padding: 5px 13px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.svc-jump-links a:hover {
  background: var(--leaf); color: var(--sand); border-color: var(--leaf);
  transform: translateY(-1px);
}

/* --- services.html: alternating service blocks --- */
.svc-block { border-bottom: 2px solid var(--earth); }
.svc-block:nth-of-type(even) { background: var(--sand); }
.svc-block-in {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 46px; padding-block: 52px; align-items: start;
}
.svc-block-head h2 { margin-bottom: 14px; }
.svc-block-body { display: grid; gap: 22px; }

.tick { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tick li {
  position: relative; padding-left: 30px;
  font-size: 16px; line-height: 1.56; color: var(--ink-2);
}
.tick li::before {
  content: ''; position: absolute; left: 3px; top: .48em;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--clay); border-bottom: 2.5px solid var(--clay);
  transform: rotate(-45deg);
}

.callout.alt { background: var(--sand); color: var(--ink-2); border: 2px solid var(--earth); }
.callout.alt h3 { color: var(--leaf); }
.callout.alt p { color: var(--ink-2); }

/* --- about.html: stat grid --- */
.fact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 28px;
}
.fact-grid > div {
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-radius: var(--r); padding: 15px 12px; text-align: center;
  box-shadow: 0 2px 0 rgba(28,26,22,.07);
}
.fact-grid b {
  display: block; font-family: var(--f-display); font-size: 32px; font-weight: 700;
  line-height: 1; color: var(--leaf); letter-spacing: -.01em;
}
.fact-grid span {
  display: block; font-family: var(--f-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px;
}

/* --- gallery.html: photo note --- */
.photo-note {
  font-size: 14px; line-height: 1.58; color: var(--ink-3);
  max-width: 72ch; margin: 24px 0 0;
  border-left: 3px solid rgba(107,68,35,.34); padding-left: 14px;
}
.gal-grid a, .gal-grid figure { background: var(--cream-hi); }
.gal-grid figure { border: 3px solid var(--earth); border-radius: var(--r); overflow: hidden; }
.gal-grid figure a { border: 0; border-radius: 0; box-shadow: none; }
.gal-grid figure a:hover { transform: none; box-shadow: none; }
.gal-grid img { transition: transform var(--dur) var(--ease); }
.gal-grid figure:hover img { transform: scale(1.03); }

/* --- contact.html: info panel --- */
.info-panel {
  background: var(--cream-hi); border: 2px solid var(--earth);
  border-radius: var(--r); padding: 24px 22px; margin-top: 18px;
  box-shadow: var(--shadow);
}
.info-panel h3 {
  font-family: var(--f-display); font-size: 19px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--leaf);
  margin: 0 0 9px; padding-bottom: 7px; border-bottom: 2px solid rgba(107,68,35,.26);
}
.info-panel h3 + h3 { margin-top: 22px; }
.ip-line { font-size: 16px; line-height: 1.5; color: var(--ink); margin: 0 0 6px; }
.ip-sub { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin: 0 0 12px; }
.field .opt {
  font-family: var(--f-body); font-size: 12.5px; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--ink-3);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1040px) {
  .hero-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 640px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .quote-card { position: static; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-block-in { grid-template-columns: 1fr; gap: 26px; }
  .svc-jump { flex-direction: column; gap: 10px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .two-col, .two-col-narrow { grid-template-columns: 1fr; gap: 32px; }
  .side-sticky { position: static; }
}

@media (max-width: 880px) {
  body { font-size: 16.5px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin-left: 0;
    background: var(--cream-hi); border-bottom: 2px solid var(--earth);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 22px; border-radius: 0; border-bottom: 1px solid rgba(107,68,35,.16); font-size: 19px; }
  .call-now { display: none; }
  .burger { display: flex; }
  .sticky-call { display: block; }
  body { padding-bottom: 76px; }
  .band-in { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .band-item:nth-child(2) { border-right: 0; }
  .band-item b { font-size: 40px; }
  .gal-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ftr-bottom { flex-direction: column; gap: 10px; }
  h2 { max-width: none; }
  .faq summary { font-size: 18px; padding: 16px 46px 16px 17px; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: 17px; }
  .sec { padding: 46px 0; }
  .sec-tight { padding: 38px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
  .band-item b { font-size: 34px; }
  .band-item span { font-size: 11.5px; letter-spacing: .13em; }
  .ftr-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .cta-btns { width: 100%; }
  .cta-btns .btn { width: 100%; }
  .form-card { padding: 24px 18px; }
  .ftr-call { font-size: 29px; }
}

/* 390px guard: nothing may exceed the viewport */
@media (max-width: 420px) {
  .band-item { padding: 6px 4px; }
  .band-item b { font-size: 30px; }
  .cta-in { padding-block: 34px; }
  .quote-card { padding: 24px 19px; }
}

@media print {
  .ticker, .hdr, .sticky-call, .cta-band, .lb, .skip { display: none !important; }
  body { background: #fff; }
}
