:root {
  --bg: #f6f3ee;
  --paper: #fffcf8;
  --ink: #2b2926;
  --muted: #6a655c;
  --line: #e4ddd3;
  --fern: #5a6a4a;
  --fern-dark: #445238;
  --shadow: 0 12px 40px rgba(43, 41, 38, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--fern-dark); }
h1, h2, h3, .logo, .footer-brand {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1.25;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--paper);
  padding: 0.5rem 1rem;
}
.skip:focus { left: 0; z-index: 20; }
.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.logo {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.15rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  font: inherit;
  cursor: pointer;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}
.nav-cta {
  background: var(--fern);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.hero-copy {
  padding: 4.5rem 8vw 4rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--paper);
}
.hero-copy p.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--fern);
  margin: 0 0 1rem;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 1.25rem;
}
.hero-copy .lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 252, 248, 0.92);
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
}
.section { padding: 4.5rem 0; }
.section h2 { font-size: 2rem; margin: 0 0 1.5rem; }
.prose { max-width: 68ch; }
.prose p { color: var(--ink); }
.muted { color: var(--muted); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-body { padding: 1.2rem 1.25rem 1.4rem; }
.card-body h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.card-body a { text-decoration: none; }
.btn, button.btn {
  display: inline-block;
  background: var(--fern);
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.quote-block {
  background: var(--paper);
  border-left: 3px solid var(--fern);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.quote-block p { margin: 0 0 0.75rem; font-family: "Libre Baskerville", serif; font-style: italic; }
.meta { font-size: 0.9rem; color: var(--muted); }
.site-footer {
  background: #ebe6dd;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 0.8fr;
  gap: 2rem;
}
.footer-brand { font-size: 1.2rem; margin: 0 0 0.5rem; }
.footer-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0.3rem 0; }
.footer-base { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1rem; font-size: 0.9rem; }
.page-hero {
  padding: 3.5rem 0 1rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 0.75rem; }
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}
.form label { display: grid; gap: 0.35rem; font-size: 0.95rem; }
.form input, .form textarea, .form select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.form .error { color: #8a3b2b; font-size: 0.85rem; }
.form .status { margin-top: 0.5rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2rem; }
table { width: 100%; border-collapse: collapse; background: var(--paper); }
th, td { border: 1px solid var(--line); padding: 0.6rem 0.7rem; text-align: left; font-size: 0.9rem; }
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  z-index: 30;
  box-shadow: var(--shadow);
}
.cookie-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-actions { display: flex; gap: 0.6rem; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin: 3rem 0; }
.story img { border-radius: 12px; }
.price-row {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .hero-split, .footer-grid, .story, .cookie-inner, .price-row {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 2.5rem 1.25rem 2rem; }
}
