@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,700;12..96,800&family=IBM+Plex+Serif:wght@400;600&display=swap');

:root {
  --bg: #eef3e6;
  --bg-deep: #dfead7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --ink: #132016;
  --muted: #48614e;
  --accent: #1f8a4f;
  --accent-2: #f28c28;
  --line: rgba(19, 32, 22, 0.14);
  --shadow: 0 20px 40px rgba(16, 31, 21, 0.12);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -10%, rgba(31, 138, 79, 0.2), transparent 50%),
    radial-gradient(circle at 90% -30%, rgba(242, 140, 40, 0.2), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #f7faf1 45%, var(--bg-deep) 100%);
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

main {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 12rem 0 8rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'IBM Plex Serif', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section {
  margin-top: 8rem;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.section-eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(2.6rem, 3.2vw, 4.2rem);
}

.section-head p {
  max-width: 70ch;
  color: var(--muted);
}

.surface {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.btn,
button.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 1.2rem 2.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), #2ca460);
  color: #fff;
  box-shadow: 0 14px 24px rgba(31, 138, 79, 0.28);
}

.btn-secondary {
  background: linear-gradient(130deg, #121f15, #2b3f31);
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: fixed;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 3.2rem));
  z-index: 50;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(16, 31, 21, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), #45bd77);
  color: #fff;
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 14px rgba(31, 138, 79, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-links a {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #263a2b;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(31, 138, 79, 0.12);
  color: #134f2d;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  margin-top: 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  position: relative;
}

.hero-shell::after {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 138, 79, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1.8rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 4.8vw, 6rem);
}

.hero-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cards {
  display: grid;
  gap: 1.2rem;
}

.hero-photo {
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.floating-note {
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.floating-note h3 {
  font-size: 1.8rem;
}

.floating-note p {
  color: var(--muted);
  font-size: 1.4rem;
}

.metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.78);
}

.metric strong {
  display: block;
  font-size: 2.4rem;
  font-family: 'IBM Plex Serif', serif;
}

.metric span {
  font-size: 1.3rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.card-body h3 {
  font-size: 2.1rem;
}

.card-body p {
  color: var(--muted);
  font-size: 1.5rem;
}

.quote-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.quote {
  border-radius: 14px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.quote p {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.9rem;
}

.quote small {
  margin-top: 0.8rem;
  display: block;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.form-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.form-info {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.form-info h3 {
  font-size: 3.2rem;
}

.form-info p {
  color: var(--muted);
}

.social-list {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-list a {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-size: 1.4rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.95);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(31, 138, 79, 0.3);
  border-color: #1b6f40;
}

.page-hero {
  padding: 2.8rem;
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  font-size: clamp(3rem, 4.4vw, 5.2rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 72ch;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
}

.about-photo {
  overflow: hidden;
}

.about-photo-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.story-block {
  padding: 2rem;
}

.story-block p {
  color: var(--muted);
  margin-top: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-solid);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 1.6rem;
  font-weight: 700;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  border-top: 1px solid var(--line);
  padding: 1.4rem 1.6rem;
  color: var(--muted);
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-item {
  padding: 1.6rem;
}

.resource-item h3 {
  font-size: 2.2rem;
}

.resource-item p {
  color: var(--muted);
  margin-top: 0.8rem;
}

.site-footer {
  margin-top: 7rem;
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 5rem;
}

.footer-shell {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-shell h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-shell p,
.footer-shell li a {
  color: var(--muted);
}

.footer-meta {
  width: min(1200px, calc(100% - 4rem));
  margin: 2rem auto 0;
  font-size: 1.3rem;
  color: var(--muted);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  main {
    width: min(1200px, calc(100% - 2.4rem));
    padding-top: 10.6rem;
  }

  .hero-shell,
  .about-layout,
  .form-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .video-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    width: calc(100% - 2rem);
    top: 1rem;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
  }

  .nav-links {
    position: fixed;
    inset: 7rem 1rem auto 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .pill {
    display: none;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .video-grid,
  .gallery-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    font-size: clamp(3rem, 10vw, 4.6rem);
  }

  .section {
    margin-top: 6rem;
  }
}
