:root {
  --ink: #171713;
  --ink-soft: #2a2924;
  --paper: #f4f0e7;
  --paper-deep: #e9e2d4;
  --white: #fffdf8;
  --ember: #ff6a2a;
  --ember-dark: #d94612;
  --lime: #c9f45a;
  --muted: #69675f;
  --line: rgba(23, 23, 19, .14);
  --shadow: 0 28px 70px rgba(31, 25, 14, .14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: min(1180px, calc(100% - 32px));
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body:has(dialog[open]) { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 84px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--lime);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.service-bar {
  position: relative;
  z-index: 20;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .01em;
}

.service-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-bar a { display: none; color: var(--lime); font-weight: 700; text-underline-offset: 3px; }

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 244, 90, .15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(244, 240, 231, .89);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(25, 22, 15, .05); }

.header__inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.brand > span > span { color: var(--ember); }
.brand__mark { width: 33px; color: var(--ember); }
.brand--light { color: var(--white); }
.desktop-nav { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, .text-link:focus-visible, .icon-button:focus-visible, summary:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--small { min-height: 42px; padding-inline: 17px; font-size: 14px; }
.button--dark { color: var(--white); background: var(--ink); }
.button--primary { color: var(--ink); background: var(--lime); box-shadow: 0 12px 24px rgba(125, 151, 51, .18); }
.button--primary:hover { background: #d8ff73; box-shadow: 0 15px 30px rgba(125, 151, 51, .24); }
.button--light { color: var(--ink); background: var(--white); }
.button--outline { background: transparent; border-color: var(--line); }
.button--full { width: 100%; }

.hero { padding: 32px 0 72px; }
.hero__grid { display: grid; gap: 42px; }
.hero__copy { align-self: center; }

.eyebrow, .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--ember-dark);
  font-family: "Arial", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span { display: inline-grid; place-items: center; width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%; }
.eyebrow--light, .trust .kicker { color: var(--lime); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Arial", sans-serif; }

h1 {
  margin-bottom: 23px;
  font-size: clamp(43px, 12vw, 74px);
  line-height: .95;
  letter-spacing: -.075em;
}

h1 em, h2 em { color: var(--ember); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.055em; }
.hero__lead { max-width: 610px; margin-bottom: 29px; color: #55534c; font-size: 17px; }
.hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: 18px; }

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: none;
  padding: 7px 0;
  font-weight: 700;
  text-underline-offset: 5px;
  cursor: pointer;
}
.text-link:hover { text-decoration: underline; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__facts li { min-width: 0; padding: 0 9px; border-right: 1px solid var(--line); }
.hero__facts li:first-child { padding-left: 0; }
.hero__facts li:last-child { padding-right: 0; border: 0; }
.hero__facts strong, .hero__facts span { display: block; }
.hero__facts strong { margin-bottom: 4px; font-family: "Arial", sans-serif; font-size: 15px; }
.hero__facts span { color: var(--muted); font-size: 10px; line-height: 1.3; }

.hero__visual {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #cb8f56;
  box-shadow: var(--shadow);
}
.hero__visual > img { width: 100%; height: 100%; object-fit: cover; }

.hero__sticker {
  position: absolute;
  top: 22px;
  right: 19px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transform: rotate(8deg);
}
.hero__sticker svg { position: absolute; inset: 4px; width: 88px; height: 88px; animation: rotate 22s linear infinite; }
.hero__sticker text { fill: currentColor; font-size: 8.2px; font-family: "Arial", sans-serif; font-weight: 800; letter-spacing: 1.4px; }
.hero__sticker > span { font-size: 25px; font-weight: 900; }

.hero__price-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 144px;
  padding: 15px 17px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(23, 23, 19, .78);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.hero__price-card span, .hero__price-card small { display: block; color: rgba(255,255,255,.7); }
.hero__price-card span { font-size: 12px; }
.hero__price-card strong { display: block; margin: 1px 0; font: 800 27px/1.1 "Arial", sans-serif; letter-spacing: -.05em; }
.hero__price-card small { font-size: 11px; }

.section-heading { display: grid; gap: 20px; margin-bottom: 34px; }
.section-heading h2, .trust__intro h2, .delivery h2, .faq h2 { margin-bottom: 0; font-size: clamp(34px, 9vw, 56px); line-height: 1.02; letter-spacing: -.06em; }
.section-heading p { max-width: 470px; margin-bottom: 0; color: var(--muted); }

.product-grid { display: grid; gap: 24px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; box-shadow: 0 14px 36px rgba(46, 36, 20, .07); }
.product-card__media { position: relative; min-height: 270px; background: #d6a36a; overflow: hidden; }
.product-card__media--dark { background: #725039; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.product-card__label { position: absolute; z-index: 1; top: 16px; left: 16px; padding: 8px 12px; border-radius: 999px; color: var(--ink); background: var(--white); font-size: 11px; font-weight: 800; box-shadow: 0 8px 18px rgba(0,0,0,.09); }
.product-card--featured .product-card__label { background: var(--lime); }
.product-card__body { padding: 23px 20px 22px; }
.product-card__topline { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.availability { color: #416126; white-space: nowrap; }
.availability i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: #6da83a; }
.product-card h3 { margin: 13px 0 9px; font-size: 30px; letter-spacing: -.05em; }
.product-card__description { color: var(--muted); font-size: 14px; }

.specs { margin: 22px 0 23px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.specs li { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.specs span { color: var(--muted); }
.specs strong { font-weight: 700; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 13px; }
.product-card__footer .button { min-height: 48px; padding-inline: 20px; }
.price span, .price strong { display: block; }
.price span { color: var(--muted); font-size: 11px; }
.price strong { font: 800 29px/1.1 "Arial", sans-serif; letter-spacing: -.055em; }
.price-note { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; }

.trust { padding-bottom: 0; color: var(--white); background: var(--ink); }
.trust__intro { display: grid; gap: 23px; margin-bottom: 36px; }
.trust__intro p { max-width: 460px; margin-bottom: 0; color: rgba(255,255,255,.6); }
.trust-grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.1); }
.trust-card { position: relative; padding: 28px 24px 31px; background: var(--ink); }
.trust-card__number { position: absolute; top: 21px; right: 21px; color: rgba(255,255,255,.32); font: 700 11px "Arial", sans-serif; }
.trust-card svg { width: 42px; height: 42px; margin-bottom: 33px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-card h3 { margin-bottom: 9px; font-size: 20px; }
.trust-card p { margin-bottom: 0; color: rgba(255,255,255,.57); font-size: 13px; }

.delivery { display: grid; margin-top: 72px; overflow: hidden; border-radius: var(--radius-lg); color: var(--ink); background: var(--lime); }
.delivery__map { position: relative; min-height: 335px; overflow: hidden; background: #dbff79; }
.delivery__map::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(23,23,19,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,19,.18) 1px, transparent 1px); background-size: 34px 34px; }
.delivery__ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(23,23,19,.32); border-radius: 50%; transform: translate(-50%, -50%); }
.delivery__ring--outer { width: 310px; height: 310px; background: rgba(255,255,255,.13); }
.delivery__ring--inner { width: 170px; height: 170px; background: rgba(255,255,255,.2); }
.delivery__pin { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 78px; height: 78px; border-radius: 50%; color: var(--white); background: var(--ink); font: 800 10px "Arial", sans-serif; transform: translate(-50%, -50%); box-shadow: 0 16px 30px rgba(0,0,0,.18); }
.delivery__pin i { position: absolute; width: 10px; height: 10px; top: 18px; border-radius: 50%; background: var(--ember); }
.delivery__city { position: absolute; z-index: 2; padding: 5px 8px; border-radius: 6px; background: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; }
.delivery__city--one { left: 9%; top: 27%; }
.delivery__city--two { right: 6%; top: 64%; }
.delivery__city--three { left: 15%; bottom: 13%; }
.delivery__city--four { right: 12%; top: 17%; }
.delivery__copy { padding: 36px 25px 40px; }
.delivery__copy .kicker { color: var(--ink); opacity: .68; }
.delivery__copy p { margin: 19px 0 27px; color: rgba(23,23,19,.7); }

.faq { display: grid; gap: 35px; padding: 78px 0 84px; }
.faq__title .kicker { margin-bottom: 14px; }
.faq__items { border-top: 1px solid rgba(255,255,255,.15); }
.faq details { border-bottom: 1px solid rgba(255,255,255,.15); }
.faq summary { position: relative; padding: 22px 42px 22px 0; list-style: none; font-weight: 700; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span, .faq summary span::after { position: absolute; right: 4px; top: 50%; width: 16px; height: 1px; background: var(--lime); transition: transform .2s ease; }
.faq summary span::after { content: ""; right: 0; top: 0; transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0); }
.faq details p { max-width: 660px; padding: 0 35px 22px 0; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.site-footer { color: var(--white); background: #0e0e0b; padding: 46px 0 105px; }
.footer__inner { display: grid; gap: 24px; padding-bottom: 35px; }
.footer__inner p { margin: 0; color: rgba(255,255,255,.5); }
.footer__bottom { display: flex; justify-content: space-between; gap: 15px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.37); font-size: 11px; }

.mobile-bar { position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 12; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 9px 9px 9px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; color: var(--white); background: rgba(23,23,19,.92); box-shadow: 0 16px 38px rgba(0,0,0,.25); backdrop-filter: blur(15px); transition: transform .25s ease, opacity .25s ease; }
.mobile-bar.is-hidden { opacity: 0; transform: translateY(130%); pointer-events: none; }
.mobile-bar > div span, .mobile-bar > div strong { display: block; }
.mobile-bar > div span { color: rgba(255,255,255,.57); font-size: 10px; }
.mobile-bar > div strong { font: 800 18px "Arial", sans-serif; }
.mobile-bar .button { min-height: 45px; padding-inline: 20px; }

.order-dialog { width: min(620px, calc(100% - 16px)); max-height: calc(100dvh - 20px); margin: auto; padding: 0; border: 0; border-radius: 26px; color: var(--ink); background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,.32); overflow: auto; }
.order-dialog::backdrop { background: rgba(13,13,10,.74); backdrop-filter: blur(5px); }
.order { padding: 24px 20px 25px; }
.order__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.order__header .kicker { margin-bottom: 5px; color: var(--ember-dark); }
.order__header h2 { margin: 0; font-size: 25px; letter-spacing: -.05em; }
.icon-button { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.order__content { padding-top: 22px; }
.field { margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; align-items: end; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.field input, .field select { width: 100%; height: 49px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); background: #faf7f0; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.field input:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(201,244,90,.55); }
.field.is-invalid input { border-color: #b7291d; }
.field__error { display: none; margin-top: 5px; color: #a7271d; font-size: 10px; }
.field.is-invalid .field__error { display: block; }
.stepper { display: grid; grid-template-columns: 38px 1fr 38px; border: 1px solid var(--line); border-radius: 13px; background: #faf7f0; overflow: hidden; }
.stepper button { border: 0; background: transparent; font-size: 21px; cursor: pointer; }
.stepper input { height: 47px; padding: 0; border: 0; border-radius: 0; text-align: center; appearance: textfield; background: transparent; }
.stepper input::-webkit-inner-spin-button { appearance: none; }
.order-total { padding-bottom: 16px; }
.order-total span, .order-total strong, .order-total small { display: block; }
.order-total span, .order-total small { color: var(--muted); font-size: 10px; }
.order-total strong { font: 800 23px "Arial", sans-serif; letter-spacing: -.04em; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 3px 0 20px; color: var(--muted); font-size: 11px; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--ink); }
.check.is-invalid { color: #a7271d; }
.order__note { margin: 12px 8px 0; color: var(--muted); font-size: 10px; text-align: center; }
.order-success { padding: 34px 0 5px; text-align: center; }
.success-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--lime); font-size: 25px; font-weight: 900; }
.order-success .kicker { justify-content: center; margin-bottom: 7px; color: var(--ember-dark); }
.order-success h3 { margin-bottom: 7px; font-size: 27px; letter-spacing: -.05em; }
.order-success > p { max-width: 390px; margin-inline: auto; color: var(--muted); font-size: 13px; }
.order-success textarea { width: 100%; height: 150px; margin: 12px 0 16px; padding: 15px; resize: none; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: #f7f3ea; font-size: 12px; line-height: 1.5; }
.order-success__actions { display: grid; gap: 9px; }
.text-link--center { margin: 12px auto 0; }
.copy-status { min-height: 18px; margin: 7px 0 0 !important; color: #416126 !important; }

@keyframes rotate { to { transform: rotate(360deg); } }

@media (min-width: 640px) {
  :root { --shell: min(1180px, calc(100% - 56px)); }
  .service-bar__inner { justify-content: space-between; }
  .service-bar a { display: inline; }
  .hero { padding-top: 48px; }
  .hero__actions { flex-direction: row; align-items: center; }
  .hero__facts strong { font-size: 18px; }
  .hero__facts span { font-size: 11px; }
  .product-card { display: grid; grid-template-columns: .92fr 1.08fr; }
  .product-card__media { min-height: 100%; }
  .product-card__body { padding: 27px 25px 25px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery__copy { padding: 48px; }
  .order { padding: 29px 31px 31px; }
  .order-success__actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  :root { --header-height: 82px; }
  .section { padding: 112px 0; }
  .desktop-nav { display: flex; gap: 29px; }
  .desktop-nav a { position: relative; text-decoration: none; color: var(--muted); font-size: 13px; font-weight: 600; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--ember); transition: right .2s ease; }
  .desktop-nav a:hover::after { right: 0; }
  .hero { padding: 68px 0 105px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr); gap: 64px; }
  h1 { font-size: clamp(59px, 6.4vw, 88px); }
  .hero__lead { font-size: 18px; }
  .hero__visual { min-height: 650px; }
  .hero__sticker { width: 116px; height: 116px; top: 28px; right: 27px; }
  .hero__sticker svg { width: 108px; height: 108px; }
  .hero__price-card { left: 28px; bottom: 28px; width: 172px; padding: 19px 21px; }
  .hero__price-card strong { font-size: 34px; }
  .section-heading, .trust__intro { grid-template-columns: 1.1fr .9fr; align-items: end; }
  .section-heading { margin-bottom: 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { display: block; }
  .product-card__media { min-height: 350px; }
  .product-card__body { padding: 30px; }
  .trust { padding-top: 116px; }
  .trust__intro { margin-bottom: 52px; }
  .trust-card { padding: 34px 32px 38px; }
  .trust-card svg { margin-bottom: 50px; }
  .delivery { grid-template-columns: 1.08fr .92fr; margin-top: 100px; }
  .delivery__map { min-height: 500px; }
  .delivery__ring--outer { width: 455px; height: 455px; }
  .delivery__ring--inner { width: 245px; height: 245px; }
  .delivery__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px; }
  .faq { grid-template-columns: .75fr 1.25fr; gap: 90px; padding: 110px 0 120px; }
  .faq summary { padding-block: 25px; }
  .footer__inner { grid-template-columns: 1fr 1fr auto; align-items: center; padding-bottom: 45px; }
  .footer__inner p { text-align: center; }
  .site-footer { padding: 58px 0 30px; }
  .mobile-bar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (prefers-color-scheme: dark) {
  /* The warm light storefront is intentional; only native controls retain their legibility. */
  :root { color-scheme: light; }
}
