:root {
  --ink: #090a0d;
  --surface: #121318;
  --surface-raised: #191a20;
  --surface-input: #101116;
  --gold: #c6a465;
  --gold-soft: #ebd9ad;
  --cream: #f7f4ed;
  --muted: #b0afb4;
  --line: rgba(235, 217, 173, .16);
  --line-strong: rgba(198, 164, 101, .42);
  --page-gutter: clamp(18px, 5vw, 112px);
  --content-max: 1440px;
  --ease: 220ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { min-width: 320px; margin: 0; overflow-x: clip; background: var(--ink); color: var(--cream); font-family: Montserrat, Arial, sans-serif; font-size: 16px; line-height: 1.5; }
body.no-scroll, body.menu-open { overflow: hidden; }
body::before { position: fixed; z-index: -1; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 90% 7%, rgba(198, 164, 101, .08), transparent 24rem); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; touch-action: manipulation; }
button:disabled { cursor: not-allowed; opacity: .45; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 12px; padding: 10px 14px; transform: translateY(-160%); border-radius: 8px; background: var(--gold-soft); color: var(--ink); font-size: 12px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.header { position: fixed; z-index: 30; inset: 0 0 auto; display: flex; align-items: center; min-height: 76px; padding: 8px var(--page-gutter); border-bottom: 1px solid rgba(235, 217, 173, .1); background: rgba(9, 10, 13, .84); backdrop-filter: blur(18px); }
.logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.logo img { display: block; width: 88px; height: 58px; object-fit: contain; }
.header nav { display: flex; align-items: center; gap: clamp(16px, 1.7vw, 30px); margin-left: auto; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.header nav a { position: relative; padding: 12px 0; color: rgba(247, 244, 237, .88); transition: color var(--ease); }
.header nav a::after { position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; content: ""; transform: scaleX(0); transform-origin: right; background: var(--gold); transition: transform var(--ease); }
.header nav a:hover { color: var(--gold-soft); }
.header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.head-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; margin-left: clamp(18px, 2vw, 32px); }
.wa-top, .cart-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(18, 19, 24, .38); color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .04em; transition: border-color var(--ease), background var(--ease), color var(--ease), transform var(--ease); }
.wa-top { padding: 0 15px; }
.cart-btn { min-width: 52px; gap: 5px; padding: 0 12px; }
.wa-top:hover, .cart-btn:hover { border-color: var(--gold-soft); background: rgba(198, 164, 101, .15); color: var(--cream); transform: translateY(-1px); }
.menu { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--cream); font-size: 23px; line-height: 1; }

/* Shared components */
.eyebrow { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .2em; line-height: 1.3; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; }
.section { width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2))); margin-inline: auto; padding: clamp(72px, 8vw, 120px) var(--page-gutter); }
.section h2 { margin: 10px 0 0; font-size: clamp(43px, 4.4vw, 66px); font-weight: 600; line-height: .92; letter-spacing: -.025em; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .015em; text-align: center; transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(198, 164, 101, .12); }
.btn.gold:hover { background: var(--gold-soft); box-shadow: 0 15px 33px rgba(198, 164, 101, .2); }
.btn.line { border-color: var(--line-strong); color: var(--gold-soft); background: rgba(18, 19, 24, .5); }
.btn.line:hover { border-color: var(--gold-soft); background: rgba(198, 164, 101, .12); color: var(--cream); }
.muted { color: var(--muted); }

