:root {
  --cocoa: #2f211c;
  --espresso: #47332b;
  --gold: #b5884d;
  --gold-soft: #d3b38a;
  --ivory: #f7f1ea;
  --rose-cream: #f3e3dc;
  --sage-mist: #dde8dc;
  --blush: #edd4cf;
  --line: rgba(106, 78, 58, 0.16);
  --text: #5d493d;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(62, 39, 29, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(179, 136, 77, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(233, 181, 176, 0.12), transparent 22%),
    var(--ivory);
  color: var(--text);
  line-height: 1.8;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.narrow-center {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.mini-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--cocoa);
  line-height: 1.06;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold,
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(181, 136, 77, 0.28);
}

.btn-gold:hover,
.btn-primary:hover {
  background: #a4773e;
}

.btn-dark {
  background: var(--cocoa);
  color: var(--white);
}

.btn-dark:hover {
  background: #241813;
}

.btn-outline-dark,
.btn-outline,
.btn-ghost {
  border-color: rgba(71, 51, 43, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: var(--cocoa);
}

.btn-outline-dark:hover,
.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

.btn-small,
.btn-sm {
  padding: 11px 18px;
  font-size: 0.64rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar {
  background: var(--cocoa);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.announcement-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.announcement-inner a {
  color: var(--gold-soft);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 234, 0.9);
  border-bottom: 1px solid rgba(106, 78, 58, 0.08);
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(181, 136, 77, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(47, 33, 28, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.brand-copy em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.main-nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  border: 1px solid rgba(181, 136, 77, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: var(--cocoa);
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.cart-count.has-items {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(181, 136, 77, 0.2);
  background: rgba(255, 255, 255, 0.68);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--cocoa);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(106, 78, 58, 0.1);
  background: rgba(247, 241, 234, 0.98);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(106, 78, 58, 0.08);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-section,
.page-hero,
.page-header,
.simple-page {
  padding: 84px 0;
}

.hero-grid,
.promo-shell,
.story-grid-2,
.detail-columns,
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.final-cta h2,
.section-heading h2,
.detail-panel h2,
.showcase-copy h3,
.product-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-copy p,
.page-hero p:last-child,
.brand-hook p:last-child,
.section-heading p:last-child,
.showcase-copy p,
.detail-panel p,
.product-summary {
  font-size: 1rem;
  color: var(--text);
}

.hero-actions,
.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
}

.hero-orbit {
  position: absolute;
  inset: 10% 6% 10% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 136, 77, 0.14), transparent 58%);
  filter: blur(12px);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(181, 136, 77, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-main-panel {
  padding: 26px;
}

.hero-slider {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.hero-main-image {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(181, 136, 77, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.08);
}

.brand-hook,
.collection-section,
.ingredient-section,
.newsletter-section,
.detail-section,
.catalog-section,
.story-layout {
  padding: 88px 0;
}

.brand-hook {
  background: rgba(255, 255, 255, 0.4);
}

.brand-hook h2,
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center,
.final-cta-inner {
  text-align: center;
}

.section-heading.light h2,
.section-heading.light p:last-child,
.trust-grid span,
.trust-grid strong,
.ritual-card h3,
.ritual-step p,
.ritual-step strong,
.ritual-quote {
  color: rgba(255, 255, 255, 0.9);
}

.ritual-section,
.trust-section,
.site-footer {
  background: var(--cocoa);
  color: rgba(255, 255, 255, 0.72);
}

.ritual-section,
.trust-section {
  padding: 96px 0;
}

.ritual-grid,
.trust-grid,
.ingredient-grid,
.results-grid,
.catalog-grid {
  display: grid;
  gap: 20px;
}

.ritual-grid,
.trust-grid,
.ingredient-grid,
.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.ritual-card,
.detail-panel,
.catalog-card,
.showcase-frame,
.notice-card,
.newsletter-shell,
.promo-shell,
.story-image-card,
.product-image-card,
.results-grid article {
  border-radius: 28px;
  border: 1px solid rgba(181, 136, 77, 0.16);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.ritual-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.05);
}

.ritual-time {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
}

.ritual-step {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.ritual-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(211, 179, 138, 0.35);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.74rem;
}

.ritual-quote {
  text-align: center;
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.showcase-item.flip {
  grid-template-columns: 1.05fr 0.95fr;
}

.showcase-item.flip .showcase-visual {
  order: 2;
}

.showcase-frame {
  padding: 28px;
  background: linear-gradient(145deg, rgba(248, 222, 215, 0.72), rgba(255, 248, 239, 0.92));
}

.showcase-frame img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

.showcase-copy h3,
.catalog-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.tagline,
.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.showcase-meta,
.catalog-footer,
.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cocoa);
}

.size {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.ingredient-grid article,
.trust-grid article,
.results-grid article {
  padding: 26px;
}

.ingredient-grid article strong,
.trust-grid article strong,
.results-grid article strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--cocoa);
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
}

.trust-grid article strong {
  color: var(--ivory);
}

.newsletter-shell {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(243, 227, 220, 0.58));
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-shell {
  padding: 34px;
  background: linear-gradient(145deg, rgba(244, 235, 222, 0.82), rgba(226, 237, 226, 0.76));
}

.promo-art {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.promo-copy .btn {
  margin-top: 26px;
}

.promo-art img {
  width: min(100%, 420px);
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(47, 33, 28, 0.14);
}

.final-cta {
  padding: 90px 0;
}

.final-cta-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
}

.site-footer {
  padding: 72px 0 28px;
}

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

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--ivory);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.welcome-teaser {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 140;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #1f1612 0%, #4e3526 100%);
  color: #fff;
  display: grid;
  gap: 2px;
  text-align: left;
  min-width: 124px;
  box-shadow: 0 14px 30px rgba(31, 22, 18, 0.22);
}

.welcome-teaser span {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}

.welcome-teaser strong {
  font-size: 0.88rem;
  color: #f7d7a4;
}

.welcome-popup {
  position: fixed;
  inset: 0;
  background: rgba(47, 33, 28, 0.72);
  backdrop-filter: blur(10px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.welcome-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.welcome-card {
  width: min(520px, calc(100% - 24px));
  margin: 10vh auto 0;
  padding: 34px;
  border-radius: 28px;
  background: var(--ivory);
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
}

.popup-fields {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.popup-msg,
.nl-msg {
  min-height: 18px;
  font-size: 0.82rem;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  padding: 13px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
}

.form-page {
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.form-card,
.order-summary {
  width: min(520px, 100%);
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(181, 136, 77, 0.15);
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 2rem;
}

.form-sub {
  margin-bottom: 24px;
  color: var(--text);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label,
.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.form-control,
.form-group input,
.form-group textarea,
.form-group select,
.newsletter-form input,
.popup-fields input,
.product-search {
  width: 100%;
  border: 1px solid rgba(181, 136, 77, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 16px;
  color: var(--cocoa);
}

.form-control:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.newsletter-form input:focus,
.popup-fields input:focus,
.product-search:focus {
  outline: none;
  border-color: var(--gold);
}

.form-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
}

.form-footer a {
  color: var(--gold);
}

.alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
}

.alert-success { background: #dff2e1; color: #215829; }
.alert-error { background: #f8dcdc; color: #812f2f; }
.alert-info { background: #ddeef5; color: #1d4d63; }

.page-header,
.page-hero {
  text-align: center;
}

.page-header h1,
.page-hero h1,
.simple-page h1 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.page-header p,
.page-hero p {
  max-width: 720px;
  margin: 0 auto;
}

.checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  padding: 60px 0 80px;
}

.checkout-title,
.account-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.checkout-block {
  margin-bottom: 24px;
}

.os-title {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.os-line,
.os-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(181, 136, 77, 0.14);
}

.os-total {
  font-weight: 600;
  border-bottom: 0;
}

.account-wrap {
  padding: 48px 0 80px;
}

.products-toolbar {
  padding: 0 0 18px;
}

.toolbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid rgba(181, 136, 77, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--cocoa);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--gold);
  color: var(--white);
}

.catalog-card {
  overflow: hidden;
}

.catalog-image {
  display: block;
  padding: 22px;
  background: linear-gradient(145deg, rgba(248, 222, 215, 0.7), rgba(230, 239, 224, 0.46));
}

.catalog-image img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.catalog-copy {
  padding: 24px;
}

.catalog-copy p {
  margin-top: 10px;
}

.product-hero {
  padding: 70px 0 36px;
}

.product-image-card {
  padding: 28px;
  background: linear-gradient(145deg, rgba(248, 222, 215, 0.8), rgba(255, 255, 255, 0.8));
}

.product-image-card img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.product-summary {
  margin-bottom: 16px;
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(181, 136, 77, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--cocoa);
  cursor: pointer;
}

.qty-input {
  width: 54px;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--cocoa);
}

.detail-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.detail-stats article {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(181, 136, 77, 0.12);
}

.detail-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.muted-bg {
  background: rgba(255, 255, 255, 0.36);
}

.bullet-list,
.ingredient-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.ingredient-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before,
.ingredient-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.ingredient-list strong {
  display: block;
  margin-bottom: 4px;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-row span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.74rem;
}

.story-image-card,
.product-image-card,
.notice-card,
.detail-panel {
  padding: 30px;
}

.story-image-card img {
  max-width: 360px;
  margin: 0 auto;
}

blockquote {
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(181, 136, 77, 0.32);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--gold);
}

.notice-card strong {
  display: block;
  margin-bottom: 8px;
}

.results-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 33, 28, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(390px, 100%);
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 210;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 38px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 22px 20px;
  border-bottom: 1px solid rgba(181, 136, 77, 0.16);
}

.cart-head h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.cart-close,
.cart-item-rm {
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 0 22px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(181, 136, 77, 0.14);
}

.cart-item-img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.62);
}

.cart-item-name {
  font-weight: 500;
  color: var(--cocoa);
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--gold);
  margin: 6px 0 10px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-val {
  min-width: 20px;
  text-align: center;
}

.cart-foot {
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(181, 136, 77, 0.16);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--cocoa);
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: 74px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .promo-shell,
  .story-grid-2,
  .detail-columns,
  .product-detail-grid,
  .newsletter-shell,
  .showcase-item,
  .showcase-item.flip,
  .checkout-wrap {
    grid-template-columns: 1fr;
  }

  .showcase-item.flip .showcase-visual {
    order: 0;
  }

  .ritual-grid,
  .trust-grid,
  .ingredient-grid,
  .results-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-image,
  .product-image-card img,
  .promo-art img {
    max-height: 420px;
  }

  .showcase-frame img {
    height: 320px;
  }

  .page-hero,
  .hero-section,
  .product-hero,
  .brand-hook,
  .collection-section,
  .ingredient-section,
  .newsletter-section,
  .detail-section,
  .catalog-section,
  .story-layout,
  .trust-section,
  .ritual-section,
  .final-cta {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .announcement-inner {
    min-height: 54px;
    padding: 8px 0;
    flex-direction: column;
    gap: 4px;
  }

  .brand-copy em,
  .text-link,
  .cart-label {
    display: none;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }

  .menu-toggle,
  .cart-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
  }

  .cart-btn {
    gap: 0;
    justify-content: center;
  }

  .hero-slider {
    min-height: 420px;
  }

  .hero-copy h1,
  .page-hero h1,
  .final-cta h2,
  .section-heading h2,
  .detail-panel h2,
  .showcase-copy h3,
  .product-copy h1,
  .page-header h1,
  .simple-page h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .hero-copy p,
  .page-hero p:last-child,
  .brand-hook p:last-child,
  .section-heading p:last-child,
  .showcase-copy p,
  .detail-panel p,
  .product-summary,
  .final-cta p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .product-actions,
  .toolbar-shell,
  .showcase-meta,
  .catalog-footer,
  .product-meta,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .product-actions .btn,
  .hero-actions a,
  .product-actions a,
  .final-cta .btn,
  .catalog-footer .btn {
    width: 100%;
  }

  .hero-main-panel,
  .showcase-frame,
  .ritual-card,
  .newsletter-shell,
  .promo-shell,
  .detail-panel,
  .catalog-copy {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toolbar-shell {
    align-items: stretch;
  }

  .filter-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .filter-pill {
    width: 100%;
    text-align: center;
  }

  .welcome-card,
  .form-card,
  .order-summary,
  .promo-shell,
  .newsletter-shell,
  .story-image-card,
  .product-image-card,
  .notice-card,
  .detail-panel {
    padding: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .checkout-wrap {
    gap: 20px;
    padding: 36px 0 56px;
  }

  .cart-drawer {
    width: 100%;
  }

  .welcome-teaser {
    display: none !important;
  }

  .wa-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    padding: 11px 16px;
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .announcement-inner {
    font-size: 0.66rem;
  }

  .container {
    width: calc(100% - 18px);
  }

  .hero-section,
  .page-hero,
  .page-header,
  .simple-page,
  .product-hero,
  .brand-hook,
  .collection-section,
  .ingredient-section,
  .newsletter-section,
  .detail-section,
  .catalog-section,
  .story-layout,
  .trust-section,
  .ritual-section,
  .final-cta {
    padding: 44px 0;
  }

  .filter-pills {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 1.7rem;
  }

  .ritual-step,
  .step-row {
    align-items: flex-start;
  }

  .mini-product img {
    height: 140px;
  }

  .hero-slider {
    min-height: 320px;
  }

  .promo-art img {
    height: min(74vw, 420px);
    border-radius: 20px;
  }
}
