/* ============================================================
   Dubai Jewel Factory (Capri Gold) — Showcase
   Palette keyed to the brand logo: polished gold on near-black
   ============================================================ */

:root {
  --bg: #0C0B08;          /* deep warm near-black */
  --surface: #16140F;     /* raised cards / sections */
  --surface-2: #1F1C14;   /* hover / nested */
  --surface-alt: #FBF8F1; /* light champagne paper */
  --text: #F4EFE6;        /* warm off-white on dark */
  --text-dark: #1A1813;   /* on light surfaces */
  --muted: #B7AE9C;       /* secondary warm-grey */
  --muted-dark: #6E6757;  /* secondary on light */
  --primary: #D9AE3A;     /* brand gold */
  --primary-deep: #B08A26;/* pressed / hover gold */
  --secondary: #E7C75B;   /* bright champagne highlight */
  --accent: #0F5C4A;      /* emerald editorial accent */
  --border: #2A2519;      /* hairline on dark */
  --border-light: #E7DFCD;/* hairline on light */
  --focus: #E7C75B;
  --gold-grad: linear-gradient(135deg, #E7C75B 0%, #D9AE3A 45%, #B08A26 100%);
  --maxw: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

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

::selection { background: var(--primary); color: #1A1813; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; position: relative; }
.section--light { background: var(--surface-alt); color: var(--text-dark); }
.section--surface { background: var(--surface); }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  opacity: .7;
}
.section--light .eyebrow { color: var(--primary-deep); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  margin: 18px 0 14px;
}
.section-head p { color: var(--muted); font-size: 1.06rem; max-width: 60ch; }
.section--light .section-head p { color: var(--muted-dark); }

.hairline { height: 1px; background: var(--border); border: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-gold {
  background: var(--gold-grad);
  color: #20180A;
  box-shadow: 0 8px 30px -10px rgba(217,174,58,.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(217,174,58,.65); }

.btn-outline {
  border: 1px solid rgba(217,174,58,.55);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(217,174,58,.08); transform: translateY(-2px); }
.section--light .btn-outline { color: var(--text-dark); border-color: rgba(176,138,38,.5); }
.section--light .btn-outline:hover { background: rgba(176,138,38,.08); }

.btn-wa { background: #25D366; color: #07301a; box-shadow: 0 8px 28px -12px rgba(37,211,102,.6); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -12px rgba(37,211,102,.7); }

.btn-sm { min-height: 44px; padding: 0 20px; font-size: 12.5px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: #08070500;
  border-bottom: 1px solid var(--border);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.announce .wrap { display: flex; justify-content: center; gap: 14px 30px; padding-top: 11px; padding-bottom: 11px; flex-wrap: wrap; }
.announce span { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.announce span::before { content: "✦"; color: var(--primary); font-size: 9px; }
.announce span:first-child::before { display: none; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,11,8,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 13px; flex: none; }
.nav__brand img { height: 64px; width: auto; }
.nav__brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__brand .wordmark b {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.18rem; letter-spacing: .02em;
  color: var(--text);
}
.nav__brand .wordmark small {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--primary); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav__links a {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--primary); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.nav__burger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: rgba(8,7,5,.98);
  backdrop-filter: blur(8px);
  padding: 30px 24px 120px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--text);
  padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a span { font-family: 'Manrope'; font-size: 12px; color: var(--primary); letter-spacing: .15em; }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: min(86vh, 820px); }
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 70px 64px 70px 0; }
.hero__media { position: relative; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(12,11,8,.35) 22%, transparent 55%);
}
.hero__copy h1 { font-size: clamp(2.7rem, 6.4vw, 5.1rem); margin-bottom: 22px; }
.hero__copy h1 em { font-style: italic; color: var(--secondary); }
.hero__lede { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 46ch; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__est {
  margin-top: 42px; display: flex; align-items: center; gap: 16px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.hero__est b { color: var(--primary); font-weight: 700; }
.hero__est .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 30px 28px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--border); }
.trust__item:first-child { border-left: none; }
.trust__item .k { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary); }
.trust__item .v { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trust__item .note { font-size: 10.5px; color: var(--muted-dark); letter-spacing: .04em; }

/* ---------- Collections ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.coll-card {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--surface); border: 1px solid var(--border);
  min-height: 340px; display: flex; align-items: flex-end;
  transition: transform .5s var(--ease), border-color .4s;
}
.coll-card:nth-child(1) { grid-column: span 3; min-height: 420px; }
.coll-card:nth-child(2) { grid-column: span 3; min-height: 420px; }
.coll-card:nth-child(3),
.coll-card:nth-child(4),
.coll-card:nth-child(5) { grid-column: span 2; }
.coll-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.coll-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,5,.92) 0%, rgba(8,7,5,.25) 50%, rgba(8,7,5,.05) 100%); }
.coll-card:hover { transform: translateY(-4px); border-color: rgba(217,174,58,.4); }
.coll-card:hover img { transform: scale(1.06); }
.coll-card__body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.coll-card h3 { font-size: 1.85rem; margin-bottom: 4px; }
.coll-card .meta { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.coll-card .arrow {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(244,239,230,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.coll-card:hover .arrow { background: var(--primary); border-color: var(--primary); transform: rotate(0); }
.coll-card:hover .arrow svg { stroke: #20180A; }
.coll-card .arrow svg { width: 17px; height: 17px; stroke: var(--text); transition: stroke .3s; }

/* ---------- Gemstone selector ---------- */
.gem { background: radial-gradient(120% 100% at 80% 0%, rgba(15,92,74,.16), transparent 60%), var(--bg); }
.gem__layout { display: grid; grid-template-columns: 1fr 0.92fr; gap: 60px; align-items: center; }
.gem__tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gem-tile {
  aspect-ratio: 1; border-radius: 12px; border: 1px solid var(--border); background: var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 8px; transition: transform .35s var(--ease), border-color .3s, background .3s; position: relative;
}
.gem-tile img { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); transition: transform .35s var(--ease); }
.gem-tile span { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: center; line-height: 1.3; }
.gem-tile:hover { transform: translateY(-3px); border-color: rgba(217,174,58,.4); }
.gem-tile:hover img { transform: scale(1.12); }
.gem-tile.active { background: var(--surface-2); border-color: var(--primary); }
.gem-tile.active span { color: var(--text); }
.gem-tile.active::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px; border: 1px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(217,174,58,.12); pointer-events: none;
}
.gem__panel { }
.gem__panel .pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--primary); border: 1px solid var(--border); border-radius: 100px; padding: 7px 16px; margin-bottom: 20px;
}
.gem__panel h3 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 16px; }
.gem__panel h3 .swatch { display: inline-block; width: 16px; height: 16px; border-radius: 50%; margin-right: 4px; vertical-align: middle; box-shadow: 0 0 14px currentColor; }
.gem__panel p { color: var(--muted); margin-bottom: 28px; max-width: 48ch; font-size: 1.05rem; }
.gem__panel .gem-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Featured gallery ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat-card { position: relative; overflow: hidden; border-radius: 3px; background: var(--surface); border: 1px solid var(--border); transition: transform .5s var(--ease), border-color .3s; }
.feat-card .ph { aspect-ratio: 1; overflow: hidden; }
.feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feat-card:hover { transform: translateY(-4px); border-color: rgba(217,174,58,.4); }
.feat-card:hover img { transform: scale(1.07); }
.feat-card__body { padding: 18px 18px 20px; }
.feat-card h4 { font-family: 'Manrope'; font-weight: 600; font-size: 14px; letter-spacing: .02em; color: var(--text); margin-bottom: 4px; }
.feat-card .cat { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }
.feat-card .enq { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; letter-spacing: .05em; color: var(--muted); transition: color .25s, gap .25s; }
.feat-card .enq svg { width: 14px; height: 14px; }
.feat-card:hover .enq { color: var(--primary); gap: 11px; }
.feat-note { margin-top: 30px; text-align: center; color: var(--muted-dark); font-size: 13px; }

