/* ============================================================
   Arakkal Gold and Diamonds — slot 392
   Visual system keyed to the brand logo:
   crimson-maroon wordmark + warm 22k gold on ivory.
   ============================================================ */

:root {
  /* Palette — sampled from media/logo.webp */
  --bg: #FBF8F3;          /* warm ivory canvas */
  --surface: #FFFFFF;     /* cards */
  --surface-2: #F4EEE3;   /* warm tinted panels */
  --text: #241A17;        /* deep warm brown-black */
  --muted: #6E5F57;       /* secondary text */
  --primary: #8E1F2E;     /* crimson-maroon wordmark */
  --primary-deep: #6E1623;
  --secondary: #B8860B;   /* deep gold */
  --accent: #C9A227;      /* warm 22k gold */
  --accent-soft: #E4C97a;
  --border: #E7DED2;      /* warm hairline */
  --focus: #C9A227;
  --ink-scrim: rgba(20,12,10,0.55);

  --gold-grad: linear-gradient(135deg, #E4C97A 0%, #C9A227 38%, #9C7A14 100%);
  --gold-line: linear-gradient(90deg, transparent, #C9A227 18%, #E4C97A 50%, #C9A227 82%, transparent);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-accent: "Marcellus", Georgia, serif;
  --font-body: "Mulish", system-ui, -apple-system, sans-serif;
  --font-ar: "Noto Kufi Arabic", "Mulish", sans-serif;

  --shadow-sm: 0 1px 2px rgba(36,26,23,0.06), 0 2px 8px rgba(36,26,23,0.05);
  --shadow-md: 0 8px 28px rgba(36,26,23,0.10);
  --shadow-lg: 0 24px 60px rgba(36,26,23,0.16);

  --maxw: 1240px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

body[dir="rtl"] { font-family: var(--font-ar); }
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3 { font-family: var(--font-ar); }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

::selection { background: var(--accent-soft); color: var(--text); }

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }

.eyebrow {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--secondary);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 5vw, 52px); }
.section-head p { color: var(--muted); font-size: 18px; margin: 18px 0 0; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(142,31,46,0.24); }
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(142,31,46,0.3); }
.btn--gold { background: var(--gold-grad); color: #3a2c06; box-shadow: 0 6px 18px rgba(201,162,39,0.32); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,162,39,0.42); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--primary); transform: translateY(-2px); }
.btn--wa { background: #1faa53; color: #fff; box-shadow: 0 6px 18px rgba(31,170,83,0.28); }
.btn--wa:hover { background: #178f44; transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; min-height: 42px; font-size: 13px; }
.btn--block { width: 100%; }

.linklike {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s ease, color .25s ease;
}
.linklike svg { width: 15px; height: 15px; transition: transform .25s ease; }
.linklike:hover { color: var(--secondary); gap: 12px; }
body[dir="rtl"] .linklike svg { transform: scaleX(-1); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: rgba(251,248,243,0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 4px 24px rgba(36,26,23,0.06); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-inline-start: auto; }
.nav__links a {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold-grad);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang-toggle button {
  border: 0; background: transparent;
  font-family: var(--font-accent);
  font-size: 13px; letter-spacing: 0.04em;
  padding: 8px 14px; color: var(--muted);
  transition: background .2s, color .2s;
}
.lang-toggle button.active { background: var(--primary); color: #fff; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 22px 24px 40px;
  overflow-y: auto;
}
body[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu__top img { height: 50px; }
.mobile-close { width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); font-size: 22px; color: var(--text); line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu nav a span { font-family: var(--font-accent); font-size: 13px; color: var(--accent); }
.mobile-menu__cta { margin-top: 28px; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(46px, 6.6vw, 84px);
  line-height: 1.02;
  margin: 0 0 22px;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero__lead { font-size: 19px; color: var(--muted); margin: 0 0 32px; max-width: 480px; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__note { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.hero__note svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero__note b { color: var(--text); font-weight: 700; }

.hero__media { position: relative; }
.hero__media .frame {
  position: relative;
  border-radius: 250px 250px var(--r-lg) var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 608 / 760;
}
.hero__media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 260px 260px 30px 30px;
  border: 1px solid var(--accent);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.hero__badge {
  position: absolute;
  bottom: 22px;
  inset-inline-start: -26px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
}
.hero__badge .k { font-family: var(--font-display); font-size: 32px; color: var(--primary); line-height: 1; }
.hero__badge .l { font-size: 12px; color: var(--muted); line-height: 1.3; max-width: 120px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--text);
  color: #f3e9da;
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.trust__item {
  display: flex; align-items: center; gap: 11px;
  padding: 8px 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
}
.trust__item:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 26px;
  background: rgba(201,162,39,0.4);
}
.trust__item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.cat {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 14px 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.cat__img {
  width: 132px; height: 132px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #fff 0%, var(--surface-2) 100%);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--border);
  position: relative;
}
.cat__img::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.35);
}
.cat__img img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.cat h3 { font-family: var(--font-accent); font-size: 16px; letter-spacing: 0.04em; margin-bottom: 4px; }
.cat span { font-size: 13px; color: var(--muted); }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.coll {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.coll::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-line);
  height: 3px; top: 0; bottom: auto;
  opacity: 0; transition: opacity .3s ease;
}
.coll:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.coll:hover::after { opacity: 1; }
.coll__logo { height: 52px; display: flex; align-items: center; margin-bottom: 14px; }
.coll__logo img { max-height: 52px; width: auto; object-fit: contain; }
.coll__name { font-family: var(--font-display); font-size: 34px; color: var(--text); margin-bottom: 14px; line-height: 1; }
.coll p { font-size: 14.5px; color: var(--muted); margin: 0 0 auto; }
.coll .linklike { margin-top: 18px; }
.coll--feature { grid-column: span 2; min-height: 320px; padding: 0; border: 0; }
.coll--feature .coll__media { position: absolute; inset: 0; }
.coll--feature .coll__media img { width: 100%; height: 100%; object-fit: cover; }
.coll--feature .coll__overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 30px;
  background: linear-gradient(to top, rgba(20,12,10,0.82) 0%, rgba(20,12,10,0.45) 55%, transparent 100%);
  color: #fff;
}
.coll--feature .coll__overlay h3 { color: #fff; font-size: 38px; margin-bottom: 6px; }
.coll--feature .coll__overlay p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.coll--feature .linklike { color: var(--accent-soft); }

/* ============================================================
   ESTRELLA / LATEST ARRIVALS
   ============================================================ */
.feature-line { background: var(--surface-2); }
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__img { aspect-ratio: 1; background: #fff; display: grid; place-items: center; padding: 14px; }
.product__img img { width: 100%; height: 100%; object-fit: contain; }
.product__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--border); }
.product__body .pl { font-family: var(--font-accent); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--secondary); }
.product__body .pn { font-family: var(--font-display); font-size: 21px; }
.product__body .pc { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }
.product__body .penq { margin-top: 8px; }

/* ============================================================
   GOLD RATE
   ============================================================ */
.goldrate {
  background:
    radial-gradient(1200px 380px at 80% 0%, rgba(201,162,39,0.10), transparent 60%),
    var(--text);
  color: #f3e9da;
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.goldrate .eyebrow { color: var(--accent-soft); }
.goldrate .eyebrow::before { background: var(--accent); }
.goldrate h2 { color: #fff; font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.goldrate p { color: rgba(243,233,218,0.8); margin: 0 0 24px; }
.goldrate__cards { display: grid; gap: 14px; }
.rate-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rate-card .rk { font-family: var(--font-display); font-size: 26px; color: #fff; }
.rate-card .rk small { font-family: var(--font-body); font-size: 13px; color: var(--accent-soft); display: block; letter-spacing: 0.04em; }
.rate-card .rv {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  border: 1px dashed rgba(201,162,39,0.5);
  border-radius: 999px;
  padding: 8px 16px;
}
.goldrate__note { font-size: 13px; color: rgba(243,233,218,0.65); margin-top: 18px; display: flex; gap: 10px; align-items: flex-start; }
.goldrate__note svg { width: 16px; height: 16px; color: var(--accent-soft); flex-shrink: 0; margin-top: 3px; }
.goldrate__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ============================================================
   OCCASIONS
   ============================================================ */
.occasions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.occ {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4.4;
  box-shadow: var(--shadow-sm);
  display: block;
}
.occ img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.occ:hover img { transform: scale(1.06); }
.occ__cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,10,0.78) 0%, rgba(20,12,10,0.1) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
  color: #fff;
}
.occ__cap .ot { font-family: var(--font-display); font-size: 23px; line-height: 1.05; }
.occ__cap .os { font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin-top: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1106/800; object-fit: cover; }
.about__media .tag {
  position: absolute; inset-inline-end: -18px; bottom: -18px;
  background: var(--primary); color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  max-width: 220px;
  box-shadow: var(--shadow-md);
}
.about__media .tag b { font-family: var(--font-display); font-size: 22px; display: block; margin-bottom: 4px; }
.about__media .tag span { font-size: 13px; color: rgba(255,255,255,0.85); }
.about__copy h2 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 20px; }
.about__copy p { color: var(--muted); margin: 0 0 18px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0 0; }
.value { display: flex; gap: 12px; align-items: flex-start; }
.value svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.value b { display: block; font-family: var(--font-accent); font-size: 15px; letter-spacing: 0.02em; }
.value span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   VISIT / BRANCHES
   ============================================================ */
.visit__layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: start; }
.branches { display: grid; gap: 16px; }
.branch {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.branch:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-sm); }
.branch__pin {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid; place-items: center;
}
.branch__pin svg { width: 22px; height: 22px; color: var(--primary); }
.branch__info { flex: 1; min-width: 0; }
.branch__info h3 { font-family: var(--font-accent); font-weight: 400; font-size: 18px; letter-spacing: 0.02em; margin-bottom: 4px; }
.branch__info .addr { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.branch__info .hours { font-size: 12.5px; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.branch__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.branch__actions a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-accent); font-size: 13px; letter-spacing: 0.03em;
  padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.branch__actions a svg { width: 15px; height: 15px; }
.branch__actions .call { color: var(--primary); }
.branch__actions .call:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.branch__actions .wa { color: #1faa53; }
.branch__actions .wa:hover { background: #1faa53; color: #fff; border-color: #1faa53; }

.map-side { position: sticky; top: 96px; }
.map-placeholder {
  border: 1.5px dashed var(--accent);
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.05) 0 12px, transparent 12px 24px),
    var(--surface);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 30px;
  color: var(--muted);
}
.map-placeholder svg { width: 42px; height: 42px; color: var(--accent); }
.map-placeholder b { font-family: var(--font-accent); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.map-placeholder span { font-size: 13px; max-width: 260px; }
.map-placeholder .lead-addr { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text); }
.map-placeholder .lead-addr b { display: block; text-transform: none; letter-spacing: 0; font-family: var(--font-display); font-size: 19px; color: var(--primary); margin-bottom: 4px; }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquiry { background: var(--text); color: #f3e9da; }
.enquiry__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.enquiry__intro .eyebrow { color: var(--accent-soft); }
.enquiry__intro .eyebrow::before { background: var(--accent); }
.enquiry__intro h2 { color: #fff; font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.enquiry__intro p { color: rgba(243,233,218,0.78); margin: 0 0 26px; }
.enquiry__chan { display: grid; gap: 14px; }
.enquiry__chan a { display: flex; align-items: center; gap: 14px; color: #f3e9da; font-size: 15px; }
.enquiry__chan a svg { width: 20px; height: 20px; color: var(--accent-soft); flex-shrink: 0; }
.enquiry__chan a:hover { color: #fff; }

.form {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 34px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-accent); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form__submit { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form__hint { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1c1310; color: #cdbfb2; padding: 70px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(201,162,39,0.2); }
.footer__brand img { height: 132px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; color: #a89a8d; max-width: 320px; }
.footer__brand .socials { display: flex; gap: 12px; margin-top: 22px; }
.footer__brand .socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.3);
  display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer__brand .socials a svg { width: 18px; height: 18px; color: var(--accent-soft); }
.footer__brand .socials a:hover { background: var(--gold-grad); transform: translateY(-3px); }
.footer__brand .socials a:hover svg { color: #2a1c06; }
.footer__col h4 { font-family: var(--font-accent); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin: 0 0 18px; }
.footer__col a, .footer__col p { display: block; font-size: 14px; color: #b3a597; margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding: 24px 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: 12.5px; color: #8a7d70; }
.footer__bottom .disc { max-width: 720px; line-height: 1.5; }

/* ============================================================
   FLOATING + MOBILE BAR
   ============================================================ */
.wa-fab {
  position: fixed;
  inset-block-end: 92px;
  inset-inline-end: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1faa53;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(31,170,83,0.45);
  transition: transform .25s;
  animation: waPulse 2.6s infinite;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; color: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(31,170,83,0.45), 0 0 0 0 rgba(31,170,83,0.35); }
  50% { box-shadow: 0 10px 30px rgba(31,170,83,0.45), 0 0 0 14px rgba(31,170,83,0); }
}

.mobile-bar {
  position: fixed;
  inset-inline: 0; inset-block-end: 0;
  z-index: 81;
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(36,26,23,0.1);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px;
  font-family: var(--font-accent); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--text);
}
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a.call { color: var(--primary); }
.mobile-bar a.wa { color: #1faa53; }
.mobile-bar a.enq { color: var(--secondary); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-fab { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__grid { gap: 36px; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: repeat(3, 1fr); }
  .coll--feature { grid-column: span 3; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .occasions { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__actions .lang-toggle, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin: 0 auto; order: -1; }
  .hero h1 { font-size: clamp(42px, 11vw, 62px); }
  .goldrate { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .about__grid { grid-template-columns: 1fr; gap: 64px; }
  .visit__layout { grid-template-columns: 1fr; gap: 28px; }
  .map-side { position: static; }
  .enquiry__grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .trust__inner { gap: 4px 0; }
  .trust__item { padding: 7px 16px; font-size: 13px; }
  .trust__item:not(:last-child)::after { display: none; }
  .cats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .coll--feature { grid-column: span 2; min-height: 260px; }
  .coll__name { font-size: 28px; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .occasions { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .mobile-bar { display: grid; }
  .wa-fab { inset-block-end: 86px; width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
  body { padding-bottom: 0; }
  .section:last-of-type { scroll-margin-bottom: 80px; }
  .hero__badge { inset-inline-start: 0; }
}

@media (max-width: 420px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(38px, 13vw, 52px); }
  .section-head h2 { font-size: clamp(30px, 8vw, 40px); }
  .about__media .tag { inset-inline-end: 8px; }
  .footer__top { grid-template-columns: 1fr; }
}

/* spacer so mobile bar doesn't cover footer content */
@media (max-width: 720px) {
  .footer { padding-bottom: 84px; }
}
