:root {
  --green: #2f5d37;
  --green-mid: #6ab476;
  --green-hover: #799a7e;
  --lime: #7ac245;
  --forest: #024c26;
  --deep: #173f3d;
  --leaf: #245a14;
  --mint: #eefffe;
  --chartreuse: #b7ce4e;
  --ink: #2f5d37;
  --muted: #4d6a52;
  --white: #ffffff;
  --max: 1180px;
  --header-h: 88px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--mint);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--lime); }

h1, h2, h3, h4 {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 93, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.logo img {
  height: 57px;
  width: auto;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.is-active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 6px 0;
}

body.menu-open { overflow: hidden; }

.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 63, 61, 0.45);
  z-index: 50;
}
.offcanvas-overlay.is-open { display: block; }

.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  z-index: 51;
  transform: translateX(-105%);
  transition: transform 0.25s ease;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offcanvas.is-open { transform: translateX(0); }

.offcanvas-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: var(--green);
  cursor: pointer;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offcanvas-nav a {
  padding: 10px 4px;
  font-size: 1.1rem;
  color: var(--green);
  border-bottom: 1px solid #e5eee6;
}

.offcanvas-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}
.offcanvas-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offcanvas-footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { background: var(--green-hover); color: var(--white); }
.btn-lime { background: var(--lime); color: var(--deep); }
.btn-lime:hover { background: var(--chartreuse); color: var(--deep); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  color: var(--white);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #173f3d;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: -8%;
  background: center / cover no-repeat;
  transform: scale(1.12);
}

.hero-slide.is-active .hero-bg {
  animation: heroKenBurns 10s ease-out forwards;
}
.hero-slide:nth-child(2).is-active .hero-bg {
  animation-name: heroKenBurnsLeft;
}
.hero-slide:nth-child(3).is-active .hero-bg {
  animation-name: heroKenBurnsRight;
}

@keyframes heroKenBurns {
  from { transform: scale(1.12) translate(0, 0); }
  to { transform: scale(1) translate(0, 0); }
}
@keyframes heroKenBurnsLeft {
  from { transform: scale(1.16) translate(3%, 0); }
  to { transform: scale(1) translate(0, 0); }
}
@keyframes heroKenBurnsRight {
  from { transform: scale(1.16) translate(-3%, 1%); }
  to { transform: scale(1) translate(0, 0); }
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(2, 76, 38, 0.72) 0%, rgba(23, 63, 61, 0.28) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
}

.hero-copy { max-width: 720px; }
.hero-copy-center {
  max-width: none;
  width: 100%;
  text-align: center;
}

.hero h1,
.hero .hero-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero .kicker {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--chartreuse);
  margin-bottom: 8px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 36ch;
  margin: 0 0 8px;
}

.hero-copy-center p { max-width: none; }

.hero .phone-line {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 18px 0 22px;
}