/* ---------- Custom / Bespoke ---------- */
.custom { background: var(--surface); border-top: 1px solid var(--border); }
.custom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.custom__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.custom__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; border: 1px solid var(--border); }
.custom__media .tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.custom__media .short { aspect-ratio: 4/3; }
.steps { list-style: none; margin: 28px 0 34px; display: flex; flex-direction: column; gap: 0; }
.steps li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--border); }
.steps li:last-child { border-bottom: 1px solid var(--border); }
.steps .n { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--primary); flex: none; width: 34px; }
.steps .t b { display: block; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.steps .t span { color: var(--muted); font-size: .95rem; }

/* ---------- Factory advantage ---------- */
.advantage { background: linear-gradient(180deg, var(--bg), var(--surface)); }
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
.adv-card { border: 1px solid var(--border); border-radius: 4px; padding: 36px 34px; background: var(--surface); }
.adv-card.ours { border-color: rgba(217,174,58,.45); background: linear-gradient(180deg, rgba(217,174,58,.06), var(--surface)); }
.adv-card .lbl { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.adv-card.ours .lbl { color: var(--primary); }
.adv-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.adv-flow .node { font-size: 13px; letter-spacing: .04em; color: var(--muted); padding: 9px 14px; border: 1px solid var(--border); border-radius: 3px; }
.adv-card.ours .adv-flow .node.you,
.adv-card.ours .adv-flow .node.us { color: var(--text); border-color: rgba(217,174,58,.5); }
.adv-flow .node.strike { text-decoration: line-through; opacity: .5; }
.adv-flow .sep { color: var(--primary); font-size: 13px; }
.adv-card .kicker { margin-top: 22px; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--text); }
.adv-card.ours .kicker { color: var(--secondary); }

/* ---------- About (light) ---------- */
.about__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 4px; filter: grayscale(100%) contrast(1.02); }
.about__media .tag {
  position: absolute; bottom: 20px; left: 20px; background: var(--bg); color: var(--text);
  padding: 14px 20px; border-radius: 3px; border: 1px solid var(--border);
}
.about__media .tag b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--primary); line-height: 1; }
.about__media .tag span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.about__copy h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 16px 0 18px; }
.about__copy p { color: var(--muted-dark); margin-bottom: 16px; }
.about__copy .names { margin-top: 26px; display: grid; gap: 14px; }
.about__copy .names .row { display: flex; gap: 14px; align-items: flex-start; padding-top: 16px; border-top: 1px solid var(--border-light); }
.about__copy .names .row b { font-weight: 700; color: var(--text-dark); }
.about__copy .names .row .lab { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary-deep); flex: none; width: 96px; padding-top: 3px; }

