/* ============================================================
   PRECIOUS SCENT PERFUMES — Deira, Dubai
   Design system + layout. Mobile-first.
   ============================================================ */

:root {
  /* Palette (brand-system.md) */
  --bg: #FBF7F2;
  --surface: #FFFFFF;
  --surface-2: #F4ECE2;
  --text: #211820;
  --muted: #7B6870;
  --primary: #7C3556;     /* deep plum */
  --primary-deep: #5E2742;
  --secondary: #1E1826;   /* near-black plum */
  --accent: #D6A75C;      /* gold */
  --accent-deep: #B98736;
  --border: #E7D9C4;
  --green: #124812;       /* storefront green (anchor) */
  --green-deep: #0C320C;
  --focus: #7C3556;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 1px 2px rgba(30,24,38,.06), 0 2px 8px rgba(30,24,38,.05);
  --shadow-md: 0 10px 30px -12px rgba(30,24,38,.22);
  --shadow-lg: 0 30px 60px -24px rgba(30,24,38,.35);

  --header-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--ff-display); }

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

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.gold { color: var(--accent); }
.eyebrow.gold::before { background: var(--accent); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--accent); color: var(--secondary); }
.btn-gold:hover { background: var(--accent-deep); color: #fff; }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* ---------- Arch motif (from the logo's mihrab silhouette) ---------- */
.arch {
  position: relative;
  -webkit-mask: var(--arch-mask) center / 100% 100% no-repeat;
          mask: var(--arch-mask) center / 100% 100% no-repeat;
}
:root {
  --arch-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 132' preserveAspectRatio='none'%3E%3Cpath d='M50 0 C53 7 58 12 70 19 C86 28 100 33 100 62 L100 132 L0 132 L0 62 C0 33 14 28 30 19 C42 12 47 7 50 0 Z' fill='%23000'/%3E%3C/svg%3E");
}
.arch-outline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%; height: 100%;
}
.arch-outline path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  opacity: .9;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(30,24,38,.4);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand-chip {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex: none;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand-chip img { width: 36px; height: 36px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-name {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--secondary);
  white-space: nowrap;
}
.brand-sub {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 2px;
  position: relative;
  transition: color .18s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1.5px; background: var(--primary); transition: right .25s ease;
}
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a:hover::after { right: 0; }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  width: 20px; height: 2px; background: var(--secondary); margin-inline: auto;
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 55;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 14px var(--gutter) 28px;
  overflow-y: auto;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.nav-drawer a.drawer-link {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-drawer a.drawer-link span { font-family: var(--ff-body); font-size: 13px; color: var(--accent); font-weight: 700; }
.drawer-actions { margin-top: 22px; display: grid; gap: 12px; }
.drawer-meta { margin-top: 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.drawer-meta strong { color: var(--text); font-weight: 700; }

/* ============================================================
   HERO — boutique window, asymmetric
   ============================================================ */
.hero { padding: 26px 0 8px; position: relative; }
.hero-grid { display: grid; gap: 26px; }

.hero-copy { max-width: 560px; }
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 13vw, 92px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--secondary);
  margin: 16px 0 0;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-lede {
  font-size: clamp(16px, 4.4vw, 19px);
  color: var(--muted);
  margin: 20px 0 0;
  max-width: 46ch;
}
.hero-lede b { color: var(--text); font-weight: 700; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 0; }

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: 14px;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 600;
}
.meta-pill svg { width: 17px; height: 17px; color: var(--primary); flex: none; }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.stars svg { width: 15px; height: 15px; }

/* Hero figure with arch */
.hero-figure {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 460px;
}
.hero-figure .arch {
  aspect-ratio: 4 / 4.6;
  background: var(--secondary);
}
.hero-figure .arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .arch::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,22,.18) 0%, rgba(18,16,22,0) 30%, rgba(18,16,22,.04) 70%, rgba(18,16,22,.42) 100%);
}
.hero-badge {
  position: absolute;
  left: -8px; bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
  max-width: 230px;
}
.hero-badge .hb-mark {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  background: var(--green); display: grid; place-items: center; color: var(--accent);
}
.hero-badge .hb-mark svg { width: 20px; height: 20px; }
.hero-badge b { font-size: 14px; display: block; color: var(--text); }
.hero-badge small { font-size: 12px; color: var(--muted); }

