:root {
  --bg: #f9f6f1;
  --bg-2: #f2ece3;
  --ink: #1f1b16;
  --muted: #6c5f55;
  --accent: #c48b5b;
  --accent-2: #8a6a4a;
  --card: #ffffff;
  --line: #eadfce;
  --shadow: 0 20px 60px rgba(31, 27, 22, 0.08);
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, #fff4e6 0%, transparent 60%),
    radial-gradient(900px 700px at 90% 10%, #f7e6d4 0%, transparent 55%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: static;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(249, 246, 241, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d7b1, #c48b5b);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.4);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s var(--ease);
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(196, 139, 91, 0.35), transparent 65%);
  transform: rotate(-6deg);
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tag {
  background: var(--bg-2);
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero-media {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  max-height: 360px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.media-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
}

.stat strong {
  display: block;
  font-size: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.card .cta-row {
  flex-wrap: nowrap;
  margin-top: auto;
}

.cta-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button.accent {
  background: var(--accent);
  color: #fff;
}

.top-shop {
  min-width: 160px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 20px;
}

.section p.lead {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.review-card strong {
  color: var(--ink);
  font-size: 14px;
}

.carousel-btn {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent-2);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.form-success {
  margin: 12px 0 0;
  color: #2f6f45;
  font-weight: 600;
  min-height: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel li {
  margin-bottom: 10px;
}

.product-hero {
  background: linear-gradient(130deg, #f7e6d4, #fff4e6 60%, #f9f6f1);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}

.product-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-hero .cta-row {
  margin-top: 18px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}

.table th {
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.highlight {
  background: var(--bg-2);
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed var(--accent);
  color: var(--muted);
}

footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-menu {
  margin-bottom: 20px;
}

.footer-menu .nav-links {
  justify-content: center;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 60px;
  }

  .nav {
    flex-direction: row;
    align-items: center;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .review-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .carousel-btn {
    width: 100%;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 6px 10px;
  }

  .top-shop {
    min-width: auto;
    padding: 10px 16px;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
