:root {
  --bg: #f8f4ea;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --green: #244a2f;
  --green-2: #356c45;
  --green-3: #7fa36a;
  --sage: #e5ead9;
  --cream: #f3e6c8;
  --soil: #7a5734;
  --text: #243026;
  --muted: #69746b;
  --line: rgba(36, 74, 47, 0.14);
  --shadow: 0 22px 60px rgba(44, 59, 36, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(127, 163, 106, 0.18), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(243, 230, 200, 0.7), transparent 28%),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 234, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green);
  font-size: 20px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(36, 74, 47, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--green);
  background: rgba(36, 74, 47, 0.08);
}

.nav-cta {
  color: #fff !important;
  background: var(--green) !important;
  box-shadow: 0 12px 26px rgba(36, 74, 47, 0.18);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  border-radius: 2px;
}

.section-soft {
  padding: 74px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow.light { color: #d8e8c9; }

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(44px, 7vw, 84px);
  max-width: 820px;
  color: #183121;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  color: #1f3928;
}

h3 { font-size: 24px; color: #203626; }

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(36, 74, 47, 0.2);
}
.button-secondary {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--green);
}

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

.hero-stats div {
  min-width: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--green);
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  padding: 22px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(229,234,217,0.72));
  border: 1px solid rgba(36, 74, 47, 0.12);
  box-shadow: var(--shadow);
}

.hero-card img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
}

.floating-note {
  position: absolute;
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(36, 74, 47, 0.16);
}

.note-one { left: -8px; top: 20%; }
.note-two { right: -8px; bottom: 18%; }

.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.intro-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(36, 74, 47, 0.06);
}

.intro-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--sage);
  font-size: 24px;
}

.intro-card p { margin: 12px 0 0; color: var(--muted); }

.section { padding: 92px 0; }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-head p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.align-left { text-align: left; margin-left: 0; }

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

.article-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(36, 74, 47, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(36, 74, 47, 0.13);
}

.article-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  background: var(--sage);
}

.article-content { padding: 24px; }

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green);
  background: #edf2e5;
  font-size: 12px;
  font-weight: 800;
}

.article-content p { color: var(--muted); margin: 14px 0 0; }
.article-content ul { color: var(--muted); padding-left: 20px; }

.read-more {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-2);
  font-weight: 800;
}

.section-green {
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 232, 201, 0.22), transparent 26%),
    linear-gradient(135deg, #1f3e2a, #315f3c);
  color: #fff;
}

.section-green h2 { color: #fff; }
.section-green p { color: rgba(255,255,255,0.76); }

.calendar-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.calendar-list {
  display: grid;
  gap: 14px;
}

.calendar-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
}

.calendar-item span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: #fff;
}

.calendar-item p { margin: 0; }

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.86);
  box-shadow: 0 14px 44px rgba(36, 74, 47, 0.07);
}

.detail-card p { color: var(--muted); }
.detail-card p:last-child { margin-bottom: 0; }

.gallery { padding-top: 32px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 180px 180px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(36,74,47,0.18), rgba(127,163,106,0.08)),
    linear-gradient(135deg, #dfe7cb, #fff6dc);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(36, 74, 47, 0.08);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1px solid rgba(36, 74, 47, 0.18);
  background:
    radial-gradient(circle at 20% 80%, rgba(53,108,69,0.32) 0 12px, transparent 13px),
    radial-gradient(circle at 50% 58%, rgba(53,108,69,0.24) 0 16px, transparent 17px),
    radial-gradient(circle at 75% 70%, rgba(122,87,52,0.22) 0 13px, transparent 14px);
}

.gallery-item span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: var(--green);
  font-weight: 900;
  z-index: 1;
}

.item-large { grid-row: span 2; }

.contact { padding-top: 26px; }

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card p:last-child { color: var(--muted); margin-bottom: 0; }

.subscribe-form {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f6f1e6;
}

.subscribe-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p { margin: 0; }
.footer a { color: var(--green); font-weight: 800; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { border-radius: 14px; }
  .hero-grid,
  .calendar-grid,
  .contact-card { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .intro-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-soft { padding-top: 42px; }
  .section { padding: 64px 0; }
  .hero-stats { flex-direction: column; }
  .article-grid,
  .detail-list,
  .gallery-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-column: span 1; }
  .gallery-grid { grid-template-rows: none; }
  .item-large { grid-row: span 1; }
  .subscribe-form { flex-direction: column; border-radius: 24px; }
  .subscribe-form input { min-height: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .floating-note { display: none; }
}
