/* Vanikha Queens storefront.
   Editorial palette: warm paper, deep forest green, chili red, turmeric gold.
   Display type is Playfair Display; everything else is Manrope. */

:root {
  --paper: #fdfbf7;
  --panel: #f4efe6;
  --sand: #e4d9c9;
  --ink: #1a1614;
  --muted: #5c534d;
  --forest: #1a3c34;
  --forest-deep: #122b25;
  --chili: #b23a28;
  --chili-dark: #922e1f;
  --gold: #eca72c;
  --white: #fff;

  --radius: 14px;
  --radius-lg: 22px;
  --pill: 9999px;
  --shadow-sm: 0 2px 10px rgba(26, 22, 20, 0.05);
  --shadow: 0 18px 44px rgba(26, 22, 20, 0.10);

  --display: "Playfair Display", ui-serif, Georgia, serif;
  --sans: Manrope, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
button { cursor: pointer; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sans { font-family: var(--sans); }
.muted { color: var(--muted); }
.center { text-align: center; }
.stack > * + * { margin-top: 14px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink);
  color: var(--paper); padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem; font-weight: 700; color: var(--muted); margin-bottom: 18px;
}
.eyebrow-mark { color: var(--chili); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand .crown { width: 34px; height: 34px; flex: none; }
.brand-name { font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.01em; white-space: nowrap; line-height: 1; }
.brand-first { color: var(--forest); }
.brand:hover .brand-first { color: var(--chili); }
.brand-name em { font-style: italic; color: var(--chili); }
.nav-links { display: flex; gap: 40px; list-style: none; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }
.nav-links a { text-decoration: none; color: var(--ink); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--chili); }
.cart-link {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest); border-radius: var(--pill);
  padding: 10px 16px; font-family: var(--sans); font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; flex: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cart-link:hover { background: var(--forest); color: var(--paper); transform: translateY(-2px); }
.cart-link .icon { width: 16px; height: 16px; }
.cart-count {
  background: var(--gold); color: var(--ink); border-radius: var(--pill);
  min-width: 20px; height: 20px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 0.72rem; padding: 0 6px; letter-spacing: 0;
}
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--pill); padding: 16px 32px;
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  text-decoration: none; border: 1px solid transparent;
  transition: background 0.16s ease, color 0.16s ease, transform 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--chili); color: #fff; }
