:root {
  --bg: #faf6f0;
  --surface: #ffffff;
  --ink: #2a1e16;
  --muted: #6f6055;
  --brand: #7a4a24;
  --brand-deep: #4d2c14;
  --accent: #c98a3a;
  --line: #ece2d6;
  --dark: #2a1c12;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(60, 40, 20, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Brand */
.brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}
.brand span { color: var(--accent); margin: 0 1px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--brand); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--ghost {
  background: transparent;
  color: var(--brand-deep);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: #fff; border-color: var(--brand); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 75% -10%, #f4e3cf 0%, transparent 60%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  padding: 84px 0 72px;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--brand-deep);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero__stats strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}
.hero__stats span { color: var(--muted); font-size: 0.92rem; }

/* Sections */
.section { padding: 80px 0; }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--brand-deep);
}
.section__sub { color: var(--muted); margin: 0 0 40px; font-size: 1.05rem; }

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(60, 40, 20, 0.16);
}
.card__art {
  height: 150px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
}
.card__art--1 { background: linear-gradient(135deg, #e9d3b6, #d8b083); }
.card__art--2 { background: linear-gradient(135deg, #e7ddc4, #c9c08e); }
.card__art--3 { background: linear-gradient(135deg, #cbb6a2, #7a5c47); }
.card__art--4 { background: linear-gradient(135deg, #eccfa2, #d99a55); }
.card__art--5 { background: linear-gradient(135deg, #d9c3ad, #b79b7f); }
.card__art--6 { background: linear-gradient(135deg, #e3d1bd, #caa679); }
.card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card__badge {
  align-self: flex-start;
  background: #f3e7d6;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--ink); }
.card p { margin: 0 0 18px; color: var(--muted); font-size: 0.96rem; }
.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__price { font-weight: 800; font-size: 1.25rem; color: var(--brand-deep); }

/* Story (dark) */
.section--dark {
  background: var(--dark);
  color: #efe3d6;
}
.section--dark .section__title { color: #fff; }
.story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story__lead { color: #d8c6b5; font-size: 1.08rem; margin: 0; }
.story__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.story__list li {
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  color: #d8c6b5;
}
.story__list strong { display: block; color: #fff; font-weight: 700; }

/* Visit */
.visit { text-align: center; background: #f6eee2; }
.visit__inner { max-width: 720px; margin: 0 auto; }
.visit p { color: var(--muted); font-size: 1.08rem; }
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  text-align: left;
}
.visit__grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.visit__grid strong { display: block; color: var(--brand-deep); margin-bottom: 4px; }
.visit__grid span { color: var(--muted); font-size: 0.94rem; }
.visit__form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.visit__form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  background: #fff;
}
.visit__form input:focus { outline: none; border-color: var(--brand); }
.visit__thanks { color: var(--brand); font-weight: 600; margin-top: 18px; }

/* Footer */
.footer {
  background: var(--brand-deep);
  color: #e6d5c3;
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .brand { color: #fff; }
.footer p { margin: 0; font-size: 0.9rem; color: #cbb39d; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--brand-deep);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 50;
}

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 32px; }
  .visit__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .visit__form { flex-direction: column; }
}
