:root {
  --bg: #f3efe7;
  --surface: #fbf8f3;
  --surface-strong: #efe7db;
  --text: #1e1a16;
  --muted: #645a4d;
  --line: rgba(30, 26, 22, 0.12);
  --accent: #1d1a18;
  --shadow: 0 20px 60px rgba(24, 18, 12, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 36%),
    linear-gradient(180deg, #f6f1ea 0%, var(--bg) 100%);
}

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

.site-header,
.hero,
.section,
.proof {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.brand,
.eyebrow,
.card-index,
.header-link {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand,
.header-link,
.eyebrow,
.card-index {
  font-size: 0.74rem;
}

.header-link {
  border-bottom: 1px solid var(--text);
  padding-bottom: 0.2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}

.hero-copy h1,
.section-heading h2,
.conversion-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 12vw, 6.8rem);
  max-width: 9ch;
}

.lead,
.product-card p,
.philosophy-layout p,
.conversion-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.lead {
  max-width: 36rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.2rem;
  font-size: 0.92rem;
}

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

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  position: relative;
  min-height: 24rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(239, 231, 219, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bottle,
.stone {
  position: absolute;
}

.bottle {
  bottom: 2rem;
  width: 7.2rem;
  border-radius: 1.4rem 1.4rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, #ede4d5 0%, #d8c8b2 100%);
  box-shadow: 0 18px 30px rgba(40, 28, 16, 0.12);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  width: 2.2rem;
  height: 1.8rem;
  transform: translateX(-50%);
  border-radius: 0.5rem 0.5rem 0.2rem 0.2rem;
  background: #2d241c;
}

.bottle-tall {
  left: 18%;
  height: 13.5rem;
}

.bottle-short {
  left: 48%;
  width: 8.2rem;
  height: 10.6rem;
}

.stone {
  right: -2rem;
  bottom: -2.5rem;
  width: 16rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f8f5ef, #d7cbbf 70%);
  transform: rotate(-12deg);
}

.proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 1.2rem 0 0;
}

.proof p {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2,
.conversion-panel h2 {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.product-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.product-card.featured {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-card a {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid var(--text);
  padding-bottom: 0.15rem;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}

.conversion-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 231, 219, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .philosophy-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 58rem;
  }

  .conversion-panel {
    padding: 3rem;
  }
}
