:root {
  --bg: #f5f1ea;
  --bg-2: #ece5d8;
  --ink: #23302b;
  --ink-soft: #4f5e58;
  --sage: #6a8a78;
  --sage-deep: #3f5a4c;
  --clay: #c47a5a;
  --line: rgba(35, 48, 43, 0.12);
  --card: #ffffff;
  --shadow: 0 10px 30px -18px rgba(35, 48, 43, 0.35);
  --radius: 14px;
  --maxw: 1140px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--clay);
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  color: var(--ink-soft);
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  animation: slideIn 0.35s ease;
}
@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 0.9;
  color: var(--ink);
}
.brand i {
  font-size: 1.6rem;
  color: var(--sage);
}
.brand span {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 120;
  transition:
    transform 0.25s,
    background 0.25s;
}
.nav-toggle:hover {
  transform: rotate(90deg);
}
.nav-toggle .ic-close {
  display: none;
}
.nav-toggle.open {
  background: var(--clay);
}
.nav-toggle.open .ic-open {
  display: none;
}
.nav-toggle.open .ic-close {
  display: inline-block;
}
.overlay-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(140deg, var(--sage-deep) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s;
  z-index: 100;
}
.overlay-nav.open {
  opacity: 1;
  visibility: visible;
}
.overlay-nav ul {
  list-style: none;
  text-align: center;
  display: grid;
  gap: 14px;
}
.overlay-nav a {
  font-family: var(--serif);
  color: var(--bg);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  display: inline-block;
  padding: 6px 14px;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.overlay-nav a:hover,
.overlay-nav a.active {
  border-color: var(--clay);
  color: var(--clay);
}
.overlay-nav .meta {
  margin-top: 30px;
  color: rgba(245, 241, 234, 0.6);
  font-size: 0.85rem;
}

.hero {
  padding: 140px 0 80px;
  position: relative;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(196, 122, 90, 0.18),
      transparent 55%
    ),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.hero h1 {
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
  font-weight: 300;
}
.hero p.lead {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 26px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--sage-deep);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.hero-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: var(--card);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  max-width: 230px;
}
.hero-badge i {
  color: var(--clay);
  font-size: 1.4rem;
}

section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}
.section-head .kicker {
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 {
  margin-bottom: 12px;
}

.pillars {
  background: var(--bg-2);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--card);
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar i {
  font-size: 1.9rem;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}
.pillar h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.pillar p {
  font-size: 0.92rem;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.tl-step {
  position: relative;
  padding: 0 0 32px 56px;
}
.tl-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.tl-step h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.tl-step p {
  font-size: 0.92rem;
}

.metrics {
  background: var(--ink);
  color: var(--bg);
}
.metrics .section-head h2 {
  color: var(--bg);
}
.metrics .section-head p {
  color: rgba(245, 241, 234, 0.7);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.metric {
  padding: 24px 12px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: var(--radius);
}
.metric .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--clay);
  display: block;
}
.metric .lbl {
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.75);
  margin-top: 4px;
  display: block;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: var(--serif);
  font-size: 3.6rem;
  color: var(--bg-2);
  line-height: 1;
}
.quote p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--ink);
}
.quote .who {
  font-size: 0.85rem;
  color: var(--sage-deep);
  font-weight: 600;
}
.quote .role {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.cta-band {
  background: linear-gradient(120deg, var(--sage-deep), var(--sage));
  color: var(--bg);
  text-align: center;
  border-radius: 24px;
  padding: 50px 30px;
}
.cta-band h2 {
  color: var(--bg);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(245, 241, 234, 0.85);
  max-width: 520px;
  margin: 0 auto 22px;
}
.cta-band .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.cta-band .btn-primary:hover {
  background: var(--clay);
  color: var(--bg);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  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;
}
.split h2 {
  margin-bottom: 16px;
}
.split p + p {
  margin-top: 12px;
}
.feature-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink);
}
.feature-list i {
  color: var(--sage);
  font-size: 1.2rem;
  margin-top: 2px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.product .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.product .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product .icon-circle i {
  font-size: 1.6rem;
  color: var(--sage-deep);
}
.product h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.product p {
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.product ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 22px;
}
.product ul li {
  padding-left: 18px;
  position: relative;
}
.product ul li::before {
  content: "\2022";
  color: var(--clay);
  position: absolute;
  left: 0;
  top: 0;
}
.product .price {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ink);
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product .price small {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-family: var(--sans);
}
.product .btn {
  margin-top: 16px;
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.contact-list i {
  font-size: 1.3rem;
  color: var(--clay);
  margin-top: 2px;
}
.contact-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.hours {
  font-size: 0.85rem;
  background: var(--bg-2);
  padding: 14px;
  border-radius: 10px;
  color: var(--ink);
}
.contact-form {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--card);
}
.form-group 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: 18px;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--sage);
}
.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.page-head {
  padding: 140px 0 50px;
  text-align: center;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(106, 138, 120, 0.18),
    transparent 60%
  );
}
.page-head .crumb {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
  display: inline-block;
}
.page-head h1 {
  margin-bottom: 14px;
}
.page-head p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  margin: 32px 0 12px;
  font-size: 1.5rem;
}
.prose h3 {
  margin: 22px 0 8px;
}
.prose p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.prose ul,
.prose ol {
  margin: 0 0 16px 22px;
}
.prose li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.prose .updated {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 24px;
}

.fill-screen {
  flex: 1;
  display: flex;
}
.center-state {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.center-state .inner {
  max-width: 520px;
}
.center-state .big {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--clay);
  line-height: 1;
  margin-bottom: 10px;
}
.center-state h1 {
  margin-bottom: 12px;
}
.center-state p {
  margin-bottom: 22px;
}

.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(245, 241, 234, 0.7);
  padding: 30px 0;
  font-size: 0.82rem;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-row a {
  color: rgba(245, 241, 234, 0.7);
}
.foot-row a:hover {
  color: var(--clay);
}
.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.foot-links a {
  position: relative;
  padding-right: 14px;
}
.foot-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.3);
}

.cookie-popup {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 20px;
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  z-index: 200;
  font-size: 0.85rem;
}
.cookie-popup.show {
  display: flex;
}
.cookie-popup p {
  color: rgba(245, 241, 234, 0.85);
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.cookie-popup a {
  color: var(--clay);
  text-decoration: underline;
}
.cookie-popup button {
  background: var(--bg);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
}
.cookie-popup button:hover {
  background: var(--clay);
  color: var(--bg);
}

@media (max-width: 900px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pillars-grid,
  .quotes-grid,
  .products {
    grid-template-columns: 1fr 1fr;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-art {
    aspect-ratio: 5/4;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  section {
    padding: 50px 0;
  }
  .pillars-grid,
  .quotes-grid,
  .products,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 36px 22px;
    border-radius: 18px;
  }
  .hero-badge {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  .page-head {
    padding: 120px 0 36px;
  }
  .foot-row {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .contact-card,
  .contact-form {
    padding: 22px;
  }
}
