/* ==========================================================================
   VIP Turkish Barbers — Loughborough
   Black / charcoal / gold. Mobile-first.
   ========================================================================== */

:root {
  /* Palette — warm dark + charcoal + cream + golden accent */
  --ink: #130f08;
  --ink-2: #1c1710;
  --ink-3: #241d12;
  --line: rgba(220, 158, 60, 0.22);
  --line-strong: rgba(220, 158, 60, 0.45);
  --bone: #f6efe3;
  --bone-2: #ede3d0;
  --paper: #fdf8ef;
  --muted: #a8a090;
  --muted-2: #78706a;

  --accent: #d4952e;            /* warm golden-orange */
  --accent-soft: rgba(212, 149, 46, 0.16);
  --accent-ink: #1a1205;        /* readable on accent */

  /* Type — set by tweak */
  --display: "Cormorant Garamond", "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", "Public Sans", system-ui, -apple-system, sans-serif;

  /* Type scale (modular, ~1.25) */
  --fs-micro: 10.5px;
  --fs-cap:   11.5px;   /* eyebrows, labels */
  --fs-nav:   12.5px;
  --fs-btn:   12.5px;
  --fs-meta:  13px;     /* small body, captions */
  --fs-body:  16px;
  --fs-lead:  18px;     /* leading paragraph */
  --fs-h4:    22px;
  --fs-h3:    28px;
  --fs-h2:    clamp(36px, 5.6vw, 60px);
  --fs-h1:    clamp(48px, 8.6vw, 100px);

  --tracked: 0.18em;    /* general caps */
  --tracked-tight: 0.12em;

  /* Density */
  --pad-y: 96px;
  --gap: 22px;
}

[data-density="compact"] {
  --pad-y: 64px;
  --gap: 16px;
}
[data-density="airy"] {
  --pad-y: 136px;
  --gap: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}

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

/* ── Type system ────────────────────────────────────────── */

.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 0.94;
  font-style: normal;
  font-feature-settings: "kern", "liga", "dlig";
}
.display em { font-style: italic; font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}
.eyebrow--ink { color: var(--ink); }
.eyebrow--muted { color: var(--muted); letter-spacing: var(--tracked-tight); }

.lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--bone);
  max-width: 54ch;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.lede--muted { color: var(--muted); }

/* ── Layout ─────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: var(--pad-y) 0;
  position: relative;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* hairline gold rule */
.rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: var(--fs-cap);
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.rule::before,
.rule::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}
.rule.rule--single::before { display: none; }

/* ── Top bar (desktop + mobile) ─────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
  padding-left: 100px;
  padding-right: 100px;
}
/* Desktop lock — never override above mobile */
@media (min-width: 1025px) {
  .topbar__row { padding-left: 100px; padding-right: 100px; }
}
@media (max-width: 1024px) {
  .topbar__row { padding-left: 16px; padding-right: 16px; gap: 10px; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 0;
  margin-left: -60px;
}
/* Desktop lock */
@media (min-width: 1025px) {
  .brand { margin-left: -60px; }
}
@media (max-width: 1024px) {
  .brand { margin-left: 0; }
}
.brand__mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
}
.brand__vip {
  color: #cc1f1f;
}
@media (max-width: 480px) {
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 8.5px; letter-spacing: 0.28em; }
}
.brand__sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.nav {
  display: none;
  gap: 30px;
  font-family: var(--sans);
  font-size: var(--fs-nav);
  font-weight: 600;
  letter-spacing: var(--tracked-tight);
  text-transform: uppercase;
  color: var(--bone);
  white-space: nowrap;
}
.nav a {
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { transform: scaleX(1); }

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1025px) {
  .nav { display: flex; }
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: var(--fs-btn);
  font-weight: 800;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  white-space: nowrap;
  font-feature-settings: "kern";
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--gold:hover { background: #d8b56a; }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--ink {
  background: var(--ink);
  color: var(--bone);
}

.btn--sm {
  height: 42px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: var(--tracked-tight);
}

/* ── Trust strip (legacy — replaced by .trust--badges in hero) ── */

/* ── Hero ──────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

/* Full-bleed background photo */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Dark overlay — left heavy for text, lighter in the centre */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,8,2,0.93) 0%, rgba(14,9,2,0.76) 20%, rgba(18,12,3,0.16) 46%, rgba(0,0,0,0.0) 100%),
    linear-gradient(180deg, rgba(18,12,2,0.10) 0%, rgba(14,9,2,0.16) 60%, rgba(10,6,0,0.48) 100%);
}

