* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #101820;
  --ink-soft: #1c2733;
  --paper: #f4f5f0;
  --paper-alt: #ffffff;
  --green: #1e6f5c;
  --green-dark: #123f34;
  --green-tint: #e6efec;
  --brass: #b08d3f;
  --brass-tint: #f3ead2;
  --grey: #5c6570;
  --grey-light: #d8dad3;
  --line: rgba(16, 24, 32, 0.13);
  --shadow-soft: 0 20px 45px rgba(16, 24, 32, 0.08);
  --font-display: "Fraunces", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --radius-s: 6px;
  --radius-m: 14px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { color: var(--grey); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--green);
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  gap: 34px;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper-alt);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-hero {
  padding: 72px 0 88px;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.page-hero p.lede {
  max-width: 620px;
  font-size: 1.1rem;
  margin-top: 18px;
}

.hero {
  padding: 76px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-copy p.lede {
  font-size: 1.15rem;
  max-width: 520px;
  margin: 22px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 34px;
}

.hero-stats div {
  border-left: 2px solid var(--brass);
  padding-left: 14px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--ink);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--grey);
}

.receipt {
  background: var(--paper-alt);
  border-radius: 4px;
  padding: 30px 28px 36px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  position: relative;
  transform: rotate(1.4deg);
}

.receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 22px;
  background-image: radial-gradient(circle at 12px 0, transparent 11px, var(--paper) 11.5px);
  background-size: 24px 22px;
  background-repeat: repeat-x;
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--grey-light);
  padding-bottom: 14px;
  margin-bottom: 14px;
  font-weight: 600;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  opacity: 0;
  transform: translateY(6px);
  animation: printLine 0.5s ease forwards;
}

.receipt-line.muted { color: var(--grey); }
.receipt-line.ok { color: var(--green-dark); }

.receipt-line:nth-child(1) { animation-delay: 0.15s; }
.receipt-line:nth-child(2) { animation-delay: 0.4s; }
.receipt-line:nth-child(3) { animation-delay: 0.65s; }
.receipt-line:nth-child(4) { animation-delay: 0.9s; }
.receipt-line:nth-child(5) { animation-delay: 1.15s; }
.receipt-line:nth-child(6) { animation-delay: 1.4s; }

@keyframes printLine {
  to { opacity: 1; transform: translateY(0); }
}

.receipt-rule {
  border-top: 1px dashed var(--grey-light);
  margin: 14px 0;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 10px;
}

.trust-strip {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-strip span.label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--grey);
  white-space: nowrap;
}

.trust-list {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-top: 16px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row:nth-child(even) .feature-art {
  order: 2;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-text h3 {
  margin-bottom: 12px;
}

.feature-text ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-text ul li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.feature-text ul li i {
  color: var(--green);
  margin-top: 3px;
}

.feature-art {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-m);
  position: relative;
  overflow: hidden;
  background: var(--paper-alt);
  box-shadow: var(--shadow-soft);
}

.feature-art svg {
  width: 100%;
  height: 100%;
}

.stats-band {
  background: var(--ink);
  color: #fff;
  padding: 78px 0;
}

.stats-band .section-head {
  color: #fff;
}

.stats-band .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.stat-card strong {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--brass);
  display: block;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--paper-alt);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-thumb {
  aspect-ratio: 16 / 9;
}

.article-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.article-body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.article-body h3 {
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 0.95rem;
  flex: 1;
}

.article-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
}

.article-full-inner {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-toggle {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green-dark);
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.article-toggle i {
  transition: transform 0.3s ease;
}

.article-card.open .article-toggle i {
  transform: rotate(180deg);
}

.cta-band {
  background: var(--green-tint);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  max-width: 620px;
  margin: 0 auto 16px;
}

.cta-band p {
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand p {
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: none;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--paper-alt);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
}

.value-card .feature-icon {
  margin-bottom: 22px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story .pull {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--green);
  padding-left: 22px;
  margin-top: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
}

.faq-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--grey);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-nav a:hover {
  background: var(--paper-alt);
  color: var(--ink);
}

.faq-group {
  margin-bottom: 52px;
  scroll-margin-top: 110px;
}

.faq-group h3 {
  margin-bottom: 6px;
}

.faq-group .count {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 24px;
  display: block;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-question i {
  flex-shrink: 0;
  color: var(--green);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.96rem;
  max-width: 640px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 34px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-item .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.92rem;
}

.map-frame {
  margin-top: 34px;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--paper-alt);
  border-radius: var(--radius-m);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 14px;
  text-align: center;
}

.alert {
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.alert-success {
  background: var(--green-tint);
  color: var(--green-dark);
}

.alert-error {
  background: #fbeae7;
  color: #9a3412;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.count-up {
  display: inline-block;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row:nth-child(even) .feature-art {
    grid-template-columns: 1fr;
    order: initial;
  }

  .feature-row .feature-art {
    order: -1;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper-alt);
    flex-direction: column;
    padding: 20px 28px 30px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: 90;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions .btn-small {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 46px 0 40px;
  }

  .receipt {
    transform: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .section {
    padding: 64px 0;
  }

  .stats-grid,
  .values-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .contact-form {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 20px;
  }

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

  h1 {
    font-size: 2.1rem;
  }
}