/* ============================================================
   Classic Furniture — Karama, Dubai · est. 1999
   Palette keyed to brand logo (CLAUDE-DESIGN.md §Palette):
   walnut + oak/brass + linen-cream, forest-green CTA only.
   ============================================================ */

:root {
  --bg: #F7F3EC;          /* warm linen/cream page background */
  --bg-2: #F1EADD;        /* slightly deeper cream band */
  --surface: #FFFFFF;     /* cards, tiles, nav */
  --text: #2B2118;        /* warm espresso near-black */
  --muted: #7A6E60;       /* secondary text / captions */
  --primary: #6E4A2B;     /* walnut/wood brown */
  --primary-d: #533619;   /* deeper walnut */
  --secondary: #C2A06A;   /* warm oak/brass accent */
  --secondary-soft: #E9D9BC;
  --accent: #234C36;      /* deep forest-green — CTA ONLY */
  --accent-h: #2E6244;    /* green hover */
  --border: #E5DCCB;      /* soft warm border */
  --focus: #234C36;

  --shadow-sm: 0 1px 2px rgba(43,33,24,.04), 0 1px 3px rgba(43,33,24,.06);
  --shadow-md: 0 6px 18px -8px rgba(43,33,24,.18), 0 2px 6px rgba(43,33,24,.06);
  --shadow-lg: 0 24px 60px -24px rgba(43,33,24,.32);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --arab: "IBM Plex Sans Arabic", var(--sans);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[dir="rtl"] body { font-family: var(--arab); }
[dir="rtl"] { letter-spacing: 0 !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.06; letter-spacing: -.01em; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: var(--arab); font-weight: 700; line-height: 1.25; }
p { margin: 0; text-wrap: pretty; }

.display { font-size: clamp(2.6rem, 6vw, 4.9rem); }
.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-lg { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
[dir="rtl"] .eyebrow { letter-spacing: .05em; }
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--secondary);
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.62; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.band-cream { background: var(--bg-2); }
.band-walnut { background: var(--primary); color: #F3E7D5; }
.band-walnut .lede, .band-walnut .muted { color: #D9C3A6; }

.center { text-align: center; }
.mt-s { margin-top: 12px; } .mt-m { margin-top: 22px; } .mt-l { margin-top: 40px; }
.muted { color: var(--muted); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 14px; }
.section-head .lede { margin-top: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .15s ease, background .2s ease, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--accent); color: #F4EFE6; }
.btn-green:hover { background: var(--accent-h); box-shadow: var(--shadow-md); }
.btn-walnut { background: var(--primary); color: #F6ECDD; }
.btn-walnut:hover { background: var(--primary-d); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); background: rgba(110,74,43,.05); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; min-height: 54px; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.linkarrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--accent); }
.linkarrow svg { width: 16px; height: 16px; transition: transform .2s; }
.linkarrow:hover svg { transform: translateX(4px); }
[dir="rtl"] .linkarrow svg { transform: scaleX(-1); }
[dir="rtl"] .linkarrow:hover svg { transform: scaleX(-1) translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,236,.86);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 144px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 136px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav-links a {
  font-weight: 500; font-size: .96rem; padding: 9px 14px; border-radius: 8px;
  color: var(--text); transition: background .15s, color .15s; position: relative;
}
.nav-links a:hover { background: rgba(110,74,43,.07); color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--secondary); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: 8px; }
.lang-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--border);
  border-radius: 100px; overflow: hidden; background: var(--surface); height: 40px;
}
.lang-toggle button {
  border: 0; background: transparent; padding: 0 13px; height: 100%;
  font-size: .85rem; font-weight: 600; color: var(--muted);
}
.lang-toggle button.on { background: var(--primary); color: #F6ECDD; }
.nav-burger {
  display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(43,33,24,.42); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; inset-inline-end: 0; height: 100%; width: min(86vw, 340px);
  background: var(--bg); z-index: 56; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 22px;
}
[dir="rtl"] .drawer { transform: translateX(-100%); }
.drawer.show { transform: translateX(0); }
.drawer a { padding: 15px 8px; font-size: 1.18rem; font-family: var(--serif); border-bottom: 1px solid var(--border); }
[dir="rtl"] .drawer a { font-family: var(--arab); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer-top img { height: 72px; }
.drawer-close { width: 42px; height: 42px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); font-size: 1.4rem; color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(30,21,12,.82) 0%, rgba(30,21,12,.55) 38%, rgba(30,21,12,.12) 68%, rgba(30,21,12,0) 100%);
}
[dir="rtl"] .hero-scrim { background: linear-gradient(260deg, rgba(30,21,12,.82) 0%, rgba(30,21,12,.55) 38%, rgba(30,21,12,.12) 68%, rgba(30,21,12,0) 100%); }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(72px, 14vw, 150px); }
.hero-content { max-width: 620px; color: #FBF6EE; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(16px, 2.2vw, 26px); }
.hero .eyebrow { color: var(--secondary); }
.hero .eyebrow::before { background: var(--secondary); }
.hero h1 { color: #FDFAF4; margin: 0; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.hero p { color: #ECE0CF; margin: 0; font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 32em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.hero-strip {
  position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(30,21,12,.34); backdrop-filter: blur(4px);
}
.hero-strip .wrap { display: flex; flex-wrap: wrap; gap: 8px 40px; padding-block: 18px; }
.hero-strip .fact { display: flex; align-items: center; gap: 10px; color: #F0E6D6; font-size: .92rem; font-weight: 500; }
.hero-strip .fact svg { width: 18px; height: 18px; color: var(--secondary); flex: none; }

/* ============================================================
   TRUST STRIP (facts only — no ratings)
   ============================================================ */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.trust-item { background: var(--surface); padding: 28px 24px; }
.trust-item .k { font-family: var(--serif); font-size: 2.1rem; color: var(--primary); font-weight: 600; line-height: 1; }
.trust-item .l { margin-top: 8px; font-size: .92rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   COLLECTION GRID
   ============================================================ */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coll-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: start;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s; cursor: pointer; display: block; width: 100%;
}
.coll-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.coll-thumb { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; background: var(--bg-2); }
.coll-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.coll-card:hover .coll-thumb img { transform: scale(1.06); }
.coll-thumb.contain img { object-fit: contain; padding: 14px; mix-blend-mode: multiply; }
.coll-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: radial-gradient(120% 120% at 30% 20%, #7C5535 0%, #5B3A1E 60%, #492d15 100%); color: #EAD9BF; text-align: center; padding: 20px; }
.coll-ph .ph-icon { width: 38px; height: 38px; opacity: .8; }
.coll-ph .ph-note { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #C9AE84; }
.coll-body { padding: 18px 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.coll-body h3 { font-size: 1.4rem; }
.coll-body .cnt { font-size: .82rem; color: var(--muted); margin-top: 3px; }
.coll-go { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--accent); flex: none; transition: .2s; }
.coll-card:hover .coll-go { background: var(--accent); color: #fff; border-color: var(--accent); }
.coll-go svg { width: 17px; height: 17px; }
[dir="rtl"] .coll-go svg { transform: scaleX(-1); }

/* feature split (custom / b2b) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; background: var(--bg-2); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.reverse { order: -1; }
.feature-list { display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; }
.feature-list .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--secondary-soft); color: var(--primary-d); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list h4 { margin: 0 0 2px; font-size: 1.05rem; font-family: var(--sans); font-weight: 600; }
.feature-list p { font-size: .95rem; color: var(--muted); }
ul.feature-list { padding: 0; margin-top: 26px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.step .num { font-family: var(--serif); font-size: 1.5rem; color: var(--secondary); font-weight: 700; }
.step h4 { font-family: var(--sans); font-size: 1.08rem; margin: 12px 0 6px; }
.step p { font-size: .93rem; color: var(--muted); }

/* product grid (collection detail) */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prod-thumb { aspect-ratio: 1/1; background: #fff; position: relative; overflow: hidden; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb.contain img { object-fit: contain; padding: 18px; }
.prod-ph { position: absolute; inset: 0; display: grid; place-items: center; background: var(--bg-2); color: var(--muted); }
.prod-ph span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.prod-body { padding: 18px 18px 20px; }
.prod-body .cat { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }
.prod-body h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin: 6px 0 4px; }
.prod-body .desc { font-size: .9rem; color: var(--muted); min-height: 2.6em; }
.prod-actions { display: flex; gap: 8px; margin-top: 16px; }
.prod-actions .btn { flex: 1; padding: 11px 14px; font-size: .88rem; min-height: 44px; }
.quote-pill { display: inline-block; font-size: .82rem; font-weight: 600; color: var(--primary); background: var(--bg-2); border: 1px solid var(--border); padding: 5px 12px; border-radius: 100px; margin-top: 12px; }

/* breadcrumb */
.crumb { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--muted); flex-wrap: wrap; }
.crumb a:hover { color: var(--primary); }
.crumb svg { width: 13px; height: 13px; opacity: .6; }
[dir="rtl"] .crumb svg { transform: scaleX(-1); }

/* collections hub header */
.page-head { background: var(--primary); color: #F4E7D5; padding-block: clamp(48px, 7vw, 92px); position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 130% at 85% -10%, rgba(194,160,106,.30), transparent 55%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #FCF4E6; margin-top: 14px; }
.page-head p { color: #E0CDB0; margin-top: 16px; max-width: 44em; }
.page-head .eyebrow { color: var(--secondary); }
.page-head .eyebrow::before { background: var(--secondary); }
.page-head .crumb { color: #D8C4A6; margin-bottom: 6px; }
.page-head .crumb a { color: #EBD9BC; }

/* ============================================================
   CONTACT / SHOWROOM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-2); display: grid; place-items: center; color: var(--primary); flex: none; }
.info-row .ico svg { width: 19px; height: 19px; }
.info-row .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .val { font-size: 1rem; margin-top: 3px; }
.info-row .val a { color: var(--text); }
.info-row .val a:hover { color: var(--accent); }
.phone-list { display: flex; flex-direction: column; gap: 2px; }

.map-ph {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 13px, rgba(110,74,43,.05) 13px, rgba(110,74,43,.05) 14px),
    var(--bg-2);
  min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 32px; position: relative;
}
.map-ph .pin { width: 52px; height: 52px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; box-shadow: var(--shadow-sm); color: var(--accent); }
.map-ph .pin svg { width: 24px; height: 24px; }
.map-ph .tag { position: absolute; top: 14px; inset-inline-start: 14px; background: rgba(43,33,24,.8); color: #F0E6D6; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; font-weight: 600; }
.map-ph h4 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; }
.map-ph p { font-size: .9rem; color: var(--muted); max-width: 28em; }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .98rem; padding: 13px 14px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--surface); color: var(--text); width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(35,76,54,.12); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form-ok { background: rgba(35,76,54,.08); border: 1px solid rgba(35,76,54,.25); color: var(--accent); border-radius: 10px; padding: 16px; font-weight: 500; display: flex; gap: 10px; align-items: center; }
.form-ok svg { width: 20px; height: 20px; flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #241A11; color: #CDBBA3; padding-block: clamp(48px, 6vw, 76px) 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer img.flogo { height: 188px; width: auto; margin-bottom: 14px; }
.footer h5 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: #F0E2CC; }
.footer .blurb { font-size: .94rem; line-height: 1.6; max-width: 30ch; color: #B7A488; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #CDBBA3; transition: .2s; }
.socials a:hover { background: var(--secondary); color: #241A11; border-color: var(--secondary); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #9C8B73; }
.footer-bottom a:hover { color: #F0E2CC; }

.disclaimer { background: var(--bg-2); border-top: 1px solid var(--border); }
.disclaimer .wrap { padding-block: 16px; font-size: .8rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.disclaimer svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--secondary); }

/* ============================================================
   WhatsApp FAB + mobile action bar
   ============================================================ */
.wa-fab {
  position: fixed; inset-block-end: 96px; inset-inline-end: 22px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 28px -6px rgba(37,211,102,.55); border: 0;
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; }
@media (min-width: 921px) { .wa-fab { inset-block-end: 26px; } }

.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 50; display: none;
  grid-template-columns: 1fr 1fr 1fr; background: var(--surface);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 20px -10px rgba(43,33,24,.2);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 10px 6px 12px; min-height: 60px; font-size: .72rem; font-weight: 600; color: var(--text); }
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar a.green { color: var(--accent); }
.mobile-bar a + a { border-inline-start: 1px solid var(--border); }

/* ============================================================
   ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .lang-toggle { display: inline-flex; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media.reverse { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 64px; }
  .wa-fab { inset-block-end: 78px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-inner { height: 104px; }
  .nav-logo img { height: 92px; }
  .coll-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta .btn { flex: 1; }
  .footer-bottom { flex-direction: column; }
}