/* Hero and value points */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .9fr); align-items: center; gap: clamp(42px, 7vw, 130px); min-height: min(800px, 100svh); padding: clamp(126px, 13vw, 178px) var(--page-gutter) clamp(78px, 8vw, 120px); overflow: hidden; background: radial-gradient(circle at 78% 45%, rgba(198, 164, 101, .14), transparent 26rem); }
.hero-copy { max-width: 620px; }
.hero h1 { max-width: 760px; margin: 20px 0 24px; font-size: clamp(60px, 7.5vw, 112px); font-weight: 600; line-height: .82; letter-spacing: -.045em; }
.hero h1 em { color: var(--gold-soft); font-style: italic; }
.hero p { max-width: 510px; margin: 0; color: var(--muted); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.85; }
.actions, .product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-logo { position: relative; display: grid; min-height: 410px; place-items: center; }
.hero-logo img { position: relative; z-index: 2; width: min(385px, 82%); filter: drop-shadow(0 30px 60px rgba(198, 164, 101, .16)); }
.halo { position: absolute; width: clamp(270px, 28vw, 410px); aspect-ratio: 1; border: 1px solid rgba(198, 164, 101, .28); border-radius: 50%; box-shadow: 0 0 105px rgba(198, 164, 101, .08); }
.benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--line); background: var(--surface); }
.benefits div { min-height: 118px; padding: 24px clamp(12px, 2vw, 30px); border-right: 1px solid var(--line); text-align: center; }
.benefits div:last-child { border-right: 0; }
.benefits b { display: block; color: var(--gold); font-size: 20px; font-weight: 500; line-height: 1; }
.benefits span { display: block; margin: 9px 0 3px; font-size: 12px; font-weight: 700; }
.benefits small { color: var(--muted); font-size: 10px; }

