@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #111914;
  --muted: #677069;
  --green: #087a3f;
  --green-2: #52ea82;
  --mint: #f3fcee;
  --mint-2: #e9f8e4;
  --dark: #202c24;
  --line: #dce8da;
  --white: #fff;
  --shadow: 0 18px 50px rgba(17, 72, 38, .1);
  --radius: 24px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 0;
  padding-top: 76px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17.5px;
  line-height: 1.7;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; max-width: 100%; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  max-width: 100%;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.25rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; overflow-wrap: anywhere; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3.5vw, 28px);
}
.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.mint { background: var(--mint); }
.dark { background: var(--dark); color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 12px; padding: 7px 12px; border-radius: 999px;
  color: var(--green); background: #d9f8d9; font-size: .82rem;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.muted { color: var(--muted); }
.green { color: var(--green); }
.center { text-align: center; }
.center .section-copy { margin-inline: auto; }
.section-copy { max-width: 720px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, min-height .25s ease;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(18, 57, 29, .08);
  box-shadow: 0 10px 30px rgba(17, 40, 24, .08);
}
.nav { display: flex; min-width: 0; width: 100%; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: block; width: 176px; height: 58px; flex: 0 0 auto;
  overflow: hidden; color: transparent !important; font-size: 0 !important;
  line-height: 0; text-indent: -9999px;
  background: url("assets/logo-transparent.png") left center/contain no-repeat;
  transition: width .25s ease, height .25s ease, opacity .2s ease;
}
.site-header.is-scrolled .brand { width: 156px; height: 50px; }
.brand:hover { opacity: .88; }
.brand-mark { display: none; }
.nav-links { display: flex; align-items: center; gap: 6px; font-size: .95rem; font-weight: 600; }
.nav-links a {
  position: relative;
  padding: 8px 12px;
  border-radius: 10px;
  color: #2a332d;
  border-bottom: 0;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover {
  color: var(--green);
  background: rgba(8, 122, 63, .08);
}
.nav-links a.active {
  color: var(--green);
  background: rgba(8, 122, 63, .1);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding: 9px 14px !important;
  border: 1px solid rgba(8, 122, 63, .22) !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  background: #fff !important;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.nav-phone:hover {
  color: #fff !important;
  background: var(--green) !important;
  border-color: var(--green) !important;
}
.nav-phone-icon {
  width: 15px; height: 15px; flex: 0 0 auto;
  fill: var(--green);
  transition: fill .2s ease;
}
.nav-phone:hover .nav-phone-icon { fill: #fff; }
.nav-links .btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1.5px solid var(--green);
  border-radius: 10px;
  color: var(--green);
  background: #fff;
  box-shadow: none;
  border-bottom: 1.5px solid var(--green) !important;
}
.nav-links .btn:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8,122,63,.18);
}
.menu-toggle { display: none; flex: 0 0 auto; padding: 8px; border: 0; color: var(--ink); background: none; font-size: 1.7rem; line-height: 1; }
.nav-tools {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
}
.header-call {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 57, 29, .12);
  border-radius: 12px;
  color: var(--green);
  background: rgba(255,255,255,.9);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.header-call:hover {
  border-color: rgba(8, 122, 63, .35);
  background: #fff;
}
.header-call-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 11px;
  color: #fff; background: var(--green); font-size: 1rem; font-weight: 700; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(8,122,63,.2); }
