/* ============================================================
   KYRA — Gold & Diamond Jewellery, Dubai
   Design system + components
   Palette keyed to the brand logo: ivory/champagne canvas,
   ink wordmark text, antique + bright gold accents, a single
   disciplined blush reserved for the "Pretty in Pink" line.
   ============================================================ */

:root {
  /* Core (from CLAUDE-DESIGN tokens) */
  --bg:        #FBF8F2;  /* ivory / champagne canvas */
  --surface:   #FFFFFF;  /* cards / product surfaces */
  --surface-2: #F4EFE5;  /* warm secondary surface */
  --text:      #1B1916;  /* deep warm charcoal ink */
  --muted:     #7A7066;  /* warm grey-taupe */
  --primary:   #1B1916;  /* ink */
  --secondary: #A98231;  /* deep antique gold */
  --accent:    #CDA537;  /* bright yellow gold */
  --gold-soft: #E7D29A;  /* pale gold tint */
  --blush:     #E9C4CB;  /* PIP line ONLY */
  --blush-bg:  #FBEEF1;  /* PIP soft ground */
  --blush-ink: #8E5663;  /* PIP readable text */
  --border:    #E8E0D2;  /* warm hairline */
  --border-2:  #DED4C2;
  --focus:     #A98231;  /* gold focus ring */
  --ink-soft:  #514c44;

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

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(27,25,22,.04), 0 2px 8px rgba(27,25,22,.04);
  --shadow-md: 0 6px 24px rgba(27,25,22,.08), 0 2px 6px rgba(27,25,22,.05);
  --shadow-lg: 0 24px 70px rgba(27,25,22,.16), 0 6px 18px rgba(27,25,22,.08);

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

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

/* ----------------------------- Type ----------------------------- */
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }
.serif-it { font-family: var(--serif); font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--secondary);
  display: inline-block;
  opacity: .7;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--secondary);
  display: inline-block;
  opacity: .7;
}
.eyebrow.no-rule::before { display: none; }

.text-muted { color: var(--muted); }

/* --------------------------- Layout --------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section-tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .92rem;
  letter-spacing: .02em;
  padding: 1rem 1.7rem;
  border-radius: 2px;
  min-height: 52px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--accent); color: #211d12; }
.btn-gold:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--text); background: var(--text); color: #fff; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--text); transform: translateY(-2px); }
.btn-wa { background: #1fb155; color: #fff; }
.btn-wa:hover { background: #169247; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { min-height: 44px; padding: .7rem 1.2rem; font-size: .84rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  color: var(--text);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: .85em; border-color: var(--accent); color: var(--secondary); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------- Announce bar --------------------------- */
.announce {
  background: var(--text);
  color: var(--bg);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.announce b { color: var(--gold-soft); font-weight: 600; }

/* --------------------------- Nav --------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,242,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 0 rgba(27,25,22,.02), var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 104px; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 104px; width: auto; margin: -6px 0; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: .9rem; font-weight: 500; letter-spacing: .03em; color: var(--ink-soft);
  position: relative; padding-block: 6px; transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.lang-toggle {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; color: var(--muted);
  border: 1px solid var(--border-2); border-radius: 100px; padding: 7px 13px;
  transition: border-color .25s, color .25s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--text); }
.lang-toggle b { color: var(--text); }
.nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-burger span { display:block; width:24px; height:1.6px; background: var(--text); position: relative; transition: transform .3s var(--ease), opacity .2s; }
.nav-burger span + span { margin-top: 6px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
  padding: 24px var(--gutter) 36px;
  visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer-top { display:flex; align-items:center; justify-content: space-between; height: 54px; }
.drawer-top img { height: 84px; margin: -10px 0; }
.drawer-close { width: 44px; height:44px; display:flex; align-items:center; justify-content:center; font-size: 1.8rem; line-height:1; }
.drawer-links { margin-top: 2.2rem; display: flex; flex-direction: column; }
.drawer-links a {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--text);
  padding: .55rem 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-links a span { font-family: var(--sans); font-size: .8rem; color: var(--muted); letter-spacing:.1em; }
.drawer-cta { margin-top: auto; display: grid; gap: .8rem; padding-top: 2rem; }

/* --------------------------- Hero --------------------------- */
.hero { position: relative; min-height: min(92vh, 880px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 35%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,.42) 0%, rgba(20,18,15,0) 26%, rgba(20,18,15,0) 44%, rgba(20,18,15,.66) 100%),
    linear-gradient(90deg, rgba(20,18,15,.45) 0%, rgba(20,18,15,0) 60%);
}
.hero-inner { position: relative; padding-bottom: clamp(48px, 7vw, 96px); padding-top: 120px; color: #fff; width: 100%; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-sub { color: rgba(255,255,255,.92); max-width: 44ch; margin-top: 1.4rem; font-size: clamp(1rem,1.5vw,1.22rem); text-shadow: 0 1px 14px rgba(0,0,0,.3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-trust { margin-top: 2.4rem; display:flex; flex-wrap:wrap; gap: .5rem 1.6rem; color: rgba(255,255,255,.8); font-size: .82rem; letter-spacing: .04em; }
.hero-trust span { display:inline-flex; align-items:center; gap:.5em; }
.hero-trust span::before { content:""; width:5px; height:5px; border-radius:50%; background: var(--accent); }

/* --------------------------- Trust strip --------------------------- */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  padding: 30px 22px; text-align: center;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 30px; height: 30px; color: var(--secondary); stroke-width: 1.3; }
.trust-item .ti-label { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; line-height: 1.15; }
.trust-item .ti-sub { font-size: .76rem; color: var(--muted); letter-spacing: .02em; }

