:root {
  --bg: #f6f1e7;
  --bg-2: #efe6d2;
  --ink: #1f2a23;
  --ink-soft: #46544a;
  --accent: #e6754b;
  --accent-2: #3d6b58;
  --gold: #c9a14a;
  --line: rgba(31, 42, 35, 0.12);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 42, 35, 0.08);
  --container: 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.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.15;
  color: var(--ink);
}
h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.5px;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.3px;
}
h3 {
  font-size: 1.15rem;
}
p {
  color: var(--ink-soft);
}
a {
  color: var(--accent-2);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.site-header.is-hidden {
  transform: translateY(-110%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand i {
  color: var(--accent);
}
.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;
  transition: background 0.2s;
  position: relative;
  z-index: 60;
}
.nav-toggle:hover {
  background: var(--accent);
}
.nav-toggle i {
  font-size: 20px;
  line-height: 1;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle.is-open .icon-open {
  display: none;
}
.nav-toggle.is-open .icon-close {
  display: inline-block;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 55;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.nav-overlay ul {
  list-style: none;
  text-align: center;
  display: grid;
  gap: 14px;
}
.nav-overlay a {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--ink);
  position: relative;
  padding: 6px 10px;
  display: inline-block;
}
.nav-overlay a:hover {
  color: var(--accent);
}
.nav-overlay .nav-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f1e7 0%, #efe6d2 100%);
}
.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 107, 88, 0.12);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.05rem;
  margin: 14px 0 22px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.hero-badge i {
  color: var(--gold);
  font-size: 22px;
}
.hero-badge strong {
  font-family: "Fraunces", serif;
  font-size: 1rem;
}
.hero-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    background 0.2s,
    color 0.2s;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  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;
}

section {
  padding: 60px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pillar i {
  font-size: 28px;
  color: var(--accent-2);
  margin-bottom: 10px;
  display: block;
}
.pillar h3 {
  margin-bottom: 6px;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.about-split {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about-split ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.about-split li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.about-split li i {
  color: var(--accent);
  margin-top: 3px;
}

.testimonials {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.testimonial .stars {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 14px;
}
.testimonial p {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 10px;
}
.testimonial cite {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-family: "Fraunces", serif;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "\002B";
  color: var(--accent);
  font-size: 1.3rem;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  margin: 60px 0;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}
.cta-band .btn-primary {
  background: var(--accent);
  color: #fff;
}
.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--ink);
}

.products {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.product {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s;
}
.product:hover {
  transform: translateY(-3px);
}
.product .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-size: 26px;
}
.product h3 {
  margin-top: 6px;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}
.product ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 8px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.product ul li {
  display: flex;
  gap: 8px;
}
.product ul li i {
  color: var(--accent-2);
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.contact-info {
  background: linear-gradient(160deg, var(--accent-2), #2d5142);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}
.contact-info h2 {
  color: #fff;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.contact-info ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.contact-info li i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
}
.contact-info a {
  color: #fff;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  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,
    background 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.consent input {
  margin-top: 3px;
}

.map {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-hero {
  padding: 120px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, #efe6d2, #f6f1e7);
}
.page-hero p {
  max-width: 600px;
  margin: 14px auto 0;
}

.legal {
  padding: 120px 0 60px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 {
  margin: 24px 0 10px;
}
.legal h3 {
  margin: 18px 0 6px;
}
.legal p,
.legal li {
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.center-box {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 18px;
}
.center-box .inner {
  max-width: 560px;
}
.center-box h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--accent);
}
.center-box p {
  margin: 14px 0 22px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 30px 0 20px;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-inner a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-inner a:hover {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-popup {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  max-width: 680px;
  margin: 0 auto;
}
.cookie-popup.is-show {
  display: flex;
}
.cookie-popup p {
  font-size: 0.85rem;
  color: var(--ink);
  flex: 1;
  margin: 0;
}
.cookie-popup p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-popup button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
}
.cookie-popup button:hover {
  background: var(--accent);
}

@media (max-width: 820px) {
  .hero {
    padding: 110px 0 40px;
  }
  .hero-grid,
  .about-split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    aspect-ratio: 5/4;
    max-width: 480px;
    margin: 0 auto;
  }
  section {
    padding: 46px 0;
  }
  .cta-band {
    padding: 30px 20px;
    margin: 40px 0;
  }
  .legal {
    padding: 110px 0 40px;
  }
  .map {
    height: 280px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 14.5px;
  }
  .container {
    padding: 0 14px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
}
