/* ==========================================================================
   JM Garden Services — Editorial Garden Estate
   Aesthetic: refined, magazine-inspired, with characterful serif headlines.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --forest:        #1F3A2E;
  --forest-deep:   #15291F;
  --moss:          #2D4A2B;
  --sage:          #A8B89C;
  --sage-soft:     #C9D2BD;
  --parchment:     #F5EFE3;
  --cream:         #FAF7F0;
  --paper:         #FBF8F1;
  --charcoal:      #2A2A28;
  --ink:           #1B1B19;
  --copper:        #C46B3F;
  --copper-deep:   #A85530;
  --rule:          rgba(31, 58, 46, 0.14);
  --rule-strong:   rgba(31, 58, 46, 0.32);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", "Baskerville",
                  "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container:    1240px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-pad:  clamp(4.5rem, 10vw, 8rem);
  --radius:       6px;
  --radius-lg:    16px;

  /* Motion */
  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::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: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* Focus ring — visible, not ugly */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--forest);
  color: var(--parchment);
  padding: 12px 18px;
  z-index: 200;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

/* Grain overlay — subtle paper texture */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.22  0 0 0 0 0.18  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin: 0 0 1rem;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--copper);
}
.section-title--center { text-align: center; margin-inline: auto; max-width: 18ch; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: color-mix(in oklab, var(--charcoal) 80%, transparent);
  max-width: 60ch;
}

.hairline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--forest) 80%, transparent);
}

/* Numbered section heads — magazine-style */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 12, "SOFT" 100;
  font-size: 1.05rem;
  color: var(--copper);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  padding-left: 16px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--forest);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--copper);
  color: var(--parchment);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 22px -10px rgba(196, 107, 63, 0.55);
}
.btn-primary:hover { background: var(--copper-deep); }

.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(245, 239, 227, 0.4);
}
.btn-ghost:hover { background: rgba(245, 239, 227, 0.1); border-color: rgba(245, 239, 227, 0.7); }

.btn-call {
  background: var(--forest);
  color: var(--parchment);
  padding: 14px 48px;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 8px;
}
.btn-call:hover { background: var(--forest-deep); }
.btn-call svg { flex-shrink: 0; }

.btn-full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.4rem;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  font-weight: 500;
  color: var(--forest);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--copper); border-color: var(--copper); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 227, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { background: rgba(245, 239, 227, 0.95); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  /* Logo is on a white background — multiply blends it into the parchment */
  mix-blend-mode: multiply;
}
.brand--footer .brand-logo {
  background: var(--parchment);
  mix-blend-mode: normal;
  padding: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 0;
  font-size: 1.15rem;
  font-weight: 460;
  letter-spacing: -0.005em;
}
.brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  color: color-mix(in oklab, var(--forest) 70%, transparent);
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.primary-nav > ul {
  display: flex;
  gap: 1.6rem;
}
.primary-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-deep);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--copper); }
.primary-nav a:hover::after { transform: scaleX(1); }

/* Buttons inside the nav (Text Joe / Call) should not get the link underline */
.primary-nav a.btn::after,
.primary-nav a.btn-call::after { content: none; }
.primary-nav a.btn:hover,
.primary-nav a.btn-call:hover { color: var(--parchment); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1.5px;
  background: var(--forest-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: flex-end;
  color: var(--parchment);
  overflow: hidden;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: clamp(5rem, 12vw, 9rem);
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(21, 41, 31, 0.85), transparent 70%),
    linear-gradient(180deg, rgba(21, 41, 31, 0.25) 0%, rgba(21, 41, 31, 0.4) 60%, rgba(21, 41, 31, 0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
  color: rgba(245, 239, 227, 0.85);
  animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}
.hero-meta .hairline { color: rgba(245, 239, 227, 0.9); }
.hero-meta .dot { opacity: 0.6; }

.hero-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 320;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 1.6rem;
  text-wrap: balance;
  color: var(--parchment);
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--sage-soft);
}

.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  color: rgba(245, 239, 227, 0.88);
  margin: 0 0 2.2rem;
  animation: fadeUp 1s var(--ease-out) 0.35s both;
}
.hero-sub strong { color: var(--parchment); font-weight: 500; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.75);
  animation: fadeUp 1.2s var(--ease-out) 0.8s both;
}
.hero-scroll .line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(245, 239, 227, 0.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--parchment);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { left: -40%; }
  100% { left: 100%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- About ---------- */
.about { background: var(--parchment); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-copy p { max-width: 52ch; }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust {
  background: var(--cream);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.3s var(--ease);
}
.trust:hover { background: #fffaf0; }
.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--forest);
}
.trust h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 0;
  font-weight: 460;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--forest-deep);
}
.trust p {
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in oklab, var(--charcoal) 75%, transparent);
}

