/* ============================================================
   Afrodiva — Afro & Textured Hair Salon, Dubai
   Warm espresso / cream / gold-amber system keyed to brand logo
   (palette per CLAUDE-DESIGN.md §Palette requirement)
   ============================================================ */

:root {
  --bg: #FBF6F0;          /* soft warm cream */
  --surface: #FFFFFF;
  --surface-2: #F4EADF;   /* warm sand */
  --text: #2A1B12;        /* deep espresso */
  --muted: #7A6250;       /* secondary */
  --primary: #3F2817;     /* brand espresso */
  --secondary: #9A6A1E;   /* deep amber-bronze */
  --accent: #D1A23A;      /* gold-amber */
  --accent-soft: #E7C778;
  --border: #E9DCC9;
  --focus: #9A6A1E;
  --whatsapp: #258a5b;    /* muted warm green to fit palette */

  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(42,27,18,.05), 0 2px 8px rgba(42,27,18,.04);
  --shadow: 0 8px 30px rgba(42,27,18,.10), 0 2px 8px rgba(42,27,18,.05);
  --shadow-lg: 0 24px 60px rgba(42,27,18,.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

/* ---------- Type ---------- */
.display { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.01em; color: var(--text); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
.h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.65; }
.serif-it { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .lead { margin-top: 18px; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 15px 26px; border-radius: 100px; min-height: 50px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: var(--accent); color: var(--primary); box-shadow: 0 6px 18px rgba(209,162,58,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(209,162,58,.42); background: var(--accent-soft); }
.btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 18px rgba(37,138,91,.3); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,138,91,.4); filter: brightness(1.05); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #2A1B12; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); background: var(--surface); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-sm { padding: 11px 18px; min-height: 42px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; background: var(--surface-2); }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: .12em; color: var(--primary); line-height: 1; }
.brand-word .di { color: var(--accent); }
.brand-sub { font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--secondary); margin-top: 3px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--text); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: inline-flex; border: 1.5px solid var(--border); border-radius: 100px; overflow: hidden; font-size: .8rem; font-weight: 700; }
.lang-toggle button { padding: 7px 13px; color: var(--muted); transition: background .2s, color .2s; }
.lang-toggle button.on { background: var(--primary); color: #fff; }
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--border); align-items: center; justify-content: center; color: var(--primary); }
.hamburger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(42,27,18,.5); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 80;
  background: var(--bg); transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer-close { width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(24px, 4vw, 48px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero-copy { padding-block: clamp(20px, 4vw, 48px); }
.hero h1 { margin: 18px 0 0; }
.hero h1 em { font-style: italic; color: var(--secondary); font-weight: 600; }
.hero .lead { margin-top: 22px; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-meta .item { }
.hero-meta .k { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-meta .v { font-size: .82rem; color: var(--muted); margin-top: 6px; font-weight: 600; }

.hero-media { position: relative; }
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--surface-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(42,27,18,.28)); }
.photo-note {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-body); font-size: .68rem; letter-spacing: .04em;
  background: rgba(42,27,18,.62); color: #fff; padding: 6px 11px; border-radius: 100px;
  backdrop-filter: blur(4px); display: inline-flex; align-items: center; gap: 6px;
}
.photo-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); }
.hero-badge {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  background: var(--primary); color: var(--accent-soft);
  border-radius: 50%; width: 116px; height: 116px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); box-shadow: var(--shadow); transform: rotate(-6deg);
}
.hero-badge b { font-size: 1.5rem; line-height: 1; }
.hero-badge span { font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; color: #fff; margin-top: 5px; }

/* ---------- Marquee / specialism ribbon ---------- */
.ribbon { background: var(--primary); color: #F4EADF; overflow: hidden; padding-block: 16px; border-block: 1px solid rgba(255,255,255,.08); }
.ribbon-track { display: flex; gap: 0; white-space: nowrap; animation: scroll-x 30s linear infinite; }
.ribbon-track span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; padding-inline: 26px; display: inline-flex; align-items: center; }
.ribbon-track span::after { content: "✦"; color: var(--accent); margin-left: 52px; font-style: normal; font-size: .7rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ribbon-track { animation: none; } }

/* ---------- Specialism statement ---------- */
.statement { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.statement-q { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.22; color: var(--text); }
.statement-q em { font-style: italic; color: var(--secondary); }
.statement-points { display: flex; flex-direction: column; gap: 22px; }
.point { display: flex; gap: 16px; }
.point .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); color: var(--secondary); display: flex; align-items: center; justify-content: center; }
.point .ic svg { width: 23px; height: 23px; }
.point h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; margin-bottom: 3px; }
.point p { font-size: .94rem; color: var(--muted); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--surface-2); color: var(--secondary); display: flex; align-items: center; justify-content: center; }
.svc-ic svg { width: 27px; height: 27px; }
.svc-card h3 { font-size: 1.4rem; }
.svc-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.svc-list { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { font-size: .78rem; font-weight: 600; color: var(--secondary); background: var(--surface-2); padding: 5px 11px; border-radius: 100px; }
.svc-link { font-weight: 700; font-size: .92rem; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Gallery teaser (placeholder) ---------- */
.gallery-note { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--secondary); background: var(--surface-2); padding: 8px 14px; border-radius: 100px; margin-bottom: 22px; }
.gallery-note svg { width: 16px; height: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface-2); }
.g-item.tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--muted); text-align: center; padding: 16px;
  background-image: repeating-linear-gradient(45deg, var(--surface-2) 0 12px, #efe3d4 12px 24px);
  border: 1px dashed var(--border);
}
.g-ph svg { width: 28px; height: 28px; opacity: .6; }
.g-ph span { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.g-tag { position: absolute; left: 12px; bottom: 12px; z-index: 2; font-size: .72rem; font-weight: 700; color: #fff; background: rgba(42,27,18,.6); backdrop-filter: blur(4px); padding: 5px 11px; border-radius: 100px; }

/* ---------- The Hair (shop bridge) ---------- */
.hair { background: var(--surface-2); }
.texture-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.texture-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.texture-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.texture-card:hover img { transform: scale(1.04); }
.texture-card .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; background: linear-gradient(transparent, rgba(42,27,18,.78)); color: #fff; }
.texture-card .cap h4 { font-family: var(--font-display); font-size: 1.3rem; }
.texture-card .cap p { font-size: .82rem; opacity: .85; }

.collection-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.col-tile { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4; background: var(--surface); display: block; }
.col-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .3s; }
.col-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(42,27,18,.7)); opacity: .8; transition: opacity .3s; }
.col-tile:hover img { transform: scale(1.06); }
.col-tile .label { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2; color: #fff; font-size: .76rem; font-weight: 700; line-height: 1.2; }
.col-tile .ext { position: absolute; top: 9px; right: 9px; z-index: 2; width: 26px; height: 26px; border-radius: 8px; background: rgba(251,246,240,.92); color: var(--primary); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-4px); transition: .25s; }
.col-tile:hover .ext { opacity: 1; transform: translateY(0); }
.col-tile .ext svg { width: 14px; height: 14px; }

