/* ─────────────────────────────────────────────
   J.Angi Nails · Csolnok
   Neo-Pop hot-pink mobile-first site
   ───────────────────────────────────────────── */

:root {
  --primary: #FF2E7E;
  --paper: #F5EDE1;
  --ink: #0D0D0D;
  --accent: #FFD93D;
  --shell-max: 430px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

.jangi-site, .jangi-site * { box-sizing: border-box; }
.jangi-site {
  background: #E8E0D0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,46,126,0.15) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,217,61,0.18) 0, transparent 40%);
  font-family: var(--font-display);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
}
.jangi-site button { font-family: inherit; }
.jangi-site a { color: inherit; }
.jangi-desktop { display: none; }

/* ── Shell ─────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.shell::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.1 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  z-index: 1;
}

/* ── Anchor offset (sticky top bar) ────────── */
:where(#sec-home, #sec-work, #sec-price, #sec-info) {
  scroll-margin-top: 60px;
}

/* ── Top bar ───────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
  border-bottom: 1.5px solid rgba(0,0,0,0.1);
  padding: 10px 16px;
  padding-top: calc(10px + env(safe-area-inset-top));
  display: flex; align-items: center; justify-content: space-between;
}
.topbar__brand { display: flex; align-items: center; gap: 8px; }
.topbar__dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--ink);
}
.topbar__wordmark {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 900;
  letter-spacing: -0.5px; text-transform: uppercase;
}
.topbar__dot-ink { color: var(--primary); }
.topbar__nails {
  color: var(--accent);
  margin-left: 4px;
  background: var(--ink);
  padding: 2px 8px;
  border-radius: 100px;
}

.btn-pill {
  padding: 6px 12px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
}

/* ── Scrollable main ───────────────────────── */
.scroll {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
  overflow-x: hidden;
}

/* ── Topbar actions + hamburger ────────────── */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger {
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  background: var(--paper);
  border-radius: 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .08s, box-shadow .08s;
}
.hamburger:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}
.hamburger__line {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ── Mobile menu overlay ───────────────────── */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: calc(18px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(-100%);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.06) 0 2px,
      transparent 2px 14px);
}
.mnav.is-open {
  transform: translateY(0);
}
.mnav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mnav__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
}
.mnav__close {
  width: 40px;
  height: 40px;
  border: 2.5px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mnav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mnav__link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px dashed rgba(255,255,255,0.3);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
}
.mnav__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.7;
  min-width: 28px;
}
.mnav__label {
  flex: 1;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -1.5px;
}
.mnav__arrow {
  font-size: 24px;
  opacity: 0.75;
}
.mnav__foot {
  margin-top: 24px;
}
.mnav__cta {
  width: 100%;
  padding: 18px 20px;
  background: var(--accent);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}
.mnav__contact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mnav__contact a {
  color: var(--accent);
  text-decoration: none;
}
.mnav__marq {
  margin-top: 18px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--accent);
  text-align: center;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ── Section title ─────────────────────────── */
.section-title { padding: 0 20px; }
.section-title__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title__h {
  font-family: var(--font-display);
  font-size: 42px; line-height: 0.9; margin: 0;
  font-weight: 800; letter-spacing: -1.5px;
  color: var(--ink); text-transform: uppercase;
}

