:root {
  --bg: #faf6ee;
  --paper: #fffdf8;
  --ink: #23291f;
  --muted: #6b7264;
  --line: #e6dfcf;
  --sage: #6b8e5a;
  --sage-deep: #4f6e43;
  --terra: #c77b5a;
  --gold: #c8a24b;
  --shadow: 0 6px 24px rgba(35, 41, 31, 0.08);
  --radius: 14px;
  --maxw: 1140px;
  --space: clamp(14px, 2vw, 22px);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--terra);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
h3 {
  font-size: 1.15rem;
}
p {
  color: #3a4234;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space);
}
section {
  padding: clamp(38px, 6vw, 72px) 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: rgba(107, 142, 90, 0.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 60;
  background: transparent;
  padding: 14px 0;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.site-header.hidden {
  transform: translateY(-110%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(79, 110, 67, 0.35);
}
.brand-name {
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
  position: relative;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle.is-open .icon-open {
  display: none;
}
.nav-toggle.is-open .icon-close {
  display: inline-block;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.primary-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.primary-nav a:hover,
.primary-nav a.active {
  background: var(--ink);
  color: var(--bg);
}
.nav-cta {
  margin-left: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--sage-deep);
  color: #fff !important;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(79, 110, 67, 0.25);
}
.btn:hover {
  background: var(--terra);
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

.hero {
  position: relative;
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-copy h1 {
  margin: 10px 0 16px;
}
.hero-copy p.lead {
  font-size: 1.08rem;
  color: #41493a;
  max-width: 48ch;
  margin-bottom: 22px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero-stats div strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--sage-deep);
}
.hero-stats div span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-art {
  position: relative;
}
.hero-art img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -14px;
  bottom: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  max-width: 240px;
}
.hero-badge i {
  font-size: 1.6rem;
  color: var(--terra);
}
.hero-badge strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 0.98rem;
}
.hero-badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

.section-head {
  max-width: 640px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pillars {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.pillar {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
}
.pillar i {
  font-size: 1.6rem;
  color: var(--sage-deep);
  margin-bottom: 10px;
  display: block;
}
.pillar h3 {
  margin-bottom: 6px;
}
.pillar p {
  font-size: 0.92rem;
  color: var(--muted);
}

.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.step {
  position: relative;
  padding: 24px 20px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}
.step .num {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  color: var(--terra);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.step h3 {
  margin-bottom: 6px;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #3a2f15;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.product i {
  font-size: 1.8rem;
  color: var(--sage-deep);
}
.product h3 {
  margin-top: 6px;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-top: auto;
}
.product .price small {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.product ul {
  list-style: none;
  font-size: 0.9rem;
  color: #3a4234;
}
.product ul li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.product ul li i {
  font-size: 0.95rem;
  color: var(--sage);
  margin-top: 3px;
}

.testimonial {
  background: linear-gradient(135deg, var(--sage-deep), #3b5532);
  color: #f6f1e3;
}
.testimonial h2,
.testimonial p,
.testimonial cite {
  color: #f6f1e3;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.quote i {
  color: var(--gold);
  font-size: 1.2rem;
}
.quote p {
  margin: 10px 0 14px;
  font-style: italic;
  font-size: 0.96rem;
  color: #ece6d3;
}
.quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: #f6f1e3;
}
.quote cite span {
  display: block;
  font-weight: 400;
  color: #c4c0b1;
  font-size: 0.78rem;
  margin-top: 2px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--sage-deep);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-band {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  margin: 0 var(--space);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.cta-band h2 {
  margin-bottom: 10px;
}
.cta-band p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.about-hero {
  padding: clamp(30px, 5vw, 60px) 0 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.about-grid img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.value {
  padding: 20px;
  background: var(--paper);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.value h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.value p {
  font-size: 0.9rem;
  color: var(--muted);
}

.timeline {
  position: relative;
  padding-left: 22px;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 22px;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.timeline-item time {
  font-size: 0.78rem;
  color: var(--terra);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.timeline-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

.guide-hero {
  padding: clamp(30px, 5vw, 60px) 0 0;
}
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.guide-grid img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-3px);
}
.card i {
  font-size: 1.5rem;
  color: var(--terra);
  margin-bottom: 8px;
  display: block;
}
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.calendar div {
  padding: 18px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: left;
  transition: background 0.25s;
}
.calendar div:hover {
  background: var(--bg);
}
.calendar div strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--sage-deep);
}
.calendar div span {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.contact-info {
  background: linear-gradient(155deg, var(--ink), #384334);
  color: #f1ecdc;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.45;
}
.contact-info h2,
.contact-info p {
  color: #f1ecdc;
  position: relative;
}
.contact-info p {
  color: #cfc8b3;
  margin: 8px 0 22px;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
  position: relative;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.94rem;
}
.contact-list li i {
  font-size: 1.1rem;
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-list li strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a290;
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-list li a {
  color: #f1ecdc;
}
.contact-list li a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--paper);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 14px 0 18px;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--sage-deep);
}
.map-wrap {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

.fullbleed {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px var(--space);
}
.fullbleed h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  color: var(--sage-deep);
}
.fullbleed .big {
  font-family: "Fraunces", serif;
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 1;
  color: var(--terra);
  font-weight: 600;
}
.fullbleed p {
  max-width: 520px;
  margin: 14px auto 22px;
  color: var(--muted);
}

.policy {
  padding: clamp(40px, 6vw, 80px) 0;
}
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 20px;
  border: 1px solid var(--line);
}
.policy-wrap h1 {
  margin-bottom: 8px;
}
.policy-wrap .updated {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.policy-wrap h2 {
  margin: 28px 0 10px;
  font-size: 1.3rem;
}
.policy-wrap h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
  color: var(--sage-deep);
}
.policy-wrap p,
.policy-wrap li {
  font-size: 0.95rem;
  color: #3a4234;
  margin-bottom: 10px;
  line-height: 1.65;
}
.policy-wrap ul,
.policy-wrap ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: #cfc8b3;
  padding: 30px 0 20px;
  font-size: 0.86rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1ecdc;
  font-family: "Fraunces", serif;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
}
.footer-links a {
  color: #cfc8b3;
  font-size: 0.84rem;
}
.footer-links a:hover {
  color: var(--gold);
}
.copy {
  font-size: 0.78rem;
  color: #9c9684;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-popup {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  background: var(--ink);
  color: #f1ecdc;
  padding: 18px 20px;
  border-radius: 18px;
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  max-width: 760px;
  margin: 0 auto;
}
.cookie-popup.show {
  display: flex;
  animation: rise 0.35s ease;
}
@keyframes rise {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-popup p {
  color: #e8e2cf;
  font-size: 0.86rem;
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.cookie-popup p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
}
.cookie-actions .accept {
  background: var(--gold);
  color: #3a2f15;
}
.cookie-actions .decline {
  background: transparent;
  color: #cfc8b3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 896px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 14px var(--space);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
    box-shadow: var(--shadow);
  }
  .primary-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .primary-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .nav-cta {
    margin: 6px 0 0;
  }
  .hero-grid,
  .about-grid,
  .guide-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-badge {
    left: 6px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .hero-stats {
    gap: 14px;
  }
  .hero-stats div strong {
    font-size: 1.3rem;
  }
  .cookie-popup {
    padding: 14px;
  }
}