.hero-phone {
  width: min(280px, 70vw);
  margin: 24px auto 0;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.hero .anim,
.hero [data-letters] span,
.hero-phone {
  opacity: 0;
}

.hero-slide.is-active .anim-from-top {
  animation: heroFromTop var(--dur, 1s) var(--ease, ease) var(--delay, 0s) both;
}
.hero-slide.is-active .anim-from-bottom {
  animation: heroFromBottom var(--dur, 1s) var(--ease, ease) var(--delay, 0s) both;
}
.hero-slide.is-active .anim-from-left {
  animation: heroFromLeft var(--dur, 1s) var(--ease, ease-in) var(--delay, 0s) both;
}
.hero-slide.is-active .anim-from-right {
  animation: heroFromRight var(--dur, 1s) var(--ease, ease) var(--delay, 0s) both;
}
.hero-slide.is-active .hero-phone {
  animation: heroFromLeft 1.5s ease-in 1s both;
}

.hero [data-letters] {
  display: flex;
  flex-wrap: wrap;
}
.hero-copy-center [data-letters] { justify-content: center; }
.hero [data-letters] span {
  display: inline-block;
  white-space: pre;
}

.hero-slide.is-active [data-letters="down"] span {
  animation: letterDown 0.35s ease-in forwards;
  animation-delay: calc(var(--delay, 0.5s) + var(--i) * 0.11s);
}
.hero-slide.is-active [data-letters="up"] span {
  animation: letterUp 0.35s ease-in forwards;
  animation-delay: calc(var(--delay, 3s) + var(--i) * 0.07s);
}
.hero-slide.is-active [data-letters="right"] span {
  animation: letterRight 0.4s ease forwards;
  animation-delay: calc(var(--delay, 1s) + var(--i) * 0.08s);
}

@keyframes heroFromTop {
  from { opacity: 0; transform: translateY(-36%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFromBottom {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFromLeft {
  from { opacity: 0; transform: translateX(-65%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFromRight {
  from { opacity: 0; transform: translateX(36%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes letterDown {
  from { opacity: 0; transform: translateY(-1.15em); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes letterUp {
  from { opacity: 0; transform: translateY(1.15em); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes letterRight {
  from { opacity: 0; transform: translateX(1.1em); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-slide.is-active .hero-bg,
  .hero-slide.is-active .anim,
  .hero-slide.is-active .hero-phone,
  .hero-slide.is-active [data-letters] span {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active { background: var(--white); }

/* Drop-off */
.dropoff {
  position: relative;
  background: #f1fbfa;
  color: #2f5d37;
  text-align: center;
  padding: 92px 0 88px;
  overflow: hidden;
}

.dropoff-shape {
  position: absolute;
  left: 0;
  width: 100%;
  height: 72px;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
}

.dropoff-shape-top { top: 0; }
.dropoff-shape-bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.dropoff .container { position: relative; z-index: 1; }

.dropoff h2 {
  font-family: "Public Sans", sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #2f5d37;
}

.dropoff p {
  margin: 6px 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
}

/* Services */
.services {
  padding: 75px 0 24px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 28px 40px;
  align-items: start;
}

.services-intro {
  text-align: center;
  padding-top: 8px;
}

.services-intro h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  line-height: 1.25;
  color: #106e20;
  text-transform: capitalize;
  margin: 0 0 22px;
}

.services-rule {
  width: min(350px, 100%);
  height: 0;
  margin: 0 auto 42px;
  border: 0;
  border-bottom: 1px solid #ececec;
}

.services-lede {
  width: min(66%, 22em);
  margin: 0 auto;
  color: #3d4557;
  font-family: Montserrat, "Public Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  text-transform: capitalize;
}

.mission-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 12px 0 36px;
}

.mission-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: var(--lime);
  transform: translateY(3px);
}

.mission-kicker {
  margin: 0;
  color: #848484;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  letter-spacing: 0.08em;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15);
}

.mission-rotate {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #7ac245;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  min-height: 1.2em;
}

@media (min-width: 768px) {
  .mission-rotate { min-width: 13.5em; }
}

.mission-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.45em);
  pointer-events: none;
}

.mission-word.is-visible {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mission-rotate::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 6px;
  background: currentColor;
  vertical-align: -0.05em;
  animation: missionCaret 0.8s step-end infinite;
}

@keyframes missionCaret {
  50% { opacity: 0; }
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 0 48px;
}

.offer-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 52px 22px 40px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.offer-card img {
  width: min(160px, 70%);
  height: 110px;
  object-fit: contain;
  margin: 0 auto 36px;
}

.offer-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.85rem);
  line-height: 1.2;
  color: #163f35;
  margin: 0 0 8px;
  text-transform: capitalize;
}

.offer-card p {
  margin: 0;
  color: #163f35;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}

.offer-card:hover {
  background: #173f3d;
  color: var(--white);
}

.offer-card:hover h3,
.offer-card:hover p { color: var(--white); }

@media (min-width: 768px) {
  .offer-grid.will-animate .offer-card {
    opacity: 0;
    transform: translateX(100px);
  }
  .offer-grid.will-animate.is-inview .offer-card {
    animation: offerSlideIn 0.75s ease forwards;
  }
  .offer-grid.will-animate.is-inview .offer-card:nth-child(1) { animation-delay: 0s; }
  .offer-grid.will-animate.is-inview .offer-card:nth-child(2) { animation-delay: 0.22s; }
  .offer-grid.will-animate.is-inview .offer-card:nth-child(3) { animation-delay: 0.44s; }
}

@keyframes offerSlideIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.cta-band {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 80px 0;
  background: #173f3d url("../images/slider/recycle3.jpg") 50% 100% / cover no-repeat;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.67fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 22px 28px;
  align-items: center;
}

.cta-logo img {
  width: min(420px, 100%);
  height: auto;
  margin: 0 auto;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  padding: 56px 28px 36px;
  border-radius: 0 20px 0 20px;
}

.cta-card h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.35;
  margin: 0 0 10px;
}

.cta-card-light {
  background: var(--white);
  border: 1px solid #ececec;
  color: #163f35;
}

.cta-card-light h3 { color: #163f35; }

.cta-phone,
.cta-today {
  margin: 0;
  color: #7ac245;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.2;
}

.cta-phone a {
  color: inherit;
}

.cta-phone a:hover { color: #5a9a32; }

.cta-today { margin-bottom: 28px; }

.cta-card-dark {
  background: #173f3d;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card-dark h3 { color: var(--white); }

.cta-note {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Montserrat, "Public Sans", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 0 0 14px;
  background: #cade71;
  color: #173f3d;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0 10px 0 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: 22px;
  background: #b7ce4e;
  border-top-right-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn-icon svg {
  width: 18px;
  height: 18px;
}

.cta-card-light .cta-btn:hover,
.cta-card-light .cta-btn:focus-visible {
  background: #173f3d;
  color: var(--white);
}

.cta-card-light .cta-btn:hover .cta-btn-icon,
.cta-card-light .cta-btn:focus-visible .cta-btn-icon {
  background: #245a14;
  color: var(--white);
}

.cta-card-dark .cta-btn:hover,
.cta-card-dark .cta-btn:focus-visible {
  background: var(--white);
  color: #173f3d;
}

.cta-card-dark .cta-btn:hover .cta-btn-icon,
.cta-card-dark .cta-btn:focus-visible .cta-btn-icon {
  background: #b7ce4e;
  color: #173f3d;
}

/* Inner-page title band */
.page-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  background-color: #58815f;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title-about {
  background-image: url("../images/about/banner.jpg");
}

.page-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 307px;
  height: 307px;
  background: url("../images/patterns/header-pattern1.svg") center / contain no-repeat;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.page-title-box {
  position: relative;
  z-index: 1;
  max-width: 525px;
  margin: 0;
  padding: 88px 90px 100px;
  background: #58815f;
  border-top-right-radius: 12px;
}

.page-title-box::before,
.page-title-box::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.page-title-box::before {
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  background-image: url("../images/patterns/header-pattern2.svg");
}

.page-title-box::after {
  right: 15px;
  bottom: 5px;
  width: 90px;
  height: 90px;
  background-image: url("../images/patterns/header-pattern3.svg");
}

.page-title-box h1 {
  margin: 0;
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

/* About */
.about-intro {
  padding: 96px 0 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-copy p {
  margin: 0 0 1.1em;
  color: #3d4557;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.75rem);
  line-height: 1.25;
}

.about-copy .brand { color: #7ac245; }

.about-recycle-word {
  margin: 8px 0 1.4em;
}

.about-recycle-word img {
  width: min(250px, 70%);
  height: auto;
  margin: 0 auto;
}

.about-slider {
  min-width: 0;
}

.about-slider-viewport {
  position: relative;
  min-height: 420px;
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.about-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-slide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.about-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.about-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dbdbdb;
  cursor: pointer;
}

.about-slider-dots button.is-active,
.about-slider-dots button:hover {
  background: #6a6a6a;
}

.values {
  padding: 94px 0;
  background: #58815f;
  color: #f6f9f6;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 52px;
  align-items: stretch;
}

.values-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.values-copy h2 {
  max-width: none;
  margin: 0 0 18px;
  color: #f6f9f6;
  font-size: clamp(1.7rem, 2.6vw, 2.375rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.values-copy h2 span {
  color: #9ebda3;
}

.values-sub {
  margin: 0 0 8px;
  color: #f6f9f6;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.accordion {
  margin-top: 28px;
}

.accordion details {
  margin-bottom: 12px;
  padding: 16px 16px 16px 22px;
  background: #80a887;
  border-radius: 12px;
  color: #f3f7e9;
}

.accordion details:last-child { margin-bottom: 0; }

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  font-family: "DM Sans", "Public Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3f7e9;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  border: 2px solid #f3f7e9;
  border-radius: 50%;
  background: transparent;
}

.accordion details[open] summary::after {
  background: #f3f7e9;
  box-shadow: inset 0 0 0 3px #80a887;
}

.accordion .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #f3f7e9;
}

.accordion p {
  margin: 16px 0 0;
  padding: 0 28px 4px 34px;
  color: #f3f7e9;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* Contact */
.contact-wrap {
  padding: 64px 0 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-visual {
  min-height: 480px;
  border-radius: 18px;
  background: center / cover no-repeat;
}

.contact-form-section h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.contact-form-section h1 span {
  display: block;
  color: var(--lime);
  font-size: 0.7em;
  margin-top: 6px;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9dccb;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form button { justify-self: start; margin-top: 8px; }

.contact-map-section { padding: 20px 0 72px; }
.contact-map {
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}

/* Blog */
body:has(.blog-page) {
  background: #58815f;
}

.blog-page {
  padding: 96px 0 80px;
  background: #58815f;
  color: #eefffe;
}

.blog-page h1 {
  margin: 0;
  color: #eefffe;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.blog-kicker {
  margin: 0 0 36px;
  color: #9ebda3;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.blog-tags span {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 6.25rem;
  background: rgba(0, 0, 0, 0.18);
  color: #eefffe;
  font-size: 0.875rem;
}

.blog-card {
  max-width: 420px;
}

.blog-card-image {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.blog-card img {
  width: 100%;
  height: min(60vh, 520px);
  object-fit: cover;
}

.blog-card h2 {
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.blog-card h2 a { color: #eefffe; }
.blog-card h2 a:hover { color: #eefffe; text-decoration: underline; }

.article {
  padding: 64px 0 80px;
}
.article h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.blog-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.article-hero {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin: 18px 0 28px;
}
.article p { max-width: 46em; }

.sitemap-list {
  padding: 48px 0 80px;
}
.sitemap-list ul { line-height: 2; }

.thanks {
  padding: 80px 0;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--green);
}

.footer-banner {
  overflow: hidden;
  background: var(--white);
}

.footer-marquee {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.footer-marquee img {
  height: 120px;
  width: auto;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 22px 0 28px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

@media (max-width: 991px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .logo img { height: 44px; }
  .services-layout { grid-template-columns: 1fr; }
  .about-grid,
  .contact-layout,
  .values-grid { grid-template-columns: 1fr; }
  .values-copy h2,
  .values-sub { text-align: center; }
  .values-photo { min-height: 420px; max-height: 500px; }
  .contact-map { height: 310px; }
  .blog-page h1,
  .blog-kicker { text-align: center; }
  .blog-card { max-width: 100%; }
  .page-title { min-height: 420px; }
  .page-title-box { max-width: 420px; padding: 70px 55px 90px; }
  .page-title-box::before,
  .page-title-box::after { width: 70px; height: 70px; }
  .page-title::after { width: 200px; height: 200px; }
  .about-slider-viewport { min-height: 320px; }
  .about-slide img { height: 320px; }
}

@media (max-width: 767px) {
  .offer-grid { grid-template-columns: 1fr; }
  .services-lede { width: 89%; }
  .mission-word { white-space: normal; }
  .cta-band { padding: 56px 0 48px; }
  .cta-band-inner { grid-template-columns: 1fr; max-width: 420px; }
  .cta-card { min-height: 0; padding: 36px 28px 28px; }
  .cta-btn-icon { width: 48px; height: 48px; margin-left: 12px; }
  .page-title { min-height: 340px; }
  .page-title-box { max-width: 320px; padding: 50px 30px 60px; }
  .page-title-box::before,
  .page-title-box::after { width: 50px; height: 50px; }
  .page-title::after { width: 140px; height: 140px; right: -10px; }
  .values { padding: 40px 0; }
  .values-photo { min-height: 310px; }
}

@media (prefers-reduced-motion: reduce) {
  .mission-rotate::after { animation: none; }
  .mission-word,
  .mission-word.is-visible { transition: none; }
  .offer-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .about-slide { transition: none; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 72px; }
  .logo img { height: 36px; }
  .footer-marquee img { height: 72px; }
}
