:root {
  --bg: #f3f5ee;
  --surface: #ffffff;
  --ink: #102017;
  --muted: #4a5e52;
  --brand: #1f5f39;
  --brand-2: #adc66b;
  --line: #d8e2d5;
  --shadow: 0 12px 38px rgba(16, 32, 23, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(173, 198, 107, 0.45), transparent 40%),
    radial-gradient(circle at 92% 85%, rgba(31, 95, 57, 0.18), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(243, 245, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px rgba(173, 198, 107, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  padding: 4.2rem 0 3.2rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 380px;
  background: linear-gradient(150deg, rgba(31, 95, 57, 0.16), rgba(173, 198, 107, 0.13));
  transform: rotate(-3deg);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-grid > div:first-child {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #e7efcf;
  color: #355e2d;
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin: 1rem 0;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 0.7rem;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-points {
  padding-left: 0;
  margin-top: 1rem;
  list-style-position: inside;
  text-align: center;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
  justify-content: center;
}

.cta-actions-centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, var(--brand), #163f28);
  color: #fff;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: #2b573f;
  color: #1f5f39;
}

.btn-small {
  padding: 0.5rem 0.8rem;
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section .container {
  text-align: center;
}

.section .hero-cta {
  justify-content: center;
}

.section-intro {
  margin-top: -0.4rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  box-shadow: 0 8px 20px rgba(16, 32, 23, 0.07);
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card h3 {
  margin: 0.9rem 0 0.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  border: 2px dashed #c8d3c6;
  background: repeating-linear-gradient(
    45deg,
    #f6f8f2,
    #f6f8f2 10px,
    #edf2e8 10px,
    #edf2e8 20px
  );
}

.accent {
  background: linear-gradient(180deg, rgba(173, 198, 107, 0.22), rgba(173, 198, 107, 0.08));
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem auto 0;
  max-width: 48rem;
}

.checklist li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.55rem;
}

.checklist li::before {
  content: "• ";
  position: static;
  color: var(--brand);
  font-weight: 700;
}

.image-frame {
  margin: 0;
  padding: 0.7rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: left;
  box-shadow: 0 8px 20px rgba(16, 32, 23, 0.07);
}

.blog-card h3 {
  margin: 0.45rem 0 0.5rem;
  font-size: 1.35rem;
}

.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h3 a:hover {
  text-decoration: underline;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card-read {
  margin-top: 0.7rem;
}

.blog-card-read a {
  color: #1e5237;
  font-weight: 700;
}

.blog-card-meta {
  margin: 0;
  color: #2c6042;
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-admin-cta {
  margin-top: 1.2rem;
}

.breadcrumbs {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: #254f36;
}

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.article-wrap h1 {
  margin-bottom: 0.7rem;
}

.article-meta {
  margin: 0 0 1.3rem;
  color: #2c6042;
  font-weight: 600;
}

.article-cover {
  margin: 0 0 1.5rem;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-wrap p,
.article-wrap li {
  color: #29382f;
}

.article-wrap ul,
.article-wrap ol {
  padding-left: 1.15rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin-left: auto;
  margin-right: auto;
  max-width: 65ch;
}

.cta-box {
  border-radius: 22px;
  border: 1px solid #29523c;
  background: linear-gradient(150deg, #1f5f39, #163f28);
  color: #fff;
  text-align: center;
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #e8f2ea;
}

.cta-box .btn {
  background: #ffffff;
  color: #173825;
}

.cta-box .btn-ghost {
  border-color: #dcefe1;
  color: #e8f2ea;
}

.footer {
  padding: 1.7rem 0 2.3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer a {
  color: #254f36;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 0.7rem;
    font-size: 0.95rem;
  }

  .hero-grid,
  .split,
  .cards,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 3.2rem 0 2.4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-bg {
    height: 300px;
    transform: rotate(-2deg);
  }

  .topbar-inner {
    min-height: 64px;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .main-nav a:not(.btn-small) {
    display: none;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-card,
  .card,
  .image-frame {
    padding: 0.65rem;
  }

  .cta-box {
    padding: 1.4rem;
  }

  .footer-grid {
    justify-content: center;
    text-align: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .blog-form-grid {
    grid-template-columns: 1fr;
  }
}
