/* =========================================================
   KILDE Kokosvann — design system
   Palette: Coconut Ivory #F2EEE4 · Source Blue #073B5E
            Living Aqua #63C5DA · Graphite #2B2B2B
   ========================================================= */

:root {
  --ivory: #F2EEE4;
  --ivory-2: #E9E3D5;
  --source: #073B5E;
  --source-2: #0A4E79;
  --aqua: #63C5DA;
  --aqua-soft: #CDEAF0;
  --graphite: #2B2B2B;
  --muted: #5E6B72;
  --line: rgba(7, 59, 94, 0.14);
  --white: #FCFBF7;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(7, 59, 94, 0.06);
  --shadow: 0 18px 44px -22px rgba(7, 59, 94, 0.30);
  --shadow-lg: 0 40px 90px -40px rgba(7, 59, 94, 0.45);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--graphite);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--source); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--aqua); margin-bottom: 18px;
}
.eyebrow--dark { color: var(--source); }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 58ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--source); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--source-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--aqua { background: var(--aqua); color: var(--source); }
.btn--aqua:hover { background: #7bd0e2; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--source); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--source); background: rgba(7,59,94,0.04); }
.btn--light { background: var(--ivory); color: var(--source); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 0.85rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(242, 238, 228, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--source); letter-spacing: 0.02em; flex: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand small { display: block; font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 32px); margin-inline: auto; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--source); position: relative; padding-block: 6px; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--aqua); transition: width .3s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 12px; flex: none; margin-left: auto; }
.lang { display: flex; align-items: center; gap: 1px; font-size: 0.78rem; font-weight: 700; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang button { padding: 4px 10px; border-radius: 999px; color: var(--muted); transition: all .2s; }
.lang button.is-active { color: var(--source); background: var(--white); box-shadow: var(--shadow-sm); }
.lang span { display: none; }
.cart-btn { position: relative; display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: var(--source); color: var(--white); font-weight: 600; font-size: 0.85rem; transition: background .3s, transform .3s; }
.cart-btn:hover { background: var(--source-2); transform: translateY(-1px); }
.cart-count { min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--aqua); color: var(--source); font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; }
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 10px; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--source); margin: 4px auto; transition: transform .3s, opacity .3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: flex-end; color: var(--white); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,59,94,0.10) 0%, rgba(7,59,94,0.20) 45%, rgba(7,59,94,0.78) 100%); }
.hero__inner { padding-block: clamp(48px, 8vw, 96px); max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--aqua-soft); }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.9); max-width: 46ch; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tag { position: absolute; top: clamp(28px, 5vw, 54px); left: var(--gutter); font-family: var(--font-display); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.4rem); color: rgba(255,255,255,0.92); z-index: 1; }

/* ---------- marquee / trust ---------- */
.ticker { background: var(--source); color: var(--ivory); overflow: hidden; }
.ticker__row { display: flex; gap: 56px; padding-block: 14px; white-space: nowrap; animation: ticker 30s linear infinite; width: max-content; }
.ticker__row span { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; display: inline-flex; gap: 56px; }
.ticker__row span::after { content: "•"; color: var(--aqua); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- value props ---------- */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 42px); }
.prop { }
.prop__icon { width: 46px; height: 46px; color: var(--aqua); margin-bottom: 18px; }
.prop h3 { font-size: 1.28rem; margin-bottom: 10px; }
.prop p { color: var(--muted); font-size: 0.98rem; }

/* ---------- section heading ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 5vw, 56px); flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.sec-head p { color: var(--muted); max-width: 46ch; }

/* ---------- product grid ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 4 / 4.2; background: linear-gradient(160deg, var(--ivory) 0%, var(--aqua-soft) 100%); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.badge { position: absolute; top: 14px; left: 14px; background: var(--source); color: var(--ivory); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.badge--aqua { background: var(--aqua); color: var(--source); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__body h3 { font-size: 1.24rem; }
.card__meta { color: var(--muted); font-size: 0.86rem; }
.card__price { margin-top: auto; padding-top: 14px; display: flex; align-items: baseline; gap: 8px; }
.card__price strong { font-size: 1.35rem; color: var(--source); font-family: var(--font-display); font-weight: 600; }
.card__price span { font-size: 0.82rem; color: var(--muted); }
.card__actions { display: flex; gap: 10px; margin-top: 16px; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.split p + p { margin-top: 14px; }
.split p { color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 0.85rem; font-weight: 500; color: var(--source); background: var(--white); }

/* ---------- moments ---------- */
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.moment { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; color: #fff; display: flex; align-items: flex-end; }
.moment img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.moment::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(7,59,94,0.72) 100%); }
.moment:hover img { transform: scale(1.05); }
.moment__body { padding: 26px; }
.moment__body h3 { color: #fff; font-size: 1.4rem; }
.moment__body p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 4px; }