/* ---------- Branches ---------- */
.branch-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.branch-tab { padding: 11px 20px; border-radius: 100px; border: 1.5px solid var(--border); font-weight: 700; font-size: .92rem; color: var(--muted); transition: .2s; background: var(--surface); }
.branch-tab.on { background: var(--primary); color: #fff; border-color: var(--primary); }
.branch-tab:hover:not(.on) { border-color: var(--secondary); color: var(--primary); }
.branch-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.branch-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; }
.branch-info h3 { font-size: 1.9rem; }
.branch-area { color: var(--secondary); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.branch-rows { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.brow { display: flex; gap: 14px; align-items: flex-start; }
.brow .ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); color: var(--secondary); display: flex; align-items: center; justify-content: center; }
.brow .ic svg { width: 19px; height: 19px; }
.brow .t { font-size: .94rem; }
.brow .t b { display: block; font-weight: 800; color: var(--text); }
.brow .t span { color: var(--muted); }
.branch-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 24px; }
.confirm-flag { font-size: .76rem; color: var(--muted); font-style: italic; margin-top: 14px; display: flex; gap: 7px; align-items: flex-start; }
.confirm-flag svg { width: 15px; height: 15px; flex: none; margin-top: 2px; color: var(--secondary); }

.map-ph {
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.map-ph iframe { width: 100%; max-width: 100%; min-height: 320px; border: 0; display: block; }
.map-dir {
  display: inline-flex; align-items: center; gap: 7px; justify-content: center;
  padding: 12px 16px; font-weight: 700; font-size: .9rem; color: var(--secondary);
  background: var(--surface); text-decoration: none; border-top: 1px solid var(--border);
}
.map-dir svg { width: 16px; height: 16px; }
.map-dir:hover { text-decoration: underline; }

/* ---------- Booking ---------- */
.booking { background: var(--primary); color: #F4EADF; position: relative; overflow: hidden; }
.booking::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(209,162,58,.16), transparent 45%); }
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; position: relative; }
.booking-copy h2 { color: #fff; }
.booking-copy .eyebrow { color: var(--accent-soft); }
.booking-copy .lead { color: rgba(244,234,223,.82); margin-top: 18px; }
.booking-direct { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.bd-row { display: flex; align-items: center; gap: 14px; font-size: 1rem; }
.bd-row .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex: none; }
.bd-row .ic svg { width: 21px; height: 21px; }
.bd-row a { font-weight: 700; color: #fff; }
.bd-row small { display: block; color: rgba(244,234,223,.6); font-weight: 600; font-size: .76rem; }

.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-lg); color: var(--text); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 78px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(154,106,30,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { font-size: .78rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { text-align: center; padding: 20px 0; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-2); color: var(--whatsapp); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: .95rem; }

/* ---------- Trust strip ---------- */
.trust { background: var(--surface-2); }
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.trust-statement { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; line-height: 1.3; }
.trust-statement em { font-style: italic; color: var(--secondary); }
.trust-attr { font-size: .84rem; color: var(--muted); margin-top: 18px; font-style: italic; }
.trust-cards { display: flex; flex-direction: column; gap: 14px; }
.trust-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.trust-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin-bottom: 5px; display: flex; align-items: center; gap: 9px; }
.trust-card h4 svg { width: 20px; height: 20px; color: var(--secondary); }
.trust-card p { font-size: .9rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--primary); color: rgba(244,234,223,.78); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h5 { font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 16px; }
.footer-brand .brand-word { color: #fff; font-size: 1.7rem; }
.footer-brand p { font-size: .9rem; margin-top: 14px; max-width: 26em; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; color: #fff; transition: .2s; }
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .8rem; }
.footer-bottom .flag { font-style: italic; opacity: .7; }

/* ---------- WhatsApp FAB + mobile sticky bar ---------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,138,91,.4);
  transition: transform .2s; animation: fab-in .4s .8s both;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
@keyframes fab-in { from { transform: scale(0); } to { transform: scale(1); } }

.mobile-bar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .lang-toggle, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .statement, .booking-grid, .trust-grid, .branch-panel { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { gap: 36px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --nav-h: 64px; }
  .svc-grid { grid-template-columns: 1fr; }
  .texture-row { grid-template-columns: 1fr; gap: 14px; }
  .collection-strip { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-auto-rows: 150px; }
  .hero-badge { width: 92px; height: 92px; top: -10px; right: 8px; }
  .hero-badge b { font-size: 1.2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .hero-cta .btn { width: 100%; min-width: 0; }
  .wa-fab { bottom: 84px; }   /* sit above mobile bar */

  /* mobile sticky CTA bar */
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
    box-shadow: 0 -6px 24px rgba(42,27,18,.1);
  }
  .mobile-bar .btn { flex: 1; min-height: 48px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 380px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* RTL readiness */
[dir="rtl"] .eyebrow::before { } /* gap handles spacing */
[dir="rtl"] .svc-card::before { left: auto; right: 0; }
[dir="rtl"] .wa-fab { right: auto; left: 20px; }
