﻿:root {
  --bg: #f7f7f1;
  --surface: #ffffff;
  --surface-soft: #ecf4ea;
  --text: #132115;
  --muted: #4a5e4c;
  --brand: #2f7a2f;
  --brand-dark: #1e5b24;
  --accent: #f28c00;
  --line: #d3ddd2;
  --shadow: 0 18px 45px rgba(22, 52, 28, 0.09);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 95% 8%, rgba(242, 140, 0, 0.12), transparent 38%),
    radial-gradient(circle at 5% 94%, rgba(47, 122, 47, 0.16), transparent 32%),
    var(--bg);
  line-height: 1.65;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-pad {
  padding: 5.5rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(211, 221, 210, 0.8);
  background: rgba(247, 247, 241, 0.9);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2a362b;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #25402c;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--surface-soft);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: linear-gradient(120deg, var(--brand), #2b6e2f);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: var(--brand-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--surface-soft);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-dark);
  margin: 5px auto;
  transition: transform 260ms ease, opacity 260ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.media-card,
.wide-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.media-card img,
.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card {
  aspect-ratio: 4 / 3;
}

.wide-image {
  margin-bottom: 1rem;
  aspect-ratio: 16 / 6;
}

.wide-image-faces img {
  object-position: center 28%;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.82rem 1.3rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 25px rgba(47, 122, 47, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(47, 122, 47, 0.3);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-panel {
  background: linear-gradient(150deg, #edf4e8, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.8rem;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-shape-1 {
  width: 320px;
  height: 320px;
  right: -130px;
  top: -90px;
  background: radial-gradient(circle at 35% 40%, rgba(242, 140, 0, 0.2), transparent 70%);
}

.hero-shape-2 {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: -120px;
  background: radial-gradient(circle at 50% 50%, rgba(47, 122, 47, 0.18), transparent 70%);
}

.section-head {
  max-width: 70ch;
  margin-bottom: 1.8rem;
}

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

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 250ms ease, border-color 250ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #bccdbd;
}

.card p {
  font-size: 0.98rem;
}

.section-band {
  background: linear-gradient(140deg, #e9f3e3 0%, #f9f8ef 52%, #f3ead9 100%);
  border-top: 1px solid rgba(211, 221, 210, 0.9);
  border-bottom: 1px solid rgba(211, 221, 210, 0.9);
}

.band-grid {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.band-grid .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.page-hero {
  padding-top: 4.7rem;
  padding-bottom: 2.2rem;
}

.page-hero p {
  max-width: 70ch;
}

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

.card-lg {
  padding: 2rem;
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--brand), var(--accent));
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: #c3cdbd;
}

.team-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(720px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card a {
  display: inline-block;
  margin: 0.7rem 0 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--brand-dark);
}

.site-footer {
  border-top: 1px solid rgba(211, 221, 210, 0.95);
  background: rgba(255, 255, 255, 0.7);
}

.footer-wrap {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-wrap p {
  color: #4c5e4f;
  font-size: 0.93rem;
}

.footer-wrap a {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1080px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wide-image {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 4.25rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.6rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 240ms ease, transform 240ms ease;
  }

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

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .band-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .two-col,
  .cards-4,
  .cards-3,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .wide-image {
    aspect-ratio: 16 / 10;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }

  .brand-logo {
    height: 68px;
  }
}

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