/* ==========================================================================
   Paintbrush Landscaping
   Aesthetic: warm, hand-painted editorial — built around the brand's
   watercolor illustrations and the Indian Paintbrush wildflower.
   Type: Fraunces (display, soft serif) + Hanken Grotesk (body).
   No framework. No CDN. Hand-authored design system.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces — watercolor paper */
  --paper:      #f7f1e4;
  --paper-deep: #efe7d4;
  --cream:      #fcf9f1;
  --card:       #fffdf8;

  /* Botanical palette pulled from the illustrations */
  --pine:       #2f5135;   /* deep forest green — primary */
  --pine-dk:    #213a26;
  --pine-soft:  #5d7a5a;
  --moss:       #6f7d4a;   /* dry-grass olive */
  --sage:       #e7ebdd;   /* pale wash */

  /* Paintbrush red (the wildflower / logo wordmark) — sharp accent */
  --brush:      #bb392c;
  --brush-dk:   #93291f;
  --coral:      #e0543a;

  /* Wildflower gold */
  --ochre:      #d29a37;
  --ochre-soft: #f0d9a3;

  /* Ink */
  --ink:        #2a281f;
  --ink-soft:   #5b574a;
  --ink-faint:  #8d8773;

  --line:       rgba(42, 40, 31, 0.14);
  --line-soft:  rgba(42, 40, 31, 0.08);

  --shadow-sm:  0 1px 2px rgba(33, 58, 38, 0.06), 0 2px 8px rgba(33, 58, 38, 0.05);
  --shadow-md:  0 8px 24px rgba(33, 58, 38, 0.10), 0 2px 6px rgba(33, 58, 38, 0.06);
  --shadow-lg:  0 24px 60px rgba(33, 58, 38, 0.18), 0 6px 16px rgba(33, 58, 38, 0.08);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius:    14px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 124px;
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Paper grain — subtle texture over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ochre-soft); color: var(--pine-dk); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--pine-dk);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.6rem); font-weight: 420; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.4rem; font-weight: 520; letter-spacing: -0.01em; }

.display-italic { font-style: italic; color: var(--brush); font-weight: 420; }

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

/* Eyebrow label with a small painted dash */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brush);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brush), var(--coral));
}
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.92rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.35s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--pine);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(33, 58, 38, 0.22);
}
.btn-primary:hover { background: var(--pine-dk); box-shadow: var(--shadow-lg); }

.btn-accent {
  background: var(--brush);
  color: #fff;
  box-shadow: 0 6px 18px rgba(187, 57, 44, 0.28);
}
.btn-accent:hover { background: var(--brush-dk); }

.btn-outline {
  background: transparent;
  color: var(--pine-dk);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--pine); background: rgba(47, 81, 53, 0.04); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 228, 0.72);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(247, 241, 228, 0.92);
  box-shadow: 0 2px 20px rgba(33, 58, 38, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand img { height: 92px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--pine-dk);
  position: relative;
  padding-block: 0.25rem;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1.5px;
  background: var(--brush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { padding: 0.62rem 1.4rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--pine-dk);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(247, 241, 228, 0.97);
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 480;
  color: var(--pine-dk);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 0.7rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::after { /* soft botanical wash behind everything */
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 80vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 50% 50%,
              rgba(210, 154, 55, 0.16), rgba(210, 154, 55, 0) 62%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.hero-copy { max-width: 36rem; }
.hero h1 { margin-top: 1.4rem; }
.hero-lede {
  margin-top: 1.6rem;
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 32rem;
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-trust {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.hero-trust svg { color: var(--pine); flex: none; }

/* Painting-mat image frame */
.hero-art {
  position: relative;
  justify-self: end;
  max-width: 480px;
  width: 100%;
}
.art-frame {
  position: relative;
  background: var(--card);
  padding: 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.art-frame img { border-radius: 3px; width: 100%; }
.hero-art::before { /* offset color block, editorial depth */
  content: "";
  position: absolute;
  inset: 26px -22px -26px 26px;
  background: var(--sage);
  border: 1.5px solid var(--pine-soft);
  border-radius: 8px;
  z-index: 0;
}
/* floating badge */
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 34px;
  z-index: 2;
  background: var(--card);
  border-radius: 999px;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--pine-dk);
}
.hero-badge .dot {
  width: 38px; height: 38px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pine);
  color: var(--cream);
}
.hero-badge .dot svg { width: 20px; height: 20px; }

/* ---------- Marquee / trust strip ---------- */
.areas {
  border-block: 1px solid var(--line-soft);
  background: var(--paper-deep);
}
.areas-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  padding-block: 1.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--pine-dk);
}
.areas-inner span { display: inline-flex; align-items: center; gap: 1.6rem; }
.areas-inner .sep { color: var(--ochre); font-size: 0.7rem; }

/* ---------- Section header ---------- */
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1.1rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.1rem; }

