:root {
  --bg: #f4f1ea;
  --bg-2: #ece6d6;
  --ink: #1d2a23;
  --ink-soft: #3a4a40;
  --accent: #1f6f4a;
  --accent-2: #d97742;
  --line: #cfc7b3;
  --card: #ffffff;
  --shadow: 0 6px 24px rgba(29, 42, 35, 0.08);
  --radius: 14px;
  --maxw: 1160px;
  --t: 0.25s ease;
}
* {
  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);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t);
}
a:hover {
  color: var(--accent-2);
}
h1,
h2,
h3,
h4 {
  font-family: "Unbounded", serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
ul {
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
section {
  padding: 48px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition:
    transform var(--t),
    background var(--t);
}
.btn:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: #fff;
}

header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform var(--t),
    background var(--t),
    box-shadow var(--t);
}
header.site-header.scrolled {
  position: fixed;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
header.site-header.hidden {
  transform: translateY(-110%);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Unbounded", serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink);
}
.brand i {
  color: var(--accent);
  font-size: 1.4rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}
.nav-list a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width var(--t);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: var(--ink);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--t);
}
.nav-toggle:hover {
  background: var(--accent);
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle.open .icon-open {
  display: none;
}
.nav-toggle.open .icon-close {
  display: inline-block;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero h1 span {
  color: var(--accent);
}
.hero-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: "Unbounded", serif;
  font-size: 1.4rem;
  color: var(--ink);
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}
.hero-visual img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.78rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero-badge i {
  color: var(--accent-2);
  font-size: 1.2rem;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-head .eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature {
  background: var(--card);
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.split ul li {
  margin-bottom: 0.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem;
  border-top: 3px solid var(--accent);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Unbounded", serif;
  font-size: 1.6rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 0.4rem;
}

.testimonials {
  background: var(--bg-2);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.t-card {
  background: #fff;
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.t-card .stars {
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}
.t-card cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #cfd8d2;
  margin: 0;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.product {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product .ph {
  height: 140px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
}
.product .body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product h3 {
  margin-bottom: 0.4rem;
}
.product .price {
  font-family: "Unbounded", serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0.6rem 0;
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value {
  background: var(--card);
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.value i {
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.timeline {
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tl-item {
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--accent-2);
  border-radius: 50%;
}
.tl-item time {
  font-family: "Unbounded", serif;
  color: var(--accent);
  font-size: 0.85rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-info h2 {
  color: #fff;
}
.contact-info a {
  color: #fff;
}
.info-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #dde6e0;
}
.info-row i {
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-top: 2px;
}
.map-frame {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}
form label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
form input,
form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  transition: border var(--t);
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
form textarea {
  resize: vertical;
  min-height: 110px;
}
.consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.consent input {
  margin-top: 3px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin-top: 0.6rem;
}

.center-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-code {
  font-family: "Unbounded", serif;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  line-height: 1;
}
.thanks-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.legal {
  padding: 120px 0 60px;
}
.legal h1 {
  margin-bottom: 0.4rem;
}
.legal .updated {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.legal h2 {
  margin-top: 1.6rem;
  font-size: 1.3rem;
}
.legal h3 {
  margin-top: 1rem;
}
.legal p,
.legal li {
  font-size: 0.92rem;
}
.legal ul {
  margin-bottom: 0.8rem;
}

footer.site-footer {
  background: var(--ink);
  color: #bccdc4;
  padding: 1.8rem 0;
  font-size: 0.82rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-links a {
  color: #bccdc4;
}
.footer-links a:hover {
  color: #fff;
}
.footer-row .brand {
  color: #fff;
}

.cookie-pop {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}
.cookie-pop.show {
  display: flex;
}
.cookie-pop p {
  margin: 0;
  font-size: 0.85rem;
  flex: 1;
  min-width: 220px;
}
.cookie-pop .btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.fixed-h {
  min-height: calc(100vh - 70px - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .hero {
    padding: 120px 0 50px;
  }
  .hero-grid,
  .split,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .products,
  .t-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--t),
      transform var(--t);
    border: 1px solid var(--line);
  }
  .nav-list.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-list a {
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
  }
  .nav-list a:hover {
    background: var(--bg);
  }
  .nav-list a::after {
    display: none;
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .feature-grid,
  .products,
  .t-grid,
  .steps,
  .values {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1rem;
  }
  section {
    padding: 36px 0;
  }
  .legal {
    padding: 110px 0 40px;
  }
}
