:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --surface-soft: #f6efe5;
  --ink: #241b16;
  --muted: #6f6258;
  --accent: #8d5f2e;
  --accent-dark: #6f491f;
  --accent-soft: #f2e3cf;
  --line: rgba(36, 27, 22, 0.08);
  --line-strong: rgba(36, 27, 22, 0.14);
  --success: #33533e;
  --warning-bg: #fff7e8;
  --warning-text: #8a5a11;
  --ok-bg: #edf8f0;
  --ok-text: #1f5f33;
  --radius: 26px;
  --radius-small: 18px;
  --shadow: 0 24px 52px rgba(26, 18, 12, 0.12);
  --shadow-soft: 0 12px 26px rgba(26, 18, 12, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
.hidden { display: none !important; }

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

.section { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.8)); }
.section-dark {
  background: linear-gradient(180deg, #17120f 0%, #221a16 100%);
  color: #f7efe4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 243, 0.9);
  border-bottom: 1px solid rgba(53, 35, 24, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
.brand img { width: 126px; height: auto; }
.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}
.desktop-nav a:hover { color: var(--ink); }
.header-cta { flex-shrink: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(111, 73, 31, 0.22);
}
.button-primary:hover { background: var(--accent-dark); }
.button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.button-card { width: 100%; }
.light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

.hero { padding-top: 36px; }
.hero-grid,
.section-heading-split,
.product-grid,
.special-grid,
.steps-grid,
.delivery-grid,
.trust-grid,
.order-grid,
.footer-grid,
.legal-grid,
.form-row {
  display: grid;
  gap: 18px;
}
.hero-grid { align-items: center; }
.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.eyebrow,
.status-pill,
.kicker,
.kicker-light,
.special-tag,
.summary-label,
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}
.eyebrow,
.kicker,
.special-tag,
.summary-label,
.product-badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.kicker-light {
  background: rgba(255,255,255,0.12);
  color: #f7efe4;
}
.status-pill {
  background: rgba(51, 83, 62, 0.1);
  color: var(--success);
}

.hero h1,
.section-heading h2,
.info-card h2,
.order-copy h2,
.legal-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.03;
}
.hero h1 { font-size: clamp(2.3rem, 4vw, 4.5rem); max-width: 12ch; }
.hero-text {
  margin: 16px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.04rem;
}
.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0 18px;
}
.highlight-card,
.inline-note-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.highlight-label { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 6px; }
.highlight-card strong,
.inline-note-card strong { display: block; font-size: 1.08rem; }
.inline-note-card span { color: var(--muted); }
.hero-chips,
.order-notes,
.footer-links,
.summary-actions,
.product-order-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chips span,
.order-notes span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}
.order-notes span {
  background: rgba(255,255,255,0.08);
  color: #f7efe4;
  border-color: rgba(255,255,255,0.12);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #efe5d8 0%, #f7efe5 100%);
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.media-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(24, 17, 14, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
}
.media-badge strong { display: block; margin-bottom: 4px; }
.media-badge span { color: rgba(255,255,255,0.84); font-size: 0.94rem; }

.section-heading { margin-bottom: 28px; }
.section-heading h2,
.info-card h2,
.order-copy h2,
.legal-page h1 { font-size: clamp(1.85rem, 3vw, 3rem); }
.section-heading p,
.section-note,
.field-help {
  max-width: 62ch;
  color: var(--muted);
  margin: 12px 0 0;
}
.narrow { max-width: 760px; }
.left-align { margin-left: 0; }

.product-card,
.special-card,
.step-card,
.info-card,
.trust-card,
.order-panel,
.summary-card,
.footer-grid > div,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.product-card { display: flex; flex-direction: column; }
.product-image-wrap,
.special-image-wrap {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: #f2e8db;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image-wrap img,
.special-image-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
  padding: 0;
}
.landscape-photo img,
.portrait-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}
.soft-surface { background: linear-gradient(180deg, #f6efe4, #fbf7f1); }
.semoule-bg { background: linear-gradient(180deg, #efe6d6, #f8f2e9); }
.product-body,
.special-body,
.step-card,
.info-card,
.trust-card,
.order-panel,
.summary-card,
.footer-grid > div,
.legal-card { padding: 18px; }
.product-body,
.special-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.product-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-body h3,
.special-body h3,
.step-card h3,
.trust-card h3,
.summary-card h3,
.footer-grid h3,
.legal-card h2 {
  margin: 0;
  font-size: 1.18rem;
}
.product-body p,
.special-body p,
.step-card p,
.info-card p,
.trust-card p,
.summary-card p,
.order-copy p,
.footer-grid p,
.legal-card p,
.legal-card li,
.product-description-list li,
.price-tier-note,
.mini-field span,
.field-help { color: var(--muted); }
.product-card-featured { border-color: rgba(141, 95, 46, 0.24); }
.product-description-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.compact-list { gap: 5px; }
.product-price-stack { display: grid; gap: 6px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price { font-size: 1.38rem; line-height: 1; }
.product-price-note { color: var(--muted); font-size: 0.92rem; }
.price-tier-note { font-size: 0.92rem; }
.compact-price-row { margin-top: -4px; }
.product-order-row {
  align-items: flex-end;
  margin-top: auto;
}
.mini-field {
  display: grid;
  gap: 6px;
  min-width: 104px;
  font-weight: 600;
}
.mini-field select {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}
.special-grid { margin-top: 18px; }
.special-card { display: grid; gap: 0; }

.step-card { position: relative; padding-top: 60px; }
.step-index {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}
.trust-grid .trust-card,
.info-card { min-height: 100%; }
.fees-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.fees-list div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--surface-soft);
}
.fees-list strong { font-size: 0.98rem; }

.allergen-card p + p { margin-top: 10px; }

.faq-wrap { display: grid; gap: 20px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 24px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--muted);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }

.order-copy p {
  color: rgba(247, 239, 228, 0.8);
  margin-top: 12px;
  max-width: 54ch;
}
.price-guide {
  margin-top: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 18px;
}
.price-guide h3 { margin: 0 0 12px; }
.price-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.price-guide li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: rgba(247,239,228,0.88);
}
.order-panel-wrap { display: grid; gap: 18px; }
.order-panel {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.order-form { display: grid; gap: 14px; }
.order-form label,
.mode-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-weight: 600;
  color: #f7efe4;
}
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.order-form textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}
.order-form option { color: #111; }
.form-row-two { grid-template-columns: 1fr; align-items: start; }
.mode-label { font-weight: 600; }
.mode-toggle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.mode-toggle-btn {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.mode-toggle-btn.active {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.24);
}
.form-block { display: grid; gap: 10px; }
.field-help { color: rgba(247,239,228,0.72); margin: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-actions .button { flex: 1 1 100%; }
.order-form > * { min-width: 0; }
.summary-card {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
}
.summary-header-line {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.cart-empty,
.cart-note,
.summary-footnote { color: var(--muted); }
.cart-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.cart-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}
.cart-item-top,
.cart-item-bottom,
.summary-total div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-item-name { font-weight: 700; }
.cart-item-price,
.cart-item-meta,
.cart-item-line-note { color: var(--muted); font-size: 0.92rem; }
.cart-item-line-note { margin-top: 6px; }
.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cart-item-controls select,
.cart-item-controls button {
  min-height: 42px;
  border-radius: 14px;
}
.cart-item-controls select {
  min-width: 88px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
}
.button-remove {
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.summary-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.summary-total .strong-line {
  color: var(--ink);
  font-weight: 800;
}
.summary-alert,
.summary-ok {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.94rem;
}
.summary-alert {
  background: var(--warning-bg);
  color: var(--warning-text);
}
.summary-ok {
  background: var(--ok-bg);
  color: var(--ok-text);
}
.summary-actions { margin-top: 16px; }
.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}
.summary-mini {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid rgba(53, 35, 24, 0.08);
  background: #fff;
}
.footer-grid { padding: 26px 0 108px; }
.footer-grid p + p { margin-top: 8px; }
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 28;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(36,27,22,0.08);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.sticky-summary-text {
  display: grid;
  gap: 2px;
}
.sticky-summary-text span {
  color: var(--muted);
  font-size: 0.9rem;
}
.sticky-summary-text strong { font-size: 1rem; }
.mobile-sticky-cta .button { min-height: 44px; padding: 0 16px; }

.legal-page {
  min-height: 100vh;
  padding: 32px 0 80px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-weight: 700;
}
.legal-intro { margin: 12px 0 28px; color: var(--muted); max-width: 62ch; }
.legal-grid { margin-top: 24px; }
.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.legal-footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 720px) {
  .hero-highlights,
  .section-heading-split,
  .delivery-grid,
  .special-grid,
  .steps-grid,
  .trust-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 420px); align-items: start; }
}

@media (min-width: 920px) {
  .mode-toggle { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desktop-nav { display: flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 430px); }
  .hero-media { max-width: 430px; justify-self: end; }
  .hero-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 62%;
  }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card-featured { grid-column: span 2; }
  .special-grid { grid-template-columns: 1.15fr 0.85fr; }
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .legal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .container { width: min(1120px, calc(100% - 24px)); }
  .section { padding: 60px 0; }
  .hero h1 { max-width: 11ch; }
  .hero-media { max-width: 420px; margin: 0 auto; }
  .hero-media img {
    aspect-ratio: 4 / 4.1;
    max-height: 360px;
    object-fit: contain;
    object-position: center 66%;
    padding: 10px 10px 0;
    background: linear-gradient(180deg, #efe5d8 0%, #f8f1e8 100%);
  }
  .media-badge { left: 12px; right: 12px; bottom: 12px; }
  .product-order-row { flex-direction: column; align-items: stretch; }
  .mini-field { width: 100%; }
  .summary-actions .button { flex: 1 1 100%; }
}


.confirmation-message { display:block; }
.footer-grid a[href^="mailto:"] { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; }