/* ---------- Services ---------- */
.services { background: var(--cream); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.service {
  background: var(--card);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background-color 0.4s var(--ease);
}
.service:hover { background: var(--sage); }
.service .icon {
  margin: 0 0 1.3rem;
  width: 46px; height: 46px;
  color: var(--pine);
}
.service .icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.service h3 { color: var(--pine-dk); margin-bottom: 0.6rem; }
.service p { font-size: 0.98rem; line-height: 1.62; }
.service::after { /* growing underline accent on hover */
  content: "";
  position: absolute;
  left: 2rem; bottom: 1.8rem;
  width: 0; height: 2px;
  background: var(--ochre);
  transition: width 0.45s var(--ease);
}
.service:hover::after { width: 38px; }

/* ---------- Feature band (full-bleed quote over art) ---------- */
.feature {
  position: relative;
  min-height: clamp(660px, 88vh, 1000px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.feature img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,58,38,0.42), rgba(33,58,38,0.66));
}
.feature-quote {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  padding: 5rem 1.5rem;
}
.feature-quote .mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: var(--ochre-soft);
  display: block;
  height: 2.2rem;
}
.feature-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 420;
  line-height: 1.32;
  color: #fff;
  letter-spacing: -0.01em;
}
.feature-quote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre-soft);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-art { position: relative; max-width: 440px; }
.about-art .art-frame { transform: rotate(-1.4deg); }
.about-art::before {
  content: "";
  position: absolute;
  inset: -22px 24px 24px -24px;
  background: var(--ochre-soft);
  border-radius: 8px;
  z-index: 0;
  transform: rotate(1.5deg);
}
.about-copy p + p { margin-top: 1.1rem; }
.about-copy h2 { margin-top: 1rem; }
.about-copy .lede {
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 1.3rem;
}
.values {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
.values li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.98rem;
}
.values svg { color: var(--brush); flex: none; margin-top: 3px; }
.about-copy .btn { margin-top: 2rem; }

