/* ============================================================
   Hadeed Jewellery Dubai — design system
   Palette + type per research/brand-system.md
   ============================================================ */

:root {
  /* Brand palette (brand-system.md) */
  --gold:        #C9A227;
  --gold-soft:   #D8B46C;
  --ruby:        #7A2533;
  --emerald:     #1F4D3A;

  --bg:          #FBF7F0;   /* surface ivory */
  --panel:       #FFFFFF;
  --panel-warm:  #F4ECDD;   /* alternate soft surface */
  --photo-accent:#EAD8B4;

  --text:        #241A14;
  --muted:       #746457;
  --border:      #E5D7BE;
  --hair:        #EBDFC8;

  --dark:        #1B1714;   /* warm near-black for jewel-box bands */
  --dark-2:      #241E19;
  --on-dark:     #F3E9D6;
  --on-dark-mut: #B6A488;

  --focus:       #C9A227;

  /* accent emphasis — overridable by tweaks */
  --accent:      var(--gold);

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(36,26,20,.05), 0 2px 8px rgba(36,26,20,.04);
  --shadow:    0 10px 30px -12px rgba(36,26,20,.18);
  --shadow-lg: 0 28px 70px -24px rgba(36,26,20,.32);

  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Inter", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -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;
  border-radius: 3px;
}

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; margin: 0; line-height: 1.04; letter-spacing: -.01em; }

.display {
  font-size: clamp(46px, 8vw, 104px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.h2 { font-size: clamp(32px, 4.6vw, 58px); }
.h3 { font-size: clamp(22px, 2.6vw, 30px); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .7;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.center-rule { justify-content: center; }
.eyebrow.center-rule::after {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7;
}

.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
}

.serif-num { font-variant-numeric: tabular-nums; letter-spacing: 0; }

/* ---------- diamond divider glyph ---------- */
.diam {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--ruby); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #62202c; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--accent); color: #221a08; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(201,162,39,.6); filter: brightness(1.04); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-dark-ghost { background: transparent; border-color: rgba(243,233,214,.28); color: var(--on-dark); }
.btn-dark-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ============================================================
   Header / nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,240,.82);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-color: var(--hair); box-shadow: 0 1px 0 rgba(36,26,20,.03), var(--shadow-sm); }
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 14px var(--gut);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 50px; width: auto; }
.brand .bt { display: flex; flex-direction: column; line-height: 1; }
.brand .bt b { font-family: var(--ff-display); font-weight: 700; font-size: 21px; letter-spacing: .01em; color: var(--ruby); }
.brand .bt span { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: var(--r); padding: 9px; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* mobile menu sheet */
.m-menu {
  position: fixed; inset: 0; z-index: 70; display: none;
  background: var(--bg);
  padding: 22px var(--gut);
  flex-direction: column;
}
.m-menu.open { display: flex; }
.m-menu-top { display: flex; align-items: center; justify-content: space-between; }
.m-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.m-menu nav a {
  font-family: var(--ff-display); font-size: 34px; font-weight: 600;
  padding: 12px 0; border-bottom: 1px solid var(--hair); color: var(--text);
}
.m-menu .m-actions { margin-top: auto; display: grid; gap: 12px; padding-block: 24px; }
.m-close { background: none; border: 1px solid var(--border); border-radius: var(--r); padding: 9px; }
.m-close svg { width: 22px; height: 22px; display: block; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-top: 22px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--hair); }
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-item b { font-family: var(--ff-display); font-size: 30px; font-weight: 700; line-height: 1; }
.trust-item .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.trust-item span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.3;
  background: var(--panel-warm);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  border-radius: inherit; pointer-events: none;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 13px; max-width: 240px;
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--emerald); display: grid; place-items: center; flex: 0 0 auto; }
.hero-badge .ic svg { width: 19px; height: 19px; color: var(--photo-accent); }
.hero-badge div { line-height: 1.3; }
.hero-badge b { font-size: 13.5px; display: block; }
.hero-badge span { font-size: 12px; color: var(--muted); }

