/* ============================================================
   Yataghan Jewellery — Dubai Boutique showcase
   Visual system: ivory + designer-gold + amethyst accent
   Mobile-first, RTL-aware
   ============================================================ */

:root {
  --bg: #FBF8F3;          /* soft ivory / warm paper */
  --bg-2: #F4EEE3;        /* slightly deeper ivory band */
  --surface: #FFFFFF;     /* cards / tiles */
  --text: #1C1A17;        /* warm near-black */
  --muted: #6B6358;       /* secondary warm grey-brown */
  --muted-2: #938b7e;
  --primary: #BF982F;     /* Yataghan gold */
  --primary-deep: #A67E22;
  --secondary: #8A6A33;   /* heritage bronze */
  --accent: #9C6B7A;      /* muted amethyst */
  --border: #EAE2D2;      /* warm hairline */
  --border-strong: #DBCFB8;
  --charcoal: #211E1A;
  --focus: #BF982F;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arabic, sans-serif;
  --shadow-sm: 0 1px 2px rgba(33,30,26,.04), 0 6px 18px rgba(33,30,26,.05);
  --shadow-md: 0 4px 14px rgba(33,30,26,.07), 0 22px 50px rgba(33,30,26,.09);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Arabic font stack swap */
html[lang="ar"] {
  --serif: "Cormorant Garamond", "IBM Plex Sans Arabic", serif;
  --sans: "IBM Plex Sans Arabic", "Jost", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -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; }

::selection { background: rgba(191,152,47,.22); }

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

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.band { background: var(--bg-2); }
.band--charcoal { background: var(--charcoal); color: #EDE7DA; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: .005em; }
.display {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.01em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  display: inline-block;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--muted); }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--secondary); }

