/* ============================================================
   THANGALS JEWELLERY — Meena Bazaar, Bur Dubai
   Palette: forest green + gold on warm cream, maroon support.
   Type: Cormorant Garamond (display) / Inter (UI) / IBM Plex Mono (labels)
   ============================================================ */

:root {
  --cream:      #FBF7F0;
  --cream-2:    #F3ECDB;
  --cream-3:    #ECE2CB;
  --ink:        #20160F;
  --ink-soft:   #3A2C20;
  --muted:      #746457;
  --gold:       #C9A227;
  --gold-deep:  #A07E13;
  --gold-soft:  #E7CF84;
  --maroon:     #7A2533;
  --green:      #1F4D3A;
  --green-deep: #133527;
  --green-ink:  #0E281D;
  --border:     #E5D7BE;
  --border-2:   #D8C7A4;
  --focus:      #C9A227;

  --shadow-sm: 0 1px 2px rgba(32,22,15,.06), 0 2px 8px rgba(32,22,15,.05);
  --shadow-md: 0 4px 14px rgba(32,22,15,.10), 0 18px 40px rgba(32,22,15,.10);
  --shadow-lg: 0 12px 30px rgba(19,53,39,.18), 0 30px 70px rgba(19,53,39,.16);

  --maxw: 1240px;
  --gutter: clamp(18px, 5vw, 64px);
  --radius: 4px;

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-ui: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--ff-ui);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }

.display {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

.section { padding-block: clamp(56px, 9vw, 124px); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 56px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(33px, 6vw, 56px);
  line-height: 1.02;
}
.section-head .lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(15px, 2.1vw, 17px);
  max-width: 52ch;
}

/* ---------- facet motif ---------- */
.facet-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='34' viewBox='0 0 60 34'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='1' stroke-opacity='0.16'%3E%3Cpath d='M30 1 L59 17 L30 33 L1 17 Z'/%3E%3Cpath d='M0 17 L-29 1 M0 17 L-29 33 M60 17 L89 1 M60 17 L89 33'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 34px;
}
.facet-scale {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='38' viewBox='0 0 44 38'%3E%3Cg fill='none' stroke='%23C9A227' stroke-width='1' stroke-opacity='0.20'%3E%3Cpath d='M22 0 C12 8 12 16 22 22 C32 16 32 8 22 0 Z'/%3E%3Cpath d='M0 19 C-10 27 -10 35 0 41 M44 19 C34 27 34 35 44 41'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 44px 38px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251,247,240,.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(32,22,15,.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-chip {
  width: 46px; height: 46px;
  border-radius: 7px;
  background: var(--cream);
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.brand-chip img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { line-height: 1; }
.brand-name .bn1 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink);
  display: block;
}
.brand-name .bn2 {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}
.site-header.scrolled .brand-name .bn1 { color: var(--ink); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 30px; }
.nav-desktop a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  min-height: 46px;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(19,53,39,.22); }
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 8px 24px rgba(19,53,39,.30); }
.btn-gold { background: var(--gold); color: var(--green-ink); box-shadow: 0 6px 18px rgba(201,162,39,.28); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,162,39,.07); }
.btn-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.30); }
.btn-light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); }
.btn-block { width: 100%; }

.menu-toggle {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  background: rgba(251,247,240,.7);
  color: var(--ink);
}
.menu-toggle svg { width: 22px; height: 22px; }

/* mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.5,0,.2,1);
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 36px;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.mobile-menu .mm-top .brand-name .bn1 { color: #fff; }
.mobile-menu .mm-top .brand-name .bn2 { color: var(--gold-soft); }
.mm-close {
  width: 46px; height: 46px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent; color: #fff; display: grid; place-items: center;
}
.mm-close svg { width: 22px; height: 22px; }
.mobile-menu nav { margin-top: 28px; flex: 1; }
.mobile-menu nav ul { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: baseline; gap: 14px;
}
.mobile-menu nav a .idx { font-family: var(--ff-mono); font-size: 12px; color: var(--gold-soft); letter-spacing: .1em; }
.mobile-menu .mm-foot { display: grid; gap: 12px; margin-top: 24px; }
.mobile-menu .mm-foot .mm-line { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.7); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 104px;
  padding-bottom: clamp(40px, 7vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201,162,39,.10), transparent 55%),
    var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='34' viewBox='0 0 60 34'%3E%3Cpath d='M30 1 L59 17 L30 33 L1 17 Z' fill='none' stroke='%23C9A227' stroke-width='1' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-size: 60px 34px;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 60%);
          mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero-loc {
  font-family: var(--ff-mono);
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500;
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 20px;
}
.hero-loc .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 11vw, 92px);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero .sub {
  margin-top: 22px;
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.rating-chip { display: inline-flex; align-items: center; gap: 11px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.rating-chip .rc-txt { font-size: 13px; color: var(--muted); line-height: 1.2; }
.rating-chip .rc-txt b { color: var(--ink); font-size: 14px; }
.meta-pill {
  font-family: var(--ff-mono);
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.meta-pill svg { width: 15px; height: 15px; color: var(--green); }

/* hero media */
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.hero-media .hm {
  position: relative; overflow: hidden; border-radius: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--cream-2);
}
.hero-media .hm img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .hm-1 { grid-column: 1 / 4; aspect-ratio: 3/4; }
.hero-media .hm-2 { grid-column: 4 / 6; aspect-ratio: 3/4; align-self: end; }
.hero-media .hm-3 { grid-column: 1 / 3; aspect-ratio: 4/3; }
.hero-media .hm-4 { grid-column: 3 / 6; aspect-ratio: 16/10; }
.hero-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(14,40,29,.82);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.hero-badge {
  position: absolute;
  z-index: 3;
  top: -14px; right: -6px;
  width: clamp(86px, 12vw, 116px); height: clamp(86px, 12vw, 116px);
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-soft);
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}
.hero-badge span { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.hero-badge b { font-family: var(--ff-display); font-size: 26px; color: #fff; display: block; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='38' viewBox='0 0 44 38'%3E%3Cpath d='M22 2 C12 10 12 18 22 24 C32 18 32 10 22 2 Z' fill='none' stroke='%23E7CF84' stroke-width='1' stroke-opacity='0.12'/%3E%3C/svg%3E");
  background-size: 44px 38px; opacity: .8;
}
.trust-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(231,207,132,.16);
  border-block: 1px solid rgba(231,207,132,.16);
}
.trust-cell {
  background: var(--green-deep);
  padding: clamp(22px, 4vw, 34px) clamp(16px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 6px;
}
.trust-cell .tc-k {
  font-family: var(--ff-display);
  font-size: clamp(26px, 5vw, 38px);
  color: var(--gold-soft);
  display: flex; align-items: center; gap: 8px;
  line-height: 1;
}
.trust-cell .tc-k svg { width: 22px; height: 22px; color: var(--gold); }
.trust-cell .tc-l {
  font-family: var(--ff-mono);
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.66);
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--cream); }
.coll-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.coll-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--cream-2);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s ease, transform .35s ease;
}
.coll-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
.coll-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,40,29,.82) 0%, rgba(14,40,29,.18) 45%, transparent 72%);
}
.coll-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.coll-card:hover img { transform: scale(1.06); }
.coll-cap {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 22px;
  color: #fff;
  width: 100%;
}
.coll-cap .cc-idx {
  font-family: var(--ff-mono);
  font-size: 10.5px; letter-spacing: .2em; color: var(--gold-soft);
  display: block; margin-bottom: 7px;
}
.coll-cap h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.4vw, 31px);
  font-weight: 600;
  line-height: 1;
}
.coll-cap p {
  font-size: 13px; color: rgba(255,255,255,.82);
  margin-top: 7px; max-width: 34ch;
}
.coll-cap .cc-arrow {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .3s ease, transform .3s ease;
}
.coll-card:hover .cc-arrow { opacity: 1; transform: translateX(0); }
.coll-cap .cc-arrow svg { width: 14px; height: 14px; }
.coll-note {
  margin-top: 22px;
  font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 9px;
}
.coll-note svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; }

/* ============================================================
   SIGNATURE BAND (showroom)
   ============================================================ */
