:root {
  --bg: #f8f3e8;
  --surface: #fffdf8;
  --text: #2d2418;
  --muted: #655a4a;
  --brand: #6b3f11;
  --brand-dark: #4a2b0b;
  --accent: #c89a5e;
  --line: #e6dcc7;
  --deep: #24160a;
  --green: #4c7a52;
  --green-soft: #e6f1e7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
.logo {
  font-family: "Cormorant Garamond", serif;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: linear-gradient(135deg, #2a170a, #5d3a16);
  color: #f6ebd8;
  font-size: 13px;
}

.top-bar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, #ecf5ee, #f7f2e7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-dark);
  letter-spacing: 0.2px;
}

.logo img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #dfd2bc;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #fffdf9c9;
  border: 1px solid #e7dac4;
  border-radius: 999px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--green);
  background: var(--green-soft);
}

.menu-btn {
  display: none;
  border: 1px solid #d9ccb6;
  background: #fffdf9;
  border-radius: 10px;
  font-size: 22px;
  width: 42px;
  height: 42px;
}

.hero {
  padding: 76px 0;
  background: radial-gradient(circle at 88% 0%, #ecd3a5 0%, #f8f3e8 52%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #f3e2c4, var(--green-soft));
  color: #35563a;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.1;
  margin: 14px 0;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--green));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark), #3f6444);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--brand-dark);
  background: white;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 8px 24px #6d44120f;
}

.hero-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.hero-card .tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

section {
  padding: 60px 0;
}

.slider {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff9ed, #f6f2e5);
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  padding: 34px;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  color: #fffdf9;
}

.slide.active {
  display: block;
}

.slide p {
  max-width: 65ch;
  color: #f0e7d8;
}

.slider-controls {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #bfa585;
  cursor: pointer;
}

.dot.active {
  background: var(--brand);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: center;
}

.feature-list li {
  background: linear-gradient(135deg, #fff8ea, #edf6ee);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 0;
}

.why {
  background: #fff8ee;
  border-top: 1px solid var(--line);
}

.why-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf8;
  padding: 22px;
}

.why-panel.soft {
  background: linear-gradient(135deg, #fff9ee, #f4eddc);
}

.benefits {
  background: #fffdf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.thumb {
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b9874d, #e7c998);
  margin-bottom: 12px;
}

.subscribe-box {
  background: linear-gradient(135deg, #fff2da, #fffdf8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.consult-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  padding: 28px;
  text-align: center;
}

.consult-wrap.muted {
  background: #fff5e6;
}

.subscribe-form,
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.subscribe-form {
  grid-template-columns: 1fr auto;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8ccb7;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  background: #fffefb;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  background: #fffcf5;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.links {
  padding-top: 10px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}

@media (max-width: 900px) {
  .top-bar-wrap {
    min-height: 52px;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .menu-btn {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 4%;
    left: 4%;
    background: #fffcf5;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .card-grid,
  .product-grid,
  .row,
  .subscribe-form,
  .links-grid {
    grid-template-columns: 1fr;
  }
}
