:root {
  --bg: #f4f1ea;
  --bg-alt: #ece6d8;
  --ink: #1f2a24;
  --ink-soft: #445049;
  --moss: #3a5a40;
  --moss-dark: #283d2c;
  --sage: #a3b18a;
  --clay: #bc6c25;
  --line: #d9d3c2;
  --white: #fffdf8;
  --shadow: 0 8px 28px rgba(31, 42, 36, 0.08);
  --radius: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--moss);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clay);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--moss-dark);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
}
h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--moss);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn:hover {
  background: var(--moss-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--moss-dark);
  border: 1px solid var(--moss);
}
.btn-ghost:hover {
  background: var(--moss);
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
  transition:
    transform 0.35s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}
.site-header.hidden {
  transform: translateY(-110%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--moss-dark);
}
.brand i {
  color: var(--clay);
  font-size: 1.35rem;
}
.brand:hover {
  color: var(--moss);
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--moss);
  background: var(--white);
  color: var(--moss-dark);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.25s;
}
.menu-toggle:hover {
  background: var(--moss);
  color: var(--white);
}
.menu-toggle i.close-icon {
  display: none;
}
.menu-toggle.open i.open-icon {
  display: none;
}
.menu-toggle.open i.close-icon {
  display: inline-block;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 61, 44, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s,
    visibility 0.35s;
  z-index: 60;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.nav-overlay .nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--moss-dark);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay ul {
  list-style: none;
  text-align: center;
}
.nav-overlay li {
  margin: 0.6rem 0;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s;
}
.nav-overlay.active li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay li:nth-child(2) {
  transition-delay: 0.05s;
}
.nav-overlay li:nth-child(3) {
  transition-delay: 0.1s;
}
.nav-overlay li:nth-child(4) {
  transition-delay: 0.15s;
}
.nav-overlay li:nth-child(5) {
  transition-delay: 0.2s;
}
.nav-overlay li:nth-child(6) {
  transition-delay: 0.25s;
}
.nav-overlay li:nth-child(7) {
  transition-delay: 0.3s;
}
.nav-overlay a {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--bg);
  font-weight: 500;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-bottom: 1px solid transparent;
}
.nav-overlay a:hover,
.nav-overlay a.current {
  color: var(--sage);
  border-color: var(--sage);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(40, 61, 44, 0.78),
    rgba(40, 61, 44, 0.35)
  );
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero p.lead {
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--moss-dark);
  color: var(--bg);
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 253, 248, 0.8);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.2rem;
}
.section-head .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.pillar {
  background: var(--white);
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar i {
  font-size: 1.8rem;
  color: var(--moss);
  margin-bottom: 0.6rem;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split .text h2 {
  margin-bottom: 1rem;
}

.timeline {
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid var(--sage);
  max-width: 680px;
  margin: 0 auto;
}
.timeline-item {
  margin-bottom: 1.4rem;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  border: 3px solid var(--bg);
}
.timeline-item h3 {
  margin-bottom: 0.2rem;
}
.timeline-item span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.testimonial {
  background: var(--white);
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: "Fraunces", serif;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  color: var(--sage);
  opacity: 0.6;
}
.testimonial p {
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--moss-dark);
  font-size: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--moss-dark);
}
.faq-q i {
  transition: transform 0.25s;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.1rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.product:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}
.product-price {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--clay);
  font-weight: 600;
  margin: 0.5rem 0;
}
.product ul {
  list-style: none;
  margin: 0.5rem 0 1rem;
}
.product ul li {
  padding: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.product ul li i {
  color: var(--moss);
  margin-top: 0.2rem;
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-info {
  background: var(--moss-dark);
  color: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.contact-info h2 {
  color: var(--white);
}
.contact-info p {
  color: rgba(255, 253, 248, 0.85);
}
.contact-info .info-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
.contact-info .info-row i {
  color: var(--sage);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}
.contact-form {
  padding: 2rem;
}
.contact-form .field {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss-dark);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--ink);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--moss);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.checkbox-field input {
  width: auto;
  margin-top: 0.2rem;
}

.map-wrap {
  margin-top: 1.5rem;
  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;
}

.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 60px;
}
.policy-body h1 {
  margin-bottom: 0.6rem;
}
.policy-body h2 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.35rem;
}
.policy-body h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.05rem;
}
.policy-body p,
.policy-body li {
  font-size: 0.92rem;
}
.policy-body ul,
.policy-body ol {
  margin: 0.5rem 0 1rem 1.4rem;
}
.policy-body li {
  margin-bottom: 0.35rem;
}
.policy-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--moss-dark);
  color: rgba(255, 253, 248, 0.78);
  padding: 1.4rem 0;
  font-size: 0.84rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  list-style: none;
}
.footer-links a {
  color: var(--sage);
}
.footer-links a:hover {
  color: var(--white);
}

.fullscreen-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}
.fullscreen-page .content {
  max-width: 560px;
}
.fullscreen-page h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  margin-bottom: 0.8rem;
  color: var(--moss-dark);
}
.fullscreen-page .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--moss-dark);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fullscreen-page p {
  margin-bottom: 1.2rem;
}
main.fs {
  min-height: 100vh;
}

.privacy-popup {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  z-index: 80;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}
.privacy-popup.show {
  transform: translateY(0);
}
.privacy-popup p {
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}
.privacy-popup .pp-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.privacy-popup .btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

@media (max-width: 780px) {
  .split {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 78vh;
    padding: 130px 0 60px;
  }
  .section {
    padding: 48px 0;
  }
}
@media (max-width: 420px) {
  body {
    font-size: 14px;
  }
  .nav-overlay a {
    font-size: 1.3rem;
  }
  .btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.82rem;
  }
  .contact-form,
  .contact-info {
    padding: 1.4rem;
  }
}