/* Store */
.shop { max-width: calc(var(--content-max) + (var(--page-gutter) * 2)); }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 31px; }
.shop-intro { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.controls { display: grid; grid-template-columns: minmax(190px, 1fr) minmax(130px, .64fr) minmax(170px, .82fr); gap: 9px; width: min(100%, 600px); }
.controls input, .controls select { width: 100%; min-width: 0; height: 46px; appearance: none; border: 1px solid var(--line); border-radius: 999px; outline: 0; background-color: var(--surface); color: var(--cream); font-size: 11px; transition: border-color var(--ease), background var(--ease); }
.controls input { padding: 0 16px 0 42px; }
.controls select { padding: 0 34px 0 15px; background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%); background-position: calc(100% - 17px) 19px, calc(100% - 13px) 19px; background-size: 4px 4px, 4px 4px; background-repeat: no-repeat; }
.controls input:focus, .controls select:focus, .modal-box input:focus, .modal-box textarea:focus { border-color: var(--gold); background-color: var(--surface-raised); }
.search-field { position: relative; display: flex; align-items: center; min-width: 0; }
.search-field > span[aria-hidden] { position: absolute; left: 15px; color: var(--gold); font-size: 20px; pointer-events: none; }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 30px; margin: -12px 0 20px; }
.results-bar p { margin: 0; color: var(--muted); font-size: 11px; }
.clear-filters { min-height: 32px; padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--gold-soft); font-size: 11px; }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.45vw, 22px); }
.card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid rgba(255, 255, 255, .07); border-radius: 18px; background: var(--surface); box-shadow: 0 10px 24px rgba(0, 0, 0, .05); transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease); }
.card-link { display: block; min-width: 0; }
.pic { overflow: hidden; aspect-ratio: 1 / 1.05; background: #e9e5dc; }
.pic img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2, .7, .2, 1); }
.info { padding: 17px 17px 8px; }
.info small { color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.info h3 { min-height: 36px; margin: 7px 0 6px; font-size: 13px; line-height: 1.35; }
.info p { min-height: 30px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.card-buy { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding: 10px 17px 17px; }
.price { color: var(--gold-soft); font-size: 16px; font-weight: 700; white-space: nowrap; }
.card-buy button { min-height: 39px; padding: 8px 13px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; color: var(--gold-soft); font-size: 10px; font-weight: 700; transition: background var(--ease), border-color var(--ease), color var(--ease); }
.card-buy button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.no-results { grid-column: 1 / -1; padding: 54px 20px; border: 1px dashed var(--line-strong); border-radius: 18px; text-align: center; }
.no-results strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; }
.no-results p { margin: 9px 0 22px; color: var(--muted); font-size: 12px; }

/* Brand, help and contact */
.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: center; gap: clamp(40px, 7vw, 104px); max-width: calc(var(--content-max) + (var(--page-gutter) * 2)); background: var(--surface); }
.story-img, .product-image { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-raised); }
.story-img img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.story p, .faq p { color: var(--muted); line-height: 1.8; }
.story p { max-width: 550px; font-size: 14px; }
.story .muted { font-size: 12px; }
.text-link { display: inline-block; margin-top: 12px; color: var(--gold-soft); font-size: 12px; font-weight: 600; transition: color var(--ease), transform var(--ease); }
.text-link:hover { color: var(--cream); transform: translateX(3px); }
.faq { max-width: calc(1000px + (var(--page-gutter) * 2)); }
.center { text-align: center; }
.faq-heading { margin-bottom: 36px; }
.faq-heading h2 { margin-bottom: 14px; }
.faq-heading p { max-width: 500px; margin: 0 auto; font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { position: relative; padding: 0; border-bottom: 1px solid var(--line); transition: background var(--ease); }
.faq details[open] { background: linear-gradient(90deg, rgba(198, 164, 101, .08), transparent 76%); }
.faq summary { position: relative; display: flex; align-items: center; min-height: 76px; padding: 18px 60px 18px 22px; list-style: none; color: var(--cream); font-size: 14px; font-weight: 600; cursor: pointer; transition: color var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 50%; right: 22px; display: grid; width: 26px; aspect-ratio: 1; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; content: "+"; transform: translateY(-50%); color: var(--gold-soft); font-size: 19px; font-weight: 400; line-height: 1; transition: transform var(--ease), background var(--ease); }
.faq details[open] summary { color: var(--gold-soft); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: rgba(198, 164, 101, .13); }
.faq details p { max-width: 780px; margin: 0; padding: 0 60px 24px 22px; font-size: 13px; }
.faq-help { margin: 28px 0 0; text-align: center; font-size: 12px; }
.faq-help a { border-bottom: 1px solid rgba(235, 217, 173, .52); color: var(--gold-soft); }
.faq-help a:hover { color: var(--cream); }
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .74fr); align-items: center; gap: clamp(32px, 7vw, 110px); max-width: calc(var(--content-max) + (var(--page-gutter) * 2)); padding: clamp(70px, 8vw, 118px) var(--page-gutter); border-top: 1px solid var(--line); }
.contact h2 { margin: 10px 0 12px; font-size: clamp(44px, 4vw, 62px); font-weight: 600; line-height: .92; }
.contact p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-box { display: grid; gap: 8px; padding: clamp(25px, 3vw, 36px); border: 1px solid var(--line-strong); border-radius: 20px; background: linear-gradient(135deg, rgba(198, 164, 101, .12), transparent 65%), var(--surface); box-shadow: 0 18px 42px rgba(0, 0, 0, .15); transition: transform var(--ease), border-color var(--ease); }
.contact-box:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.contact-box small { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.contact-box strong { font-size: clamp(19px, 2vw, 24px); }
.contact-box span { color: var(--gold-soft); font-size: 12px; font-weight: 600; }

/* Cart and checkout */
.cart { position: fixed; z-index: 60; top: 0; right: 0; display: flex; width: min(430px, 100dvw); height: 100dvh; min-height: 0; flex-direction: column; overflow: hidden; border-left: 1px solid var(--line); background: var(--surface); box-shadow: -20px 0 70px rgba(0, 0, 0, .38); transform: translateX(102%); transition: transform 320ms cubic-bezier(.2, .8, .2, 1); }
.cart.open { transform: translateX(0); }
.cart-head { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-between; padding: 23px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; font-weight: 600; }
.cart-head button, .x { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--cream); font-size: 28px; transition: background var(--ease), border-color var(--ease); }
.cart-head button:hover, .x:hover { border-color: var(--line); background: var(--surface-raised); }
.cart-items { min-height: 0; flex: 1; padding: 12px 24px 22px; overflow-y: auto; overscroll-behavior: contain; }
.cart-row { display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 70px; height: 70px; border-radius: 9px; object-fit: cover; }
.cart-row h4 { margin: 0 0 5px; font-size: 12px; line-height: 1.35; }
.cart-row small { color: var(--muted); font-size: 11px; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 9px; font-size: 12px; }
.qty button { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-raised); color: var(--cream); font-size: 16px; transition: border-color var(--ease), background var(--ease); }
.qty button:hover { border-color: var(--gold); background: rgba(198, 164, 101, .1); }
.remove { align-self: start; min-height: 32px; padding: 0; border: 0; background: none; color: #e4c2c2; font-size: 10px; }
.cart-bottom { flex: 0 0 auto; padding: 19px 24px max(22px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--surface); }
.cart-bottom > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; font-size: 13px; }
.cart-bottom strong { color: var(--gold-soft); font-size: 21px; }
.full { width: 100%; }
.shade { position: fixed; z-index: 55; inset: 0; display: none; background: rgba(0, 0, 0, .62); backdrop-filter: blur(3px); }
.shade.open { display: block; }
.toast { position: fixed; z-index: 80; bottom: max(22px, env(safe-area-inset-bottom)); left: 50%; max-width: min(420px, calc(100% - 32px)); padding: 13px 18px; transform: translate(-50%, 30px); border: 1px solid var(--line-strong); border-radius: 999px; background: var(--gold-soft); color: var(--ink); box-shadow: 0 16px 42px rgba(0, 0, 0, .32); font-size: 11px; font-weight: 700; opacity: 0; visibility: hidden; transition: opacity var(--ease), transform var(--ease), visibility var(--ease); }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.modal { position: fixed; z-index: 70; inset: 0; display: none; padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom)); overflow-y: auto; background: rgba(0, 0, 0, .76); backdrop-filter: blur(7px); place-items: center; }
.modal.open { display: grid; }
.modal-box { position: relative; width: min(610px, 100%); max-height: calc(100dvh - 36px); padding: clamp(26px, 4vw, 42px); overflow-y: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 28px 80px rgba(0, 0, 0, .42); }
.modal-box h2 { margin: 10px 0 9px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(42px, 5vw, 54px); line-height: .95; }
.modal-box .muted { margin: 0 0 21px; font-size: 12px; line-height: 1.7; }
.modal-box form { display: grid; gap: 12px; }
.form-field { display: grid; gap: 7px; color: var(--cream); font-size: 11px; font-weight: 600; }
.modal-box input, .modal-box textarea { display: block; width: 100%; min-height: 48px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: var(--surface-input); color: var(--cream); font-size: 13px; transition: border-color var(--ease), background var(--ease); }
.modal-box textarea { min-height: 84px; resize: vertical; }
.x { position: absolute; top: 12px; right: 12px; }