/* ============================================================
   TRUST MARQUEE / STRIP
   ============================================================ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  margin-top: 30px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.trust-item {
  background: var(--surface-2);
  padding: 20px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trust-item .ti-top {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.trust-item .ti-top small { font-size: 14px; color: var(--accent-deep); font-family: var(--ff-body); font-weight: 700; }
.trust-item .ti-label { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { scroll-margin-top: calc(var(--header-h) + 10px); }
.band { padding: clamp(54px, 11vw, 104px) 0; }
.band-head { max-width: 640px; margin-bottom: 36px; }
.band-head.center { margin-inline: auto; text-align: center; }
.band-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.015em;
}
.band-title em { font-style: italic; color: var(--primary); }
.band-intro { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 52ch; }
.band-head.center .band-intro { margin-inline: auto; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--bg); }
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.col-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.col-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--accent) 60%, var(--border)); }
.col-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--surface-2);
  overflow: hidden;
}
.col-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.col-card:hover .col-media img { transform: scale(1.05); }
.col-num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--ff-display); font-style: italic;
  font-size: 17px; color: #fff;
  background: rgba(30,24,38,.55);
  backdrop-filter: blur(4px);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
}
.col-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.col-body h3 { font-family: var(--ff-display); font-size: 26px; color: var(--secondary); }
.col-body p { font-size: 14.5px; color: var(--muted); }
.col-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; }
.col-tag {
  font-size: 11.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 16%, var(--border));
  padding: 4px 10px; border-radius: 999px;
}
.collections-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 9px;
  max-width: 60ch;
}
.collections-note svg { width: 16px; height: 16px; color: var(--accent-deep); flex: none; margin-top: 2px; }

/* ============================================================
   MACRO RHYTHM — alternating editorial bands
   ============================================================ */
.notes { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.notes .band-title { color: #fff; }
.notes .band-title em { color: var(--accent); }
.notes .band-intro { color: rgba(255,255,255,.72); }
.notes .eyebrow { color: var(--accent); }
.notes .eyebrow::before { background: var(--accent); }

.note-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.note-row:first-of-type { border-top: none; }
.note-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #2a2230;
}
.note-figure img { width: 100%; height: 100%; object-fit: cover; }
.note-figure .nf-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary); background: var(--accent);
  padding: 5px 11px; border-radius: 999px;
}
.note-text .nt-k {
  font-family: var(--ff-display); font-style: italic;
  font-size: 16px; color: var(--accent); margin-bottom: 6px;
}
.note-text h3 { font-family: var(--ff-display); font-size: clamp(26px, 7vw, 38px); color: #fff; }
.note-text p { margin-top: 12px; color: rgba(255,255,255,.7); font-size: 15.5px; max-width: 46ch; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.filterbar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-btn {
  font-family: var(--ff-body);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all .18s ease;
}
.filter-btn:hover { color: var(--primary); border-color: var(--primary); }
.filter-btn.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-2);
  cursor: zoom-in;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}
.g-item.tall { grid-row: span 2; aspect-ratio: 1 / 2.06; }
.g-item.wide { grid-column: span 2; aspect-ratio: 2.06 / 1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,16,22,.4));
  opacity: 0; transition: opacity .3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  color: #fff; font-size: 12.5px; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: all .3s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-item.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(18,16,22,.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 84vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.lb-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: 13px; }
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background .18s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 18px; right: 18px; }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-nav.prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-nav.next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about { background: var(--surface-2); border-top: 1px solid var(--border); }
.about-grid { display: grid; gap: 30px; }
.about-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  box-shadow: var(--shadow-md);
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .band-title { margin-bottom: 18px; }
.about-copy p { color: var(--text); font-size: 16.5px; margin-bottom: 16px; }
.about-copy p.muted { color: var(--muted); }
.quote {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
}
.quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 21px;
  color: var(--secondary);
  margin: 0;
}
.quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: var(--muted); font-family: var(--ff-body); }

/* ============================================================
   VISIT / LOCATION + FORM
   ============================================================ */