.btn-primary:hover { background: var(--chili-dark); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--paper); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 0.82rem; }
.btn[disabled], .btn.is-disabled {
  background: var(--sand); color: var(--muted); pointer-events: none; border-color: transparent;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */
main { flex: 1 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.section-white { background: var(--white); }
.section-panel { background: var(--panel); }
.section-dark { background: var(--forest); color: var(--paper); }
.section-dark .eyebrow, .section-dark .muted, .section-dark .lead { color: rgba(253, 251, 247, 0.66); }
.section-dark .section-title { color: var(--paper); }
.section-head { margin-bottom: 46px; max-width: 44rem; }
.section-title { font-size: clamp(2.1rem, 5vw, 3.75rem); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--chili); }
.section-title.is-forest em { color: var(--forest); }
.section-title.is-gold em { color: var(--gold); }

.lead { font-size: 1.06rem; color: var(--muted); max-width: 36rem; }
.page-head { padding: 56px 0 8px; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ---------- hero ---------- */
.hero { padding: 84px 0 76px; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto -10% -40% 55%;
  height: 60%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(236, 167, 44, 0.16), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.9rem, 7.2vw, 5.4rem); letter-spacing: -0.045em; line-height: 0.95; margin-bottom: 0; }
.hero h1 em { font-style: italic; color: var(--chili); }
.hero .lead { font-size: 1.1rem; max-width: 28rem; margin: 32px 0 0; }
.hero .btn-row { margin-top: 40px; }
.hero-badges { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.hero-art { filter: drop-shadow(0 28px 40px rgba(26, 22, 20, 0.16)); }
@media (max-width: 940px) {
  .hero { padding: 52px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 320px; margin: 0 auto; }
}

.stat-row { display: flex; gap: 52px; margin-top: 44px; flex-wrap: wrap; }
.stat-num { font-family: var(--display); font-size: 2.5rem; line-height: 1; color: var(--ink); }
.section-dark .stat-num { color: var(--gold); }
.stat-label { font-family: var(--sans); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-top: 8px; font-weight: 700; }
@media (max-width: 620px) { .stat-row { gap: 30px; } .stat-num { font-size: 2rem; } }

/* ---------- marquee ribbon ---------- */
.ribbon {
  background: var(--forest); color: var(--paper); padding: 16px 0;
  font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700; overflow: hidden;
}
.ribbon-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.ribbon-track span { padding: 0 24px; white-space: nowrap; opacity: 0.92; }
.ribbon-track span::after { content: "•"; margin-left: 24px; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ribbon-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* ---------- editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-narrow { grid-template-columns: 0.92fr 1.08fr; }
.split p + p { margin-top: 18px; }
.body-copy { color: var(--muted); font-size: 1.02rem; }
@media (max-width: 940px) { .split, .split-narrow { grid-template-columns: 1fr; gap: 34px; } }

.pull-quote {
  font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25; margin-top: 40px; padding-left: 26px; border-left: 3px solid var(--gold);
}
.pull-quote cite { display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted); margin-top: 16px; font-weight: 700; }

.plaque { background: var(--panel); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 34px; font-family: var(--sans); }
.plaque .name { font-family: var(--display); font-size: 1.4rem; letter-spacing: -0.01em; }
.plaque .role { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-top: 8px; font-weight: 700; }

/* ---------- product grid ---------- */
.product-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.product-card {
  background: var(--paper); border: 1px solid #e5d9c5; border-radius: 28px;
  padding: 32px; display: flex; flex-direction: column;
  transition: border-color 0.3s ease;
}
.product-card:hover { border-color: var(--chili); }
.product-card[hidden] { display: none; }

/* image sits inside the padded card, tinted per category and cropped to one pouch */
.product-media {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 4 / 5; background: var(--panel);
}
.product-card[data-category="vegetarian"] .product-media { background: #eaf3ee; }
.product-card[data-category="non-vegetarian"] .product-media { background: #f7e4e0; }
.product-media .thumb-link { display: block; width: 100%; height: 100%; }
.product-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s ease-out;
}
.product-card[data-category="vegetarian"] .product-media img { object-position: left center; }
.product-card[data-category="non-vegetarian"] .product-media img { object-position: right center; }
.product-card:hover .product-media img { transform: scale(1.05); }

.media-badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(253, 251, 247, 0.9); backdrop-filter: blur(4px);
  border-radius: var(--pill); padding: 4px 12px;
  font-family: var(--sans); font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink);
}
.media-badge .icon { width: 12px; height: 12px; }
.product-card[data-category="vegetarian"] .media-badge .icon { color: var(--forest); }
.product-card[data-category="non-vegetarian"] .media-badge .icon { color: var(--chili); }
.product-media .pill { position: absolute; top: 16px; right: 16px; }

.product-body { flex: 1; margin-top: 24px; display: flex; flex-direction: column; }
.size-label { font-family: var(--sans); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); }
.product-body h3 { font-size: 1.5rem; line-height: 1.15; margin-top: 12px; }
.product-body h3 a { text-decoration: none; }
.product-body h3 a:hover { color: var(--chili); }
.product-blurb { font-family: var(--sans); font-size: 0.875rem; color: var(--muted); margin-top: 8px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; list-style: none; }
.tag {
  font-family: var(--sans); font-size: 0.625rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--forest);
  border: 1px solid rgba(26, 60, 52, 0.25); border-radius: var(--pill); padding: 4px 10px;
}

.price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 32px; }
.price-label { font-family: var(--sans); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); }
.price { font-family: var(--display); font-size: 1.875rem; color: var(--ink); line-height: 1; margin-top: 4px; white-space: nowrap; }
.card-actions { display: flex; gap: 10px; }
.btn-add { padding: 12px 12px 12px 20px; font-size: 0.72rem; letter-spacing: 0.18em; }

