:root {
  --bg: #fdf8f0;
  --surface: #fffaf2;
  --ink: #22251f;
  --muted: #5b6058;
  --line: #e6dfd1;
  --sage: #4a7c59;
  --sage-dark: #36603f;
  --clay: #d97757;
  --clay-dark: #b65a3f;
  --shadow: 0 6px 24px rgba(54, 96, 63, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1140px;
  --gap: 18px;
  --tx-display: "Fraunces", Georgia, serif;
  --tx-body: "DM Sans", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--tx-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}
a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clay-dark);
}
h1,
h2,
h3,
h4 {
  font-family: var(--tx-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}
h3 {
  font-size: 1.15rem;
}
p {
  margin: 0 0 0.8em;
}
ul,
ol {
  padding-left: 1.1rem;
  margin: 0 0 0.8em;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  padding: 48px 0;
}
.section-tight {
  padding: 32px 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-dark);
  font-weight: 700;
  margin-bottom: 0.6em;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65em 1.2em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--sage);
  color: #fff;
  border: 1px solid var(--sage);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.btn:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn-ghost:hover {
  background: var(--sage);
  color: #fff;
}
.btn-clay {
  background: var(--clay);
  border-color: var(--clay);
}
.btn-clay:hover {
  background: var(--clay-dark);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}
.site-header.is-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--tx-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand i {
  color: var(--clay);
  font-size: 1.35rem;
}
.brand:hover {
  color: var(--sage-dark);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 1.25rem;
  color: var(--ink);
}
.nav-toggle:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}

.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(34, 37, 31, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 60;
}
.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: var(--surface);
  padding: 64px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.site-nav.is-open .nav-panel {
  transform: translateX(0);
}
.nav-panel a {
  font-family: var(--tx-display);
  font-size: 1.2rem;
  color: var(--ink);
  padding: 0.35em 0;
  border-bottom: 1px solid var(--line);
}
.nav-panel a:hover {
  color: var(--clay-dark);
  padding-left: 0.4em;
}
.nav-panel a.active {
  color: var(--sage-dark);
}
.nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.hero {
  background: linear-gradient(135deg, #f4ead7 0%, #e8f1e3 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero-art {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(54, 96, 63, 0.18);
  position: relative;
}
.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-badges span {
  font-size: 0.78rem;
  background: #fff;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: var(--gap);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.card i.feat {
  font-size: 1.6rem;
  color: var(--sage);
  background: #eaf2e6;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
}
.stat-row .stat {
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.stat b {
  font-family: var(--tx-display);
  font-size: 1.7rem;
  color: var(--sage-dark);
  display: block;
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps .step {
  position: relative;
  padding: 22px 18px 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.steps .step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--clay);
  color: #fff;
  font-family: var(--tx-display);
  padding: 0.2em 0.65em;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--clay);
  padding: 22px;
  border-radius: var(--radius);
}
.testimonial cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 0.9rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .price {
  font-family: var(--tx-display);
  font-size: 1.6rem;
  color: var(--clay-dark);
  font-weight: 600;
}
.product ul {
  font-size: 0.9rem;
  color: var(--muted);
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}
.product .tag {
  display: inline-block;
  background: #eaf2e6;
  color: var(--sage-dark);
  font-size: 0.72rem;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  background: linear-gradient(160deg, #e8f1e3, #f4ead7);
  border-radius: 24px;
  padding: 32px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.contact-info li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  margin-bottom: 0.6em;
  font-size: 0.95rem;
}
.contact-info li i {
  color: var(--clay);
  font-size: 1.15rem;
  margin-top: 2px;
}
.contact-form {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3em;
  color: var(--muted);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  margin-bottom: 14px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.18);
}
.consent {
  display: flex;
  gap: 0.55em;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 6px 0 14px;
}
.consent input {
  margin-top: 3px;
}

.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.site-footer {
  margin-top: auto;
  background: #22251f;
  color: #d8d3c6;
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-inner a {
  color: #f4ead7;
}
.footer-inner a:hover {
  color: var(--clay);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a {
  font-size: 0.82rem;
}

.fullscreen {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}
.fullscreen .container {
  max-width: 640px;
}
.big-num {
  font-family: var(--tx-display);
  font-size: clamp(5rem, 18vw, 10rem);
  color: var(--clay);
  line-height: 1;
  margin: 0;
}

.policy article {
  max-width: 760px;
  margin: 0 auto;
}
.policy h2 {
  margin-top: 1.8em;
}
.policy h3 {
  margin-top: 1.4em;
  color: var(--sage-dark);
}
.policy p,
.policy li {
  color: var(--ink);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
}
 
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  flex: 1 1 240px;
  color: var(--muted);
}
.cookie-banner .btn {
  padding: 0.5em 1em;
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .hero-grid,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .products,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 44px 0 40px;
  }
}
@media (max-width: 560px) {
  .grid-3,
  .products,
  .steps,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 36px 0;
  }
  .contact-wrap {
    padding: 20px;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 14px;
  }
  .btn {
    padding: 0.55em 1em;
    font-size: 0.85rem;
  }
}