/* ---------- Services ---------- */
.services {
  background:
    linear-gradient(180deg, var(--parchment) 0%, var(--cream) 100%);
}
.services-intro {
  max-width: 60ch;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  counter-reset: service-counter;
}
.service {
  background: var(--cream);
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  counter-increment: service-counter;
}
.service::before {
  content: counter(service-counter, lower-roman) ".";
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 12, "SOFT" 100;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--copper);
  margin-bottom: 0.4rem;
  line-height: 1;
}
.service:hover { background: #fffaf0; }
.service:hover .service-icon { color: var(--copper); transform: translateY(-2px); }
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--forest);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  margin-bottom: 0.6rem;
}
.service h3 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 0;
  font-weight: 460;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0;
}
.service p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  color: color-mix(in oklab, var(--charcoal) 75%, transparent);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--forest-deep); color: var(--parchment); }
.gallery .section-title { color: var(--parchment); }
.gallery .section-title em { color: var(--sage-soft); }
.gallery .lede { color: rgba(245, 239, 227, 0.75); }
.gallery .section-num { color: var(--copper); }
.gallery .section-label { color: var(--sage-soft); }
.gallery .section-label::before { background: var(--sage-soft); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 3rem;
}
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 2; }

.gallery-btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--forest);
}
.gallery-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.92) saturate(1.02);
}
.gallery-btn:hover img { transform: scale(1.06); filter: brightness(1.05) saturate(1.1); }
.gallery-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,41,31,0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-btn:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote-mark {
  width: 30px;
  height: 30px;
  color: var(--sage);
  opacity: 0.8;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  font-weight: 380;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.005em;
  flex: 1;
}
.t-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 2px;
}
cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--forest-deep);
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
cite span {
  font-weight: 400;
  font-size: 0.82rem;
  color: color-mix(in oklab, var(--charcoal) 60%, transparent);
  margin-top: 2px;
}
.sample-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(196, 107, 63, 0.12);
  color: var(--copper-deep);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ---------- Service Area ---------- */
.area { background: var(--parchment); }
.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.area-grid > div:first-child .section-head { margin-bottom: 2rem; }

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.area-list li {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 0;
  font-weight: 380;
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--forest-deep);
  position: relative;
  padding-left: 22px;
  letter-spacing: -0.01em;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  margin-top: 1.5rem;
}

.contact-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.contact-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.big-link {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 0;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s var(--ease);
}
a.big-link:hover { color: var(--copper); }

/* Form */
.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--forest-deep) 80%, transparent);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  border-radius: 8px;
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 58, 46, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--copper-deep);
  background: rgba(196, 107, 63, 0.05);
}
.error {
  font-size: 0.82rem;
  color: var(--copper-deep);
  min-height: 1.1em;
  font-weight: 500;
}

.form-status {
  font-size: 0.92rem;
  color: var(--forest);
  margin: 0;
  min-height: 1.2em;
}
.form-status.is-error { color: var(--copper-deep); }
.form-note {
  font-size: 0.8rem;
  color: color-mix(in oklab, var(--charcoal) 60%, transparent);
  margin: 0;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(245, 239, 227, 0.78);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}
.brand--footer { color: var(--parchment); }
.brand--footer .brand-tag { color: rgba(168, 184, 156, 0.8); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 239, 227, 0.12);
}
.footer-line {
  margin-top: 1rem;
  max-width: 38ch;
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin: 0 0 1.2rem;
}
.footer-nav ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a,
.footer-contact a {
  color: rgba(245, 239, 227, 0.82);
  transition: color 0.2s var(--ease);
  font-size: 0.95rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--copper); }

