:root {
  --bg: #f4efe6;
  --ink: #1f2421;
  --muted: #5b6660;
  --accent: #3a7d5b;
  --accent-2: #c97b3c;
  --paper: #ffffff;
  --line: #d8d2c4;
  --shadow: 0 6px 20px rgba(31, 36, 33, 0.08);
  --radius: 14px;
  --maxw: 1120px;
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.7rem;
  color: var(--muted);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.15s;
}
.btn:hover {
  background: #2f6649;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn.alt {
  background: var(--accent-2);
}
.btn.alt:hover {
  background: #a86530;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.35s ease,
    background 0.25s;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.site-header.hidden {
  transform: translateY(-110%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.brand i {
  color: var(--accent);
  font-size: 1.4rem;
}
.brand:hover {
  text-decoration: none;
}
.nav-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink);
  transition: transform 0.25s;
}
.nav-toggle:hover {
  transform: rotate(90deg);
}
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 82vw);
  background: var(--paper);
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 60px 28px 30px;
}
.nav-panel.open {
  transform: translateX(0);
}
.nav-panel a {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.nav-panel a:hover {
  color: var(--accent);
  text-decoration: none;
}
.nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 36, 33, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 90;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.hero h1 span {
  color: var(--accent-2);
  font-style: italic;
}
.hero p.lead {
  font-size: 1.05rem;
  margin: 1rem 0 1.4rem;
  color: var(--ink);
}
.hero-art {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15));
}

.section {
  padding: 60px 0;
}
.section.alt {
  background: var(--paper);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head .tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature i {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 18px 18px 18px 52px;
  border-radius: 8px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 16px;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--accent-2);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink);
}
.checklist li i {
  color: var(--accent);
  margin-top: 3px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.product:hover {
  transform: translateY(-4px);
}
.product .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #69b18a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.product .price {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--accent-2);
  font-weight: 600;
}
.product ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.4rem 0 1rem;
}
.product ul li {
  padding: 0.2rem 0;
  border-bottom: 1px dotted var(--line);
}
.product .btn {
  margin-top: auto;
  justify-content: center;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-family: var(--f-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin-top: 0.6rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent), #2a5e44);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
}
.cta-band .btn {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn:hover {
  background: #f4efe6;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info .row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.contact-info .row i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .row strong {
  display: block;
  font-family: var(--f-display);
  color: var(--ink);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 260px;
  margin-top: 1rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.field label {
  font-size: 0.82rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}
.consent input {
  margin-top: 3px;
}

.page-hero {
  padding: 130px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, #ece5d4, var(--bg));
}
.page-hero h1 {
  margin-bottom: 0.6rem;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink);
}

.policy {
  padding: 120px 0 60px;
}
.policy article {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.policy h2 {
  margin-top: 1.6rem;
}
.policy h3 {
  margin-top: 1.2rem;
  color: var(--accent);
}
.policy p,
.policy li {
  font-size: 0.93rem;
}
.policy ul {
  margin: 0.4rem 0 0.8rem 1.2rem;
  color: var(--muted);
}

.center-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 18px;
}
.center-screen .inner {
  max-width: 520px;
}
.center-screen .big {
  font-family: var(--f-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.site-footer {
  background: var(--ink);
  color: #cdd2cf;
  padding: 24px 0;
  font-size: 0.85rem;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.foot-inner a {
  color: #a8d3bd;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-pop {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 480px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 200;
  display: none;
}
.cookie-pop.show {
  display: block;
  animation: slideUp 0.35s ease;
}
.cookie-pop p {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.cookie-pop .row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 780px) {
  .hero {
    padding: 110px 0 50px;
  }
  .hero-grid,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-band {
    padding: 28px 20px;
  }
  .contact-wrap {
    padding: 22px;
  }
}
@media (max-width: 380px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 14px;
  }
  .feature,
  .product {
    padding: 18px;
  }
  .nav-panel {
    padding: 54px 22px 22px;
  }
}