/* gold filigree corner accents for hero */
.hero::before {
  content: ""; position: absolute; top: 0; right: 6%;
  width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent);
  opacity: .5;
}

/* ============================================================
   Marquee strip
   ============================================================ */
.strip {
  background: var(--dark); color: var(--on-dark-mut);
  border-block: 1px solid rgba(201,162,39,.18);
  overflow: hidden;
}
.strip-track {
  display: flex; gap: 56px; white-space: nowrap;
  padding-block: 16px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item { display: inline-flex; align-items: center; gap: 18px; font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--on-dark); }
.strip-item .diam { background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============================================================
   Section heading block
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { margin-top: 16px; }

/* ============================================================
   Collections
   ============================================================ */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.coll-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--dark); color: var(--on-dark);
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.coll-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .8s var(--ease);
}
.coll-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,16,13,.9) 8%, rgba(20,16,13,.25) 55%, rgba(20,16,13,.08) 100%);
}
.coll-card:hover img { transform: scale(1.06); }
.coll-card .cc-body { padding: 26px 24px; }
.coll-card .cc-kicker { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.coll-card h3 { margin-top: 8px; color: #fff; font-size: 27px; }
.coll-card p { margin: 9px 0 0; font-size: 14px; color: rgba(243,233,214,.8); line-height: 1.5; }
.coll-card .cc-link { margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.coll-card .cc-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.coll-card:hover .cc-link svg { transform: translateX(4px); }
.coll-card.tall { grid-row: span 2; min-height: 100%; }

/* ============================================================
   Feature band (dark, full bleed)
   ============================================================ */
.feature { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.feature-bg { position: absolute; inset: 0; }
.feature-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.feature-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,16,13,.96) 30%, rgba(20,16,13,.5) 100%); }
.feature .wrap { position: relative; }
.feature .inner { max-width: 620px; padding-block: clamp(80px, 12vw, 150px); }
.feature h2 { color: #fff; margin-top: 18px; }
.feature p { color: rgba(243,233,214,.84); margin-top: 20px; font-size: 18px; }
.feature .eyebrow { color: var(--gold); }
.feature-stats { display: flex; gap: 44px; margin-top: 40px; flex-wrap: wrap; }
.feature-stats .fs b { font-family: var(--ff-display); font-size: 44px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.feature-stats .fs span { font-size: 13px; color: var(--on-dark-mut); letter-spacing: .04em; }

/* ============================================================
   Services & Care
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 52px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--panel); }
.svc {
  padding: 38px clamp(28px, 3.4vw, 48px);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease);
}
.svc:hover { background: var(--panel-warm); }
.svc-grid .svc:nth-child(2n) { border-right: none; }
.svc-grid .svc:nth-last-child(-n+2) { border-bottom: none; }
.svc .ic { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--accent); }
.svc .ic svg { width: 23px; height: 23px; }
.svc h3 { font-size: 24px; margin-top: 22px; }
.svc p { margin: 10px 0 0; color: var(--muted); font-size: 15.5px; }
.svc-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 10px; }

/* ============================================================
   Gallery
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; margin-top: 48px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; background: var(--panel-warm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(20,16,13,0); transition: background .3s var(--ease);
}
.gal-item:hover::after { background: rgba(20,16,13,.18); }
.gal-item .zoom {
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px;
  background: rgba(251,247,240,.92); border-radius: 50%; display: grid; place-items: center;
  opacity: 0; transform: translateY(6px); transition: all .3s var(--ease);
}
.gal-item .zoom svg { width: 17px; height: 17px; color: var(--text); }
.gal-item:hover .zoom { opacity: 1; transform: translateY(0); }
.gal-item.w2 { grid-column: span 2; }
.gal-item.h2 { grid-row: span 2; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 90; background: rgba(15,12,10,.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 86vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 50%; width: 50px; height: 50px; display: grid; place-items: center; transition: background .2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-nav.prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .04em; }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media .stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-media img { border-radius: var(--r-lg); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.about-media .tall2 { grid-row: span 2; }
.about-copy h2 { margin-top: 16px; }
.about-copy p { color: var(--muted); margin-top: 18px; }
.about-feats { margin-top: 28px; display: grid; gap: 14px; }
.about-feats li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.about-feats .diam { margin-top: 9px; }
.about-feats b { font-weight: 600; color: var(--text); }
.about-feats span { color: var(--muted); }
.about-copy ul { padding: 0; margin: 0; }

/* ============================================================
   Visit / Contact
   ============================================================ */
.visit { background: var(--panel-warm); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); margin-top: 48px; align-items: start; }

.info-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--hair); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; color: var(--accent); flex: 0 0 auto; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.info-row .val { font-size: 16px; margin-top: 3px; color: var(--text); }
.info-row .val.num { font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.info-row a.val:hover { color: var(--accent); }

.map-ph {
  margin-top: 22px; border-radius: var(--r); overflow: hidden; position: relative;
  aspect-ratio: 16/9; border: 1px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,.05) 0 12px, transparent 12px 24px),
    var(--panel-warm);
  display: grid; place-items: center;
}
.map-ph .ph-inner { text-align: center; color: var(--muted); }
.map-ph .ph-inner svg { width: 34px; height: 34px; color: var(--accent); margin-bottom: 10px; }
.map-ph .ph-inner b { display: block; font-family: var(--ff-display); font-size: 22px; color: var(--text); }
.map-ph .ph-inner code { font-size: 12px; letter-spacing: .04em; }
.map-ph .ph-dir { margin-top: 14px; }