/* Main content area — grows to push trust bar to the bottom */
.hero__wrap {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-left: 100px;
  padding-right: 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Desktop lock — keep padding AND push text into lower third to align with table edge */
@media (min-width: 1025px) {
  .hero__wrap {
    padding-left: 100px;
    padding-right: 100px;
    justify-content: flex-end;
    padding-bottom: 18vh;
  }
}
@media (max-width: 1024px) {
  .hero__wrap { padding-left: 20px; padding-right: 20px; }
}

.hero__copy {
  max-width: 420px;
  padding-bottom: 0;
}

.hero__no {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.hero__no span { color: var(--accent); }
/* Desktop: loc children flow inline within the row */
.hero__no__loc { display: contents; }

.hero__title {
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero__sub {
  margin-top: 26px;
  font-size: var(--fs-lead);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 44ch;
  letter-spacing: -0.005em;
}
.hero__ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Trust badge strip — full-width bottom bar ─────────── */

.trust--badges {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(8, 8, 8, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: none;
}

.trust__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 100px;
}
/* Desktop lock */
@media (min-width: 1025px) {
  .trust__inner { padding: 0 100px; }
}
@media (max-width: 1024px) {
  .trust__inner { padding: 0 20px; }
}

.trust__badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 4px 0;
}

.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.9;
}

.trust__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust__val {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.trust__lbl {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

.trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
  align-self: center;
  margin: 0 20px;
}

@media (max-width: 1024px) {
  /* Shrink icons so they don't dominate the grid cells */
  .trust__badge .trust__icon svg { width: 24px !important; height: 24px !important; }

  /* 2-column grid for all badges */
  .trust--badges { flex-wrap: wrap; padding: 20px 20px 16px; gap: 0; }
  .trust__dot    { display: none; }
  .trust__inner  { flex-wrap: wrap; gap: 0; padding: 0; }

  .trust__badge {
    flex: 0 0 50%;
    width: 50%;
    padding: 10px 0;
    min-width: 0;
  }
}

.hero__ornament {
  position: absolute;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.18;
  z-index: 0;
}
.hero__ornament--bg {
  top: -20%;
  right: -15%;
  width: 75%;
  height: auto;
  opacity: 0.06;
}

/* Ticker under hero */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  margin-top: 28px;
}
.ticker__track {
  display: inline-flex;
  gap: 56px;
  padding-left: 56px;
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 500;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--muted);
  animation: tick 38s linear infinite;
}
.ticker__track strong { color: var(--bone); font-weight: 600; }
.ticker__track .dot { color: var(--accent); }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section heads ─────────────────────────────────────── */

.head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 800px) {
  .head { grid-template-columns: 1.2fr 1fr; }
}
.head__title {
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: -0.022em;
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
}
.head__title em { color: var(--accent); font-style: italic; letter-spacing: -0.018em; }

/* ── Services ──────────────────────────────────────────── */

.services {
  background: var(--ink);
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  padding: 32px 26px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: background .25s ease;
}
.svc:hover { background: var(--ink-2); }
.svc:hover .svc__price { color: var(--accent); }

@media (min-width: 700px) {
  .svc-grid > .svc:nth-child(2n) { border-right: 1px solid var(--line); }
}

