:root {
  --bg: #f6f1e9;
  --ink: #1f2a24;
  --ink-soft: #4a5751;
  --accent: #2f6f57;
  --accent-2: #d98c4a;
  --line: #e1d8c8;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(31, 42, 36, 0.08);
  --maxw: 1160px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  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, 3vw, 2rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
section {
  padding: 42px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  background: #234f3f;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn.ghost:hover {
  background: var(--accent);
  color: #fff;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.35s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(246, 241, 233, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.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: "Fraunces", serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.brand i {
  color: var(--accent);
  font-size: 1.4rem;
}
.nav-toggle {
  background: var(--ink);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.nav-toggle:hover {
  background: var(--accent);
  transform: rotate(8deg);
}
.nav-toggle .ic-close {
  display: none;
}
.nav-toggle.open .ic-open {
  display: none;
}
.nav-toggle.open .ic-close {
  display: inline-block;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 86vw);
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(110%);
  transition: transform 0.35s ease;
  z-index: 60;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nav-panel.open {
  transform: translateX(0);
}
.nav-panel a {
  color: var(--ink);
  font-weight: 600;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-panel a:hover {
  color: var(--accent);
  text-decoration: none;
}
.nav-panel a i {
  color: var(--accent);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 55;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #eef5f0 0%, #f6f1e9 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero-text .eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.hero-text p {
  font-size: 1.05rem;
  margin: 1rem 0 1.4rem;
  max-width: 48ch;
}
.hero-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -10px;
  bottom: -10px;
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge i {
  color: var(--accent-2);
  font-size: 1.3rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.section-head .eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef5f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.split img {
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split ul {
  list-style: none;
  margin-top: 0.6rem;
}
.split li {
  padding: 0.4rem 0;
  display: flex;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.split li i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Fraunces", serif;
  color: var(--accent-2);
  font-size: 1.6rem;
  font-weight: 700;
}

.stats {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}
.stat h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}
.stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.quote {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent-2);
  font-style: italic;
  color: var(--ink-soft);
}
.quote footer {
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

.faq details {
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "\002B";
  color: var(--accent);
  font-size: 1.3rem;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #234f3f 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.cta-band .btn {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn:hover {
  background: var(--bg);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.product {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #eef5f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0.4rem 0;
}
.product ul {
  list-style: none;
  margin: 0.4rem 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.product ul li {
  padding: 0.2rem 0;
  display: flex;
  gap: 0.4rem;
}
.product ul li i {
  color: var(--accent);
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-tile {
  background: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.info-tile i {
  color: var(--accent);
  font-size: 1.4rem;
  background: #eef5f0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-tile h4 {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.info-tile p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.65rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.form-row textarea {
  min-height: 110px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 1rem;
}
.consent input {
  margin-top: 0.2rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  margin-top: 18px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.center-flex {
  min-height: calc(100vh - var(--head-h, 72px) - var(--foot-h, 140px));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 18px;
}
.center-flex .inner {
  max-width: 540px;
}
.center-flex .big {
  font-family: "Fraunces", serif;
  font-size: clamp(4rem, 15vw, 8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.center-flex .ic-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eef5f0;
  color: var(--accent);
  font-size: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.policy-page {
  padding: 120px 0 40px;
}
.policy-page article {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  max-width: 820px;
  margin: 0 auto;
}
.policy-page h1 {
  margin-bottom: 0.4rem;
}
.policy-page h2 {
  font-size: 1.3rem;
  margin: 1.4rem 0 0.5rem;
}
.policy-page p,
.policy-page li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.policy-page ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}
.policy-page .meta {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.site-footer {
  background: var(--ink);
  color: #cdd6d2;
  padding: 24px 0;
  font-size: 0.85rem;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.foot-links a {
  color: #cdd6d2;
}
.foot-links a:hover {
  color: #fff;
}

.cookie-pop {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: none;
  gap: 14px;
  align-items: center;
  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 0.9rem;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .hero {
    padding: 120px 0 40px;
  }
  .hero-grid,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  section {
    padding: 32px 0;
  }
  .container {
    padding: 0 14px;
  }
  .policy-page article {
    padding: 20px;
  }
  .stats {
    padding: 22px;
  }
}