.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom .small { opacity: 0.7; }
.footer-bottom p { margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(21, 41, 31, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox figure {
  max-width: min(1200px, 95vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.lightbox img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox figcaption {
  color: var(--parchment);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  max-width: 60ch;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--parchment);
  background: rgba(245, 239, 227, 0.08);
  border: 1px solid rgba(245, 239, 227, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(245, 239, 227, 0.18); transform: scale(1.05); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid,
  .area-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .trust-grid { margin-top: 1rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.gi-wide { grid-column: span 2; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  /* ---- Mobile nav ---- */

  /* Kill the header's backdrop-filter on mobile — it creates a containing
     block for descendant `position: fixed` elements, which was constraining
     the mobile menu to the header strip instead of the full viewport.
     A solid background works just as well at small sizes. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--parchment);
  }

  /* Hamburger lives outside the header's stacking context on mobile so it
     stays clickable above the open menu (to toggle it shut). */
  .nav-toggle {
    display: block;
    position: fixed;
    top: max(14px, env(safe-area-inset-top, 0px));
    right: 1rem;
    width: 44px;
    height: 44px;                /* WCAG / Apple HIG minimum tap target */
    z-index: 1100;
    background: transparent;
  }
  .nav-toggle span { left: 10px; }

  /* Full-viewport menu panel */
  .primary-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;             /* avoid the iOS Safari URL-bar jump */
    background: var(--parchment);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5.5rem 1.6rem 2rem;
    gap: 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition:
      opacity 0.22s var(--ease),
      transform 0.28s var(--ease),
      visibility 0s linear 0.28s;
    z-index: 1000;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition:
      opacity 0.22s var(--ease),
      transform 0.28s var(--ease),
      visibility 0s linear 0s;
  }

  /* Menu links */
  .primary-nav > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--rule);
  }
  .primary-nav > ul li {
    border-bottom: 1px solid var(--rule);
  }
  .primary-nav > ul a {
    display: block;
    padding: 1.4rem 0.4rem;       /* ~44px tap target with the font's line-height */
    font-family: var(--font-display);
    font-variation-settings: "opsz" 36, "SOFT" 0;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: left;
    color: var(--forest-deep);
  }
  .primary-nav > ul a:hover,
  .primary-nav > ul a:focus-visible { color: var(--copper); }
  .primary-nav > ul a::after { display: none; }

  /* Secondary CTAs at the bottom of the menu (phone + Facebook) */
  .primary-nav .btn-call {
    width: 100%;
    margin-top: auto;             /* pin to the bottom of the panel */
    padding: 16px 24px;
    justify-content: center;
  }
  /* Lock background scroll while the menu is open */
  body.nav-open { overflow: hidden; }

  /* Hide the grain overlay over the open menu (it darkens the panel
     and makes the parchment look muddy) */
  body.nav-open .grain { display: none; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-item.gi-wide,
  .gallery-item.gi-tall { grid-column: auto; grid-row: auto; }

  .area-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }

  .hero { min-height: 88vh; align-items: center; }
  .hero-scroll { display: none; }

  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
}

@media (max-width: 480px) {
  .brand-tag { display: none; }
  .brand-name { font-size: 1.05rem; }
}

/* ---------- Print ---------- */
@media print {
  .grain, .nav-toggle, .hero-scroll, .lightbox, .site-header { display: none; }
  .hero { color: var(--charcoal); }
  .hero-overlay { display: none; }
}

/* ==========================================================================
   New components for the verified-content rewrite
   ========================================================================== */

/* Inline links inside paragraphs */
.inline-link {
  color: var(--forest);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.inline-link:hover { color: var(--copper); border-color: var(--copper); }

/* 4-column services grid (used in the verified-content rewrite) */
.services-grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .services-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid--four { grid-template-columns: 1fr; }
}

/* Gallery attribution line under the grid */
.gallery-attr {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 239, 227, 0.7);
  text-align: center;
  letter-spacing: -0.005em;
}
.gallery-attr a {
  color: var(--sage-soft);
  border-bottom: 1px solid rgba(168, 184, 156, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease);
}
.gallery-attr a:hover { color: var(--copper); }

/* Reviews — single verified card replacing fake testimonials */
.reviews { background: var(--parchment); }
.reviews-card {
  margin-top: 1rem;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(168, 184, 156, 0.18), transparent 70%),
    var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-card::before,
.reviews-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 107, 63, 0.07), transparent 70%);
  pointer-events: none;
}
.reviews-card::before { top: -120px; left: -80px; }
.reviews-card::after { bottom: -140px; right: -80px; background: radial-gradient(circle, rgba(168, 184, 156, 0.18), transparent 70%); }
.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.stars-big {
  color: var(--copper);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 6px;
  line-height: 1;
}
.reviews-headline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 360;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  line-height: 1.05;
}
.reviews-sub {
  font-size: 1rem;
  color: color-mix(in oklab, var(--charcoal) 78%, transparent);
  margin: 0;
  max-width: 40ch;
  line-height: 1.5;
}
.reviews-sub strong { color: var(--forest-deep); }
.reviews-card .btn {
  position: relative;
  z-index: 1;
  margin-top: 0.4rem;
}

/* Contact — simplified two-CTA layout */
.contact-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.contact-simple .section-title { margin-bottom: 0.4rem; }
.contact-simple .lede { max-width: 56ch; }

.contact-actions {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
  max-width: 720px;
}
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1.8rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-action:hover {
  border-color: var(--copper);
  background: #fffaf0;
  transform: translateY(-2px);
}
.contact-action .big-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.contact-action:hover .big-link { color: var(--copper); }

@media (max-width: 720px) {
  .contact-actions { grid-template-columns: 1fr; max-width: none; }
  .stars-big { letter-spacing: 4px; }
}

/* Phone numbers, dates and the like — keep on a single line */
.nowrap { white-space: nowrap; }

/* Helper used inside the primary nav: a Facebook link that's hidden on
   desktop and only shown as a secondary CTA inside the open mobile menu. */
.mobile-only-link { display: none; }
@media (max-width: 720px) {
  .mobile-only-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 14px 24px;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    background: var(--cream);
    color: var(--forest-deep);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  }
  .mobile-only-link:hover,
  .mobile-only-link:focus-visible {
    color: var(--copper);
    border-color: var(--copper);
    background: #fffaf0;
  }
}

/* Service-area note in the Contact section */
.service-area-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(168, 184, 156, 0.14);
  border-left: 2px solid var(--sage);
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: color-mix(in oklab, var(--charcoal) 82%, transparent);
  max-width: 56ch;
}
.service-area-note .hairline {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

