:root {
  --background: #f4f0eb;
  --surface: #fbf9f6;
  --surface-strong: #ffffff;
  --text: #151515;
  --muted: #635d56;
  --line: rgba(21, 21, 21, 0.09);
  --accent: #6f2f3a;
  --accent-dark: #512129;
  --shadow: 0 18px 50px rgba(31, 23, 19, 0.08);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }
.announcement-bar {
  text-align: center; padding: 12px 16px; font-size: 14px; background: #eadfd5; color: #4c423a;
}
.site-header {
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(16px);
  background: rgba(244, 240, 235, 0.85); border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-monogram {
  width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 16px;
  background: var(--text); color: #fff; font-weight: 700; letter-spacing: 0.08em;
}
.brand-mark strong { display: block; font-size: 15px; letter-spacing: 0.16em; }
.brand-mark small { color: var(--muted); }
.desktop-nav { display: flex; gap: 28px; color: var(--muted); }
.desktop-nav a:hover { color: var(--text); }
.cart-button, .button, .icon-button {
  border: 0; border-radius: 999px; transition: 0.2s ease;
}
.cart-button {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; background: var(--surface-strong); box-shadow: var(--shadow);
}
.cart-button strong {
  min-width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--text); color: #fff;
}

.hero { padding: 56px 0 28px; }
.hero-grid, .brand-grid, .purchase-grid, .editorial-grid, .faq-grid {
  display: grid; gap: 28px;
}
.hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.eyebrow {
  display: inline-block; margin-bottom: 16px; color: #6e5f55; font-size: 13px; font-weight: 800; letter-spacing: 0.18em;
}
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.25rem); line-height: 0.95; letter-spacing: -0.06em; max-width: 10ch;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.05em; max-width: 13ch;
}
p {
  color: var(--muted); line-height: 1.75; font-size: 18px;
}
.hero-copy p { max-width: 62ch; margin-top: 22px; }
.hero-actions, .footer-grid { display: flex; align-items: center; gap: 14px; }
.hero-actions { margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 24px; font-weight: 700;
}
.button.primary { background: var(--text); color: #fff; }
.button.primary:hover { transform: translateY(-1px); background: #000; }
.button.secondary { background: transparent; border: 1px solid rgba(21, 21, 21, 0.16); }
.button.secondary:hover { background: rgba(255,255,255,0.55); }
.full { width: 100%; }
.hero-points {
  list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; color: var(--text); font-weight: 500;
}
.hero-points li::before { content: "•"; margin-right: 10px; color: var(--accent); }
.hero-visual {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; align-items: stretch;
}
.hero-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 36px; overflow: hidden; box-shadow: var(--shadow);
}
.hero-card.large img { aspect-ratio: 0.9; object-fit: cover; }
.hero-stack { display: grid; gap: 18px; }
.hero-card.small img { aspect-ratio: 1 / 1; object-fit: cover; }
.hero-card.quote { padding: 28px; display: flex; align-items: end; }
.hero-card.quote p { font-size: 24px; line-height: 1.35; color: var(--text); font-family: "Cormorant Garamond", serif; }

.section { padding: 44px 0; }
.section-heading.split, .purchase-grid, .faq-grid, .editorial-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.section-heading.split p { max-width: 36ch; }
.product-grid, .feature-grid, .testimonial-grid {
  display: grid; gap: 22px;
}
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.product-card, .feature-card, .testimonial-card, .faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.product-card { overflow: hidden; }
.product-image-wrap { background: #fff; }
.product-image { aspect-ratio: 0.95; object-fit: cover; }
.product-body { padding: 22px; display: grid; gap: 12px; }
.product-meta {
  display: flex; justify-content: space-between; gap: 8px; align-items: center; color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em;
}
.product-title { font-size: 27px; letter-spacing: -0.04em; }
.product-description { font-size: 16px; line-height: 1.65; }
.add-to-cart { margin-top: 6px; }
.brand-grid, .faq-grid { grid-template-columns: 0.9fr 1.1fr; }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card { padding: 24px; }
.feature-card h3 { font-size: 26px; margin-bottom: 10px; letter-spacing: -0.04em; }
.editorial-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.editorial-gallery img {
  border-radius: 28px; aspect-ratio: 0.9; object-fit: cover; box-shadow: var(--shadow);
}
.steps-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 14px;
}
.steps-list li {
  background: var(--surface); border: 1px solid var(--line); padding: 20px 22px; border-radius: 22px; color: var(--muted);
}
.steps-list strong { color: var(--text); margin-right: 8px; }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.testimonial-card { padding: 28px; display: grid; gap: 18px; }
.testimonial-card span { color: #b18a54; font-size: 18px; letter-spacing: 0.2em; }
.testimonial-card p { color: var(--text); font-size: 20px; line-height: 1.6; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; font-size: 20px; font-weight: 700; }
.faq-list details p { margin-top: 14px; font-size: 16px; }
.site-footer { padding: 28px 0 54px; border-top: 1px solid var(--line); }
.footer-grid { justify-content: space-between; }
.footer-grid p { font-size: 16px; }

.cart-drawer { position: fixed; inset: 0; pointer-events: none; z-index: 50; }
.cart-overlay {
  position: absolute; inset: 0; background: rgba(17, 17, 17, 0.45); opacity: 0; transition: 0.25s ease;
}
.cart-panel {
  position: absolute; top: 0; right: 0; width: min(460px, 100vw); height: 100%; background: #f8f5f1; transform: translateX(100%);
  transition: 0.28s ease; box-shadow: -24px 0 60px rgba(0,0,0,0.18); padding: 24px; display: grid; grid-template-rows: auto 1fr auto auto; gap: 18px;
}
.cart-drawer.open { pointer-events: auto; }
.cart-drawer.open .cart-overlay { opacity: 1; }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-header, .summary-row, .cart-item { display: flex; justify-content: space-between; gap: 16px; }
.icon-button { width: 42px; height: 42px; background: var(--surface-strong); font-size: 30px; line-height: 1; }
.cart-items { overflow: auto; display: grid; gap: 12px; align-content: start; }
.cart-item {
  padding: 14px; background: var(--surface-strong); border-radius: 20px; border: 1px solid var(--line); align-items: center;
}
.cart-item-info strong { display: block; margin-bottom: 6px; }
.cart-item-info span { color: var(--muted); font-size: 14px; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; }
.qty-button, .remove-button {
  border: 1px solid var(--line); background: transparent; border-radius: 999px; min-width: 34px; height: 34px;
}
.remove-button { padding: 0 12px; }
.cart-summary {
  background: var(--surface-strong); border: 1px solid var(--line); border-radius: 20px; padding: 16px; display: grid; gap: 10px;
}
.summary-row.total { padding-top: 10px; border-top: 1px solid var(--line); }
.checkout-form { display: grid; gap: 12px; }
.checkout-form label { display: grid; gap: 8px; font-weight: 600; }
.checkout-form input, .checkout-form textarea {
  border: 1px solid rgba(21,21,21,0.16); background: #fff; border-radius: 16px; padding: 14px 16px; resize: vertical;
}
.empty-cart {
  padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.6); color: var(--muted); text-align: center; border: 1px dashed rgba(21,21,21,0.12);
}

@media (max-width: 980px) {
  .desktop-nav, .hero-points { display: none; }
  .hero-grid, .section-heading.split, .brand-grid, .purchase-grid, .editorial-grid, .faq-grid,
  .hero-visual { grid-template-columns: 1fr; }
  .product-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav { min-height: 76px; }
  .cart-button span { display: none; }
  .product-grid, .feature-grid, .testimonial-grid, .editorial-gallery { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  h1 { max-width: 8.6ch; }
  p { font-size: 17px; }
  .button { width: 100%; }
  .hero-actions, .footer-grid { flex-direction: column; align-items: stretch; }
}
