:root {
  --brand: #589d62;
  --brand-dark: #3d6b45;
  --brand-light: #7bc085;
  --ink: #1a241c;
  --ink-soft: #2d3a32;
  --paper: #f6f1e6;
  --paper-dark: #e8dfc8;
  --cream: #fffdf8;
  --accent: #c45c2a;
  --accent-soft: #d4875c;
  --radius: 6px;
  --shadow: 0 12px 40px rgba(26, 36, 28, 0.18);
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --maxw: 1120px;
  --tap: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(246, 241, 230, 0.96);
  border-bottom: 1px solid rgba(26, 36, 28, 0.12);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand:hover,
.brand:focus-visible {
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid var(--ink);
  background: var(--cream);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 36, 28, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
  }

  .site-nav li {
    border-top: 1px solid rgba(26, 36, 28, 0.08);
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
  }
}

.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: center;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/picture.jpg") center/cover no-repeat;
  z-index: -2;
  transform: scale(1.04);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.hero:hover::before {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 36, 28, 0.88) 0%, rgba(26, 36, 28, 0.55) 45%, rgba(88, 157, 98, 0.35) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  transition: letter-spacing 0.45s ease, transform 0.45s ease;
}

.hero:hover .hero-copy h1 {
  letter-spacing: 0.03em;
  transform: translateY(-2px);
}

.hero-copy .btn-outline {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-copy .btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.12);
}

.hero-copy .lead {
  font-size: 1.15rem;
  max-width: 36ch;
  color: #f0ebe0;
}

.hero-panel {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(88, 157, 98, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-panel:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(26, 36, 28, 0.28);
}

.hero-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.hero-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.hero-panel input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 36, 28, 0.25);
  font: inherit;
  margin-bottom: 1rem;
  background: var(--cream);
  color: var(--ink);
}

.hero-panel input:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 1px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand);
  color: var(--cream);
  border-color: var(--brand-dark);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 253, 248, 0.85);
}

.btn-outline:hover {
  background: rgba(255, 253, 248, 0.12);
}

.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--paper-dark);
}

.section {
  padding: 3.25rem 1rem;
}

.section.alt {
  background: var(--ink);
  color: #e8f0e9;
}

.section.alt h2,
.section.alt h3 {
  color: var(--cream);
}

.section.alt a {
  color: var(--brand-light);
}

.section.alt a:hover {
  color: var(--accent-soft);
}

.section.mint {
  background: #dfead9;
  color: var(--ink);
}

.section.paper {
  background: var(--paper-dark);
}

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(26, 36, 28, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(26, 36, 28, 0.08);
}

.section.alt .card {
  background: var(--ink-soft);
  color: #e8f0e9;
  border-color: rgba(123, 192, 133, 0.25);
}

.section.alt .card h3 {
  color: var(--brand-light);
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.icon-title i {
  color: var(--brand);
  font-size: 1.35rem;
}

.section.alt .icon-title i {
  color: var(--accent-soft);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: rgba(88, 157, 98, 0.15);
  border: 1px solid rgba(88, 157, 98, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section.alt .pill-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--cream);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  border-bottom: 1px dashed rgba(26, 36, 28, 0.15);
}

.checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand);
}

.section.alt .checklist li {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq details {
  border: 1px solid rgba(26, 36, 28, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  background: var(--cream);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  float: right;
  color: var(--brand);
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.disclaimer {
  font-size: 0.92rem;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(196, 92, 42, 0.08);
  color: var(--ink);
}

.section.alt .disclaimer {
  background: rgba(255, 255, 255, 0.06);
  color: #f0ebe0;
  border-color: var(--accent-soft);
}

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 36, 28, 0.15);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--ink);
  color: #dbe8dd;
  padding: 2.5rem 1rem;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.site-footer a {
  color: var(--brand-light);
}

.site-footer .footer-meta {
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

form .field {
  margin-bottom: 1rem;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 36, 28, 0.25);
  font: inherit;
  background: var(--cream);
  color: var(--ink);
}

form textarea {
  min-height: 160px;
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--brand);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--ink);
  color: #e8f0e9;
  padding: 1rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.cookie-panel {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: none;
}

.cookie-panel.is-open {
  display: block;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #444;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: var(--brand);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand-dark) 100%);
  color: var(--cream);
  padding: 2.5rem 1rem;
}

.page-hero h1 {
  color: var(--cream);
}

.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: var(--brand-light);
}

.pullquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--brand);
  background: rgba(88, 157, 98, 0.12);
  margin: 1.5rem 0;
}

.two-col-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
}

@media (max-width: 900px) {
  .two-col-aside {
    grid-template-columns: 1fr;
  }
}

.aside-box {
  background: var(--cream);
  border: 1px solid rgba(26, 36, 28, 0.12);
  border-radius: 10px;
  padding: 1.25rem;
  align-self: start;
}

.section.alt .aside-box {
  color: #111827;
}

.section.alt .aside-box h3 {
  color: #111827;
}

.section.alt .aside-box .steps li {
  color: #111827;
}

.section.alt .aside-box a {
  color: var(--brand-dark);
}

.section.alt .aside-box a:hover,
.section.alt .aside-box a:focus-visible {
  color: var(--accent);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.success-icon {
  font-size: 3rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.split-feature {
  background: #ffffff;
  color: #1f2937;
}

.split-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(72vh, 580px);
}

.split-feature__media {
  position: relative;
  min-height: 280px;
  background: #e5e7eb;
}

.split-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-feature__content {
  padding: clamp(1.75rem, 5vw, 4.75rem) clamp(1.25rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.split-feature__kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 1rem;
  font-weight: 600;
}

.split-feature__title {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.split-feature__lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.split-feature__body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.split-feature__read {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.55rem 1.75rem;
  border: 1px solid #589d62;
  color: #1a241c;
  font-style: italic;
  text-transform: lowercase;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.split-feature__read:hover,
.split-feature__read:focus-visible {
  background: rgba(88, 157, 98, 0.14);
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.split-feature__read:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .split-feature__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .split-feature__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 1rem;
  }

  .hero-panel {
    padding: 1.25rem;
  }

  .split-feature__content {
    padding: 1.35rem 1rem 1.75rem;
  }
}