/* ---------- dark band / subscription ---------- */
.band { background: var(--source); color: var(--ivory); border-radius: 0; }
.band h2, .band h3 { color: #fff; }
.band .lede { color: rgba(255,255,255,0.82); }
.band .eyebrow { color: var(--aqua); }
.sub-card {
  background: linear-gradient(155deg, var(--source-2) 0%, var(--source) 60%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); color: var(--ivory);
}
.sub-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding-block: 9px; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--aqua); margin-top: 1px; }
.save-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--aqua); color: var(--source); font-weight: 700; padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--source); font-weight: 600; }
.band .stat strong { color: #fff; }
.stat span { font-size: 0.86rem; color: var(--muted); letter-spacing: 0.02em; }
.band .stat span { color: rgba(255,255,255,0.7); }

/* ---------- testimonial ---------- */
.quote { max-width: 820px; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.28; color: var(--source); font-weight: 500; }
.quote cite { display: block; margin-top: 22px; font-style: normal; font-size: 0.9rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- newsletter ---------- */
.news { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.field-row { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.field-row input { flex: 1; min-width: 200px; padding: 15px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); font-size: 0.95rem; color: var(--graphite); }
.field-row input:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(99,197,218,0.18); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

/* ---------- footer ---------- */
.site-footer { background: var(--source); color: rgba(255,255,255,0.78); padding-block: clamp(56px, 7vw, 88px) 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.92rem; display: inline-block; padding-block: 5px; transition: color .2s; }
.site-footer a:hover { color: var(--aqua); }
.footer-brand p { max-width: 34ch; font-size: 0.92rem; margin-top: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ---------- cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(7,59,94,0.42); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; z-index: 90; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 100%);
  background: var(--ivory); z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__close { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: var(--source); transition: background .2s; }
.drawer__close:hover { background: rgba(7,59,94,0.06); }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--ivory); }
.cart-line { display: grid; grid-template-columns: 66px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__img { width: 66px; height: 76px; border-radius: 10px; object-fit: cover; background: var(--aqua-soft); }
.cart-line__title { font-weight: 600; color: var(--source); font-size: 0.96rem; }
.cart-line__meta { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.qty { display: inline-flex; align-items: center; gap: 2px; margin-top: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 2px; }
.qty button { width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; color: var(--source); font-weight: 700; transition: background .2s; }
.qty button:hover { background: rgba(7,59,94,0.08); }
.qty span { min-width: 22px; text-align: center; font-size: 0.9rem; font-weight: 600; }
.cart-line__price { text-align: right; font-weight: 600; color: var(--source); }
.cart-line__remove { display: block; margin-top: 8px; font-size: 0.74rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 54px; height: 54px; color: var(--aqua); margin: 0 auto 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--muted); padding-block: 4px; }
.summary-row--total { color: var(--source); font-weight: 700; font-size: 1.15rem; padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--line); }
.summary-row--total span:last-child { font-family: var(--font-display); }

/* ---------- toggle (subscribe) ---------- */
.seg { display: inline-flex; background: rgba(7,59,94,0.06); border-radius: 999px; padding: 4px; gap: 4px; }
.seg button { padding: 9px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: all .25s; }
.seg button.is-active { background: var(--white); color: var(--source); box-shadow: var(--shadow-sm); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 92px) clamp(28px, 4vw, 44px); text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero p { margin: 18px auto 0; }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: start; }
.pdp__media { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--ivory) 0%, var(--aqua-soft) 100%); aspect-ratio: 1; box-shadow: var(--shadow); position: sticky; top: 96px; }
.pdp__media img { width: 100%; height: 100%; object-fit: cover; }
.pdp h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 10px; }
.price-big { font-family: var(--font-display); font-size: 2rem; color: var(--source); font-weight: 600; }
.price-unit { color: var(--muted); font-size: 0.9rem; }
.opt-group { margin-top: 26px; }
.opt-group h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan-opt { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 10px; cursor: pointer; transition: border-color .25s, background .25s; }
.plan-opt:hover { border-color: var(--aqua); }
.plan-opt.is-active { border-color: var(--source); background: rgba(99,197,218,0.10); }
.plan-opt input { accent-color: var(--source); width: 18px; height: 18px; }
.plan-opt__title { font-weight: 600; color: var(--source); }
.plan-opt__desc { font-size: 0.82rem; color: var(--muted); }
.plan-opt__save { font-size: 0.8rem; font-weight: 700; color: var(--aqua); }
.detail-list { margin-top: 28px; border-top: 1px solid var(--line); }
.detail-list details { border-bottom: 1px solid var(--line); }
.detail-list summary { padding: 16px 0; font-weight: 600; color: var(--source); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.detail-list summary::-webkit-details-marker { display: none; }
.detail-list summary::after { content: "+"; font-size: 1.3rem; color: var(--aqua); font-weight: 400; }
.detail-list details[open] summary::after { content: "–"; }
.detail-list p { padding-bottom: 16px; color: var(--muted); font-size: 0.94rem; }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--source); color: var(--ivory); padding: 14px 22px; border-radius: 999px; font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 120; opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s, visibility .3s; }
.toast.is-show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- utilities ---------- */
.text-center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 26px; }
.divider { height: 1px; background: var(--line); border: 0; }
.bg-white { background: var(--white); }
.bg-ivory2 { background: var(--ivory-2); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .props, .products, .moments, .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .sub-grid, .news, .pdp { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .pdp__media { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; margin: 0; background: var(--ivory); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; box-shadow: var(--shadow); }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; font-size: 1.05rem; }
  .nav.is-open .nav__links a:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .props, .products, .moments, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 86vh; }
  .hero__inner { padding-bottom: 40px; }
  .hero__tag { top: 20px; }
  .lang { padding: 2px; }
  .lang button { padding: 3px 8px; }
  .cart-btn { padding: 8px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