.visit { background: var(--green); color: #fff; }
.visit .band-title { color: #fff; }
.visit .band-title em { color: var(--accent); }
.visit .eyebrow { color: var(--accent); }
.visit .eyebrow::before { background: var(--accent); }
.visit-grid { display: grid; gap: 28px; }

.info-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-ph {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px),
    var(--green-deep);
  display: grid; place-items: center; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.map-ph .map-pin {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: var(--secondary);
  display: grid; place-items: center; margin: 0 auto 12px;
  box-shadow: 0 0 0 8px rgba(214,167,92,.18);
}
.map-ph .map-pin svg { width: 26px; height: 26px; }
.map-ph b { display: block; font-size: 15px; }
.map-ph small { color: rgba(255,255,255,.6); font-size: 12.5px; }
.map-ph .map-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(0,0,0,.35); color: rgba(255,255,255,.78);
  padding: 5px 9px; border-radius: 6px;
}
.info-rows { padding: 8px 4px; }
.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.info-row:last-child { border-bottom: none; }
.info-row .ir-ic {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: rgba(214,167,92,.16); color: var(--accent);
  display: grid; place-items: center;
}
.info-row .ir-ic svg { width: 19px; height: 19px; }
.info-row .ir-k { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 700; }
.info-row .ir-v { font-size: 15.5px; color: #fff; font-weight: 600; margin-top: 2px; }
.info-row a.ir-v:hover { color: var(--accent); }
.info-actions { padding: 16px 18px; display: grid; gap: 10px; }

/* Form */
.form-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: clamp(22px, 5vw, 34px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-family: var(--ff-display); font-size: 30px; color: var(--secondary); }
.form-card .fc-sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: .01em; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; gap: 16px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-opt { position: relative; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt label {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; min-height: 42px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 14px; font-weight: 600; cursor: pointer; margin: 0;
  color: var(--muted);
  transition: all .16s ease;
}
.chip-opt input:checked + label { background: var(--primary); color: #fff; border-color: var(--primary); }
.chip-opt input:focus-visible + label { outline: 3px solid var(--focus); outline-offset: 2px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-success {
  display: none;
  text-align: center;
  padding: 28px 10px;
}
.form-success.show { display: block; }
.form-success .fs-ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: color-mix(in srgb, var(--green) 14%, var(--surface));
  color: var(--green); display: grid; place-items: center; margin: 0 auto 16px;
}
.form-success .fs-ic svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--ff-display); font-size: 28px; color: var(--secondary); }
.form-success p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.form-disclaimer { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.7); padding: 56px 0 130px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-chip { background: #fff; border: none; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.5); }
.footer-about { margin-top: 18px; font-size: 14.5px; line-height: 1.7; max-width: 38ch; }
.footer-col h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .16s ease; }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 8px 14px; min-height: 40px;
  transition: all .16s ease;
}
.social-link:hover { border-color: var(--accent); color: #fff; background: rgba(214,167,92,.1); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(12px) saturate(1.3);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -16px rgba(30,24,38,.5);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; min-height: 52px; justify-content: center;
  border-radius: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .01em;
  color: var(--text);
  transition: background .16s ease;
}
.action-bar a svg { width: 21px; height: 21px; }
.action-bar a.ab-primary { background: var(--primary); color: #fff; }
.action-bar a.ab-gold { background: var(--accent); color: var(--secondary); }
.action-bar a:not(.ab-primary):not(.ab-gold) { color: var(--secondary); }
.action-bar a:active { transform: scale(.97); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .field-row.two { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 880px) {
  :root { --header-h: 80px; }
  .nav-desktop { display: flex; gap: 30px; align-items: center; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none; }
  .site-footer { padding-bottom: 56px; }
  .action-bar { display: none; }

  .hero { padding: 56px 0 20px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
  .hero-copy { max-width: none; }
  .hero-actions .btn { flex: 0 1 auto; }
  .hero-figure { max-width: 480px; margin-right: 0; }

  .collection-grid { grid-template-columns: repeat(4, 1fr); }
  .col-card.feature { grid-column: span 2; flex-direction: row; }
  .col-card.feature .col-media { aspect-ratio: auto; flex: 1.1; }
  .col-card.feature .col-body { flex: 1; justify-content: center; }

  .note-row { grid-template-columns: 1fr 1fr; gap: 44px; padding: 40px 0; }
  .note-row.flip .note-figure { order: 2; }
  .note-figure { aspect-ratio: 4 / 3; }

  .about-grid { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 50px; }
  .visit-grid { grid-template-columns: 1fr 1.1fr; align-items: start; gap: 40px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; }
}

@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

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