/* ---------- Process ---------- */
.process { background: var(--paper-deep); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 1.9rem; }
.step::after { /* top hairline accent */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--line);
}
.step:last-child::after { background: linear-gradient(90deg, var(--line), transparent); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.96rem; line-height: 1.6; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--pine-dk);
  color: var(--cream);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -30%; left: -10%;
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(210,154,55,0.16), transparent 65%);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.cta .eyebrow { color: var(--ochre); }
.cta .eyebrow::before { background: var(--ochre); }
.cta h2 { color: var(--cream); margin-top: 1.1rem; }
.cta p { color: rgba(252, 249, 241, 0.85); margin-top: 1.2rem; font-size: 1.1rem; max-width: 34rem; }
.cta .btn { margin-top: 2rem; }
.cta-art .art-frame { background: rgba(252,249,241,0.95); transform: rotate(1.6deg); }
.cta-art { max-width: 400px; justify-self: end; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 26rem; font-size: 0.98rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a, .footer-col li { font-size: 0.98rem; color: var(--ink-soft); }
.footer-col a { transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--brush); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
.footer-bottom a:hover { color: var(--brush); }
.footer-tag { font-family: var(--font-display); font-style: italic; color: var(--pine); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Interior pages (privacy / 404) ---------- */
.prose { max-width: 42rem; }
.prose .updated { font-size: 0.9rem; color: var(--ink-faint); margin: 0.6rem 0 2.5rem; }
.prose h2 { font-size: 1.4rem; margin-top: 2.4rem; margin-bottom: 0.6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose a { color: var(--brush); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brush-dk); }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}
.error-page h1 { margin: 1rem 0; }
.error-page p { font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Contact modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }   /* beats .modal{display:grid} when closed */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 58, 38, 0.55);
  backdrop-filter: blur(3px);
  animation: modal-fade 0.3s var(--ease);
}
.modal-panel {
  position: relative;
  width: min(780px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  animation: modal-pop 0.4s var(--ease);
  scrollbar-width: thin;                              /* Firefox */
  scrollbar-color: var(--pine-soft) transparent;
  overscroll-behavior: contain;
}
/* WebKit / Chromium scrollbar */
.modal-panel::-webkit-scrollbar { width: 12px; }
.modal-panel::-webkit-scrollbar-track {
  background: transparent;
  margin: 62px 0 16px;                                /* drop the bar below the close button on first load */
}
.modal-panel::-webkit-scrollbar-thumb {
  background: var(--pine-soft);
  border-radius: 999px;
  border: 3px solid var(--paper);                     /* padding ring so the thumb looks slim */
  background-clip: padding-box;
  transition: background-color 0.2s var(--ease);
}
.modal-panel::-webkit-scrollbar-thumb:hover {
  background: var(--pine);
  border-color: var(--paper);
  background-clip: padding-box;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.3s var(--ease);
}
.modal-close:hover { background: var(--sage); color: var(--pine-dk); transform: rotate(90deg); }
.modal-head { margin-bottom: 1.5rem; padding-right: 2.5rem; }
.modal-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.1rem); margin-top: 0.5rem; }
.modal-head p { margin-top: 0.55rem; font-size: 1rem; }

/* Form */
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; border: 0; padding: 0; margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label, .field-legend {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pine-dk);
  padding: 0;
}
.field .opt { color: var(--ink-faint); font-weight: 500; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 108px; line-height: 1.55; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(47, 81, 53, 0.12);
}
.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f5135' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.4rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.15rem; }
.chip { position: relative; display: inline-flex; }
.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.chip span {
  display: inline-block;
  padding: 0.48rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.chip input:checked + span { background: var(--pine); border-color: var(--pine); color: var(--cream); }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(47, 81, 53, 0.18); }
.contact-form .cf-turnstile { margin-top: 0.2rem; }
.contact-form .btn { margin-top: 0.3rem; width: 100%; }
[data-gdws-status]:empty { display: none; }
[data-gdws-status] {
  margin-top: 0.3rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
[data-gdws-status][data-state="ok"] { color: #1c5024; background: #e8f1e3; border: 1px solid #bcd8b6; }
[data-gdws-status][data-state="error"] { color: #8b2c1f; background: #fbe9e6; border: 1px solid #f0c4bc; }
button[type="submit"][disabled] { opacity: 0.6; cursor: wait; }
.form-foot { font-size: 0.82rem; color: var(--ink-faint); text-align: center; margin: 0; }
.form-foot a { color: var(--brush); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; margin-top: 1rem; max-width: 420px; }
  .hero-copy { max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { order: -1; justify-self: center; margin-bottom: 1rem; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-art { justify-self: center; order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.5rem; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .hero-art::before { inset: 20px -14px -18px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .areas-inner span { gap: 1rem; }
  .brand img { height: 66px; }
  .field-row { grid-template-columns: 1fr; }
  .modal { padding: 0; place-items: stretch; }
  .modal-panel { max-height: 100vh; border-radius: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