.btn-gradient { background: linear-gradient(100deg, #057839, #5aef85); }
.btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); }
.btn-outline-green { color: var(--green); background: #fff; border-color: var(--green); }
.btn-outline-green:hover { color: #fff; background: var(--green); }
.btn-light { color: var(--green); background: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero { position: relative; min-height: 670px; display: grid; align-items: center; overflow: hidden; color: #fff; background: #13231a; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,18,11,.89) 0%, rgba(5,18,11,.57) 46%, rgba(5,18,11,.15) 100%), var(--hero) center/cover; }
.hero-content { position: relative; z-index: 1; max-width: min(760px, 100%); padding: 72px 0; }
.hero h1 span { color: #6df092; }
.hero p { max-width: 680px; color: rgba(255,255,255,.88); font-size: 1.18rem; line-height: 1.65; }
.hero-stats { display: flex; width: 100%; max-width: 100%; margin-top: 58px; overflow: hidden; border-radius: 18px; background: rgba(255,255,255,.93); color: var(--ink); box-shadow: var(--shadow); }
.hero-stat { min-width: 0; flex: 1 1 120px; padding: 20px 24px; border-right: 1px solid var(--line); }
.hero-stat:last-child { border: 0; }
.hero-stat strong { display: block; color: var(--green); font-family: "Manrope"; font-size: 1.5rem; }
.hero-stat span { color: var(--muted); font-size: .82rem; text-transform: uppercase; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card { height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.85); }
.card:hover { border-color: #bde2c1; box-shadow: var(--shadow); transform: translateY(-3px); transition: .25s; }
.icon { display: grid; width: 43px; height: 43px; margin-bottom: 24px; place-items: center; color: var(--green); background: #dff9df; border-radius: 12px; font-weight: 800; }
.card p { color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.text-link { color: var(--green); font-size: 1rem; font-weight: 800; }
.feature-image { width: 100%; min-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-panel { padding: 55px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 28px 0; padding: 0; }
.check-list li { position: relative; margin: 14px 0; padding-left: 30px; color: var(--muted); font-size: 1.02rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .7rem; font-weight: 800; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; }
.process-step { position: relative; padding: 20px; text-align: center; font-size: 1.02rem; }
.process-step .muted { font-size: 1rem; }
.process-step::after { content: ""; position: absolute; z-index: 0; top: 41px; left: 60%; width: 80%; border-top: 1px solid #b9cdb9; }
.process-step:last-child::after { display: none; }
.lifecycle-process .process-step::after { display: none; }
.step-number { position: relative; z-index: 1; display: grid; width: 46px; height: 46px; margin: 0 auto 20px; place-items: center; border: 1px solid #9cb29f; border-radius: 50%; background: #fff; font-weight: 800; }
.reviews-grid { align-items: stretch; }
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border-left: 3px solid var(--green-2);
  background: #fff;
}
.quote-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  min-height: calc(1.6em * 5);
}
.quote-more {
  display: inline-block;
  width: fit-content;
  margin-top: 12px;
  color: var(--green-2);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.quote-more:hover { text-decoration: underline; }
.quote strong { display: block; margin-top: 16px; }
.stars { color: #0b8b49; letter-spacing: 3px; }
.reviews-link { margin: 36px 0 0; }

.narrow-copy { max-width: 760px; margin-inline: auto; text-align: center; }

.journey {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 8px;
}
.journey::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), #b7d9bf);
}
.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  margin-bottom: 22px;
  align-items: start;
}
.journey-item:last-child { margin-bottom: 0; }
.journey-year {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.journey-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 40, 24, .04);
}
.journey-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.journey-card p { margin: 0; color: var(--muted); }
.journey-card-final {
  border-color: rgba(8, 122, 63, .28);
  background: linear-gradient(180deg, #f3fcee, #fff);
}
.founder-quote {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 0 16px 16px 0;
  text-align: left;
}
.founder-quote p {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.founder-quote strong { color: var(--green); }
.workshop-motto {
  max-width: 720px;
  margin: 36px auto 0;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  text-align: center;
}
.workshop-motto-inline {
  margin: 8px 0 22px;
  text-align: left;
}
.wof-intro { background: var(--mint); }
.wof-intro-actions { justify-content: center; margin-top: 28px; margin-bottom: 8px; }
.wof-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}
.wof-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 40, 24, .05);
}
.wof-panel h3 { margin-bottom: 8px; }
.wof-panel > .muted { margin-bottom: 0; min-height: 3.2em; }
.wof-panel-side {
  position: sticky;
  top: 96px;
}
.wof-side-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.wof-side-note p {
  margin: 0 0 10px;
  color: var(--muted);
}
.wof-check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.wof-check-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.02rem;
}
.wof-check-list li:first-child { border-top: 0; }
.wof-check-list li strong { color: var(--green); font-size: 1.05rem; }
.wof-check-list-out li strong { color: #b42318; }
.wof-check-list-out { background: #fff8f7; }

.banner { position: relative; padding: 56px 0; overflow: hidden; color: #fff; background: #15231a; }
.banner::before { content: ""; position: absolute; inset: 0; opacity: .35; background: var(--banner) center/cover; }
.banner > .container { position: relative; }
.cta-box { max-width: 900px; margin: auto; padding: 58px; border-radius: 24px; text-align: center; background: linear-gradient(135deg, rgba(3,116,51,.95), rgba(62,230,111,.85)); box-shadow: var(--shadow); }

.page-hero { padding: 48px 0 28px; background: var(--mint); }
.page-hero p { max-width: 780px; margin-bottom: 0; color: var(--muted); font-size: 1.18rem; line-height: 1.65; }
.page-hero .grid-2 { align-items: center; }
.page-hero-image { height: 340px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero + .section { padding-top: 48px; }
.page-hero + .section.mint,
.page-hero + .wof-intro { padding-top: 48px; }

.story-heading {
  display: grid;
  gap: .18em;
  max-width: 15em;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.date-time-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 1 / -1;
  gap: 1rem;
  width: 100% !important;
  align-items: start;
}

.date-input-wrap {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border-bottom: 1px solid #b8c4b9;
}

.date-input-wrap:focus-within {
  border-bottom-color: var(--green);
}

.date-input-wrap input[type="date"] {
  width: auto;
  min-width: 10.75rem;
  flex: 0 1 auto;
  padding: 13px 4px 13px 0;
  border-bottom: 0;
}

.date-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 1;
}

.field.is-invalid .date-input-wrap {
  border-bottom-color: #c0392b;
}

.field.is-invalid .date-input-wrap:focus-within {
  border-bottom-color: #c0392b;
}

.story-heading span { display: block; }
.page-hero .story-heading {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
}

.metric { padding: 22px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.metric strong { display: block; color: var(--green); font-family: "Manrope"; font-size: 2rem; }
.service-cards .card { min-height: 260px; }
.dark-card { color: #fff; background: var(--dark); }
.dark-card p { color: rgba(255,255,255,.68); }

.faq { max-width: 840px; margin: 40px auto 0; text-align: left; }
.faq-item { margin-bottom: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-align: left; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 0; background: transparent; text-align: left; font-size: 1.08rem; font-weight: 700; }
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); text-align: left; font-size: 1.05rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.contact-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 55px; align-items: start; }
.contact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin: 38px 0; }
.contact-item small { display: block; color: var(--green); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: 5px; font-size: 1.15rem; }
.contact-item .muted { display: block; font-size: 1rem; }
.hours-panel {
  margin: 8px 0 36px;
  padding: 22px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 60, 30, .04);
}
.hours-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.hours-panel-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}
.hours-status-icon { width: 15px; height: 15px; flex: 0 0 auto; }
.hours-status.is-open { color: #0b6b38; background: #e4f8ea; }
.hours-status.is-dropoff { color: #8a5a00; background: #fff4d9; }
.hours-status.is-closed { color:#ff0000; background: #eef1f3; }
.hours-status-note { margin: 0 0 16px; color: var(--muted); font-size: .95rem; }
.hours-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hours-rows li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.9fr) minmax(0, 1.4fr);
  gap: 12px 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.45;
}
.hours-rows li span:first-child { color: var(--ink); font-weight: 600; }
.hours-rows li.is-today {
  color: var(--ink);
  font-weight: 700;
}
.hours-rows li.is-today span:first-child { font-weight: 800; }
.hours-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.map-card { position: relative; min-height: 320px; padding: 35px; display: flex; align-items: end; overflow: hidden; border-radius: 18px; color: #fff; background: linear-gradient(145deg, #cdd7cd, #57615a); }
.map-card::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(30deg, transparent 0 30px, rgba(255,255,255,.35) 31px 33px); }
.map-label { position: relative; padding: 14px 18px; border-radius: 10px; background: var(--dark); }
.map-card.has-map { padding: 0; display: block; background: #dce5dc; }
.map-card.has-map::before { display: none; }
.map-card iframe { width: 100%; min-height: 360px; display: block; border: 0; }
.contact-layout .map-card { margin-top: 32px; }
.map-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 26px;
  background: #111;
  box-shadow: var(--shadow);
  align-self: stretch;
}
.video-shell video { width: 100%; height: 100%; display: block; object-fit: cover; background: #101410; }
.video-audio-toggle {
  position: absolute; z-index: 2; top: 14px; right: 14px;
  min-height: 40px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px; color: #fff; background: rgba(10,20,13,.78);
  font-weight: 700; backdrop-filter: blur(8px);
}

.video-audio-toggle:hover { background: var(--green); }
.video-grid { align-items: start; }
.video-copy { display: flex; flex-direction: column; height: 100%; }
.form-card { padding: 42px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: #356345; font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: 13px 12px; border: 0; border-bottom: 1px solid #b8c4b9;
  outline: none; color: var(--ink); background: transparent;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { min-height: 110px; resize: vertical; }
.form-message { display: none; margin-top: 16px; padding: 12px; color: #075f32; background: #def9e3; border-radius: 8px; }
.form-message.show { display: block; }
.form-message.error { color: #8a1c1c; background: #fde8e8; }
.form-required-note { margin: 14px 0 0; color: var(--muted); font-size: .9rem; }
.field-error {
  display: none; margin: 8px 0 0; color: #8a1c1c; font-size: .88rem; font-weight: 600; line-height: 1.4;
}
.field-error.show { display: block; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-bottom-color: #c0392b;
}
.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus {
  border-bottom-color: #c0392b;
}

.req { color: var(--green); }
.optional { color: var(--muted); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: .85em; }
.form-dynamic[hidden] { display: none !important; }

.site-footer { padding: 64px 0 28px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.85fr)) minmax(12.5rem, 1.25fr); gap: 40px; }
.footer-grid .brand { width: 205px; height: 78px; margin: -14px 0 12px; }
.footer-grid h4 { font-size: 1rem; letter-spacing: 0; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .98rem; }
.footer-grid a[href^="mailto:"],
.contact-item a[href^="mailto:"],
a[href^="mailto:"] {
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}
.footer-links { display: grid; gap: 7px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-link {
  display: inline-flex; min-height: 38px; align-items: center; gap: 8px;
  padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--green) !important; background: #fff; font-size: .88rem !important; font-weight: 800;
}
.social-link:hover { border-color: var(--green); transform: translateY(-1px); }
.social-icon { display: grid; width: 21px; height: 21px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: .67rem; }
.copyright {
  margin-top: 45px;
  padding-top: 22px;
  padding-right: 56px;
  border-top: 1px solid var(--line);
  color: #89918b;
  font-size: .9rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

.hero-content > *,
.page-hero .container > *:not(.grid-2),
.page-hero .grid-2 > div:first-child > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in .75s ease forwards;
}
.hero-content > *:nth-child(1),
.page-hero .container > *:nth-child(1),
.page-hero .grid-2 > div:first-child > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2),
.page-hero .container > *:nth-child(2),
.page-hero .grid-2 > div:first-child > *:nth-child(2) { animation-delay: .14s; }
.hero-content > *:nth-child(3),
.page-hero .container > *:nth-child(3),
.page-hero .grid-2 > div:first-child > *:nth-child(3) { animation-delay: .23s; }
.hero-content > *:nth-child(4),
.page-hero .container > *:nth-child(4),
.page-hero .grid-2 > div:first-child > *:nth-child(4) { animation-delay: .32s; }
.hero-content > *:nth-child(5),
.page-hero .container > *:nth-child(5),
.page-hero .grid-2 > div:first-child > *:nth-child(5) { animation-delay: .4s; }

.page-hero-image,
.feature-image {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  animation: rise-in .85s ease .18s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.card,
.quote,
.journey-card,
.wof-panel,
.contact-item,
.faq-item {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover,
.quote:hover,
.journey-card:hover,
.wof-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 40, 24, .1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-content > *,
  .page-hero .container > *,
  .page-hero .grid-2 > div:first-child > *,
  .page-hero-image,
  .feature-image {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .card:hover,
  .quote:hover,
  .journey-card:hover,
  .wof-panel:hover {
    transform: none;
  }
}

.back-to-top {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--green-2);
  border-radius: 50%;
  color: #fff;
  background: #1a241d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: #111914; }
.back-to-top svg { width: 16px; height: 16px; }
.back-to-top::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: #1a241d;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
.back-to-top:hover::after,
.back-to-top:focus-visible::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .site-header,
  .site-header.is-scrolled { min-height: 68px; }
  body { padding-top: 68px; }
  body.feedback-standalone { padding-top: 0; }
  .site-header .brand,
  .site-header.is-scrolled .brand { width: 144px; height: 50px; }
  .nav-tools { display: inline-flex; }
  .header-call { display: inline-grid; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 57, 29, .12);
    border-radius: 12px;
    background: rgba(255,255,255,.9);
    font-size: 1.35rem;
    transition: background .2s ease, border-color .2s ease;
  }
  .menu-toggle:hover {
    border-color: rgba(8, 122, 63, .35);
    background: #fff;
  }
  .nav-links {
    position: fixed;
    z-index: 49;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    padding: 14px 14px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 57, 29, .08);
    box-shadow: 0 18px 40px rgba(17, 40, 24, .12);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
    border-bottom: 0;
  }
  .nav-links a.active {
    background: rgba(8, 122, 63, .1);
  }
  .nav-phone {
    justify-content: center;
    margin: 8px 0 0;
    padding: 13px 14px !important;
    font-size: 1.02rem;
  }
  .nav-links .btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout, .grid-2, .wof-split { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .hero { min-height: auto; }
  .hero-content { max-width: 100%; padding: 70px 0 56px; }
  .hero-stats { width: 100%; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
  .page-hero { padding: 36px 0 20px; }
  .page-hero + .section { padding-top: 36px; }
  .page-hero + .section.mint,
  .page-hero + .wof-intro { padding-top: 36px; }
  .wof-panel-side { position: static; }
  .page-hero-image,
  .feature-image { height: 280px; min-height: 0; }
  .video-shell { width: 100%; }
  .form-grid, .contact-list { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: auto !important; }
  .back-to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; }
  .back-to-top::after { display: none; }
  .copyright { padding-right: 52px; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  h1:not(.story-heading),
  .contact-layout h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem) !important;
    letter-spacing: -.02em;
  }
  .page-hero .story-heading {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem) !important;
    max-width: none;
  }
  h2 { font-size: clamp(1.7rem, 7vw, 2.25rem); }
  h3 { font-size: 1.28rem; }
  .section-copy,
  .page-hero p,
  .hero p { font-size: 1.08rem; }
  .section { padding: 44px 0; }
  .section-sm { padding: 36px 0; }
  .site-header .brand { width: 132px; height: 50px; }
  .hero-content { padding: 54px 0 44px; }
  .hero-stats {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .hero-stat {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stat:last-child { border-bottom: 0; }
  .hero-stat strong { font-size: 1.25rem; }
  .hero-stat span {
    display: block;
    overflow-wrap: anywhere;
    font-size: .78rem;
    line-height: 1.3;
  }
  .grid-4, .grid-3, .process { grid-template-columns: 1fr; }
  .process { margin-top: 28px; }
  .process-step::after { display: none; }
  .process-step { padding: 10px 0; }
  .card { padding: 22px; }
  .split-panel, .form-card { padding: 22px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid .brand { width: 168px; height: 64px; margin: -8px 0 8px; }
  .hours-rows li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cta-box { padding: 32px 18px; }
  .date-input-wrap input[type="date"] {
    min-width: 9.5rem;
    padding-right: 2px;
  }
  .page-hero { padding: 28px 0 16px; }
  .banner { padding: 44px 0; }
  .map-card iframe { min-height: 260px; }
  .map-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .video-shell { width: 100%; border-width: 4px; border-radius: 16px; }
  .video-audio-toggle { top: 8px; right: 8px; min-height: 36px; padding: 6px 10px; font-size: .85rem; }
  .repair-panel { padding: 28px 18px !important; }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .contact-item strong,
  .footer-grid p,
  .footer-grid a,
  .section-copy { overflow-wrap: anywhere; }
  .footer-grid a[href^="mailto:"],
  .contact-item a[href^="mailto:"],
  a[href^="mailto:"] {
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
  }
  .metric strong { font-size: 1.5rem; }
  .service-cards .card { min-height: 0; }
  .journey { padding-left: 0; }
  .journey::before { left: 14px; }
  .journey-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 36px;
  }
  .journey-year { justify-self: start; }
}

/* Feedback page */
body.feedback-standalone { padding-top: 0; }
.feedback-section { padding-top: 48px; padding-bottom: 72px; }
.feedback-container { max-width: 920px; }
.feedback-intro { margin-bottom: 36px; }
.feedback-intro h1 { margin-bottom: 16px; }
.feedback-card {
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.feedback-card-main h2,
.feedback-card-state h2,
.feedback-card-form h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  text-align: center;
}
.feedback-card-lead,
.feedback-state-copy,
.feedback-state-note {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.65;
}
.feedback-card-lead { margin-bottom: 28px; }
.feedback-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feedback-thumbs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
}
.feedback-thumb {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.feedback-thumb .feedback-option-icon {
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feedback-thumb .feedback-option-icon svg { width: 42px; height: 42px; }
.feedback-thumb:hover .feedback-option-icon,
.feedback-thumb:focus-visible .feedback-option-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 72, 38, .1);
}
.feedback-thumb:focus-visible { outline: 2px solid var(--green); outline-offset: 6px; border-radius: 12px; }
.feedback-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.feedback-option:hover {
  border-color: #bde2c1;
  box-shadow: 0 12px 30px rgba(17, 72, 38, .08);
  transform: translateY(-2px);
}
.feedback-option-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
}
.feedback-option-icon svg { width: 26px; height: 26px; }
.feedback-option-icon-positive { color: var(--green); background: #dff9df; }
.feedback-option-icon-neutral { color: #5f6a62; background: #eef2ee; }
.feedback-option h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.feedback-option p {
  flex: 1;
  margin-bottom: 22px;
  font-size: .98rem;
  line-height: 1.6;
}
.feedback-option-link {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}
.feedback-option-link-positive { color: var(--green); }
.feedback-option-link-neutral { color: #4f5a52; }
.feedback-option-link:hover { text-decoration: underline; }
.feedback-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: .95rem;
  font-weight: 600;
}
.feedback-back:hover { color: var(--green); }
.feedback-card-state,
.feedback-card-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.feedback-state-icon {
  display: grid;
  width: 72px;
  height: 72px;
  align-self: center;
  margin: 0 0 22px;
  place-items: center;
  border-radius: 50%;
}
.feedback-state-icon svg { width: 34px; height: 34px; }
.feedback-state-icon-positive { color: var(--green); background: #dff9df; }
.feedback-state-icon-neutral { color: #8a5a5a; background: #f8ecec; }
.feedback-state-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.feedback-state-note {
  margin-top: 18px;
  font-size: .95rem;
}
.feedback-form {
  margin-top: 28px;
  text-align: left;
}
.feedback-form .form-required-note { margin-top: 0; }
.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 14px 16px;
  border: 1px solid #d8e3d6;
  border-bottom: 1px solid #d8e3d6;
  border-radius: 12px;
  background: #f7faf6;
}
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.feedback-form textarea { min-height: 140px; }
.feedback-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.feedback-form-actions .btn { min-width: 190px; }
.feedback-send-icon { width: 18px; height: 18px; fill: currentColor; }
.feedback-stars-field { text-align: center; }
.feedback-stars-label {
  margin-bottom: 10px;
  color: #356345;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.feedback-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}
.feedback-star {
  padding: 0 2px;
  border: 0;
  color: #d5ddd6;
  background: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}
.feedback-star:hover,
.feedback-star.is-active { color: #0b8b49; }
.feedback-star:hover { transform: scale(1.08); }
.feedback-star:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.feedback-google-below {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 110vh;
  padding: 48px 16px 80px;
}
.feedback-google-muted {
  display: block;
  color: #c5cec8;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
}
.feedback-google-muted:hover { color: var(--muted); text-decoration: underline; }
.feedback-panel[hidden] { display: none !important; }
.feedback-intro[hidden] { display: none; }

@media (max-width: 1024px) {
  .feedback-card { padding: 32px 28px; }
  .feedback-options { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .feedback-section { padding-top: 36px; padding-bottom: 56px; }
  .feedback-card { padding: 26px 18px; border-radius: 18px; }
  .feedback-option { padding: 28px 20px 24px; }
  .feedback-thumbs { gap: 18px; }
  .feedback-thumb .feedback-option-icon { width: 76px; height: 76px; }
  .feedback-form-actions { justify-content: stretch; }
  .feedback-form-actions .btn { width: 100%; min-width: 0; }
  .feedback-back { margin-bottom: 14px; }
  .feedback-google-below {
    min-height: 115vh;
    padding: 40px 16px 72px;
  }
}