.pill { display: inline-block; font-family: var(--sans); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; padding: 6px 12px; border-radius: var(--pill); }
.pill-out { background: var(--sand); color: var(--muted); }
.pill-low { background: rgba(236, 167, 44, 0.24); color: #7a5510; }

/* heading left, filters right */
.range-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.range-head .section-head, .range-head > div:first-child { margin-bottom: 0; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }

/* ---------- craft grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--sand); border: 1px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; }
.value-card { background: var(--paper); padding: 34px 30px; }
.value-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.value-card p { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); }
.value-index { font-family: var(--sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.value-icon { width: 34px; height: 34px; margin-bottom: 12px; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.quote-card { background: rgba(253, 251, 247, 0.07); border: 1px solid rgba(253, 251, 247, 0.18); border-radius: var(--radius-lg); padding: 32px; }
.quote-card blockquote { font-family: var(--display); font-size: 1.16rem; line-height: 1.45; }
.quote-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.quote-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--forest-deep); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.1rem; flex: none; }
.quote-name { font-family: var(--sans); font-size: 0.88rem; font-weight: 700; }
.quote-role { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(253, 251, 247, 0.6); font-weight: 700; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { font-family: var(--sans); }
.contact-list dt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); font-weight: 700; margin-top: 26px; }
.contact-list dt:first-child { margin-top: 0; }
.contact-list dd { font-size: 1rem; margin-top: 7px; line-height: 1.6; }
.contact-list dd a { color: var(--chili); text-decoration: none; }
.contact-list dd a:hover { text-decoration: underline; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.detail-media { border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); border: 1px solid var(--sand); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-body h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin-bottom: 12px; }
.detail-price { font-family: var(--display); font-size: 2.1rem; color: var(--ink); margin: 16px 0 22px; }
.detail-desc { color: var(--muted); white-space: pre-line; margin-bottom: 28px; }
.buy-row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--sand); border-radius: var(--pill); overflow: hidden; background: var(--white); }
.qty label { position: absolute; left: -9999px; }
.qty input { width: 66px; border: 0; text-align: center; font-family: var(--sans); font-weight: 700; padding: 14px 4px; background: transparent; color: var(--ink); }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.detail-meta { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--sand); font-family: var(--sans); font-size: 0.88rem; color: var(--muted); }
.detail-meta li { list-style: none; display: flex; gap: 11px; align-items: center; padding: 6px 0; }
@media (max-width: 880px) { .product-detail { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1.55fr 0.95fr; gap: 40px; align-items: start; }
.cart-lines { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; padding: 22px 24px; border-bottom: 1px solid var(--sand); align-items: center; }
.cart-line:last-child { border-bottom: 0; }
.cart-thumb { width: 92px; height: 92px; border-radius: 12px; overflow: hidden; background: var(--panel); flex: none; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line h3 { font-size: 1.16rem; }
.cart-line h3 a { text-decoration: none; }
.cart-line-meta { font-family: var(--sans); font-size: 0.85rem; color: var(--muted); }
.cart-line-controls { display: flex; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.cart-line-controls form { display: flex; align-items: center; gap: 8px; }
.link-btn { background: none; border: 0; padding: 0; font-family: var(--sans); font-size: 0.8rem; color: var(--muted); text-decoration: underline; font-weight: 700; }
.link-btn:hover { color: var(--chili); }
.line-total { font-family: var(--display); font-size: 1.3rem; white-space: nowrap; }

.summary { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 30px; position: sticky; top: 96px; }
.summary h2 { font-size: 1.5rem; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-family: var(--sans); font-size: 0.94rem; padding: 8px 0; color: var(--muted); }
.summary-row strong { color: var(--ink); }
.summary-total { border-top: 1px solid var(--sand); margin-top: 12px; padding-top: 16px; font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.summary .btn { margin-top: 20px; }
.summary-note { font-family: var(--sans); font-size: 0.76rem; color: var(--muted); margin-top: 14px; text-align: center; }
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .cart-line { grid-template-columns: 70px 1fr; }
  .cart-thumb { width: 70px; height: 70px; }
  .line-total { grid-column: 2; }
}

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.empty-state p { color: var(--muted); margin-bottom: 26px; }

/* ---------- forms / checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 32px; }
.form-card h2 { font-size: 1.6rem; margin-bottom: 6px; }
.form-card > p.muted { font-family: var(--sans); font-size: 0.88rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--sans); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; color: var(--muted); }
.field .optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--sand); border-radius: 12px;
  background: var(--paper); font-family: var(--sans); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); background: var(--white); outline: none; }
.field textarea { min-height: 96px; resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--chili); background: #fdf3f1; }
.field-error { font-family: var(--sans); font-size: 0.78rem; color: var(--chili); margin-top: 6px; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }

.banner { font-family: var(--sans); font-size: 0.9rem; padding: 15px 18px; border-radius: 12px; margin-bottom: 24px; border: 1px solid; }
.banner-error { background: #fdf3f1; border-color: rgba(178, 58, 40, 0.32); color: var(--chili-dark); }
.banner-info { background: rgba(26, 60, 52, 0.07); border-color: rgba(26, 60, 52, 0.28); color: var(--forest); }

.mini-lines { font-family: var(--sans); font-size: 0.9rem; }
.mini-line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--sand); }
.mini-line:last-of-type { border-bottom: 0; }

/* ---------- confirmation ---------- */
.confirm-card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 48px 36px; max-width: 660px; margin: 0 auto; text-align: center; }
.confirm-mark { width: 70px; height: 70px; margin: 0 auto 20px; }
.order-number { display: inline-block; font-family: var(--sans); font-weight: 700; letter-spacing: 0.14em; background: var(--panel); border-radius: 10px; padding: 11px 18px; margin: 16px 0 20px; font-size: 0.9rem; }
.confirm-lines { text-align: left; margin: 28px 0; }
.confirm-address { text-align: left; font-family: var(--sans); font-size: 0.9rem; color: var(--muted); background: var(--paper); border: 1px solid var(--sand); border-radius: 12px; padding: 18px 20px; }

