/* ============================================================
   Devji Aurum — warm-ivory editorial gallery on tonal antique-gold
   Palette keyed to media/logo.webp + real product/boutique media.
   Mobile-first. Test at 375px first.
   ============================================================ */

:root {
  /* — Palette tokens (sampled from logo + product/boutique media) — */
  --bg:        #FBF8F1;   /* warm ivory paper — logo ground / gallery backdrop */
  --surface:   #FFFFFF;   /* cards / product tiles */
  --text:      #1A1714;   /* warm near-black ink */
  --muted:     #6E665C;   /* secondary text / captions */
  --primary:   #A67C2E;   /* refined antique-gold — wordmark; CTAs */
  --secondary: #8A6520;   /* deep bronze-gold — heritage accent */
  --accent:    #C9A24B;   /* light champagne-gold — dividers, hovers, sparkle */
  --border:    #E7E0D4;   /* warm hairline */
  --focus:     #A67C2E;
  --espresso:  #241C15;   /* deep boutique-wood band */
  --espresso-2:#30261C;
  --ivory-2:   #F3ECDD;   /* tonal ivory band */

  /* — Tweakable, driven from JS — */
  --gold:      var(--primary);
  --gold-soft: var(--accent);

  /* — Type — */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;

  --t-fast: .25s cubic-bezier(.4,0,.2,1);
  --t-med:  .5s cubic-bezier(.4,0,.2,1);
  --t-slow: .9s cubic-bezier(.22,1,.36,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* ── Type primitives ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0;
  color: var(--text);
}
.display {
  font-size: clamp(2.6rem, 8.5vw, 5.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
}
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
}
.eyebrow.on-dark { color: var(--accent); }
.lede {
  font-size: clamp(1.05rem, 2.6vw, 1.22rem);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 56ch;
}

/* ── Layout helpers ──────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 11vw, 132px); }
.section--tight { padding-block: clamp(48px, 8vw, 92px); }

.sec-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 {
  font-size: clamp(2rem, 5.4vw, 3.2rem);
}
.sec-head .lede { margin-top: 18px; }

.rule {
  width: 54px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.rule::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: translate(-50%,-50%) rotate(45deg);
}
.rule--center { margin-inline: auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--secondary); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-wa svg { width: 17px; height: 17px; }
.btn-wa:hover { border-color: #25D366; color: #128C40; }

.txt-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), gap var(--t-fast), color var(--t-fast);
}
.txt-link svg { width: 14px; transition: transform var(--t-fast); }
.txt-link:hover { border-color: var(--gold); gap: 13px; }
.txt-link:hover svg { transform: translateX(3px); }

/* ── Confirm-pending flag (unverified data) ──────────── */
.flag {
  font-family: var(--sans);
  font-size: .58rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary);
  background: rgba(166,124,46,.1);
  border: 1px dashed rgba(166,124,46,.45);
  border-radius: 3px;
  padding: 2px 7px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--espresso);
  color: #E8DFCD;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  font-weight: 400;
}
.topbar b { color: var(--accent); font-weight: 500; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251,248,241,.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  height: 72px;
  max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600;
  letter-spacing: .14em; color: var(--secondary);
}
.brand .brand-sub {
  font-family: var(--sans); font-size: .52rem; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.nav-links { display: none; }
.nav-cta { display: none; }

.nav-links a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text);
  position: relative; padding-block: 6px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--t-fast);
}
.nav-links a:hover { color: var(--secondary); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px;
}
.burger span {
  width: 24px; height: 1.5px; background: var(--text);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform var(--t-med);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter) 40px;
  visibility: hidden;
}
.nav-open .drawer { transform: translateX(0); visibility: visible; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; height: 48px; }
.drawer-close { background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--text); padding: 8px; }
.drawer-links { display: flex; flex-direction: column; margin-top: 24px; }
.drawer-links a {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-links a span { font-family: var(--sans); font-size: .7rem; color: var(--accent); letter-spacing: .2em; }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.drawer-cta .btn { justify-content: center; }
.drawer-contact { margin-top: 22px; font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.drawer-contact a { color: var(--secondary); }

/* ============================================================
   HERO — editorial split
   ============================================================ */
.hero { background: var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1fr; }
.hero-media {
  position: relative;
  height: clamp(360px, 56vh, 540px);
  overflow: hidden;
  background: var(--ivory-2);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 35%; }
.hero-media .hero-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(36,28,21,.62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #F3ECDD;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px;
}
.hero-copy {
  padding: clamp(40px, 9vw, 96px) var(--gutter);
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .display em { font-style: italic; color: var(--secondary); }
.hero-copy .lede { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HERITAGE STRIP
   ============================================================ */
.heritage {
  background: var(--ivory-2);
  border-block: 1px solid var(--border);
}
.heritage .wrap { padding-inline: clamp(0px, 4vw, 64px); }
.heritage-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
}
.heritage-item {
  text-align: center;
  padding: 30px 16px;
  border-bottom: 1px solid var(--border);
}
.heritage-item:last-child { border-bottom: 0; }
.heritage-item .h-ic {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; margin: 0 auto 12px;
  color: var(--gold);
}
.heritage-item .h-ic svg { width: 30px; height: 30px; display: block; }
.heritage-item h3 {
  font-family: var(--sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 4px;
}
.heritage-item p { margin: 0; font-size: .8rem; color: var(--muted); letter-spacing: .02em; }

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.collections-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}
.coll-card {
  position: relative;
  display: block;
  background: var(--surface);
  overflow: hidden;
}
.coll-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3.1; background: var(--ivory-2); }
.coll-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.coll-card:hover .coll-media img { transform: scale(1.05); }
.coll-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,28,21,.42), rgba(36,28,21,0) 55%);
  opacity: .9;
}
.coll-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,.85);
}
.coll-body {
  padding: 22px 4px 8px;
}
.coll-body .ctag {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 9px;
}
.coll-body h3 { font-size: 1.85rem; margin-bottom: 8px; }
.coll-body p { font-size: .92rem; color: var(--muted); margin: 0 0 16px; line-height: 1.6; }