/* ---------- Visit / Contact ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.visit__info { display: flex; flex-direction: column; }
.info-row { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.info-row:first-of-type { border-top: 1px solid var(--border); }
.info-row .ic { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.info-row .ic svg { width: 18px; height: 18px; stroke: var(--primary); }
.info-row .c .lab { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-row .c .val { color: var(--text); font-size: 1.02rem; }
.info-row .c .val a:hover { color: var(--primary); }
.info-row .c .sub { color: var(--muted-dark); font-size: 13px; margin-top: 2px; }

.map-ph {
  margin-top: 26px; border: 1px dashed rgba(217,174,58,.4); border-radius: 4px;
  background:
    repeating-linear-gradient(45deg, rgba(217,174,58,.025) 0 10px, transparent 10px 20px),
    var(--surface);
  min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 24px;
}
.map-ph .pin { width: 38px; height: 38px; stroke: var(--primary); fill: none; }
.map-ph b { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text); }
.map-ph span { font-size: 12px; color: var(--muted); letter-spacing: .04em; }

.enq-card { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 38px 36px; }
.enq-card h3 { font-size: 2rem; margin-bottom: 6px; }
.enq-card .sub { color: var(--muted); font-size: .96rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 3px;
  color: var(--text); font-family: 'Manrope'; font-size: 15px; padding: 13px 15px; transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dark); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); background: var(--surface-2); outline: none; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23B7AE9C' stroke-width='1.3' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enq-card .form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.enq-card .form-actions .btn { flex: 1; min-width: 160px; }
.enq-note { font-size: 11.5px; color: var(--muted-dark); margin-top: 16px; line-height: 1.5; }

/* ---------- Footer ---------- */
.footer { background: #080705; border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { height: 128px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.footer__brand .socials { display: flex; gap: 12px; margin-top: 22px; }
.footer__brand .socials a { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; }
.footer__brand .socials a:hover { border-color: var(--primary); background: rgba(217,174,58,.08); }
.footer__brand .socials svg { width: 17px; height: 17px; fill: var(--muted); transition: fill .3s; }
.footer__brand .socials a:hover svg { fill: var(--primary); }
.footer__col h5 { font-family: 'Manrope'; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color .25s; }
.footer__col a:hover { color: var(--primary); }
.footer__shop { border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.footer__shop .lab { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.footer__shop a { display: flex; align-items: center; justify-content: space-between; color: var(--text); font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.footer__shop a:last-child { border-bottom: none; }
.footer__shop a svg { width: 14px; height: 14px; stroke: var(--muted); }
.footer__shop a:hover { color: var(--primary); }
.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0 36px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { color: var(--muted-dark); font-size: 12px; }
.footer__bottom .legal { display: flex; gap: 22px; }
.footer__bottom .legal a { color: var(--muted-dark); font-size: 12px; }
.footer__bottom .legal a:hover { color: var(--muted); }

/* ---------- Mobile action bar + FAB ---------- */
.actionbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(10,9,6,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 11px 0; min-height: 60px; border-left: 1px solid var(--border); }
.actionbar a:first-child { border-left: none; }
.actionbar a svg { width: 21px; height: 21px; }
.actionbar a span { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.actionbar a.wa svg { fill: #25D366; stroke: none; }
.actionbar a.call svg { stroke: var(--primary); }
.actionbar a.visit svg { stroke: var(--secondary); }

.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 65;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px -8px rgba(37,211,102,.6); transition: transform .3s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav__links { gap: 24px; }
  .gem__layout { gap: 40px; }
  .custom__grid { gap: 38px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand, .footer__shop { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn.always { display: inline-flex; }

  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { order: -1; height: 56vw; max-height: 440px; min-height: 300px; }
  .hero__media img { position: absolute; }
  .hero__media::after { background: linear-gradient(0deg, var(--bg) 2%, transparent 55%); }
  .hero__copy { padding: 38px 0 56px; text-align: left; }

  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item:nth-child(odd) { border-left: none; }
  .trust__item:nth-child(even) { border-left: 1px solid var(--border); }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--border); }

  .gem__layout { grid-template-columns: 1fr; }
  .custom__grid, .about__grid, .visit__grid, .adv-grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .custom__media { order: -1; max-width: 460px; }
}

@media (max-width: 760px) {
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .coll-card:nth-child(1), .coll-card:nth-child(2) { grid-column: span 2; min-height: 300px; }
  .coll-card:nth-child(3), .coll-card:nth-child(4), .coll-card:nth-child(5) { grid-column: span 1; min-height: 250px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand, .footer__shop { grid-column: span 1; }
  .actionbar { display: grid; }
  .fab { display: none; }
  body { padding-bottom: 60px; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .section-head { margin-bottom: 36px; }
  .gem__tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .enq-card { padding: 28px 22px; }
  .announce .wrap { gap: 8px 18px; font-size: 10px; }
  .announce span:nth-child(n+3) { display: none; }
  .hero__actions .btn { flex: 1; }
  .custom__media { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  body { font-size: 16px; }
  .feat-grid { gap: 10px; }
  .nav__brand .wordmark { display: none; }
}
