/* ============================================================
   NAUTILUS — Watch & Clock Atelier, Deira Dubai
   "The Bench & the Bezel" — editorial atelier catalogue
   ============================================================ */

:root {
  --bg: #f4efe4;
  --surface: #fbf8f1;
  --surface-2: #efe8d9;
  --ink: #1b2430;
  --ink-deep: #11171f;
  --text: #15191e;
  --muted: #6a727b;
  --gold: #bfa46a;
  --gold-deep: #a2854a;
  --slate: #6b7c8f;
  --border: #ddd6c8;
  --border-strong: #cdc4b1;
  --focus: #6b7c8f;
  --white: #ffffff;

  --ff-display: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --ff-body: "Inter", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(27, 36, 48, .06), 0 2px 8px rgba(27, 36, 48, .05);
  --shadow-md: 0 10px 40px -18px rgba(17, 23, 31, .35);
  --header-h: 70px;
}

* { box-sizing: border-box; }

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

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

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

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

/* ---------- type ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.02em;
}
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.tnum { font-variant-numeric: tabular-nums; letter-spacing: .01em; }

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

section { position: relative; }

/* ---------- certificate divider (signature motif) ---------- */
.cert {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.cert .line {
  flex: 1;
  height: 0;
  border-top: 1px solid var(--border-strong);
  position: relative;
}
.cert .line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 3px;
  border-top: 1px solid var(--border-strong);
  opacity: .55;
}
.cert .seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.cert .seal::before,
.cert .seal::after {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.cert.dark .line, .cert.dark .line::after { border-color: rgba(255,255,255,.18); }
.cert.dark .seal { color: rgba(255,255,255,.62); }

/* ---------- bezel index rail (decoration) ---------- */
.bezel-rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  opacity: .5;
}
.bezel-rail i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-strong);
}
.bezel-rail i:nth-child(5n+1) { background: var(--gold); width: 16px; height: 2px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .chip {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand .chip img { width: 100%; height: 100%; object-fit: cover; }
.brand .name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .14em;
  line-height: 1;
}
.brand .name small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .25s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { background: var(--ink-deep); transform: translateY(-1px); }
.header-cta svg { width: 15px; height: 15px; }

.nav-toggle { display: none; }

/* ============================================================
   HERO — catalogue cover
   ============================================================ */
.hero { padding: clamp(34px, 5vw, 70px) 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}
.hero-left { padding-bottom: 12px; }
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.hero-kicker span { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8.5vw, 104px);
}
.hero h1 .l2 { color: var(--gold-deep); }
.hero h1 .l3 { -webkit-text-stroke: 1.4px var(--ink); color: transparent; }

.hero-sub {
  margin: 26px 0 0;
  max-width: 30ch;
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--muted);
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}
.tag .star { color: var(--gold-deep); }
.tag .pulse { width: 7px; height: 7px; border-radius: 50%; background: #2f9e63; box-shadow: 0 0 0 0 rgba(47,158,99,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,158,99,.45);} 70%{box-shadow:0 0 0 7px rgba(47,158,99,0);} 100%{box-shadow:0 0 0 0 rgba(47,158,99,0);} }

.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink-deep); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }

/* hero image — catalogue plate */
.hero-plate {
  position: relative;
  align-self: stretch;
  min-height: 380px;
}
.hero-plate .frame {
  position: relative;
  height: 100%;
  border: 1px solid var(--border-strong);
  padding: 10px;
  background: var(--surface);
}
.hero-plate .frame::before {
  content: "";
  position: absolute; inset: 4px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 2;
}
.hero-plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}
/* layered detail inset — serviced piece */
.plate-inset {
  position: absolute;
  left: -26px; bottom: -26px;
  z-index: 4;
  width: clamp(120px, 30%, 188px);
  margin: 0;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}
.plate-inset::before {
  content: "";
  position: absolute; inset: 3px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 2;
}
.plate-inset img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02);
}
.plate-inset figcaption {
  position: absolute;
  left: 8px; bottom: 8px; right: 8px;
  z-index: 3;
  background: color-mix(in srgb, var(--ink-deep) 82%, transparent);
  color: #fff;
  backdrop-filter: blur(4px);
  padding: 7px 10px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--ff-display);
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.plate-inset figcaption .star { color: var(--gold); }

.plate-tag {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 3;
  background: color-mix(in srgb, var(--ink-deep) 82%, transparent);
  color: #fff;
  backdrop-filter: blur(4px);
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--ff-display);
  display: flex; align-items: center; gap: 9px;
}
.plate-tag b { color: var(--gold); font-weight: 700; }
.plate-tag.tag-br { left: auto; right: 22px; }
.plate-no {
  position: absolute;
  right: -1px; top: -1px;
  z-index: 3;
  background: var(--gold);
  color: var(--ink-deep);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 7px 12px;
}