/* ---------- footer ---------- */
.site-footer { background: var(--forest); color: var(--paper); padding: 72px 0 32px; font-family: var(--sans); font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.site-footer a { color: rgba(253, 251, 247, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 5px 0; }
.site-footer h4 { font-family: var(--sans); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 14px; color: var(--gold); }
.footer-blurb { color: rgba(253, 251, 247, 0.7); max-width: 26rem; }
.footer-motto { font-family: var(--display); font-size: 1.35rem; margin-top: 20px; }
.footer-bottom { border-top: 1px solid rgba(253, 251, 247, 0.16); margin-top: 44px; padding-top: 22px; color: rgba(253, 251, 247, 0.55); font-size: 0.76rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- misc ---------- */
.notice-list { list-style: none; font-family: var(--sans); font-size: 0.9rem; }
.notice-list li { padding: 4px 0; }
.crumb { font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 24px; font-weight: 700; }
.crumb a { color: inherit; text-decoration: none; }
.crumb a:hover { color: var(--chili); }

/* ---------- brand marks ---------- */
.brand-logo { width: 48px; height: 48px; object-fit: contain; flex: none; }
.footer-logo { width: 112px; height: 112px; object-fit: contain; margin: 0 0 18px -6px; }
@media (max-width: 520px) { .brand-name { display: none; } }

/* ---------- photography frames ---------- */
.hero-frame {
  border-radius: 36px; overflow: hidden;
  background: linear-gradient(135deg, var(--panel), #ece2d2);
  border: 1px solid var(--sand);
}
.hero-frame img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.story-frame {
  margin-top: 40px; aspect-ratio: 1 / 1; max-width: 24rem;
  border-radius: 28px; overflow: hidden; background: var(--panel); border: 1px solid var(--sand);
}
.story-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- pantry (newsletter) ---------- */
.pantry-wrap { max-width: 44rem; }
.pantry-form { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.pantry-form input {
  flex: 1; min-width: 240px; padding: 16px 22px; border-radius: var(--pill);
  border: 1px solid var(--sand); background: var(--white);
  font-family: var(--sans); color: var(--ink);
}
.pantry-form input:focus { outline: none; border-color: var(--forest); }

/* ---------- contact form ---------- */
.contact-form { margin-top: 30px; }
.contact-form .field input, .contact-form .field textarea {
  background: transparent; border: 1px solid #e5d9c5; border-radius: 12px;
}
.contact-form .field input:focus, .contact-form .field textarea:focus {
  background: var(--white); border-color: var(--forest);
}

.form-note {
  font-family: var(--sans); font-size: 0.88rem; font-weight: 700;
  padding: 13px 17px; border-radius: 12px; margin-top: 22px; border: 1px solid;
}
.form-note.is-good { background: rgba(26, 60, 52, 0.08); border-color: rgba(26, 60, 52, 0.3); color: var(--forest); }
.form-note.is-bad { background: #fdf3f1; border-color: rgba(178, 58, 40, 0.32); color: var(--chili-dark); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- hero details, matched to the sample ---------- */
.icon { width: 16px; height: 16px; flex: none; }

/* rotated rail down the left edge, desktop only */
.hero-rail {
  position: absolute; left: 0; top: 33%; transform: rotate(-90deg); transform-origin: left;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4em; color: var(--muted); white-space: nowrap; pointer-events: none;
}
@media (max-width: 1023px) { .hero-rail { display: none; } }

/* eyebrow pill with the flame */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px;
  border: 1px solid rgba(178, 58, 40, 0.3); background: var(--paper);
  border-radius: var(--pill); padding: 6px 16px;
  font-family: var(--sans); font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em; color: var(--chili);
}
.hero-pill .icon { width: 14px; height: 14px; }

/* stats: forest numerals with hairline rules between */
.stat-row { display: flex; align-items: center; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.stat-num { font-family: var(--display); font-size: 1.875rem; line-height: 1; color: var(--forest); }
.stat-label { font-family: var(--sans); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); margin-top: 4px; }
.stat-rule { width: 1px; height: 40px; background: #e5d9c5; flex: none; }
@media (max-width: 620px) { .stat-row { gap: 24px; } .stat-rule { display: none; } }

/* image column: 4/5 frame, gold flag, note card */
.hero-art { position: relative; }
.hero-frame { aspect-ratio: 4 / 5; border-radius: 36px; }
.hero-frame img { padding: 32px; }
.hero-flag {
  position: absolute; top: -16px; right: 24px; transform: rotate(3deg);
  background: var(--gold); color: var(--ink);
  font-family: var(--display); font-style: italic; font-size: 0.875rem;
  padding: 6px 16px; border-radius: 6px; box-shadow: 0 4px 14px rgba(26, 22, 20, 0.16);
}
.hero-note {
  position: absolute; bottom: -32px; left: -24px; max-width: 240px;
  background: var(--paper); border: 1px solid #e5d9c5; border-radius: 16px;
  padding: 16px 24px; box-shadow: 0 20px 60px -30px rgba(26, 60, 52, 0.4);
}
.hero-note-kicker { font-family: var(--sans); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--chili); }
.hero-note-body { font-family: var(--display); font-size: 1.125rem; line-height: 1.3; margin-top: 4px; }
@media (max-width: 940px) {
  .hero-note { left: 0; bottom: -24px; }
  .hero-art { margin-bottom: 44px; }
}

/* ---------- batik texture + grain, as the sample layers them ---------- */
.has-texture { position: relative; overflow: hidden; }
.has-texture > .wrap { position: relative; z-index: 1; }
.batik {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.7;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(178, 58, 40, 0.06) 0, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(26, 60, 52, 0.06) 0, transparent 40%),
    radial-gradient(circle, rgba(236, 167, 44, 0.05) 0, transparent 60%);
  background-size: 60px 60px, 60px 60px, 120px 120px;
}
.hero-frame, .story-frame, .product-media { position: relative; }
.hero-frame::after, .story-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

/* ---------- story: oversized serif opener ---------- */
.story-lead {
  font-family: var(--display); font-size: 1.9rem; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.01em;
}
.story-lead em { font-style: italic; color: var(--chili); }
.split .story-lead + p { margin-top: 28px; }
@media (max-width: 720px) { .story-lead { font-size: 1.5rem; } }