/* ── Big button + square ───────────────────── */
.btn-big {
  background: var(--primary);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.3px;
  cursor: pointer;
  width: 100%;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
  text-transform: uppercase;
}
.btn-big:active {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn-big--ink { background: var(--ink); color: var(--accent); }
.btn-big:disabled {
  background: #ccc; color: #888;
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-big:disabled:active { transform: none; box-shadow: 4px 4px 0 var(--ink); }

.btn-square {
  width: 56px; height: 56px; flex-shrink: 0;
  border: 2.5px solid var(--ink); border-radius: 14px;
  background: #fff; box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer; font-size: 24px; padding: 0;
  transition: transform 0.12s, box-shadow 0.12s;
}
.btn-square:active {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-back {
  padding: 14px 18px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

/* ── Chip ──────────────────────────────────── */
.chip {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.12s, background 0.12s;
}
.chip.is-active {
  background: var(--accent);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  padding: 24px 20px 32px;
  overflow: hidden;
  z-index: 2;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__blob--yellow {
  top: 30px; right: -20px;
  width: 120px; height: 120px;
  background: var(--accent);
  opacity: 0.9;
}
.hero__blob--ring {
  bottom: 40px; left: -30px;
  width: 80px; height: 80px;
  border: 2.5px solid var(--ink);
  background: transparent;
}

.chip-handle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 6px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: #fff;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  box-shadow: 2px 2px 0 var(--ink);
  position: relative; z-index: 2;
  text-decoration: none;
  color: var(--ink);
}
.chip-handle__ig {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}

.sticker-hazhoz {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  transform: rotate(8deg);
  padding: 8px 12px;
  background: var(--ink); color: var(--accent);
  border: 2.5px solid var(--ink); border-radius: 10px;
  box-shadow: 3px 3px 0 var(--primary);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 900;
  letter-spacing: 0.5px; text-transform: uppercase;
  line-height: 1; text-align: center;
  animation: hazhoz-wiggle 3.4s ease-in-out infinite;
}
@keyframes hazhoz-wiggle {
  0%, 100% { transform: rotate(8deg); }
  50%      { transform: rotate(4deg) translateY(-2px); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: 72px; line-height: 0.9;
  letter-spacing: -3px;
  font-weight: 900; color: var(--ink);
  margin: 14px 0 0;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.hero__line1 { display: block; }
.hero__line2 {
  display: inline-block;
  color: var(--primary);
  font-style: italic;
}
.hero__type {
  display: inline-block;
  transform: rotate(-2deg) translateY(-24px);
  background: var(--accent);
  padding: 4px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-top: -18px;
  margin-bottom: -14px;
  min-height: 1.1em;
  box-shadow: 3px 3px 0 var(--ink);
  vertical-align: baseline;
}
.tw-caret {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--ink);
  margin-left: 3px;
  vertical-align: -0.08em;
  animation: tw-blink 0.9s step-end infinite;
}
@keyframes tw-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero__tags {
  margin-top: 14px;
  display: flex; flex-wrap: nowrap; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2px; text-transform: uppercase;
  color: var(--ink); position: relative; z-index: 2;
  white-space: nowrap;
}
.hero__tags-sep { opacity: 0.4; }
.hero__tag-pill {
  background: var(--ink);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
}

.hero__cta-row {
  display: flex; gap: 10px;
  margin-top: 22px;
  position: relative; z-index: 2;
}
.hero__cta-row .btn-big { flex: 1; }

.hero__meta {
  display: flex; gap: 10px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; color: var(--ink);
  text-transform: uppercase;
  position: relative; z-index: 2;
  align-items: center;
  flex-wrap: wrap;
}
.hero__meta-dim { opacity: 0.7; }
.hero__meta-sep { opacity: 0.4; }
.hero__meta-pill {
  background: var(--ink);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1.2px;
}

/* ── Marquee ───────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--accent);
  padding: 3px 0;
  overflow-x: clip;
  overflow-y: visible;
  white-space: nowrap;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  margin: 14px 0;
  position: relative; z-index: 2;
}
.marquee__track {
  display: inline-flex; gap: 14px;
  align-items: center;
  animation: marquee-scroll 22s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px;
  padding-left: 14px;
}
.marquee__track .marquee__pill {
  background: var(--accent);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  display: inline-block;
  line-height: 1;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── Portfolio ─────────────────────────────── */
.portfolio {
  padding: 32px 0;
  position: relative; z-index: 2;
}
.chip-row {
  display: flex; gap: 8px;
  padding: 18px 20px 6px;
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip-row.is-dragging { cursor: grabbing; }

.masonry {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 20px 0;
}
.masonry__row {
  display: flex; gap: 8px;
}
.masonry__col {
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.masonry__col--offset { margin-top: 20px; }
.pf-card {
  position: relative;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  background: #fff;
  transition: transform 0.12s, box-shadow 0.12s;
}
.pf-card:active {
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.pf-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pf-card__label {
  position: absolute;
  bottom: 6px; left: 6px;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pf-card--wide { width: 100%; }

/* ── HÁZHOZ MEGYEK banner ──────────────────── */
.services {
  padding: 36px 0 32px;
  position: relative; z-index: 2;
}
.hazhoz-banner {
  margin: 22px 20px 0;
  position: relative;
  padding: 18px 18px 16px;
  background: var(--ink);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--primary);
  overflow: hidden;
}
.hazhoz-banner__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,217,61,0.08) 8px 16px);
  pointer-events: none;
}
.hazhoz-banner__inner { position: relative; }
.hazhoz-banner__eyebrow {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hazhoz-banner__title {
  font-family: var(--font-display);
  font-size: 40px; line-height: 0.88;
  font-weight: 900; letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hazhoz-banner__body {
  font-family: var(--font-mono);
  font-size: 12px; line-height: 1.5;
  margin: 10px 0 14px;
  opacity: 0.9;
  max-width: 320px;
}
.hazhoz-banner__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hazhoz-banner__chips span {
  padding: 5px 10px;
  border: 1.5px solid var(--paper);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px;
}

/* ── Menu card (price list) ────────────────── */
.menu-card {
  margin: 22px 20px 0;
  padding: 22px 20px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
}
.menu-card__tape {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 80px; height: 22px;
  background: rgba(255,217,61,0.85);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.menu-card__head {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  opacity: 0.6;
}
.dot-list { display: flex; flex-direction: column; gap: 10px; }
.dot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
}
.dot-row__label { letter-spacing: 0.5px; }
.dot-row__leader {
  flex: 1;
  border-bottom: 2px dotted currentColor;
  transform: translateY(-4px);
  opacity: 0.6;
  min-width: 20px;
  min-height: 6px;
}
.dot-row__sub {
  flex-basis: 100%;
  margin-top: -4px;
  font-size: 10px;
  opacity: 0.55;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.menu-card__foot {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5; text-align: center;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1.5px dashed rgba(0,0,0,0.2);
}
.services__cta { padding: 18px 20px 0; }

/* ── FAQ ───────────────────────────────────── */
.faq { padding: 32px 0 24px; position: relative; z-index: 2; }
.faq__list {
  padding: 20px 20px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.faq__item {
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.15s;
}
.faq__item[open] { box-shadow: 3px 3px 0 var(--ink); }
.faq__item summary {
  list-style: none;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  gap: 10px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 18px;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 16px 14px;
  font-family: var(--font-mono);
  font-size: 12px; line-height: 1.5;
  opacity: 0.75;
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 20px 40px;
  margin-top: 20px;
  position: relative; z-index: 2;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 56px; line-height: 0.82;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -2.5px;
  color: var(--primary);
}
.footer__addr {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 15px; line-height: 1.7;
  letter-spacing: 0.3px;
  opacity: 0.9;
  font-style: normal;
  font-weight: 500;
}
.footer__addr a { color: inherit; text-decoration: none; }
.footer__addr a:hover { text-decoration: underline; }
.footer__socials {
  display: flex; gap: 10px;
  margin-top: 22px; flex-wrap: wrap;
}
.footer__socials a {
  padding: 8px 14px;
  border: 2px solid var(--paper);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  color: inherit;
}
.footer__credit {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1.5px dashed rgba(245,237,225,0.25);
  font-family: var(--font-mono);
  font-size: 13px; opacity: 0.7;
  letter-spacing: 0.3px;
  line-height: 1.55;
}
.footer__credit a { color: inherit; text-decoration: underline; }

/* ── Tab bar ───────────────────────────────── */
.tabbar {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shell-max);
  z-index: 50;
  background: var(--paper);
  border-top: 2.5px solid var(--ink);
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
}
.tabbar__ribbon {
  width: 100%;
  background: var(--primary); color: #fff;
  border: none; border-bottom: 2.5px solid var(--ink);
  padding: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer;
}
.tabbar__row { display: flex; }
.tabbar__tab {
  flex: 1;
  background: transparent; border: none;
  padding: 10px 4px 6px;
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  color: var(--ink);
  opacity: 0.45;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.12s, color 0.12s;
}
.tabbar__tab.is-active {
  color: var(--primary);
  opacity: 1;
}
.tabbar__icon { font-size: 16px; font-weight: 700; }

/* ── Load more button (shared mobile + desktop) ── */
.btn-loadmore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 14px 24px;
  background: var(--ink);
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 5px 5px 0 var(--primary);
  animation: loadmore-breathe 2.6s ease-in-out infinite;
  transition: transform .12s, box-shadow .12s;
}
.btn-loadmore::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg,
    transparent 0%,
    transparent 35%,
    rgba(255,217,61,0.28) 50%,
    transparent 65%,
    transparent 100%);
  background-size: 220% 100%;
  background-position: 200% 0;
  animation: loadmore-shimmer 2.4s linear infinite;
}
.btn-loadmore:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--primary);
}
.btn-loadmore:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--primary);
}
.btn-loadmore__sparkle {
  display: inline-block;
  color: var(--accent);
  animation: loadmore-spin 3.2s linear infinite;
  font-size: 18px;
}
.btn-loadmore__arrow {
  display: inline-block;
  animation: loadmore-bob 1.1s ease-in-out infinite;
}
.btn-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 0 20px;
}