/* Product page */
.product-page { min-height: 100dvh; padding: clamp(116px, 12vw, 155px) var(--page-gutter) clamp(68px, 8vw, 118px); }
.product-container { width: min(100%, var(--content-max)); margin-inline: auto; }
.back-link { display: inline-flex; align-items: center; min-height: 40px; gap: 8px; margin-bottom: clamp(24px, 4vw, 44px); color: var(--muted); font-size: 12px; transition: color var(--ease), transform var(--ease); }
.back-link:hover { color: var(--gold-soft); transform: translateX(-3px); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(310px, .85fr); align-items: center; gap: clamp(44px, 8vw, 130px); }
.product-image img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 600ms cubic-bezier(.2, .7, .2, 1); }
.product-image:hover img { transform: scale(1.025); }
.product-info { max-width: 510px; }
.product-info .eyebrow { display: block; margin-bottom: 15px; }
.product-info h1 { margin: 0 0 19px; font-size: clamp(48px, 5.6vw, 80px); font-weight: 600; line-height: .91; letter-spacing: -.03em; }
.product-detail-text { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.product-price { margin: 26px 0; color: var(--gold-soft); font-size: clamp(25px, 2.4vw, 32px); font-weight: 700; }
.product-actions { margin-top: 0; }
.product-actions .btn { min-width: 190px; }
.not-found { grid-column: 1 / -1; padding: 60px 0; text-align: center; }
.not-found h1 { font-size: 56px; }

/* Footer */
footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px var(--page-gutter); border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
footer img { width: 78px; height: 48px; object-fit: contain; }
footer a { color: var(--gold-soft); transition: color var(--ease); }
footer a:hover { color: var(--cream); }

@media (hover: hover) and (pointer: fine) {
  .card:hover { border-color: rgba(198, 164, 101, .53); box-shadow: 0 20px 48px rgba(0, 0, 0, .25); transform: translateY(-5px); }
  .card:hover .pic img { transform: scale(1.035); }
}

/* Tablet and compact desktop */
@media (max-width: 1199px) {
  .header nav { position: absolute; top: 76px; right: 0; left: 0; display: none; min-height: calc(100dvh - 76px); padding: 26px var(--page-gutter) 34px; border-bottom: 1px solid var(--line); background: rgba(18, 19, 24, .98); flex-direction: column; align-items: flex-start; gap: 4px; }
  .header nav.open { display: flex; }
  .header nav a { width: 100%; min-height: 50px; padding: 15px 0; font-size: 12px; }
  .header nav a::after { display: none; }
  .menu { display: grid; place-items: center; }
  .menu[aria-expanded="true"] { border-color: var(--line-strong); background: rgba(198, 164, 101, .1); color: var(--gold-soft); }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(290px, .76fr); gap: clamp(32px, 5vw, 65px); }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-title { align-items: flex-start; flex-direction: column; }
  .controls { width: min(100%, 700px); }
  .story, .contact { gap: clamp(35px, 6vw, 70px); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 126px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero p { margin-inline: auto; }
  .actions { justify-content: center; }
  .hero-logo { min-height: 300px; margin-top: -16px; }
  .story, .contact { grid-template-columns: 1fr; }
  .story-img { max-width: 620px; }
  .contact-box { width: min(100%, 560px); }
  .product-detail { grid-template-columns: minmax(0, .9fr) minmax(290px, .8fr); gap: clamp(30px, 5vw, 52px); }
  .product-info h1 { font-size: clamp(46px, 6.5vw, 64px); }
}

/* Mobile */
@media (max-width: 639px) {
  :root { --page-gutter: clamp(16px, 5vw, 24px); }
  html { scroll-padding-top: 68px; }
  .header { min-height: 68px; padding-top: 5px; padding-bottom: 5px; }
  .logo img { width: 74px; height: 52px; }
  .header nav { top: 68px; min-height: calc(100dvh - 68px); padding-top: 20px; }
  .head-actions { gap: 3px; margin-left: auto; }
  .wa-top { display: none; }
  .cart-btn { min-width: 47px; min-height: 42px; padding: 0 10px; }
  .menu { width: 42px; height: 42px; }
  .section { padding-top: 65px; padding-bottom: 65px; }
  .section h2 { font-size: clamp(42px, 12.5vw, 52px); }
  .btn { min-height: 48px; padding-inline: 18px; }
  .hero { gap: 20px; min-height: auto; padding-top: 112px; padding-bottom: 48px; text-align: left; }
  .hero-copy { margin: 0; }
  .hero h1 { margin: 16px 0 18px; font-size: clamp(51px, 16vw, 68px); line-height: .87; }
  .hero p { margin: 0; font-size: 13px; line-height: 1.75; }
  .actions { justify-content: flex-start; gap: 10px; margin-top: 24px; }
  .actions .btn { flex: 1 1 165px; }
  .hero-logo { min-height: 244px; margin-top: 0; }
  .hero-logo img { width: min(255px, 71%); }
  .halo { width: min(255px, 72vw); }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits div { min-height: 102px; padding: 18px 8px; border-bottom: 1px solid var(--line); }
  .benefits div:nth-child(2) { border-right: 0; }
  .benefits div:nth-last-child(-n + 2) { border-bottom: 0; }
  .benefits span { font-size: 11px; }
  .section-title { gap: 22px; margin-bottom: 22px; }
  .shop-intro { font-size: 12px; }
  .controls { grid-template-columns: 1fr; gap: 8px; width: 100%; }
  .controls input, .controls select { height: 48px; font-size: 12px; }
  .results-bar { margin: 0 0 16px; }
  .grid { grid-template-columns: 1fr; gap: 13px; }
  .card { display: grid; grid-template-columns: minmax(122px, 40%) minmax(0, 1fr); min-height: 174px; border-radius: 15px; }
  .card-link { display: contents; }
  .pic { grid-row: 1 / 3; aspect-ratio: auto; min-height: 174px; }
  .info { padding: 15px 14px 5px; }
  .info h3 { min-height: 0; margin: 6px 0; font-size: 13px; }
  .info p { min-height: 0; font-size: 10px; }
  .card-buy { align-items: stretch; gap: 8px; padding: 6px 14px 14px; }
  .price { align-self: center; font-size: 14px; }
  .card-buy button { min-height: 42px; padding: 8px 14px; }
  .story { gap: 31px; padding-top: 65px; }
  .story-img { border-radius: 16px; }
  .story p { font-size: 13px; }
  .faq-heading { margin-bottom: 25px; }
  .faq-heading p { font-size: 12px; }
  .faq summary { min-height: 70px; padding: 17px 47px 17px 15px; font-size: 13px; line-height: 1.45; }
  .faq summary::after { right: 15px; }
  .faq details p { padding: 0 15px 21px; font-size: 12px; }
  .faq-help { margin-top: 22px; font-size: 11px; }
  .contact { gap: 26px; padding-top: 62px; padding-bottom: 62px; }
  .contact h2 { font-size: clamp(42px, 12.5vw, 52px); }
  .contact p { font-size: 13px; }
  .contact-box { padding: 25px; border-radius: 17px; }
  .cart { width: 100dvw; border-left: 0; }
  .cart-head { padding: max(16px, env(safe-area-inset-top)) 16px 16px; }
  .cart-items { padding: 8px 16px 16px; }
  .cart-row { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 11px; }
  .cart-row img { width: 64px; height: 64px; }
  .cart-bottom { padding: 16px max(16px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); }
  .toast { bottom: max(16px, env(safe-area-inset-bottom)); border-radius: 14px; text-align: center; }
  .modal { padding: 12px; align-items: end; }
  .modal-box { max-height: calc(100dvh - 24px); padding: 27px 20px 22px; border-radius: 17px; }
  .modal-box h2 { font-size: 43px; }
  .modal-box .muted { font-size: 11px; }
  .modal-box input, .modal-box textarea { font-size: 16px; }
  .modal-box textarea { min-height: 76px; }
  .product-page { padding-top: 100px; padding-bottom: 58px; }
  .back-link { margin-bottom: 24px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-image { border-radius: 16px; }
  .product-info { max-width: none; }
  .product-info h1 { font-size: clamp(46px, 14vw, 59px); }
  .product-detail-text { font-size: 13px; }
  .product-actions { flex-direction: column; gap: 10px; }
  .product-actions .btn { width: 100%; min-width: 0; }
  footer { flex-direction: column; gap: 14px; padding-top: 25px; padding-bottom: max(25px, env(safe-area-inset-bottom)); text-align: center; }
}

@media (max-width: 359px) {
  .hero h1 { font-size: 50px; }
  .actions .btn { flex-basis: 100%; }
  .card { grid-template-columns: 38% minmax(0, 1fr); }
  .card-buy { flex-wrap: wrap; }
  .card-buy button { flex: 1; }
  .cart-row { grid-template-columns: 56px minmax(0, 1fr); }
  .cart-row img { width: 56px; height: 56px; }
  .remove { grid-column: 2; justify-self: start; }
}

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