:root {
  --pine: #173f35;
  --pine-deep: #0d2d25;
  --lime: #b0ca3c;
  --lime-soft: #e8efbd;
  --cream: #f6f5ed;
  --paper: #fffef9;
  --ink: #183029;
  --muted: #5d6b66;
  --line: rgba(23, 63, 53, 0.16);
  --shadow: 0 24px 70px rgba(13, 45, 37, 0.14);
  --radius: 1.4rem;
  --shell: min(1160px, calc(100% - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--paper);
  color: var(--pine);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.utility-bar {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.utility-bar__inner,
.utility-bar__links {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  min-height: 2.55rem;
  justify-content: space-between;
  gap: 2rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__links {
  gap: 1.8rem;
}

.utility-bar a {
  text-decoration: none;
}

.utility-bar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(13, 45, 37, 0.07);
}

.site-header__inner {
  display: flex;
  min-height: 6.7rem;
  align-items: center;
  gap: 2.4rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 8.6rem;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2vw, 2rem);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--pine);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--pine);
  border-radius: 999px;
  background: var(--pine);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--pine-deep);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.85rem;
  padding-inline: 1.1rem;
  font-size: 0.8rem;
}

.button--light {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--pine-deep);
}

.button--light:hover {
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 0.3rem;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #557018;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-block: 0;
  color: var(--pine-deep);
  line-height: 1.04;
}

h1,
h2 {
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
}

h1 em {
  position: relative;
  color: var(--pine);
  font-weight: 500;
}

h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: 0.08em;
  left: -0.08em;
  height: 0.19em;
  border-radius: 999px;
  background: var(--lime-soft);
  content: "";
}

h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

h3 {
  font-size: 1.25rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3.5rem, 7vw, 7.5rem) 0 clamp(4.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 0 0, rgba(176, 202, 60, 0.15), transparent 32rem),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 10%;
  right: -8rem;
  width: 20rem;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 0.85fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__lede {
  max-width: 36rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.6rem;
  margin: 2.3rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  margin-right: 0.45rem;
  color: #789415;
  content: "✓";
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border-radius: 11rem 11rem var(--radius) var(--radius);
  background: #dfe5e1;
  box-shadow: var(--shadow);
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 45, 37, 0.28));
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: 58% center;
}

.open-card {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  display: flex;
  min-width: 14rem;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  background: rgba(255, 254, 249, 0.94);
  box-shadow: 0 16px 45px rgba(13, 45, 37, 0.16);
  backdrop-filter: blur(10px);
}

.open-card__dot {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #7e9f12;
  box-shadow: 0 0 0 5px rgba(176, 202, 60, 0.18);
}

.open-card__dot.is-closed {
  background: #8a9691;
  box-shadow: 0 0 0 5px rgba(138, 150, 145, 0.18);
}

.open-card strong,
.open-card span {
  display: block;
}

.open-card strong {
  color: var(--pine-deep);
  font-size: 0.83rem;
}

.open-card div span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero__side-note {
  position: absolute;
  right: max(0.5rem, calc((100vw - 1160px) / 2 - 3.5rem));
  bottom: 10rem;
  margin: 0;
  color: rgba(23, 63, 53, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 13ch;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 18rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--cream);
  transform: translateY(-5px);
}

.service-card--accent {
  background: var(--lime-soft);
}

.service-card__number {
  display: block;
  margin-bottom: 5.5rem;
  color: #75817d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.green-story {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
}

.green-story::after {
  position: absolute;
  top: -22rem;
  right: -14rem;
  width: 45rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255, 255, 255, 0.02), 0 0 0 12rem rgba(255, 255, 255, 0.02);
  content: "";
}

.green-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(3rem, 9vw, 8rem);
}

.green-story__mark {
  display: flex;
  min-height: 22rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50% 50% 1.4rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
}

