:root {
  --bg: #f5f1e8;
  --bg-alt: #ece4d2;
  --ink: #1c2a22;
  --ink-soft: #3d4a40;
  --moss: #3a7d5a;
  --moss-deep: #1f4d3a;
  --sand: #e8d8a8;
  --clay: #b85c38;
  --line: #d6cdb8;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(31, 77, 58, 0.08);
  --maxw: 1140px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--moss-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clay);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
section {
  padding: 48px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--moss-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn:hover {
  background: var(--clay);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--moss-deep);
  border: 1.5px solid var(--moss-deep);
}
.btn-ghost:hover {
  background: var(--moss-deep);
  color: #fff;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--moss-deep);
}
.brand i {
  font-size: 1.4rem;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--moss-deep);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.menu-toggle:hover {
  background: var(--clay);
}

.overlay-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 77, 58, 0.97),
    rgba(28, 42, 34, 0.97)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 100;
}
.overlay-nav.open {
  opacity: 1;
  visibility: visible;
}
.overlay-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--moss-deep);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
}
.overlay-nav ul {
  list-style: none;
  text-align: center;
}
.overlay-nav li {
  margin: 14px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.overlay-nav.open li {
  opacity: 1;
  transform: translateY(0);
}
.overlay-nav.open li:nth-child(1) {
  transition-delay: 0.05s;
}
.overlay-nav.open li:nth-child(2) {
  transition-delay: 0.1s;
}
.overlay-nav.open li:nth-child(3) {
  transition-delay: 0.15s;
}
.overlay-nav.open li:nth-child(4) {
  transition-delay: 0.2s;
}
.overlay-nav.open li:nth-child(5) {
  transition-delay: 0.25s;
}
.overlay-nav a {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: #f5f1e8;
  position: relative;
  padding: 6px 14px;
}
.overlay-nav a:hover {
  color: var(--sand);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(31, 77, 58, 0.55),
    rgba(184, 92, 56, 0.35)
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-inner {
  color: #fff;
  max-width: 640px;
  padding-top: 80px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #f0ead8;
  font-size: 1.05rem;
  margin: 14px 0 24px;
}
.eyebrow {
  display: inline-block;
  background: rgba(232, 216, 168, 0.2);
  color: var(--sand);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}
.section-head .eyebrow {
  background: var(--bg-alt);
  color: var(--moss-deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--moss);
  margin-bottom: 10px;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.step {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--clay);
  display: block;
  margin-bottom: 8px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.quote {
  background: #fff;
  border-left: 4px solid var(--moss);
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
}
.quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-family: "Fraunces", serif;
}
.faq details[open] summary {
  color: var(--moss-deep);
}
.faq p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--moss-deep), var(--moss));
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 36px 20px;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #e0e9d8;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.product {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product .pbody {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--clay);
  margin: 8px 0;
}
.product ul {
  list-style: none;
  margin: 8px 0 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.product ul li {
  padding: 3px 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.product ul li::before {
  content: "✓";
  color: var(--moss);
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}
.product-visual {
  height: 140px;
  background: linear-gradient(135deg, var(--sand), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual i {
  font-size: 3.4rem;
  color: var(--moss-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}
.contact-info-list {
  list-style: none;
  margin-top: 14px;
}
.contact-info-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-info-list i {
  color: var(--clay);
  font-size: 1.2rem;
  margin-top: 2px;
}

form .field {
  margin-bottom: 14px;
}
form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--ink-soft);
}
form input,
form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--moss);
}
form textarea {
  min-height: 110px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
}
.consent input {
  width: auto;
  margin-top: 3px;
}

.map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.subhero {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.subhero p {
  max-width: 640px;
  margin: 8px auto 0;
}

.fullpage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 18px 50px;
}
.fullpage .inner {
  max-width: 520px;
}
.fullpage h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}
.fullpage .big-icon {
  font-size: 4rem;
  color: var(--clay);
  margin-bottom: 14px;
  display: block;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-content h2 {
  margin-top: 30px;
}
.policy-content h3 {
  margin-top: 20px;
}
.policy-content ul,
.policy-content ol {
  margin: 10px 0 14px 22px;
  color: var(--ink-soft);
}
.policy-content li {
  margin-bottom: 6px;
}

.site-footer {
  background: var(--moss-deep);
  color: #dfe7d8;
  padding: 28px 0 18px;
  font-size: 13px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}
.footer-links a {
  color: #dfe7d8;
}
.footer-links a:hover {
  color: var(--sand);
}
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 14px;
  padding-top: 12px;
  text-align: center;
  font-size: 12px;
  color: #bcc8b6;
}

.cookie-pop {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 200;
}
.cookie-pop.show {
  display: block;
  animation: slide 0.4s ease;
}
.cookie-pop p {
  font-size: 13px;
  margin-bottom: 10px;
}
.cookie-pop .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-pop .btn {
  padding: 7px 16px;
  font-size: 13px;
}
@keyframes slide {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  section {
    padding: 36px 0;
  }
}
@media (max-width: 380px) {
  .header-bar {
    padding: 6px 6px 6px 14px;
  }
  .brand {
    font-size: 0.95rem;
  }
  .overlay-nav a {
    font-size: 1.3rem;
  }
}