/* ---------- Buttons ---------- */
.btn {
  --bp-y: 14px; --bp-x: 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--bp-y) var(--bp-x);
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  transition: all .4s var(--ease);
  min-height: 48px; line-height: 1;
  white-space: nowrap;
}
html[dir="rtl"] .btn { letter-spacing: .02em; }
.btn--gold { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(191,152,47,.25); }
.btn--gold:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(191,152,47,.32); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-deep); background: rgba(191,152,47,.05); }
.btn--ghost-light { background: transparent; color: #f4eeda; border-color: rgba(244,238,218,.3); }
.btn--ghost-light:hover { border-color: var(--primary); color: #fff; }
.btn--wa { background: #1f7a55; color: #fff; }
.btn--wa:hover { background: #1a6647; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { --bp-y: 11px; --bp-x: 18px; min-height: 42px; font-size: .72rem; }

.linkarrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
html[dir="rtl"] .linkarrow { letter-spacing: .02em; }
.linkarrow .ar { transition: transform .35s var(--ease); }
.linkarrow:hover { color: var(--primary-deep); border-color: var(--primary); }
.linkarrow:hover .ar { transform: translateX(4px); }
html[dir="rtl"] .linkarrow:hover .ar { transform: translateX(-4px); }
html[dir="rtl"] .linkarrow .ar { transform: scaleX(-1); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--charcoal);
  color: #cfc6b6;
  font-size: .72rem;
  letter-spacing: .08em;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 38px; padding-block: 6px;
}
.topbar__msg { display: flex; align-items: center; gap: .5em; color: #b9b0a0; }
.topbar__msg .dot { color: var(--primary); }
.topbar__actions { display: flex; align-items: center; gap: clamp(10px, 2vw, 22px); }
.topbar a { transition: color .3s; }
.topbar a:hover { color: var(--primary); }
.topbar__sep { width: 1px; height: 14px; background: rgba(255,255,255,.14); }
.lang-toggle {
  background: none; border: 1px solid rgba(255,255,255,.22); color: #cfc6b6;
  border-radius: 2px; padding: 4px 11px; font-size: .72rem; letter-spacing: .1em;
  display: inline-flex; align-items: center; gap: 6px; transition: all .3s;
}
.lang-toggle:hover { border-color: var(--primary); color: #fff; }
.topbar .hide-xs { display: none; }
@media (min-width: 560px){ .topbar .hide-xs { display: inline; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.header.is-scrolled { border-color: var(--border); box-shadow: 0 6px 26px rgba(33,30,26,.05); }
.header__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 80px; padding-block: 10px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .14em; color: var(--secondary); font-weight: 500; }
.brand__sub { font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
@media (max-width: 600px){ .brand img { height: 44px; } .brand__txt { display: none; } }

.nav { display: none; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav a {
  font-size: .82rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); position: relative; padding-block: 6px;
}
html[dir="rtl"] .nav a { letter-spacing: .02em; font-size: .92rem; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--primary); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--primary-deep); }
.nav a:hover::after { width: 100%; }
.header__cta { display: none; align-items: center; gap: 12px; }
@media (min-width: 1000px){ .nav { display: flex; } .header__cta { display: flex; } }

.burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: none; border: 1px solid var(--border-strong);
  border-radius: 2px; padding: 0 11px;
}
.burger span { height: 1.5px; background: var(--text); transition: all .35s var(--ease); }
@media (min-width: 1000px){ .burger { display: none; } }
.burger.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
html[dir="rtl"] .drawer { transform: translateX(-100%); }
.drawer.is-open { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.drawer__close { width: 46px; height: 46px; border: 1px solid var(--border-strong); background: none; border-radius: 2px; font-size: 1.3rem; color: var(--text); }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  font-family: var(--serif); font-size: 2rem; padding: 14px 0;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.drawer__nav a:hover { color: var(--primary-deep); }
.drawer__actions { margin-top: auto; padding-top: 30px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero__media {
  position: relative;
  min-height: 78vh;
  background: var(--bg-2);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(251,248,243,.97) 0%, rgba(251,248,243,.86) 32%, rgba(251,248,243,.45) 56%, rgba(251,248,243,.06) 100%);
}
html[dir="rtl"] .hero__scrim { transform: scaleX(-1); }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 600px; }
.hero .display { color: var(--text); margin-bottom: 1.4rem; }
.hero .display em { font-family: var(--serif); font-style: italic; color: var(--primary-deep); font-weight: 500; }
.hero__lead { margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .55em; }
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }
html[dir="rtl"] .hero__meta { letter-spacing: .02em; font-size: .9rem; }

@media (min-width: 760px){
  .hero__media { min-height: 86vh; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.shead { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.shead.center { margin-inline: auto; text-align: center; }
.shead.center .eyebrow::before { display: none; }
.shead.center .eyebrow { justify-content: center; }
.shead p { margin: 1.2rem 0 0; }
.shead__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ============================================================
   COLLECTIONS GRID (categories)
   ============================================================ */
.cat-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px){ .cat-grid { gap: 18px; grid-template-columns: repeat(3, 1fr); } }
.cat {
  position: relative; display: block; overflow: hidden;
  border-radius: 3px; background: var(--surface); border: 1px solid var(--border);
  aspect-ratio: 4/5;
}
.cat:first-child { grid-column: span 2; aspect-ratio: 16/10; }
@media (min-width: 720px){
  .cat:first-child { grid-column: span 1; aspect-ratio: 4/5; }
}
.cat img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s;
}
.cat__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.62) 0%, rgba(28,26,23,.14) 42%, rgba(28,26,23,0) 70%);
  transition: opacity .5s;
}
.cat__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 20px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.cat__name { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; line-height: 1; }
.cat__go {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  display: grid; place-items: center; color: #fff; flex: none;
  transition: all .4s var(--ease); opacity: 0; transform: translateY(8px);
}
.cat:hover img { transform: scale(1.06); }
.cat:hover .cat__go { opacity: 1; transform: translateY(0); background: var(--primary); border-color: var(--primary); }
html[dir="rtl"] .cat__go .ar { transform: scaleX(-1); }

/* ============================================================
   SIGNATURE COLLECTIONS
   ============================================================ */
.sig-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .sig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .sig-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.sig {
  background: var(--surface); border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}
.sig:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.sig__img { aspect-ratio: 5/4; overflow: hidden; background: var(--bg-2); }
.sig__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.sig:hover .sig__img img { transform: scale(1.05); }
.sig__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.sig__kicker { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.sig__name { font-family: var(--serif); font-size: 1.7rem; line-height: 1; margin-bottom: 10px; }
.sig__desc { font-size: .9rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.sig .linkarrow { font-size: .72rem; }

/* ============================================================
   STORY
   ============================================================ */
.story { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px){ .story { grid-template-columns: .92fr 1.08fr; } }
.story__media { position: relative; }
.story__media img { width: 100%; border-radius: 3px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); }
.story__badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 18px 24px; border-radius: 3px; box-shadow: var(--shadow-md); text-align: center;
}
html[dir="rtl"] .story__badge { right: auto; left: -10px; }
.story__badge b { font-family: var(--serif); font-size: 2.4rem; color: var(--primary-deep); display: block; line-height: 1; }
.story__badge span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.story__sign { font-family: var(--serif); font-style: italic; font-size: 1.8rem; color: var(--secondary); margin-top: 1.4rem; }
.story__role { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.story blockquote {
  margin: 1.6rem 0 0; padding-inline-start: 22px; border-inline-start: 2px solid var(--primary);
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--text);
}

/* ============================================================
   BESPOKE
   ============================================================ */
.bespoke { position: relative; overflow: hidden; }
.bespoke__grid { display: grid; gap: clamp(30px,5vw,60px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px){ .bespoke__grid { grid-template-columns: 1.05fr .95fr; } }
.bespoke__media { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 3/2; }
@media (min-width:900px){ .bespoke__media { aspect-ratio: 4/3; } }
.bespoke__media img { width:100%; height:100%; object-fit: cover; }
.steps { display: grid; gap: 18px; margin-top: 28px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__n {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--primary); color: var(--primary-deep);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem;
}
.step h4 { font-family: var(--sans); font-size: .95rem; font-weight: 500; letter-spacing: .04em; margin-bottom: 3px; }
.step p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ============================================================
   BRAND WORLD (celebrity / editorial — attributed)
   ============================================================ */
.world__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 820px){ .world__grid { grid-template-columns: 1.3fr 1fr; align-items: stretch; } }
.world__feature { position: relative; border-radius: 3px; overflow: hidden; min-height: 340px; }
.world__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.world__feature .veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,15,.82), rgba(20,18,15,.12) 60%, transparent); }
.world__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(22px,3vw,34px); z-index: 2; color: #f3ecdd; }
.world__cap h3 { color: #fff; font-size: clamp(1.5rem,2.6vw,2.2rem); margin-bottom: .5rem; }
.world__cap p { font-size: .92rem; color: #d8cfbe; max-width: 48ch; margin: 0; }
.world__side { display: grid; gap: 16px; grid-template-rows: auto auto; }
.world__card { background: var(--surface); border: 1px solid var(--border); border-radius: 3px; padding: clamp(24px,3vw,34px); }
.world__card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.world__card p { font-size: .92rem; color: var(--muted); margin: 0; }
.attrib { font-size: .72rem; color: var(--muted-2); font-style: italic; margin-top: 1rem; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit__grid { display: grid; gap: clamp(28px,4vw,48px); grid-template-columns: 1fr; }
@media (min-width: 940px){ .visit__grid { grid-template-columns: 1fr 1fr; } }
.info-list { display: grid; gap: 4px; margin-top: 8px; }
.info {
  display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.info__ic { color: var(--primary-deep); margin-top: 2px; }
.info__k { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
html[dir="rtl"] .info__k { letter-spacing: .04em; }
.info__v { font-size: 1rem; color: var(--text); line-height: 1.5; }
.info__v a:hover { color: var(--primary-deep); }
.info__note { font-size: .8rem; color: var(--muted-2); font-style: italic; margin-top: 3px; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.map-ph {
  position: relative; border-radius: 3px; overflow: hidden;
  border: 1px solid var(--border-strong); background: var(--bg-2);
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  background-image:
    linear-gradient(rgba(191,152,47,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,152,47,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-ph__pin { text-align: center; padding: 24px; }
.map-ph__dot {
  width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(191,152,47,.14); display: grid; place-items: center; color: var(--primary-deep);
  position: relative;
}
.map-ph__dot::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(191,152,47,.3); animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0%{ transform: scale(.85); opacity: .8 } 100%{ transform: scale(1.4); opacity: 0 } }
.map-ph__t { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 4px; }
.map-ph__s { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.map-ph__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(28,26,23,.78); color: #e9e0cf; font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; padding: 6px 10px; border-radius: 2px;
}
html[dir="rtl"] .map-ph__tag { left: auto; right: 14px; }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 3px;
  padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px){ .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
html[dir="rtl"] .field label { letter-spacing: .04em; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: 2px;
  padding: 13px 14px; transition: border-color .3s, box-shadow .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(191,152,47,.12);
}
.form-foot { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 22px; }
.form-note { font-size: .78rem; color: var(--muted-2); }
.form-ok {
  display: none; align-items: center; gap: 12px; padding: 16px 18px; margin-bottom: 18px;
  background: rgba(31,122,85,.08); border: 1px solid rgba(31,122,85,.25); border-radius: 3px;
  color: #1a6647; font-size: .92rem;
}
.form-ok.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: #c4bbab; padding-block: clamp(48px,6vw,76px) 30px; }
.footer__top { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px){ .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px){ .footer__top { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }
.footer__brand img { height: 96px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: .9rem; color: #a89e8d; max-width: 38ch; }
.footer h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #efe7d6; margin-bottom: 16px; font-weight: 500; }
html[dir="rtl"] .footer h4 { letter-spacing: .05em; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .92rem; color: #b6ac9b; transition: color .3s; }
.footer__links a:hover { color: var(--primary); }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: #c4bbab; transition: all .35s;
}
.socials a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.footer__bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between;
  font-size: .76rem; color: #8c8373;
}
.footer__bottom a:hover { color: var(--primary); }
.footer__disc { font-size: .72rem; color: #756c5d; max-width: 70ch; margin-top: 14px; font-style: italic; line-height: 1.6; }

/* ============================================================
   WHATSAPP FAB + MOBILE ACTION BAR
   ============================================================ */
.fab {
  position: fixed; z-index: 70; right: 20px; bottom: 96px;
  width: 58px; height: 58px; border-radius: 50%; background: #1f7a55; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,122,85,.4);
  transition: transform .35s var(--ease); border: none;
}
html[dir="rtl"] .fab { right: auto; left: 20px; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
@media (min-width: 1000px){ .fab { bottom: 28px; } }

.mbar {
  position: fixed; z-index: 65; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(251,248,243,.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(33,30,26,.08);
}
.mbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 10px 6px; min-height: 60px; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); border-inline-end: 1px solid var(--border);
}
.mbar a:last-child { border: none; }
.mbar a svg { width: 20px; height: 20px; color: var(--primary-deep); }
.mbar a.wa svg { color: #1f7a55; }
@media (min-width: 1000px){ .mbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 999px){ body.has-mbar { padding-bottom: 62px; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s } .reveal[data-d="2"]{ transition-delay: .16s }
.reveal[data-d="3"]{ transition-delay: .24s } .reveal[data-d="4"]{ transition-delay: .32s }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* ============================================================
   LIGHTBOX (collection quick-look)
   ============================================================ */
.lb { position: fixed; inset: 0; z-index: 100; display: none; }
.lb.open { display: block; }
.lb__bd { position: absolute; inset: 0; background: rgba(20,18,15,.8); backdrop-filter: blur(4px); }
.lb__panel {
  position: absolute; inset: auto 0 0 0; background: var(--bg);
  border-top-left-radius: 14px; border-top-right-radius: 14px;
  max-height: 92vh; overflow-y: auto; padding: 26px var(--gutter) 40px;
  transform: translateY(100%); transition: transform .5s var(--ease);
}
.lb.open .lb__panel { transform: translateY(0); }
@media (min-width: 760px){
  .lb__panel {
    inset: 50% auto auto 50%; transform: translate(-50%,-46%) scale(.96);
    width: min(880px, 92vw); border-radius: 6px; max-height: 88vh;
  }
  .lb.open .lb__panel { transform: translate(-50%,-50%) scale(1); }
}
.lb__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.lb__close { width: 44px; height: 44px; border: 1px solid var(--border-strong); background: none; border-radius: 50%; font-size: 1.2rem; color: var(--text); flex: none; }
.lb__imgs { display: grid; gap: 12px; grid-template-columns: repeat(2,1fr); margin-bottom: 22px; }
.lb__imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; }
.lb__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.divider-orn { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--primary); margin: 0 auto; }
.divider-orn span { height: 1px; width: clamp(40px,12vw,120px); background: linear-gradient(90deg, transparent, var(--border-strong)); }
.divider-orn span:last-child { background: linear-gradient(90deg, var(--border-strong), transparent); }
.divider-orn .dia { width: 9px; height: 9px; background: var(--primary); transform: rotate(45deg); }