.svc__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.svc__no {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
}
.svc__name {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
}
.svc__desc {
  color: var(--muted);
  font-size: var(--fs-meta);
  line-height: 1.6;
  max-width: 34ch;
  letter-spacing: -0.003em;
}
.svc__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.svc__price {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1;
  font-feature-settings: "lnum", "tnum";
}
.svc__price small {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  padding-right: 8px;
  vertical-align: 3px;
}
.svc__time {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracked-tight);
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Why ───────────────────────────────────────────────── */

.why {
  background: var(--paper);
  color: var(--ink);
}
.why .head__title { color: var(--ink); }
.why .head__title em { color: #a8852e; }
.why .lede { color: #444039; }
.why .eyebrow { color: #a8852e; }
.why .rule { color: #a8852e; }
.why .rule::before, .why .rule::after { background: #a8852e; opacity: 0.45; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why__item {
  padding: 32px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.why__no {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  color: #a8852e;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}
.why__name {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.018em;
}
.why__desc {
  color: #5a554c;
  font-size: var(--fs-meta);
  line-height: 1.65;
  max-width: 34ch;
  letter-spacing: -0.003em;
}

/* ── Gallery ──────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; } }

/* Desktop-only: explicit placement for every tile (bulletproof layout) */
@media (min-width: 1000px) {
  .gtile:nth-child(1)  { grid-column: 1; grid-row: 1 / span 2; } /* Interior  - tall left  */
  .gtile:nth-child(2)  { grid-column: 2; grid-row: 1; }           /* B/A       - row 1      */
  .gtile:nth-child(3)  { grid-column: 3; grid-row: 1; }           /* Skin Fade - row 1      */
  .gtile:nth-child(4)  { grid-column: 4; grid-row: 1; }           /* Beard Trim            */
  .gtile:nth-child(5)  { grid-column: 2; grid-row: 2; }           /* Detail    - row 2      */
  .gtile:nth-child(6)  { grid-column: 3; grid-row: 2; }           /* Hot Towel - row 2      */
  .gtile:nth-child(7)  { grid-column: 1; grid-row: 3; }           /* Relax     - row 3      */
  .gtile:nth-child(8)  { grid-column: 2; grid-row: 3; }           /* Tools     - row 3      */
  .gtile:nth-child(9)  { grid-column: 3; grid-row: 3; }           /* Lounge    - row 3      */
  .gtile:nth-child(10) { grid-column: 4; grid-row: 2 / span 2; } /* VIP Barbers - tall right */
}

/* Mobile-only: custom photo order (desktop unaffected) */
@media (max-width: 999px) {
  .gtile:nth-child(1)  { order: 1;  } /* The Interior  → pos 1 */
  .gtile:nth-child(2)  { order: 3;  } /* Before/After  → pos 3 */
  .gtile:nth-child(3)  { order: 4;  } /* Skin Fade     → pos 4 */
  .gtile:nth-child(4)  { order: 6;  } /* Beard Trim    → pos 6 */
  .gtile:nth-child(5)  { order: 5;  } /* Detail        → pos 5 */
  .gtile:nth-child(6)  { order: 7;  } /* Hot Towel     → pos 7 */
  .gtile:nth-child(7)  { order: 8;  } /* Relax         → pos 8 */
  .gtile:nth-child(8)  { order: 9;  } /* Tools         → pos 9 */
  .gtile:nth-child(9)  { order: 10; } /* Lounge        → pos 10 */
  .gtile:nth-child(10) { order: 2;  } /* VIP Barbers   → pos 2 */
}

.gtile {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gtile--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gtile__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.gtile:hover .gtile__photo { transform: scale(1.04); }
@media (max-width: 999px) {
  .gtile { aspect-ratio: 4 / 5; }
  .gtile--tall { grid-row: auto; aspect-ratio: 4 / 5; }
}

/* Before / After slider */
.ba-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}
.ba-slider__img--after {
  z-index: 0;
}
.ba-slider__before {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  overflow: hidden;
  z-index: 1;
}
.ba-slider__img--before-fill {
  /* Keep image at tile's full width regardless of clipping container */
  width: 100%;
  max-width: none;
  left: 0;
  right: auto;
}
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider__line {
  flex: 1;
  width: 2px;
  background: var(--accent);
}
.ba-slider__grip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.ba-slider__lbl {
  position: absolute;
  bottom: 12px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  padding: 3px 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 4;
}
.ba-slider__lbl--before { left: 10px; color: rgba(255,255,255,0.75); }
.ba-slider__lbl--after  { right: 10px; color: var(--accent); }

.gtile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .2s ease;
}
.gtile:hover .gtile__overlay { opacity: 1; }
.gtile__lbl {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Reviews ──────────────────────────────────────────── */

.reviews {
  background: var(--ink-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.rcard {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.rcard__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.rcard__quote {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.014em;
  color: var(--bone);
  text-wrap: pretty;
}
.rcard__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-meta);
  color: var(--muted);
  letter-spacing: -0.003em;
}
.rcard__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--display);
}
.rcard__name { color: var(--bone); font-weight: 600; }
.rcard__g {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--muted);
}

/* ── About ────────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }

.about__media {
  background: var(--ink-2);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about__title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.about__title em { color: var(--accent); font-style: italic; }
.about__body {
  color: var(--muted);
  margin-top: 24px;
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: 50ch;
  letter-spacing: -0.003em;
}
.about__sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--accent);
  margin-top: 24px;
  letter-spacing: -0.012em;
}

/* ── Products ────────────────────────────────────────── */

.products {
  background: var(--ink);
  padding-top: calc(var(--pad-y) * 0.7);
  padding-bottom: calc(var(--pad-y) * 0.7);
}
.prod-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 28px 0 8px;
  margin: 0 -22px;
  padding-left: 22px;
  padding-right: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.prod-rail::-webkit-scrollbar { height: 6px; }
.prod-rail::-webkit-scrollbar-thumb { background: var(--accent); }

.prod-rail-wrap {
  position: relative;
}
.prod-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.prod-arrow:hover { background: var(--ink-3); border-color: var(--accent); }
.prod-arrow--left  { left: -20px; }
.prod-arrow--right { right: -20px; }
.prod-arrow--hidden { opacity: 0; pointer-events: none; }

.prod {
  flex: 0 0 248px;
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s ease, background .25s ease;
}
.prod:hover { border-color: var(--line-strong); background: #161412; }
.prod__img {
  aspect-ratio: 3/4;
  background: var(--ink-3);
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
}
.prod__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.prod:hover .prod__photo {
  transform: scale(1.04);
}
.prod__no {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -8px;
}
.prod__no .prod__cat { color: var(--muted); }
.prod__name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin-top: -2px;
}
.prod__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.4;
}
.prod__brand {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  margin-bottom: 2px;
}
.prod__divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}
.prod__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod__price {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.prod__avail {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  border: 0;
}
.prod__avail i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(201,165,90,0.16);
}

/* ── Visit ───────────────────────────────────────────── */

.visit {
  background: var(--ink-2);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; } }

.map {
  aspect-ratio: 4/3;
  background: var(--ink-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.visit__info { display: flex; flex-direction: column; gap: 22px; }
.visit__row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.visit__row:last-of-type { border-bottom: 0; }
.visit__lbl {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.visit__val {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 500;
}
.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  font-size: var(--fs-meta);
  color: var(--muted);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.003em;
}
.hours strong { color: var(--bone); font-weight: 500; font-family: var(--sans); letter-spacing: 0; }

/* ── Footer ─────────────────────────────────────────── */

footer {
  background: var(--ink);
  padding: 56px 0 100px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 800px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.foot__title {
  font-family: var(--sans);
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.foot__list { display: flex; flex-direction: column; gap: 10px; font-size: var(--fs-meta); color: var(--muted); letter-spacing: -0.003em; }
.foot__list a:hover { color: var(--accent); }

.foot__bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--tracked-tight);
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sticky mobile CTA ──────────────────────────────── */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background: rgba(10,10,10,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
}
.sticky-cta .btn { flex: 1; height: 48px; font-size: 11.5px; padding: 0 10px; }
@media (min-width: 1025px) {
  .sticky-cta { display: none; }
  footer { padding-bottom: 56px; }
}

/* ── Photo placeholder treatment ────────────────────── */

.ph {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,165,90,0.18), transparent 50%),
    linear-gradient(135deg, #241d12 0%, #130f08 100%);
  display: grid;
  place-items: center;
  color: rgba(201,165,90,0.6);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,165,90,0.18);
  pointer-events: none;
}
.ph--light {
  background:
    radial-gradient(circle at 70% 30%, rgba(201,165,90,0.18), transparent 60%),
    linear-gradient(135deg, #2e2415 0%, #1c1710 100%);
}
.ph--bone {
  background:
    radial-gradient(circle at 30% 20%, rgba(184,140,60,0.14), transparent 55%),
    linear-gradient(135deg, #ebe3d3, #d6cab4);
  color: rgba(60,48,20,0.55);
}
.ph--bone::after { border-color: rgba(60,48,20,0.18); }

.ph__lbl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ph__cap { font-size: 10px; opacity: 0.7; letter-spacing: 0.24em; }
.ph__icon { width: 32px; height: 32px; opacity: 0.5; }

/* spec text on placeholders */
.ph__corner {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,165,90,0.55);
}
.ph__corner--br { top: auto; bottom: 16px; left: auto; right: 16px; }

/* ── Hero variant overrides (tweaks panel) ───────────────── */
/* Hero is now always full-bleed — variants are handled via tweaks */

/* ── Seljuk star pattern overlay ─────────────────────── */

.seljuk-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cg fill='none' stroke='%23c9a55a' stroke-width='0.6' opacity='0.18'%3E%3Cpath d='M40 6l8 26 26 8-26 8-8 26-8-26L6 40l26-8z'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* selection */
::selection { background: var(--accent); color: var(--accent-ink); }

/* ── Hamburger button (mobile only) ────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s ease;
}
.hamburger:hover { border-color: var(--accent); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bone);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .hamburger { display: flex; }
}
@media (min-width: 1025px) {
  .hamburger { display: none !important; }
}

/* ── Mobile slide-down navigation ───────────────────────── */

.mobile-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 28;
  background: rgba(10, 8, 3, 0.99);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 0 20px 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Hidden by default — slide up */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .2s ease;
}
.mobile-nav--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav nav a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--bone);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .2s ease;
  display: block;
}
.mobile-nav nav a:hover { color: var(--accent); padding-left: 6px; }
.mobile-nav__actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav__actions .btn {
  width: 100%;
  justify-content: center;
  height: 48px;
}