@keyframes loadmore-breathe {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -3px); }
}
@keyframes loadmore-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes loadmore-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes loadmore-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── Booking modal ─────────────────────────── */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
}
.modal[hidden] { display: none; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.6);
}
.modal__sheet {
  position: relative;
  width: 100%;
  max-width: var(--shell-max);
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--paper);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-top: 2.5px solid var(--ink);
  border-left: 2.5px solid var(--ink);
  border-right: 2.5px solid var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: sheet-up 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes sheet-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.modal__grab {
  width: 40px; height: 4px;
  background: var(--ink);
  opacity: 0.3;
  border-radius: 100px;
  margin: 10px auto 0;
}
.modal__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 10px;
}
.modal__step {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.5; text-transform: uppercase;
}
.modal__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.modal__close {
  width: 36px; height: 36px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 16px; font-weight: 700;
  box-shadow: 2px 2px 0 var(--ink);
}
.modal__progress {
  padding: 0 20px 12px;
  display: flex; gap: 4px;
}
.modal__progress span {
  flex: 1; height: 4px; border-radius: 100px;
  background: rgba(0,0,0,0.12);
  transition: background 0.18s;
}
.modal__progress span.is-on { background: var(--primary); }
.modal__body {
  flex: 1; overflow: auto;
  padding: 6px 20px 20px;
}
.modal__foot {
  padding: 12px 20px 22px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  border-top: 1.5px dashed rgba(0,0,0,0.15);
  display: flex; gap: 8px;
}
.modal__foot .btn-big { flex: 1; }