/* form */
.form-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 28px; }
.form-card > p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--text); margin-bottom: 7px; }
.field label .req { color: var(--ruby); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23746457' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.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,.16); }
.field.err input, .field.err select, .field.err textarea { border-color: #b3261e; }
.field .msg { font-size: 12px; color: #b3261e; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-actions .note { font-size: 12.5px; color: var(--muted); }
.form-ok {
  display: none; margin-top: 20px; padding: 16px 18px; border-radius: var(--r);
  background: rgba(31,77,58,.08); border: 1px solid rgba(31,77,58,.25); color: var(--emerald);
  font-size: 14.5px; align-items: center; gap: 12px;
}
.form-ok.show { display: flex; }
.form-ok svg { width: 20px; height: 20px; flex: 0 0 auto; }

.radio-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pills label {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 13.5px; font-weight: 500; cursor: pointer; margin: 0; transition: all .2s;
}
.radio-pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pills label:has(input:checked) { border-color: var(--accent); background: rgba(201,162,39,.1); color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--dark); color: var(--on-dark-mut); padding-block: clamp(56px, 7vw, 90px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .fbrand b { font-family: var(--ff-display); font-size: 30px; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.footer .fbrand .ar { font-size: 22px; color: var(--on-dark); margin-top: 6px; }
.footer .fbrand p { font-size: 14px; margin-top: 18px; max-width: 34ch; line-height: 1.6; }
.footer h4 { font-family: var(--ff-body); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark); margin: 0 0 18px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: 14.5px; color: var(--on-dark-mut); }
.footer ul a:hover { color: var(--gold); }
.footer .num { font-variant-numeric: tabular-nums; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid rgba(243,233,214,.12);
  padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(182,164,136,.7);
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   Mobile action bar
   ============================================================ */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: none;
  background: rgba(251,247,240,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr); gap: 9px;
}
.mbar a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 4px; border-radius: var(--r); font-size: 11.5px; font-weight: 600; }
.mbar a svg { width: 21px; height: 21px; }
.mbar a.call { color: var(--emerald); }
.mbar a.enq { color: #fff; background: var(--ruby); }
.mbar a.dir { color: var(--text); }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-badge { left: 12px; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .coll-card.tall { grid-row: span 1; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid .svc { border-right: none; }
  .svc-grid .svc:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .mbar { display: grid; }
  body { padding-bottom: 78px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .coll-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gal-item.w2 { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-stats { gap: 28px; }
  .hero-trust { gap: 20px; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