/* ============================================================
   CONCIERGE BAND — contact-led service desk
   ============================================================ */
.concierge { margin-top: clamp(40px, 5vw, 64px); }
.desk {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1.2fr 1px 2fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.desk::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 140% at 92% -10%, rgba(191,164,106,.16), transparent 45%);
  pointer-events: none;
}
.desk-lead h3 {
  margin: 0 0 6px;
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.desk-lead p { margin: 0; color: rgba(255,255,255,.66); font-size: 13.5px; max-width: 26ch; }
.desk-rule { background: rgba(255,255,255,.14); width: 1px; height: 100%; min-height: 64px; }
.desk-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; }
.desk-action {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 5px;
  background: rgba(255,255,255,.03);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.desk-action:hover { background: rgba(255,255,255,.08); border-color: rgba(191,164,106,.5); transform: translateY(-2px); }
.desk-action .ic { width: 22px; height: 22px; color: var(--gold); }
.desk-action .lbl { font-family: var(--ff-display); font-weight: 700; font-size: 15px; }
.desk-action .sub { font-size: 11.5px; color: rgba(255,255,255,.55); letter-spacing: .02em; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.block { padding: clamp(64px, 9vw, 120px) 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 5vw, 56px);
}
.section-head .lead { max-width: 38ch; }
.section-head h2 {
  margin: 14px 0 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.section-head p { margin: 14px 0 0; color: var(--muted); font-size: 15.5px; }
.section-index {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold-deep);
  white-space: nowrap;
  padding-bottom: 6px;
}

/* ---------- services index ---------- */
.svc-list { border-top: 1px solid var(--border-strong); }
.svc {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 26px 8px;
  border-bottom: 1px solid var(--border);
  transition: background .25s ease, padding-left .25s ease;
}
.svc:hover { background: var(--surface); padding-left: 18px; }
.svc .no { font-family: var(--ff-display); font-weight: 700; color: var(--gold-deep); font-size: 15px; }
.svc .body h3 { margin: 0; font-family: var(--ff-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; letter-spacing: -.01em; }
.svc .body p { margin: 8px 0 0; color: var(--muted); font-size: 14.5px; max-width: 52ch; }
.svc .arrow { color: var(--ink); opacity: 0; transform: translateX(-8px); transition: all .25s ease; align-self: center; }
.svc:hover .arrow { opacity: 1; transform: translateX(0); }
.svc .arrow svg { width: 22px; height: 22px; }

/* ---------- lookbook gallery ---------- */
.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 19vw, 210px);
  gap: 14px;
}
.g-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.g-b { grid-column: 3; grid-row: 1 / 3; }
.g-c { grid-column: 4; grid-row: 1 / 3; }
.g-d { grid-column: 1; grid-row: 3; }
.g-e { grid-column: 2; grid-row: 3 / 5; }
.g-f { grid-column: 3; grid-row: 3 / 5; }
.g-g { grid-column: 4; grid-row: 3; }
.g-h { grid-column: 1; grid-row: 4; }
.g-i { grid-column: 4; grid-row: 4; }
.shot {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.shot:hover img { transform: scale(1.05); }
.shot .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(17,23,31,.85), transparent);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.shot:hover .cap { opacity: 1; transform: translateY(0); }
.shot .cap b { display: block; font-family: var(--ff-display); font-size: 13.5px; letter-spacing: .02em; }
.shot .cap span { color: var(--gold); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.shot .zoom {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(251,248,241,.9);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .25s ease;
}
.shot:hover .zoom { opacity: 1; }
.shot .zoom svg { width: 15px; height: 15px; color: var(--ink); }

/* ---------- process (dark panel) ---------- */
.process { background: var(--ink-deep); color: #fff; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: rgba(255,255,255,.6); }
.process .eyebrow { color: var(--gold); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.step {
  padding: 30px 22px 30px 0;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.step:last-child { border-right: 0; }
.step .n {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.step .n::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.16); }
.step h3 { margin: 0 0 8px; font-family: var(--ff-display); font-size: 19px; font-weight: 600; }
.step p { margin: 0; color: rgba(255,255,255,.58); font-size: 13.5px; }
.process-media {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  height: 280px;
}
.process-media .pm { overflow: hidden; border-radius: 5px; }
.process-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }

/* ---------- about / atelier ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.about-copy h2 { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -.02em; line-height: 1.04; margin: 16px 0 0; }
.about-copy p { color: var(--muted); font-size: 16px; margin: 20px 0 0; max-width: 46ch; }
.about-copy p strong { color: var(--text); font-weight: 600; }
.quote {
  margin: 30px 0 0;
  padding: 22px 26px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 5px 5px 0;
}
.quote p { margin: 0; font-family: var(--ff-display); font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.45; max-width: none; }
.quote .by { margin: 12px 0 0; font-size: 12px; letter-spacing: .04em; color: var(--muted); font-style: normal; font-family: var(--ff-body); }
.quote .by .stars { color: var(--gold-deep); letter-spacing: .12em; }

.about-media { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 460px; }
.about-media .am { overflow: hidden; border-radius: 5px; border: 1px solid var(--border); }
.about-media .am:first-child { grid-row: 1 / 3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute;
  right: -14px; bottom: -18px;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.about-stat b { font-family: var(--ff-display); font-size: 30px; display: block; line-height: 1; }
.about-stat span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ---------- visit / contact ---------- */
.visit { background: var(--surface); border-top: 1px solid var(--border); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.info-rows { margin-top: 8px; }
.info-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.info-row .ic { color: var(--gold-deep); margin-top: 2px; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .k { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .v { font-size: 16.5px; margin-top: 4px; color: var(--text); }
.info-row .v a { border-bottom: 1px solid var(--border-strong); }
.info-row .v a:hover { border-color: var(--gold-deep); }
.info-note { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.map-card {
  margin-top: 22px;
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, var(--surface-2) 0 14px, var(--bg) 14px 28px);
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
}
.map-card .placeholder { display: grid; gap: 8px; justify-items: center; padding: 24px; }
.map-card .placeholder svg { width: 28px; height: 28px; color: var(--slate); }
.map-card .placeholder b { font-family: var(--ff-display); font-size: 14px; letter-spacing: .04em; }
.map-card .placeholder span { font-size: 12px; color: var(--muted); }
.map-card .placeholder a { font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--gold-deep); padding-bottom: 1px; }

/* enquiry form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin: 0 0 4px; font-family: var(--ff-display); font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.form-card .fineprint { margin: 0 0 22px; font-size: 12.5px; color: var(--muted); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(107,124,143,.16);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-opt {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all .18s ease;
}
.chip-opt[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 13.5px; color: var(--gold-deep); font-weight: 600; min-height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.7); padding: clamp(48px, 6vw, 80px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand .chip { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: var(--surface); flex: 0 0 auto; }
.footer-brand .chip img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand .name { font-family: var(--ff-display); font-weight: 700; font-size: 19px; letter-spacing: .12em; color: #fff; }
.footer-brand .name small { display: block; font-family: var(--ff-body); font-weight: 400; font-size: 10px; letter-spacing: .22em; color: rgba(255,255,255,.5); margin-top: 5px; }
.footer-col p { font-size: 14px; max-width: 30ch; }
.footer-col h4 { font-family: var(--ff-display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  transition: all .2s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials a:hover svg { color: var(--ink-deep); }
.socials svg { width: 17px; height: 17px; color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: color-mix(in srgb, var(--ink-deep) 96%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  gap: 6px;
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 9px 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 8px;
}
.mobile-bar a.primary { background: var(--gold); color: var(--ink-deep); }
.mobile-bar a svg { width: 19px; height: 19px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 20, 27, .92);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-cap { position: absolute; bottom: 5vh; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--ff-display); font-size: 14px; letter-spacing: .04em; }
.lightbox .lb-cap span { color: var(--gold); }
.lb-btn {
  position: absolute;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 4vh; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-plate { min-height: 340px; }
  .desk { grid-template-columns: 1fr; }
  .desk-rule { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .lookbook { grid-template-columns: repeat(2, 1fr); }
  .g-a { grid-column: 1 / 3; grid-row: auto; }
  .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h, .g-i { grid-column: auto; grid-row: auto; }
  .g-e, .g-f { grid-row: span 2; }
}

@media (max-width: 720px) {
  :root { --header-h: 62px; }
  .nav, .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 8px; background: var(--surface);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  body { padding-bottom: 70px; }
  .mobile-bar { display: grid; }

  .hero h1 { font-size: clamp(44px, 15vw, 72px); }
  .hero-plate { min-height: 300px; }
  .hero-actions .btn { flex: 1; justify-content: center; }

  .desk-actions { grid-template-columns: 1fr; }
  .desk-action { flex-direction: row; align-items: center; }
  .desk-action .ic { flex: 0 0 auto; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .svc { grid-template-columns: 40px 1fr; }
  .svc .arrow { display: none; }

  .steps { grid-template-columns: 1fr; }
  .process-media { grid-template-columns: 1fr 1fr; height: auto; grid-auto-rows: 150px; }
  .process-media .pm:first-child { grid-column: 1 / -1; grid-row: span 1; }

  .about-media { height: 360px; }
  .about-stat { right: 8px; bottom: -14px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* slide-down mobile menu */
.m-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  z-index: 55;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  padding: 14px var(--gutter) 24px;
}
.m-menu.open { transform: translateY(0); }
.m-menu a {
  display: block;
  padding: 15px 0;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.01em;
}
.m-menu a:last-of-type { border-bottom: 0; }

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