.signature {
  position: relative;
  background: var(--green-deep);
  color: #fff;
  overflow: hidden;
}
.sig-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(26px,5vw,56px);
  align-items: center;
}
.sig-media {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(231,207,132,.25);
}
.sig-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sig-copy .eyebrow { color: var(--gold-soft); }
.sig-copy .eyebrow::before { background: var(--gold-soft); }
.sig-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 5.4vw, 50px);
  margin-top: 16px; line-height: 1.04;
}
.sig-copy h2 em { font-style: italic; color: var(--gold-soft); }
.sig-copy p { margin-top: 18px; color: rgba(255,255,255,.82); max-width: 50ch; font-size: 16px; }
.sig-points { margin-top: 26px; display: grid; gap: 2px; }
.sig-point {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(231,207,132,.18);
}
.sig-point:last-child { border-bottom: 1px solid rgba(231,207,132,.18); }
.sig-point .sp-ic {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold-soft);
  display: grid; place-items: center;
}
.sig-point .sp-ic svg { width: 17px; height: 17px; }
.sig-point .sp-t { font-family: var(--ff-ui); font-weight: 600; font-size: 15px; color: #fff; }
.sig-point .sp-d { font-size: 13.5px; color: rgba(255,255,255,.66); margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 5px;
  border: 1px solid var(--border); background: var(--cream-2);
  cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(14,40,29,0); transition: background .3s ease;
}
.gal-item:hover::after { background: rgba(14,40,29,.18); }
.gal-item:hover img { transform: scale(1.05); }
.gal-item .gi-zoom {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(251,247,240,.92); color: var(--green);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s;
}
.gal-item .gi-zoom svg { width: 16px; height: 16px; }
.gal-item:hover .gi-zoom { opacity: 1; transform: scale(1); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(14,40,29,.94);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1000px); max-height: 86vh;
  border-radius: 6px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(231,207,132,.3);
}
.lb-cap {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8); text-align: center; width: 90%;
}
.lb-btn {
  position: absolute; top: 18px; right: 18px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.3);
  color: #fff; display: grid; place-items: center;
}
.lb-btn svg { width: 24px; height: 24px; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.3);
  color: #fff; display: grid; place-items: center;
}
.lb-nav svg { width: 24px; height: 24px; }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
@media (max-width: 600px){ .lb-nav { top: auto; bottom: 18px; transform: none; } .lb-prev { left: 30%; } .lb-next { right: 30%; } }

/* ============================================================
   CARE / SERVICES
   ============================================================ */