@media (min-width: 1025px) {
  .mobile-nav { display: none !important; }
}

/* ── Mobile overrides (≤ 1024px catches phones in desktop-mode too) ── */

@media (max-width: 1024px) {
  /* Hero eyebrow — Est/City stacked left, Open 7 Days aligned right on same row */
  .hero__no {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    margin-bottom: 18px;
  }
  .hero__no__dash,
  .hero__no__sep  { display: none; }
  .hero__no__loc  { display: flex; flex-direction: column; gap: 3px; }
  .hero__no__open { white-space: nowrap; }

  /* Hero — wrap gets a floor so trust badges can't compress it */
  .hero { min-height: 92vh; }
  .hero__wrap { min-height: 62vh; }
  .hero__title { font-size: clamp(34px, 6vw, 52px); }
  .hero__sub { font-size: var(--fs-body); max-width: 100%; }
  .hero__ctas { flex-direction: column; gap: 10px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Product arrows — hide (touch-scroll is enough) */
  .prod-arrow { display: none; }

  /* Topbar CTA — hide (sticky bottom bar covers it) */
  .topbar__cta { display: none; }

  /* Nav — hide below desktop width */
  .nav { display: none; }

  /* Section heads */
  .head { margin-bottom: 36px; }

  /* Service grid */
  .svc { padding: 24px 18px 20px; min-height: auto; }
  .svc__name { font-size: 24px; }

  /* Visit section map */
  .map { aspect-ratio: 16/10; }
}