.green-story__mark span {
  color: var(--lime);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.green-story__mark strong {
  margin-top: 0.9rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.green-story .eyebrow {
  color: var(--lime);
}

.green-story h2 {
  max-width: 10ch;
  color: #fff;
}

.green-story__content > p:not(.eyebrow) {
  max-width: 45rem;
  margin: 1.6rem 0 0;
  font-size: 1.05rem;
}

.benefit-row {
  display: grid;
  margin: 2.6rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(3, 1fr);
}

.benefit-row > div {
  padding: 1.3rem 1.1rem 0 0;
}

.benefit-row strong,
.benefit-row span {
  display: block;
}

.benefit-row strong {
  color: #fff;
  font-size: 0.88rem;
}

.benefit-row span {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-link--light {
  color: #fff;
}

.visit {
  background: var(--cream);
}

.visit__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(3rem, 10vw, 10rem);
}

.visit__copy h2 {
  max-width: 11ch;
}

.visit__copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.visit address {
  margin-top: 1.8rem;
  color: var(--muted);
  font-style: normal;
}

.visit address strong {
  color: var(--pine-deep);
}

.visit__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hours-card {
  padding: clamp(1.7rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hours-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hours-card__top .eyebrow {
  margin: 0;
}

.hours-card__top > span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.86rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.hours-card dl div:last-child {
  border-bottom: 0;
}

.hours-card dt {
  font-weight: 750;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
}

.closing-cta {
  background: var(--pine-deep);
  color: #fff;
}

.closing-cta__inner {
  display: flex;
  min-height: 20rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.closing-cta .eyebrow {
  color: var(--lime);
}

.closing-cta h2 {
  color: #fff;
}

.site-footer {
  padding-block: 3.3rem;
  background: var(--paper);
}

.site-footer__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 1.5rem 3rem;
}

.brand--footer img {
  width: 7.5rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--pine);
}

.copyright {
  grid-column: 2 / -1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.breadcrumbs a {
  text-underline-offset: 0.2rem;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #96a09c;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  background:
    radial-gradient(circle at 100% 0, rgba(176, 202, 60, 0.18), transparent 30rem),
    var(--cream);
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.45fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.page-hero h1 {
  max-width: 11ch;
}

.page-hero__lede {
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.page-hero__aside {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.page-hero__aside strong,
.page-hero__aside span {
  display: block;
}

.page-hero__aside strong {
  color: var(--pine-deep);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero__aside span {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.content-section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.content-section--cream {
  background: var(--cream);
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(15rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.content-grid__title {
  position: sticky;
  top: 9rem;
}

.content-grid__title h2 {
  max-width: 10ch;
}

.prose {
  color: var(--muted);
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose p {
  margin-block: 0 1.35rem;
}

.prose .lead {
  color: var(--pine-deep);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card__mark {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  margin-bottom: 4.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--pine);
  font-size: 0.76rem;
  font-weight: 850;
}

.feature-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3.5rem 0.8fr 1fr;
  gap: 1rem;
  counter-increment: process;
}

.process-list li::before {
  color: #799315;
  content: "0" counter(process);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-list strong {
  color: var(--pine-deep);
}

.process-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.highlight-band {
  overflow: hidden;
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
}

.highlight-band__inner {
  display: grid;
  min-height: 25rem;
  align-items: center;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.highlight-band__number {
  color: var(--lime);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.highlight-band .eyebrow {
  color: var(--lime);
}

.highlight-band h2 {
  max-width: 11ch;
  color: #fff;
}

.highlight-band p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.2rem 0 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.service-list li {
  position: relative;
  min-height: 5.5rem;
  padding: 1.6rem 1.6rem 1.6rem 3.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--pine-deep);
  font-weight: 750;
}

.service-list li::before {
  position: absolute;
  top: 1.65rem;
  left: 1.4rem;
  color: #799315;
  content: "✓";
}

.values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--cream);
}

.value-card span {
  display: block;
  margin-bottom: 3.5rem;
  color: #799315;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.value-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.faq-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  color: var(--pine-deep);
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.5rem;
  right: 0;
  color: #799315;
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  margin: -0.3rem 0 1.5rem;
  color: var(--muted);
}

.hours-layout,
.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(3rem, 10vw, 9rem);
}

.status-panel {
  position: sticky;
  top: 9rem;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.status-panel__row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.status-panel strong,
.status-panel span {
  display: block;
}

.status-panel strong {
  color: #fff;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.status-panel__hours {
  margin-top: 0.45rem;
  font-size: 0.88rem;
}

.status-panel p {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
}

.hours-table {
  margin: 0;
}

.hours-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.hours-table__row.is-today {
  border-radius: 0.7rem;
  background: var(--lime-soft);
}

.hours-table dt {
  color: var(--pine-deep);
  font-weight: 800;
}

.hours-table dd {
  margin: 0;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
}

.contact-card__label {
  display: block;
  margin-bottom: 0.7rem;
  color: #6e7a76;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  color: var(--pine-deep);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 32rem;
  border-radius: var(--radius);
  background: #dfe5e1;
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 32rem;
  border: 0;
}

.page-cta {
  background: var(--pine-deep);
  color: #fff;
}

.page-cta__inner {
  display: flex;
  min-height: 19rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.page-cta .eyebrow {
  color: var(--lime);
}

.page-cta h2 {
  max-width: 14ch;
  color: #fff;
}

.page-cta__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.5rem;
}

.page-cta .text-link {
  color: #fff;
}

.error-page {
  display: grid;
  min-height: 72vh;
  place-items: center;
  background: var(--cream);
  text-align: center;
}

.error-page__inner {
  max-width: 44rem;
  padding-block: 5rem;
}

.error-page__code {
  display: block;
  color: var(--lime);
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(5rem, 18vw, 11rem);
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.error-page h1 {
  max-width: none;
  margin-top: 1.7rem;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.error-page p {
  margin: 1.4rem auto 2rem;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .site-header__inner {
    gap: 1.4rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .header-call {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
    gap: 3rem;
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: 31rem;
  }

  .hero__side-note {
    display: none;
  }

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

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 2rem, 42rem);
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__inner > p,
  .utility-bar__links a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 5.3rem;
    justify-content: space-between;
  }

  .brand img {
    width: 7rem;
  }

  .menu-button {
    display: inline-flex;
    min-width: 4.5rem;
    min-height: 2.8rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--pine);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
  }

  .menu-button__lines,
  .menu-button__lines::before,
  .menu-button__lines::after {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button__lines {
    position: relative;
  }

  .menu-button__lines::before,
  .menu-button__lines::after {
    position: absolute;
    left: 0;
  }

  .menu-button__lines::before {
    top: -5px;
  }

  .menu-button__lines::after {
    top: 5px;
  }

  .menu-button[aria-expanded="true"] .menu-button__lines {
    background: transparent;
  }

  .menu-button[aria-expanded="true"] .menu-button__lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    margin: 0;
    padding-inline: 1rem;
    background: var(--paper);
    box-shadow: 0 24px 38px rgba(13, 45, 37, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    max-height: 28rem;
    padding-block: 0.8rem 1.2rem;
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    min-height: 3.25rem;
    padding: 0.9rem 0.6rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .hero__visual {
    width: min(100%, 35rem);
  }

  .hero__image-wrap,
  .hero__image-wrap img {
    min-height: min(34rem, 115vw);
  }

  .hero__image-wrap {
    border-radius: 8rem 8rem var(--radius) var(--radius);
  }

  .open-card {
    right: 0.8rem;
    bottom: 1rem;
  }

  .section-heading,
  .green-story__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .green-story__mark {
    width: min(100%, 28rem);
    min-height: 20rem;
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-row > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .closing-cta__inner {
    min-height: 24rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }

  .page-hero__grid,
  .content-grid,
  .highlight-band__inner,
  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    align-items: start;
    gap: 2.4rem;
  }

  .page-hero__aside {
    max-width: 28rem;
  }

  .content-grid__title,
  .status-panel {
    position: static;
  }

  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card__mark,
  .value-card span {
    margin-bottom: 2.5rem;
  }

  .page-cta__inner {
    min-height: 23rem;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero__actions,
  .visit__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link,
  .visit__actions .text-link {
    justify-content: center;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card__number {
    margin-bottom: 3rem;
  }

  .hours-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .process-list li {
    grid-template-columns: 2.5rem 1fr;
  }

  .process-list li span {
    grid-column: 2;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .hours-table__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .page-cta__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .page-cta__actions .text-link {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