.care { background: var(--cream-2); position: relative; }
.care-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.care-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  position: relative; overflow: hidden;
}
.care-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.care-card .care-ic {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green); color: var(--gold-soft);
  display: grid; place-items: center; margin-bottom: 18px;
}
.care-card .care-ic svg { width: 24px; height: 24px; }
.care-card h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 600; }
.care-card p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.care-card .care-no {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--ff-mono); font-size: 11px; color: var(--border-2); letter-spacing: .1em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(26px, 5vw, 54px);
  align-items: center;
}
.about-copy .eyebrow { margin-bottom: 18px; }
.about-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 5.4vw, 50px); line-height: 1.04;
}
.about-copy h2 em { font-style: italic; color: var(--gold-deep); }
.about-copy p { margin-top: 18px; color: var(--ink-soft); font-size: 16px; max-width: 56ch; }
.about-copy p + p { margin-top: 14px; color: var(--muted); }
.about-countries {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px;
}
.about-countries .ac {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--border-2); color: var(--ink-soft);
  padding: 7px 13px; border-radius: 999px; background: var(--cream-2);
}
.about-media {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-media .am { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.about-media .am img { width: 100%; height: 100%; object-fit: cover; }
.about-media .am-1 { aspect-ratio: 3/4; }
.about-media .am-2 { aspect-ratio: 3/4; margin-top: 32px; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--green-deep); color: #fff; position: relative; overflow: hidden; }
.visit::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='34' viewBox='0 0 60 34'%3E%3Cpath d='M30 1 L59 17 L30 33 L1 17 Z' fill='none' stroke='%23E7CF84' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E");
  background-size: 60px 34px; pointer-events: none;
}
.visit-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px);
}
.visit-info .eyebrow { color: var(--gold-soft); }
.visit-info .eyebrow::before { background: var(--gold-soft); }
.visit-info h2 { font-family: var(--ff-display); font-size: clamp(32px, 6vw, 52px); margin-top: 16px; line-height: 1.02; }
.visit-info h2 em { font-style: italic; color: var(--gold-soft); }
.visit-rows { margin-top: 28px; display: grid; gap: 2px; }
.visit-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid rgba(231,207,132,.18);
}
.visit-row .vr-ic { width: 38px; height: 38px; flex: none; border-radius: 9px; border: 1px solid var(--gold); color: var(--gold-soft); display: grid; place-items: center; }
.visit-row .vr-ic svg { width: 18px; height: 18px; }
.visit-row .vr-k { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.visit-row .vr-v { font-size: 16px; color: #fff; margin-top: 3px; line-height: 1.4; }
.visit-row a.vr-v:hover { color: var(--gold-soft); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.visit-social { display: flex; gap: 10px; margin-top: 26px; }
.visit-social a {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s;
}
.visit-social a:hover { background: var(--gold); color: var(--green-ink); border-color: var(--gold); }
.visit-social a svg { width: 19px; height: 19px; }
.map-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(231,207,132,.25);
  border-radius: 10px; overflow: hidden;
}
.map-ph {
  position: relative; aspect-ratio: 16/11; min-height: 220px;
  display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(231,207,132,.05) 0 14px, transparent 14px 28px),
    rgba(14,40,29,.5);
}
.map-ph .mp-in { display: grid; gap: 8px; justify-items: center; padding: 20px; }
.map-ph .mp-pin { width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: var(--green-ink); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.map-ph .mp-pin svg { width: 24px; height: 24px; }
.map-ph .mp-l1 { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.map-ph .mp-l2 { font-size: 14px; color: rgba(255,255,255,.78); max-width: 30ch; }
.map-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-top: 1px solid rgba(231,207,132,.2);
}
.map-foot .mf-addr { font-size: 12.5px; color: rgba(255,255,255,.7); }

/* form */
.enquiry {
  margin-top: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(231,207,132,.25);
  border-radius: 12px;
  padding: clamp(20px, 4vw, 30px);
}
.enquiry h3 { font-family: var(--ff-display); font-size: 27px; color: #fff; }
.enquiry .eq-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.eq-form { margin-top: 20px; display: grid; gap: 14px; }
.eq-row { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.field input, .field select, .field textarea {
  font-family: var(--ff-ui); font-size: 15px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(231,207,132,.28);
  border-radius: 8px; color: #fff; padding: 13px 14px;
  width: 100%; transition: border-color .2s, background .2s;
  min-height: 48px;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select { appearance: none; -webkit-appearance: none; 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='%23E7CF84' 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: 38px; }
.field select option { color: #20160F; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.10); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #E78B7A; }
.field .err { font-size: 11.5px; color: #F0A99B; display: none; }
.field.invalid .err { display: block; }
.eq-note { font-size: 11.5px; color: rgba(255,255,255,.5); display: flex; gap: 8px; align-items: flex-start; }
.eq-note svg { width: 14px; height: 14px; flex: none; margin-top: 2px; color: var(--gold-soft); }
.eq-success {
  display: none;
  text-align: center; padding: 24px 10px;
}
.eq-success.show { display: block; }
.eq-success .es-ic { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--gold); color: var(--green-ink); display: grid; place-items: center; }
.eq-success .es-ic svg { width: 28px; height: 28px; }
.eq-success h4 { font-family: var(--ff-display); font-size: 26px; color: #fff; }
.eq-success p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-ink); color: rgba(255,255,255,.7); padding-top: clamp(46px, 7vw, 76px); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(231,207,132,.16); }
.footer-brand .brand { gap: 14px; }
.footer-brand .brand-chip { width: 54px; height: 54px; }
.footer-brand .brand-name .bn1 { color: #fff; }
.footer-brand .brand-name .bn2 { color: var(--gold-soft); }
.footer-brand p { margin-top: 18px; font-size: 14px; max-width: 40ch; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; flex-direction: column; gap: 14px; padding-block: 24px; }
.footer-bottom .fb-legal { font-size: 12px; color: rgba(255,255,255,.46); line-height: 1.6; max-width: 70ch; }
.footer-bottom .fb-row { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between; }
.footer-bottom .fb-copy { font-size: 12.5px; color: rgba(255,255,255,.6); }
.footer-bottom .fb-made { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(255,255,255,.4); }

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(251,247,240,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(32,22,15,.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px 11px;
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  min-height: 56px; justify-content: center;
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.ab-primary { color: var(--green); }
.action-bar a + a { border-left: 1px solid var(--border); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 680px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .coll-card.feature { grid-column: span 2; aspect-ratio: 16/9; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .eq-row.two { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .action-bar { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero { padding-top: 130px; padding-bottom: 90px; }
  .trust-inner { grid-template-columns: repeat(4, 1fr); }
  .coll-grid { grid-template-columns: repeat(12, 1fr); }
  .coll-card { aspect-ratio: auto; }
  .coll-card.c-tall { grid-column: span 4; grid-row: span 2; }
  .coll-card.c-reg { grid-column: span 4; min-height: 300px; }
  .coll-card.c-wide { grid-column: span 8; min-height: 300px; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-grid.rev .sig-media { order: 2; }
  .gal-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .care-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
  body { padding-bottom: 0; }
}

@media (min-width: 1180px) {
  .care-grid { grid-template-columns: repeat(5, 1fr); }
}

/* give body bottom padding on mobile so action bar doesn't cover footer */
@media (max-width: 959px) {
  body { padding-bottom: 64px; }
}

/* 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}