/* --------------------------- Section heading --------------------------- */
.sec-head { display: flex; flex-direction: column; gap: 1rem; }
.sec-head.center { align-items: center; text-align: center; }
.sec-head .lead { margin-top: .3rem; }
.sec-head-row { display:flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* --------------------------- Collections grid --------------------------- */
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.col-card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; aspect-ratio: 3 / 3.6;
  display: flex; align-items: flex-end;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.col-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.col-card-img { position: absolute; inset: 0; }
.col-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.col-card:hover .col-card-img img { transform: scale(1.06); }
.col-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,15,0) 38%, rgba(20,18,15,.18) 58%, rgba(20,18,15,.82) 100%); }
.col-card-body { position: relative; padding: 26px 26px 28px; color: #fff; width: 100%; }
.col-card-body .cc-kicker { font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color: var(--gold-soft); font-weight:600; }
.col-card-body h3 { color: #fff; margin-top: 8px; font-size: clamp(1.5rem,2.4vw,1.95rem); }
.col-card-body p { color: rgba(255,255,255,.85); font-size: .9rem; margin-top: 6px; max-width: 32ch; }
.col-card-body .cc-go { margin-top: 16px; display:inline-flex; align-items:center; gap:.5em; font-size:.82rem; font-weight:600; letter-spacing:.05em; color:#fff; opacity:.9; }
.col-card-body .cc-go svg { width:15px; height:15px; transition: transform .3s var(--ease); }
.col-card:hover .cc-go svg { transform: translateX(4px); }
/* PIP variant */
.col-card.pip { border-color: var(--blush); }
.col-card.pip .cc-kicker { color: #ffd9e1; }

/* --------------------------- Craft / Custom band --------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: 4px; object-fit: cover; box-shadow: var(--shadow-md); }
.split-media.tall img { aspect-ratio: 4/4.6; }
.split-body .eyebrow { margin-bottom: 1.1rem; }

.steps { margin-top: 2rem; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.3rem 0; border-top: 1px solid var(--border); }
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num { font-family: var(--serif); font-size: 1.3rem; color: var(--secondary); font-weight: 500; font-style: italic; min-width: 2ch; }
.step h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: .01em; }
.step p { font-size: .92rem; color: var(--muted); margin-top: 3px; }

/* --------------------------- Featured pieces strip --------------------------- */
.pieces-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(248px, 1fr);
  gap: 1.2rem; margin-top: 2.6rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.piece {
  scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.piece:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.piece-img { aspect-ratio: 1/1; background: var(--surface); display:flex; align-items:center; justify-content:center; padding: 14px; }
.piece-img.cut { background: #fff; }
.piece-img img { width: 100%; height: 100%; object-fit: cover; }
.piece-img.cut img { object-fit: contain; }
.piece-body { padding: 16px 18px 18px; border-top: 1px solid var(--border); display:flex; flex-direction:column; gap:3px; flex:1; }
.piece-cat { font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color: var(--secondary); font-weight:600; }
.piece-body h4 { font-family: var(--serif); font-size: 1.25rem; font-weight:500; }
.piece-meta { font-size:.82rem; color: var(--muted); }
.piece-foot { margin-top: 12px; display:flex; align-items:center; justify-content:space-between; }
.piece-poa { font-size:.74rem; letter-spacing:.06em; color: var(--muted); text-transform: uppercase; }
.piece-enq { font-size:.8rem; font-weight:600; color: var(--secondary); display:inline-flex; align-items:center; gap:.4em; }
.piece-enq svg { width:14px; height:14px; }

.rail-hint { display:flex; align-items:center; gap:.5em; font-size:.78rem; color: var(--muted); margin-top: 1rem; }

/* --------------------------- Heritage band --------------------------- */
.heritage { background: var(--surface-2); }
.stat-row { display:flex; flex-wrap:wrap; gap: clamp(1.5rem,4vw,3.5rem); margin-top: 2.4rem; }
.stat { }
.stat .stat-n { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); font-weight:500; color: var(--secondary); line-height:1; }
.stat .stat-l { font-size:.84rem; color: var(--muted); margin-top:6px; max-width: 22ch; }

/* --------------------------- Piercing / clinic (blush) --------------------------- */
.piercing { background: var(--blush-bg); border-top: 1px solid var(--blush); border-bottom: 1px solid var(--blush); }
.piercing .eyebrow { color: var(--blush-ink); }
.piercing .eyebrow::before { background: var(--blush-ink); }
.piercing-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem,4vw,3.5rem); align-items:center; margin-top: 1rem; }
.earmap { background: #fff; border:1px solid var(--blush); border-radius:4px; padding: 14px; box-shadow: var(--shadow-sm); }
.earmap img { border-radius: 2px; width:100%; }
.pip-features { display:grid; gap: 1.1rem; margin-top: 1.6rem; }
.pip-feature { display:grid; grid-template-columns:auto 1fr; gap:.9rem; align-items:start; }
.pip-feature .dot { width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--blush); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pip-feature .dot svg { width:17px; height:17px; color: var(--blush-ink); stroke-width:1.6; }
.pip-feature h4 { font-family:var(--sans); font-size:.98rem; font-weight:600; }
.pip-feature p { font-size:.88rem; color: var(--muted); }
.clinic-note {
  margin-top: 1.8rem; display:flex; gap:.8rem; align-items:flex-start;
  background:#fff; border:1px solid var(--blush); border-radius:4px; padding:16px 18px; font-size:.86rem; color: var(--ink-soft);
}
.clinic-note svg { width:20px; height:20px; color: var(--blush-ink); flex-shrink:0; margin-top:2px; }
.pip-cards { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.4rem; }
.pip-card { border-radius:4px; overflow:hidden; border:1px solid var(--blush); position:relative; }
.pip-card img { width:100%; aspect-ratio: 1/1; object-fit:cover; }
.pip-card.poster img { aspect-ratio: auto; }

/* --------------------------- Visit / Contact --------------------------- */
.visit-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.visit-photo { border-radius:4px; overflow:hidden; box-shadow: var(--shadow-md); }
.visit-photo img { width:100%; height:100%; object-fit:cover; min-height: 320px; }
.visit-info { }
.info-block { padding: 1.3rem 0; border-bottom: 1px solid var(--border); display:grid; grid-template-columns: 30px 1fr; gap: 1rem; align-items:start; }
.info-block:first-of-type { border-top: 1px solid var(--border); }
.info-block svg { width:20px; height:20px; color: var(--secondary); margin-top:3px; }
.info-block h4 { font-family:var(--sans); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); font-weight:600; }
.info-block p { font-size: 1rem; margin-top: 4px; }
.info-block a.inline-link { color: var(--secondary); font-weight:600; }
.info-block a.inline-link:hover { text-decoration: underline; }
.hours-row { display:flex; justify-content:space-between; font-size:.95rem; padding:3px 0; max-width: 280px; }
.hours-row.closed { color: var(--muted); }
.visit-cta { display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }

.map-ph {
  margin-top: 2rem; border-radius:4px; border:1px dashed var(--border-2);
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 16px, var(--surface-2) 16px 32px);
  min-height: 220px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.6rem; text-align:center; padding: 24px;
}
.map-ph svg { width:30px; height:30px; color: var(--muted); }
.map-ph .mph-t { font-family: var(--mono, monospace); font-size:.8rem; letter-spacing:.1em; color: var(--ink-soft); font-weight:600; }
.map-ph .mph-s { font-size:.8rem; color: var(--muted); max-width: 40ch; }

/* --------------------------- Enquiry form --------------------------- */
.enquiry-band { background: var(--text); color: var(--bg); }
.enquiry-band h2 { color: #fff; }
.enquiry-band .lead { color: rgba(255,255,255,.7); }
.enquiry-band .eyebrow { color: var(--gold-soft); }
.enquiry-band .eyebrow::before { background: var(--gold-soft); }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display:flex; flex-direction:column; gap:.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(255,255,255,.6); font-weight:600; }
.field input, .field select, .field textarea {
  font: inherit; font-size:.95rem; color:#fff;
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.18); border-radius:3px;
  padding: .8rem .9rem; transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.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 24 24' fill='none' stroke='%23cda537' 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: 2.2rem; }
.field select option { color: #1B1916; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--accent); background: rgba(255,255,255,.1); }
.form-foot { grid-column:1/-1; display:flex; flex-wrap:wrap; align-items:center; gap:1rem; margin-top:.4rem; }
.form-note { font-size:.78rem; color: rgba(255,255,255,.5); }
.form-success { grid-column:1/-1; display:none; align-items:center; gap:.7rem; background: rgba(31,177,85,.14); border:1px solid rgba(31,177,85,.4); color:#bff0d0; padding: .9rem 1.1rem; border-radius:3px; font-size:.92rem; }
.form-success.show { display:flex; }
.form-success svg { width:20px;height:20px; flex-shrink:0; }

/* --------------------------- Footer --------------------------- */
.footer { background: var(--text); color: rgba(251,248,242,.72); padding-block: clamp(56px,7vw,84px) 0; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 132px; width: auto; margin: -22px 0 -18px -10px; filter: brightness(0) invert(1); opacity:.95; }
.footer-brand p { margin-top: 1.1rem; font-size:.9rem; color: rgba(251,248,242,.55); max-width: 32ch; }
.footer-social { display:flex; gap:.7rem; margin-top:1.4rem; }
.footer-social a { width:40px; height:40px; border:1px solid rgba(255,255,255,.16); border-radius:50%; display:flex; align-items:center; justify-content:center; transition: background .25s, border-color .25s, color .25s; color: rgba(251,248,242,.72); }
.footer-social a:hover { background:#fff; color: var(--text); border-color:#fff; }
.footer-social svg { width:17px; height:17px; }
.footer-col h5 { font-family:var(--sans); font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-soft); font-weight:600; margin-bottom:1.1rem; }
.footer-col a { display:block; font-size:.92rem; padding:.36rem 0; color: rgba(251,248,242,.7); transition: color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { margin-top: clamp(40px,5vw,64px); border-top:1px solid rgba(255,255,255,.1); padding-block: 24px 28px; display:flex; flex-wrap:wrap; gap:.6rem 1.5rem; justify-content:space-between; font-size:.78rem; color: rgba(251,248,242,.45); }
.footer-bottom a:hover { color:#fff; }

/* --------------------------- WhatsApp FAB --------------------------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1fb155; color:#fff; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; justify-content:center;
  transition: transform .3s var(--ease), background .3s;
}
.fab:hover { transform: scale(1.07); background:#169247; }
.fab svg { width: 28px; height: 28px; }
.fab::after {
  content: "Chat with us"; position:absolute; right: 70px; white-space:nowrap;
  background: var(--text); color:#fff; font-size:.8rem; font-weight:500; padding:7px 12px; border-radius:4px;
  opacity:0; transform: translateX(8px); pointer-events:none; transition: opacity .3s, transform .3s;
}
.fab:hover::after { opacity:1; transform: translateX(0); }

/* --------------------------- Mobile action bar --------------------------- */
.mobile-bar {
  display: none;
  position: fixed; left:0; right:0; bottom:0; z-index: 56;
  background: rgba(251,248,242,.96); backdrop-filter: blur(12px);
  border-top:1px solid var(--border);
  grid-template-columns: repeat(3,1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mobile-bar a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:8px 4px; border-radius:4px; font-size:.7rem; font-weight:600; letter-spacing:.02em; min-height:54px; }
.mobile-bar a svg { width:21px; height:21px; }
.mobile-bar a.mb-call { color: var(--text); }
.mobile-bar a.mb-wa { color:#1fb155; }
.mobile-bar a.mb-book { background: var(--accent); color:#211d12; }

/* --------------------------- Modal --------------------------- */
.modal-root { position: fixed; inset:0; z-index: 100; display:none; }
.modal-root.open { display:block; }
.modal-overlay { position:absolute; inset:0; background: rgba(20,18,15,.6); backdrop-filter: blur(3px); opacity:0; transition: opacity .3s; }
.modal-root.open .modal-overlay { opacity:1; }
.modal-panel {
  position:absolute; top:0; right:0; height:100%; width: min(560px, 100%);
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display:flex; flex-direction:column; overflow-y:auto;
}
.modal-root.open .modal-panel { transform: translateX(0); }
.modal-head { position:sticky; top:0; background: var(--bg); display:flex; align-items:center; justify-content:space-between; padding: 22px var(--gutter); border-bottom:1px solid var(--border); z-index:2; }
.modal-head .mh-title { font-family:var(--serif); font-size:1.4rem; font-weight:500; }
.modal-close { width:42px;height:42px; border:1px solid var(--border-2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; transition: background .2s, color .2s; }
.modal-close:hover { background: var(--text); color:#fff; }
.modal-body { padding: 0 var(--gutter) 40px; }

/* collection detail overlay specifics */
.cd-hero { position:relative; margin-inline: calc(var(--gutter)*-1); }
.cd-hero img { width:100%; aspect-ratio: 16/10; object-fit:cover; }
.cd-hero .cd-tag { position:absolute; left: var(--gutter); bottom: 18px; color:#fff; }
.cd-hero .cd-tag .cc-kicker { font-size:.7rem; letter-spacing:.22em; text-transform:uppercase; color: var(--gold-soft); font-weight:600; }
.cd-hero .cd-tag h3 { color:#fff; font-size: 2rem; }
.cd-hero .cd-scrim { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%); }
.cd-intro { font-size:1.02rem; color: var(--ink-soft); margin-top: 1.6rem; }
.cd-materials { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.4rem; }
.cd-chip { font-size:.76rem; letter-spacing:.04em; border:1px solid var(--border-2); border-radius:100px; padding:6px 13px; color: var(--ink-soft); background: var(--surface); }
.cd-gallery { display:grid; grid-template-columns: 1fr 1fr; gap:.8rem; margin-top: 1.8rem; }
.cd-gallery .cdg { border-radius:4px; overflow:hidden; border:1px solid var(--border); background:#fff; aspect-ratio:1/1; }
.cd-gallery .cdg img { width:100%; height:100%; object-fit:cover; }
.cd-gallery .cdg.contain img { object-fit:contain; padding:12px; }
.cd-cta { margin-top: 2rem; display:grid; gap:.7rem; }
.cd-divider { height:1px; background: var(--border); margin: 2rem 0; }

/* --------------------------- Reveal animation --------------------------- */
.reveal { opacity: 0; transform: translateY(22px); 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: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .nav-links, .nav-right .lang-toggle, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(5) { grid-column: 1 / -1; border-right:none; border-top:1px solid var(--border); }
  .trust-item { border-bottom: 1px solid var(--border); }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-media { order: 0; }
  .piercing-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { padding-bottom: 70px; } /* room for mobile bar */
  .mobile-bar { display: grid; }
  .fab { display: none; }
  .collections-grid { grid-template-columns: 1fr; }
  .col-card { aspect-ratio: 3 / 3; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right:none; border-bottom:1px solid var(--border); }
  .trust-item:last-child { border-bottom:none; }
  .form-grid { grid-template-columns: 1fr; }
  .pip-cards { grid-template-columns: 1fr; }
  .cd-gallery { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 88vh; }
  .hero-cta .btn { flex: 1 1 auto; }
  .stat-row { gap: 1.4rem 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 400px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
