:root {
  --rose: #e9a39d;
  --rose-dark: #9a5d59;
  --blush: #f9e2df;
  --cream: #fffaf7;
  --lavender: #ded2df;
  --lavender-dark: #756577;
  --brown: #725448;
  --text: #3f3432;
  --muted: #6f625f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(114, 84, 72, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, a { touch-action: manipulation; }
button { font: inherit; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--brown);
  color: var(--white);
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(1160px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 2rem)); }

.announcement {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .9rem;
  letter-spacing: .03em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,250,247,.96);
  border-bottom: 1px solid #edd9d4;
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 86px; height: 70px; object-fit: contain; border-radius: 50%; }
.site-nav { display: flex; gap: 1.3rem; margin-left: auto; }
.site-nav a, .footer-grid a {
  text-decoration: none;
  font-weight: 600;
}
.site-nav a:hover, .site-nav a:focus-visible, .footer-grid a:hover, .footer-grid a:focus-visible { color: var(--rose-dark); }
.cart-button, .menu-toggle, .icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .8rem;
  border: 1px solid #dfc6c1;
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  font-weight: 700;
}
.cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: .78rem;
}
.menu-toggle { display: none; font-size: 1.6rem; color: var(--brown); }

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(249,226,223,.8), transparent 28%),
    radial-gradient(circle at 90% 25%, rgba(222,210,223,.6), transparent 24%),
    linear-gradient(135deg, #fffdfb, #fdf1ef 55%, #f7f0f6);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; }
.eyebrow {
  margin: 0 0 .5rem;
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); margin-bottom: 1.2rem; color: var(--brown); }
h1 em, h2 em { color: var(--rose-dark); font-style: normal; }
.hero-text { font-size: 1.18rem; max-width: 580px; color: var(--muted); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--brown); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: #573f36; }
.button-secondary { background: #fff; border-color: #d9beb8; color: var(--brown); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--brown); }
.button-small { min-height: 40px; padding: .55rem .9rem; font-size: .9rem; }
.hero-note { font-size: .86rem; color: var(--muted); }

.hero-art {
  display: grid;
  place-items: center;
}
.hero-art img {
  width: min(500px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.intro-strip { background: #fff; border-block: 1px solid #efdcd8; }
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.intro-grid > div { padding: 1.2rem; text-align: center; border-right: 1px solid #f0e2df; }
.intro-grid > div:last-child { border-right: 0; }
.intro-grid span { display: block; font-size: 1.4rem; color: var(--rose-dark); }
.intro-grid strong { display: block; }
.intro-grid small { color: var(--muted); }

.section { padding: 5rem 0; }
.shop-section { background: #fff; }
.section-heading { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.section-heading h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); color: var(--brown); margin-bottom: .7rem; }
.section-heading p:last-child { color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid #ead7d2;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(114,84,72,.07);
}
.product-card.featured { border-color: #d8c2d8; box-shadow: 0 18px 40px rgba(117,101,119,.13); }
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--lavender-dark);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .75rem;
  font-weight: 800;
}
.product-image {
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .04em;
}
.product-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 14px;
}
.product-image-four { background: linear-gradient(145deg, #e7faf2, #fff8f4); }
.product-image span {
  padding: 1.1rem;
  border: 1px dashed #b99891;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
}
.product-image-one { background: radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 13%), linear-gradient(145deg, #fdebe8, #fff8f4); }
.product-image-two { background: radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 13%), linear-gradient(145deg, #f0e8f2, #fff8f4); }
.product-image-three { background: radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 13%), linear-gradient(145deg, #f9e3df, #f0e8f2); }
.product-info { padding: 1.3rem 1.3rem 1.5rem; }
.product-tier { margin: 0 0 .25rem; color: var(--rose-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; }
.product-info h3 { font-size: 1.45rem; color: var(--brown); margin-bottom: .55rem; }
.product-info p:not(.product-tier) { color: var(--muted); font-size: .95rem; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: 1rem; }
.price { font-weight: 800; color: var(--brown); font-size: .9rem; }
.shop-note {
  margin: 1.5rem auto 0;
  max-width: 800px;
  padding: 1rem 1.2rem;
  background: #fffaf8;
  border: 1px solid #edd7d2;
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.why-section { padding: 5rem 0; background: #f8f0f5; }
.promise-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.promise-card {
  background: rgba(255,255,255,.8);
  border: 1px solid #e4d7e4;
  border-radius: 18px;
  padding: 1.4rem;
}
.promise-card span { font-size: 1.5rem; color: var(--rose-dark); }
.promise-card h3 { margin: .7rem 0 .3rem; color: var(--brown); }
.promise-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.about-logo { display: grid; place-items: center; }
.about-logo img { width: min(360px,100%); border-radius: 50%; box-shadow: var(--shadow); }
.about-grid h2 { font-size: clamp(2rem,4vw,3.2rem); color: var(--brown); }
.about-grid p { color: var(--muted); font-size: 1.05rem; }

.faq-section { background: #fdf7f5; }
details {
  background: #fff;
  border: 1px solid #ead8d4;
  border-radius: 15px;
  margin: .75rem 0;
  padding: 0 1rem;
}
summary { cursor: pointer; font-weight: 800; padding: 1rem 0; color: var(--brown); }
details p { color: var(--muted); padding: 0 0 1rem; margin: 0; }

.contact-section { background: #fff; padding-top: 1rem; }
.contact-card {
  background: linear-gradient(120deg, #f8e6e3, #f0e7f2);
  border: 1px solid #ead5d9;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contact-card h2 { color: var(--brown); margin-bottom: .3rem; }
.contact-card p:last-child { margin-bottom: 0; color: var(--muted); }

.site-footer { background: #463732; color: #fff6f2; padding: 3rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 2rem; }
.footer-logo { width: 100px; height: 75px; object-fit: contain; border-radius: 50%; background: #fff; }
.footer-grid h2 { font-size: 1rem; color: #fff; }
.footer-grid a { display: block; margin: .45rem 0; color: #f8e8e3; font-weight: 400; }
.footer-grid p { color: #ead8d3; max-width: 260px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); margin-top: 2rem; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .8rem; color: #e2cfca; }

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 94vw);
  height: 100vh;
  z-index: 300;
  background: #fffaf8;
  box-shadow: -18px 0 45px rgba(0,0,0,.16);
  transform: translateX(105%);
  transition: transform .25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-panel.open { transform: translateX(0); }
.cart-header { padding: 1.2rem 1.2rem .8rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #ead8d4; }
.cart-header h2 { margin: 0; color: var(--brown); }
.icon-button { font-size: 2rem; color: var(--brown); min-width: 44px; min-height: 44px; }
.cart-content { overflow: auto; padding: 1.2rem; }
.cart-items { list-style: none; padding: 0; margin: 0; }
.cart-items li { padding: .8rem; background: #fff; border: 1px solid #ead8d4; border-radius: 12px; margin-bottom: .6rem; }
.cart-footer { padding: 1rem 1.2rem 1.4rem; border-top: 1px solid #ead8d4; }
.cart-demo-note { color: var(--muted); font-size: .82rem; }
.full-width { width: 100%; }
.cart-overlay { position: fixed; inset: 0; z-index: 250; background: rgba(40,25,20,.35); }

button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid #7d5b76;
  outline-offset: 3px;
}
button:disabled { cursor: not-allowed; opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media (max-width: 900px) {
  .site-nav { gap: .8rem; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { width: min(390px, 85vw); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .header-inner { min-height: 70px; }
  .brand img { width: 72px; height: 58px; }
  .menu-toggle { display: inline-block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 70px;
    padding: 1rem;
    background: #fffaf7;
    border-bottom: 1px solid #ead8d4;
    flex-direction: column;
  }
  .site-nav.open { display: flex; }
  .cart-button { margin-left: 0; }
  .hero { padding-top: 2.7rem; }
  .intro-grid, .product-grid, .promise-grid, .footer-grid { grid-template-columns: 1fr; }
  .intro-grid > div { border-right: 0; border-bottom: 1px solid #f0e2df; }
  .intro-grid > div:last-child { border-bottom: 0; }
  .section { padding: 3.7rem 0; }
  .product-image { min-height: 250px; }
  .contact-card, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff4f8, #f7f1ff);
}
.success-card {
  width: min(620px, 100%);
  text-align: center;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(120,80,130,.12);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(80,50,90,.12);
}
.success-logo { width: 150px; height: 150px; object-fit: contain; margin-bottom: 1rem; }
.success-card h1 { margin: .2rem 0 .8rem; }
.success-small { font-size: .9rem; color: var(--muted); margin-bottom: 1.5rem; }


.scoop-options {
  margin: 1rem 0 0;
  padding: .85rem;
  border: 1px solid rgba(120,80,130,.15);
  border-radius: 1rem;
  background: rgba(255,255,255,.6);
}
.scoop-options legend {
  padding: 0 .35rem;
  font-weight: 800;
  font-size: .9rem;
}
.scoop-options label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
  padding: .55rem .35rem;
  border-radius: .7rem;
  cursor: pointer;
}
.scoop-options label:hover { background: rgba(255,255,255,.8); }
.scoop-options input { width: 1rem; height: 1rem; }
.scoop-options b { white-space: nowrap; }