.booking__error {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

/* Booking: service rows */
.svc-row {
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: box-shadow 0.12s, background 0.12s, color 0.12s;
}
.svc-row.is-selected {
  background: var(--primary);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}
.svc-row__name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 15px;
  text-transform: uppercase; letter-spacing: -0.3px;
}
.svc-row__dur {
  font-family: var(--font-mono);
  font-size: 10px; opacity: 0.7;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.svc-row__price {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
}

/* Booking: style grid */
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.style-tile {
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: box-shadow 0.12s, background 0.12s;
}
.style-tile.is-selected {
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
}
.style-tile__swatch {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 8px;
}
.style-tile__swatch .pattern { position: absolute; inset: 0; }
.style-tile__name {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}

/* Swatch patterns */
.pat-chrome {
  background: linear-gradient(135deg, #fff 0%, #eee 20%, #aaa 50%, #eee 80%, #fff 100%);
  mix-blend-mode: overlay;
}
.pat-french {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 25%; background: #fff;
  border-top: 1.5px solid rgba(0,0,0,0.1);
}
.pat-dots {
  background-image: radial-gradient(circle, #000 1.5px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.25;
}
.pat-glitter {
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 70% 60%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 40% 80%, #fff 0.5px, transparent 1px),
    radial-gradient(circle at 85% 20%, #fff 0.5px, transparent 1px);
  background-size: 20px 20px, 25px 25px, 30px 30px, 22px 22px;
}
.pat-flower {
  background: none;
  display: flex; align-items: center; justify-content: center;
}
.pat-flower svg { width: 60%; height: 60%; }

/* Booking: date/time grid */
.booking__subhead {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 10px;
}
.date-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px; margin-bottom: 20px;
}
.date-btn {
  padding: 10px 4px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}
.date-btn.is-selected {
  background: var(--primary); color: #fff;
  box-shadow: 2px 2px 0 var(--ink);
}
.date-btn__day { font-size: 8px; font-weight: 700; letter-spacing: 0.5px; opacity: 0.7; }
.date-btn__num { font-size: 10px; font-weight: 700; margin-top: 2px; }

.time-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.time-btn {
  padding: 12px 6px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}
.time-btn.is-selected {
  background: var(--primary); color: #fff;
  box-shadow: 2px 2px 0 var(--ink);
}

/* Booking: form */
.form { display: flex; flex-direction: column; gap: 12px; }
.form__label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.6; display: block; margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
  outline: none;
}
.form__input:focus { box-shadow: 3px 3px 0 var(--ink); }

.travel-check {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  padding: 12px 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  transition: background 0.12s, box-shadow 0.12s;
}
.travel-check.is-on {
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
}
.travel-check__box {
  width: 22px; height: 22px; border-radius: 6px;
  border: 2px solid var(--ink);
  background: #fff;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.travel-check.is-on .travel-check__box { background: var(--ink); }
.travel-check.is-on .travel-check__box svg { display: block; }
.travel-check__box svg { display: none; }
.travel-check__text {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}

.summary {
  margin-top: 8px;
  padding: 14px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 12px;
}
.summary__head {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

/* Summary dot rows override spacing */
.summary .dot-row { font-size: 12px; }

/* Booking: confirmation */
.confirm {
  text-align: center;
  padding: 20px 10px 10px;
}
.confirm__check {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--ink);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 5px 5px 0 var(--ink);
}
.confirm__title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px; line-height: 0.9;
}
.confirm__body {
  font-family: var(--font-mono);
  font-size: 12px; opacity: 0.7;
  margin-top: 10px; margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.confirm__card {
  padding: 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 16px;
  text-align: left;
}

/* ── Lightbox ──────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox__scrim {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.75);
}
.lightbox__card {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 6px 6px 0 var(--ink);
  width: 100%;
  max-width: 380px;
  animation: lb-pop 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lb-pop {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.lightbox__imgwrap {
  height: 340px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: #000;
}
.lightbox__imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.lightbox__meta {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: 10px; opacity: 0.6;
}
.lightbox__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.lightbox__close {
  margin-top: 12px; width: 100%;
  background: var(--ink); color: #fff;
  border: none; padding: 10px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer;
}

/* ── Scrollbar nuke ────────────────────────── */
::-webkit-scrollbar { width: 0; height: 0; }

/* ── Reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── Mobile / Desktop shell switch ───────────── */
@media (min-width: 768px) {
  .jangi-site {
    display: block;
    background: var(--paper);
    background-image: none;
  }
  .shell { display: none; }
  .jangi-desktop { display: block; width: 100%; }
}