/* ============================================================
   SIGNATURE SPOTLIGHT (wide banners)
   ============================================================ */
.spotlight { background: var(--espresso); color: #F3ECDD; }
.spotlight .eyebrow { color: var(--accent); }
.spotlight .sec-head h2 { color: #fff; }
.spot-viewport { position: relative; overflow: hidden; border-radius: var(--radius); }
.spot-track {
  display: flex;
  transition: transform var(--t-slow);
}
.spot-slide { min-width: 100%; position: relative; }
.spot-slide img { width: 100%; height: clamp(220px, 42vw, 460px); object-fit: cover; }
.spot-cap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 22px;
}
.spot-cap .spot-name { font-family: var(--serif); font-size: 1.5rem; color: #fff; }
.spot-cap .spot-desc { font-size: .86rem; color: rgba(243,236,221,.66); max-width: 46ch; }
.spot-nav { display: flex; gap: 10px; align-items: center; margin-top: 22px; }
.spot-dots { display: flex; gap: 8px; }
.spot-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(243,236,221,.28); border: 0; padding: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.spot-dot.active { background: var(--accent); transform: scale(1.25); }
.spot-arrows { display: flex; gap: 8px; margin-left: auto; }
.spot-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(243,236,221,.3);
  color: #F3ECDD; display: grid; place-items: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.spot-arrow:hover { border-color: var(--accent); background: rgba(201,162,75,.12); }
.spot-arrow svg { width: 18px; }

/* ============================================================
   CRAFTSMANSHIP BAND
   ============================================================ */
.craft { background: var(--bg); }
.craft-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.craft-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.craft-figs figure { margin: 0; overflow: hidden; background: var(--ivory-2); }
.craft-figs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.craft-figs figure:first-child { margin-top: 0; }
.craft-figs figure:last-child { margin-top: 36px; }
.craft-copy .eyebrow { margin-bottom: 16px; }
.craft-copy h2 { font-size: clamp(2rem, 5.4vw, 3.1rem); margin-bottom: 20px; }
.craft-copy p { color: var(--muted); margin: 0 0 18px; }
.craft-copy p.first { color: var(--text); font-size: 1.08rem; line-height: 1.7; }
.craft-copy .btn { margin-top: 12px; }

/* ============================================================
   BOUTIQUE INTERIOR BAND
   ============================================================ */
.boutique { background: var(--ivory-2); }
.boutique-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.boutique-grid figure { margin: 0; overflow: hidden; position: relative; background: var(--bg); }
.boutique-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform var(--t-slow); }
.boutique-grid figure:hover img { transform: scale(1.04); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi {
  position: relative;
  color: #F3ECDD;
  background: var(--espresso);
}
.testi-bg { position: absolute; inset: 0; overflow: hidden; }
.testi-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.testi-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(var(--espresso-2), rgba(36,28,21,.86)); }
.testi .wrap { position: relative; z-index: 2; }
.testi .eyebrow { color: var(--accent); }
.testi .sec-head h2 { color: #fff; }
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(243,236,221,.12);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.quote .qmark { font-family: var(--serif); font-size: 3rem; line-height: .6; color: var(--accent); display: block; margin-bottom: 10px; }
.quote p { font-family: var(--serif); font-size: 1.18rem; font-style: italic; line-height: 1.5; color: #F3ECDD; margin: 0 0 18px; }
.quote .qby { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.testi-note { margin-top: 26px; font-size: .68rem; color: rgba(243,236,221,.4); letter-spacing: .04em; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--bg); }
.visit-layout { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 6vw, 60px); }

.boutiques { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
.bcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.bcard.lead { border-color: var(--gold); box-shadow: 0 1px 0 var(--gold) inset, 0 14px 40px -28px rgba(166,124,46,.6); }
.bcard .blead-tag {
  position: absolute; top: -10px; left: 24px;
  background: var(--gold); color: #fff;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; font-weight: 600;
}
.bcard h3 { font-size: 1.5rem; margin-bottom: 6px; }
.bcard .baddr { font-size: .9rem; color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.bcard .bmeta { display: flex; flex-direction: column; gap: 9px; font-size: .86rem; }
.bcard .bmeta a { color: var(--secondary); display: inline-flex; align-items: center; gap: 9px; }
.bcard .bmeta a:hover { color: var(--gold); }
.bcard .bmeta svg { width: 15px; color: var(--accent); flex-shrink: 0; }
.bcard .bmeta .row { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.bcard.closed { opacity: .82; }
.bcard.closed h3 { color: var(--muted); }
.bcard .closed-tag {
  display: inline-block; margin-bottom: 10px;
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: #9a5b3b; background: rgba(154,91,59,.1);
  border: 1px solid rgba(154,91,59,.3); border-radius: 3px;
  padding: 3px 9px; font-weight: 600;
}

.bahrain-note {
  font-size: .82rem; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 18px; margin-top: 4px;
  line-height: 1.6;
}
.bahrain-note b { color: var(--text); font-weight: 600; }

/* Map placeholder — NEVER faked */
.map-ph {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--ivory-2) 0 14px, var(--bg) 14px 28px);
  display: grid; place-items: center; text-align: center;
  margin-top: 24px;
}
.map-ph .map-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px; }
.map-ph svg { width: 34px; color: var(--accent); }
.map-ph .map-t { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--secondary); }
.map-ph .map-s { font-size: .76rem; color: var(--muted); max-width: 32ch; }
/* When a real map iframe is embedded, drop placeholder styling */
.map-ph:has(iframe) { aspect-ratio: auto; border: 0; background: none; display: block; }
.map-ph iframe { width: 100%; max-width: 100%; display: block; }

/* Enquiry form */
.enquire {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
.enquire h3 { font-size: 1.9rem; margin-bottom: 6px; }
.enquire .esub { font-size: .9rem; color: var(--muted); margin: 0 0 24px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans); font-size: .95rem; color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--surface);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.enquire .btn { width: 100%; justify-content: center; margin-top: 6px; }
.enquire .form-note { font-size: .72rem; color: var(--muted); margin-top: 14px; text-align: center; }
.enquire .or-wa { margin-top: 16px; text-align: center; }
.enquire .or-wa .btn { width: 100%; }
.form-ok {
  display: none;
  background: rgba(166,124,46,.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px; text-align: center;
  font-size: .92rem; color: var(--secondary);
}
.form-ok.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: #C9BFAD; }
.footer .wrap { padding-block: clamp(48px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .16em; color: #fff; }
.footer-brand p { font-size: .86rem; color: rgba(201,191,173,.7); margin: 14px 0 0; max-width: 34ch; line-height: 1.6; }
.footer-col h4 { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: .88rem; color: rgba(201,191,173,.85); }
.footer-col a:hover { color: #fff; }
.footer-sister {
  border: 1px solid rgba(243,236,221,.16); border-radius: var(--radius);
  padding: 16px 18px; margin-top: 8px;
}
.footer-sister .fs-tag { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(201,191,173,.55); }
.footer-sister a { font-family: var(--serif); font-size: 1.15rem; color: #fff; display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.footer-sister a svg { width: 13px; }
.footer-sister p { font-size: .78rem; color: rgba(201,191,173,.65); margin: 6px 0 0; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(243,236,221,.22);
  display: grid; place-items: center; color: #C9BFAD;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 16px; }
.footer-bottom {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(243,236,221,.12);
  display: flex; flex-direction: column; gap: 10px;
  font-size: .74rem; color: rgba(201,191,173,.55);
}
.footer-bottom a { color: rgba(201,191,173,.7); }

/* ============================================================
   WHATSAPP FAB + MOBILE STICKY CTA
   ============================================================ */
.wa-fab {
  position: fixed; right: 16px; bottom: 84px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(18,140,64,.6);
  transition: transform var(--t-fast);
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 28px; }
.wa-fab .wa-conf {
  position: absolute; top: -6px; right: -6px;
  background: var(--secondary); color: #fff;
  font-size: .52rem; font-weight: 700; letter-spacing: .04em;
  border-radius: 10px; padding: 2px 6px;
}

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 82;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(251,248,241,.95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-cta a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px 12px;
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); font-weight: 500;
}
.mobile-cta a svg { width: 19px; color: var(--secondary); }
.mobile-cta a + a { border-left: 1px solid var(--border); }
.mobile-cta a.primary { background: var(--gold); color: #fff; }
.mobile-cta a.primary svg { color: #fff; }
body { padding-bottom: 64px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

body.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
body.no-motion .coll-card:hover .coll-media img,
body.no-motion .boutique-grid figure:hover img { transform: none; }

/* Tonal-rhythm tweak — swap ivory sections to deeper tonal bands */
body.rhythm-tonal .craft { background: var(--ivory-2); }
body.rhythm-tonal #story { background: var(--bg) !important; }
body.rhythm-tonal .boutique { background: var(--bg); }
body.rhythm-tonal .heritage { background: var(--bg); }

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

/* ============================================================
   TWEAKS PANEL (vanilla)
   ============================================================ */
.twk {
  position: fixed; right: 16px; bottom: 16px; z-index: 2147483646;
  width: 270px; max-height: calc(100vh - 32px);
  display: none; flex-direction: column;
  background: rgba(250,249,247,.82);
  -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%);
  border: .5px solid rgba(255,255,255,.6); border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 12px 40px rgba(0,0,0,.18);
  color: #29261b; font-family: var(--sans);
  overflow: hidden;
}
.twk.open { display: flex; }
.twk-hd { display: flex; align-items: center; justify-content: space-between; padding: 12px 10px 12px 16px; }
.twk-hd b { font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.twk-hd .twk-x { border: 0; background: transparent; color: rgba(41,38,27,.5); width: 24px; height: 24px; border-radius: 6px; font-size: 15px; }
.twk-hd .twk-x:hover { background: rgba(0,0,0,.06); color: #29261b; }
.twk-body { padding: 4px 16px 18px; display: flex; flex-direction: column; gap: 16px; overflow-y: auto; }
.twk-sec { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(41,38,27,.45); margin-bottom: -4px; }
.twk-field { display: flex; flex-direction: column; gap: 7px; }
.twk-field > span { font-size: 11.5px; font-weight: 500; color: rgba(41,38,27,.78); }
.twk-seg { display: flex; background: rgba(0,0,0,.05); border-radius: 8px; padding: 2px; gap: 2px; }
.twk-seg button {
  flex: 1; border: 0; background: transparent; border-radius: 6px;
  font-size: 11px; font-weight: 500; color: rgba(41,38,27,.6);
  padding: 6px 4px; letter-spacing: .02em;
}
.twk-seg button.on { background: #fff; color: var(--secondary); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.twk-swatches { display: flex; gap: 8px; }
.twk-sw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; padding: 0; }
.twk-sw.on { border-color: rgba(41,38,27,.55); box-shadow: 0 0 0 2px #fff inset; }
.twk-toggle { display: flex; align-items: center; justify-content: space-between; }
.twk-switch { width: 38px; height: 22px; border-radius: 11px; background: rgba(0,0,0,.18); border: 0; position: relative; transition: background var(--t-fast); }
.twk-switch.on { background: var(--gold); }
.twk-switch::after { content:""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform var(--t-fast); }
.twk-switch.on::after { transform: translateX(16px); }

/* ============================================================
   RESPONSIVE — scale up from mobile
   ============================================================ */
@media (min-width: 600px) {
  .heritage-grid { grid-template-columns: repeat(3, 1fr); }
  .heritage-item { border-bottom: 0; border-right: 1px solid var(--border); }
  .heritage-item:last-child { border-right: 0; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .boutiques { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .boutique-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav-links { display: flex; gap: 30px; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
  .wa-fab { bottom: 24px; right: 24px; }

  .hero-grid { grid-template-columns: 1.05fr 1fr; min-height: 600px; }
  .hero-media { height: auto; }
  .hero-copy { padding-block: clamp(64px, 8vw, 110px); }

  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-grid { grid-template-columns: 1fr 1.05fr; }
  .visit-layout { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; }
  .testi-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1100px) {
  .hero-media img { object-position: 58% 30%; }
}
