:root {
  --bg: #f6f1e7;
  --bg-2: #efe6d3;
  --ink: #1f2a26;
  --muted: #5b6863;
  --accent: #2f6f5e;
  --accent-2: #c8a96a;
  --line: #d9cfb8;
  --card: #fffdf8;
  --shadow: 0 6px 24px rgba(31, 42, 38, 0.08);
  --r: 14px;
  --maxw: 1140px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-2);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", 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.4rem, 3vw, 2rem);
}
h3 {
  font-size: 1.1rem;
}
p {
  color: var(--muted);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 0;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  background: #23574a;
  color: #fff;
}
.btn.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.alt:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition:
    transform 0.35s ease,
    background 0.3s ease;
}
.site-header.solid {
  position: fixed;
  background: rgba(246, 241, 231, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.hidden {
  transform: translateY(-110%);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
}
.nav-toggle .ico-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .ico-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .ico-close {
  display: inline-block;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 38, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 60;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86%);
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 70;
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--line);
}
.nav-panel.open {
  transform: translateX(0);
}
.nav-panel a {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.nav-panel a:hover {
  color: var(--accent);
}
.nav-panel .meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.hero h1 {
  margin: 14px 0 12px;
}
.hero p.lead {
  font-size: 1.02rem;
  max-width: 46ch;
}
.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -20px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.hero-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}
.hero-badge strong {
  display: block;
  font-family: "Fraunces", serif;
}
.hero-badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

section {
  padding: 60px 0;
}
.sec-head {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}
.sec-head .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}
.sec-head h2 {
  margin: 8px 0 8px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  transition: 0.25s;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.pillar i {
  font-size: 1.7rem;
  color: var(--accent);
  background: var(--bg-2);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.pillar h3 {
  margin-bottom: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-art {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
}
.split-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}
.checklist i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

.steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  position: relative;
}
.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 6px;
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.step p {
  font-size: 0.88rem;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}
.quote i {
  color: var(--accent-2);
  font-size: 1.3rem;
}
.quote p {
  margin: 8px 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.quote .who {
  font-size: 0.82rem;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--accent), #23574a);
  color: #fff;
  border-radius: 24px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
}
.cta-band .btn {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn:hover {
  background: var(--accent-2);
  color: #fff;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product .icowrap {
  font-size: 1.8rem;
  color: var(--accent);
  background: var(--bg-2);
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--ink);
}
.product ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}
.product ul li::before {
  content: "\2022";
  color: var(--accent);
  margin-right: 8px;
}
.product .btn {
  margin-top: auto;
  justify-content: center;
}

.about-hero {
  padding: 120px 0 30px;
}
.about-hero h1 {
  max-width: 14ch;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
}
.fact strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent);
}
.fact span {
  font-size: 0.82rem;
  color: var(--muted);
}
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.member {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
}
.member .ava {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
}

.timeline {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 18px;
}
.timeline .t {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  position: relative;
}
.timeline .t::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline .t h3 {
  font-size: 1rem;
}
.timeline .t span {
  font-size: 0.78rem;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.contact-info ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
  background: var(--bg-2);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info strong {
  display: block;
  color: var(--ink);
}
.contact-info span {
  color: var(--muted);
}
.map-wrap {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.form {
  display: grid;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}
.consent input {
  margin-top: 3px;
}

.center-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 18px 60px;
}
.center-page .box {
  max-width: 560px;
}
.center-page .glyph {
  font-size: 3rem;
  color: var(--accent);
  background: var(--bg-2);
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.center-page h1 {
  margin-bottom: 10px;
}

.policy {
  padding: 120px 0 60px;
}
.policy .wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}
.policy h1 {
  margin-bottom: 6px;
}
.policy .upd {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.policy h2 {
  margin: 22px 0 8px;
  font-size: 1.25rem;
}
.policy h3 {
  margin: 14px 0 6px;
}
.policy p,
.policy li {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.policy ul,
.policy ol {
  padding-left: 22px;
}

.site-footer {
  background: #1a2622;
  color: #cfd6d3;
  padding: 28px 0;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.foot a {
  color: #cfd6d3;
}
.foot a:hover {
  color: var(--accent-2);
}
.foot .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-pop {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  display: none;
  z-index: 90;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
}
.cookie-pop.show {
  display: flex;
}
.cookie-pop p {
  color: #e8e4d8;
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-pop a {
  color: var(--accent-2);
}
.cookie-pop button {
  background: var(--accent-2);
  color: #1a2622;
  border: 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 920px) {
  .hero {
    padding: 110px 0 50px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-art {
    aspect-ratio: 5/4;
    max-width: 520px;
  }
  .pillars,
  .products,
  .team,
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    padding: 30px;
  }
}
@media (max-width: 560px) {
  .pillars,
  .products,
  .team,
  .quotes,
  .steps,
  .facts {
    grid-template-columns: 1fr;
  }
  section {
    padding: 46px 0;
  }
  .nav-panel a {
    font-size: 1.15rem;
  }
  .policy .wrap {
    padding: 22px;
  }
}
