:root {
  --gold: #ffffff;
  --gold-2: #f4f4f4;
  --gold-3: #c8c8c8;
  --black: #050505;
  --ink: #0a0a0a;
  --panel: #111111;
  --line: rgba(255, 255, 255, 0.16);
  --cream: #f5f5f5;
  --muted: #9a9a9a;
  --red: #e30613;
  --ok: #3dba7a;
  --font-display: "Oswald", Impact, sans-serif;
  --font-head: "Oswald", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 8px;
  --header: 72px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --ease: 180ms ease;
  --stripe: linear-gradient(90deg, #fff 0 78%, var(--red) 78% 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { background: var(--black); color: var(--cream); max-width: 100%; }
body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  letter-spacing: 0.01em;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
img.hero-photo, .hero-collage img { max-width: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
::selection { background: var(--red); color: #fff; }

.wrap {
  width: min(1280px, calc(100% - 28px));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.head {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.muted { color: var(--muted); }
.gold { color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: #fff;
  color: #111;
}
.btn-gold:hover { background: var(--red); color: #fff; }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 0.9rem; }
.icon-wa { width: 18px; height: 18px; fill: currentColor; }

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: #050505;
  display: grid; place-items: center;
  transition: opacity .28s ease, visibility .28s ease;
}
#preloader.is-done { opacity: 0; visibility: hidden; }
.pre-mark { text-align: center; }
.pre-mark img, .pre-mark svg { width: 72px; height: auto; margin-inline: auto; }
.pre-mark p {
  margin-top: 16px;
  font-family: var(--font-head);
  letter-spacing: 0.32em;
  color: var(--gold);
  font-size: 0.72rem;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  height: var(--header);
  display: flex; align-items: center;
  background: rgba(5,5,5,.94);
  border-bottom: 1px solid var(--line);
  transition: background var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--stripe);
}
.site-header.is-scrolled {
  background: rgba(5,5,5,.98);
}
.header-inner {
  width: min(1280px, calc(100% - 28px));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.brand span { min-width: 0; }
.brand img, .brand svg { width: 48px; height: 52px; object-fit: contain; }
.brand b { display: block; font-family: var(--font-head); letter-spacing: .18em; font-size: 1.05rem; }
.brand small { display: block; color: var(--red); letter-spacing: .28em; font-size: .62rem; }
.nav-links { display: flex; gap: 22px; font-size: .86rem; color: #bdbdbd; }
.nav-links a { padding: 6px 0; border-bottom: 1px solid transparent; transition: color var(--ease), border-color var(--ease); }
.nav-links a:hover { color: #fff; border-bottom-color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--cream); content: "";
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.mobile-nav {
  display: none;
  position: fixed; inset: var(--header) 0 0 0;
  background: rgba(7,7,8,.96);
  padding: 28px;
  flex-direction: column; gap: 18px; font-size: 1.4rem;
  font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase;
}
body.nav-open .mobile-nav { display: flex; z-index: 39; }

/* Hero */
.hero {
  min-height: 0;
  padding: calc(var(--header) + 32px) 0 28px;
  position: relative;
  display: grid;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(800px 380px at 88% 12%, rgba(255,255,255,.04), transparent 55%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  margin: 10px 0 14px;
}
.hero h1 span { display: block; color: var(--gold-2); }
.hero .lead { font-size: 1.05rem; max-width: 44ch; color: #cfcfcf; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 26px;
  color: var(--muted);
  font-size: .9rem;
}
.hero-meta b { display: block; color: var(--cream); font-weight: 600; margin-bottom: 2px; }
.hero-meta a { color: var(--gold-2); }
.hero-meta a:hover { text-decoration: underline; }
.open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; color: var(--muted); font-size: .88rem;
}
.open-pill span {
  width: 8px; height: 8px; border-radius: 50%; background: #666;
}
.open-pill[data-state="open"] span { background: var(--ok); }
.open-pill[data-state="closed"] span { background: var(--red); }

.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: calc(100svh - var(--header) - 72px);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background: #101010;
}
.hero-collage img {
  position: absolute;
  display: block;
  object-fit: cover;
}
.hero-collage .p1 {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 35%;
  border: 0;
  border-radius: 0;
}
.hero-collage .p2 {
  width: 36%;
  height: 32%;
  right: 16px;
  bottom: 16px;
  left: auto;
  top: auto;
  border-radius: 4px;
  border: 1px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  z-index: 2;
}
.hero-collage .stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--gold-2);
  background: rgba(7,7,8,.78);
  backdrop-filter: blur(8px);
  transform: none;
  width: auto;
  height: auto;
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
  padding: 12px 16px;
}
.marquee-track {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px;
  width: 100%;
  font-family: var(--font-head);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b5b5b5;
  font-size: .7rem;
}

section { padding: 56px 0; position: relative; overflow: hidden; isolation: isolate; background: var(--black); }
.sec-head { max-width: 680px; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-top: 10px; }

[data-reveal] {
  opacity: 0;
  transition: opacity .35s ease;
}
[data-reveal].is-in { opacity: 1; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 380px;
  max-height: 380px;
  overflow: hidden;
  isolation: isolate;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.about-photos img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.about-photos img:hover { opacity: .9; }
.about-photos img:first-child { grid-row: 1 / 3; }
.perk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}
.perk {
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  background: #111;
  border-radius: 4px 8px 8px 4px;
  padding: 18px 16px 16px;
  min-height: 0;
  position: relative;
  z-index: 1;
}
.perk:hover { background: rgba(255,255,255,.04); }
.perk em {
  display: block;
  font-style: normal;
  font-family: var(--font-head);
  letter-spacing: .16em;
  color: var(--gold);
  font-size: .72rem;
  margin-bottom: 8px;
}
.perk h3 { font-size: 1.12rem; margin-bottom: 6px; }
.perk p { color: var(--muted); font-size: .88rem; }

.corp-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}
.corp-strip div {
  background: #101012;
  padding: 16px 12px;
  text-align: center;
}
.corp-strip b {
  display: block;
  font-family: var(--font-head);
  letter-spacing: .18em;
  font-size: .84rem;
  text-transform: uppercase;
}
.corp-strip span { color: var(--muted); font-size: .78rem; }
.stat {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 8px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-2);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  min-height: 0;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease);
}
.service:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); }
.service em {
  font-style: normal;
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: .16em;
  font-size: .78rem;
}
.service h3 { margin: 12px 0 8px; font-size: 1.35rem; }
.service p { color: var(--muted); font-size: .95rem; }

/* Models */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 14px;
  color: var(--muted);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filters button.is-active {
  background: var(--gold);
  color: #16120a;
  border-color: var(--gold);
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.model-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.model-card.is-hidden { display: none; }
.model-card img { width: 100%; height: 340px; object-fit: cover; object-position: center 18%; }
.model-card img.foto-cocuk { object-position: center 42%; height: 340px; }
.model-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}
.model-card h3 { font-size: 1.15rem; }
.model-card span { color: var(--gold); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

/* AI */
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.ai-stage {
  position: relative;
  background: #09090b;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 380px;
  overflow: hidden;
}
.ai-stage video, .ai-stage canvas {
  width: 100%; height: 380px; object-fit: cover;
  transform: scaleX(-1);
}
.ai-frame {
  pointer-events: none;
  position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 18px;
}
.ai-frame i {
  position: absolute; width: 22px; height: 22px; border: 2px solid var(--gold);
}
.ai-frame i:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.ai-frame i:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.ai-frame i:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.ai-frame i:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.ai-scan {
  position: absolute; left: 18px; right: 18px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  top: 18px; opacity: 0;
}
.ai-scan.is-on { animation: scan 2.2s linear infinite; opacity: .7; }
@keyframes scan { to { top: calc(100% - 22px); } }
.ai-status {
  position: absolute; left: 24px; right: 24px; bottom: 18px;
  font-size: .88rem; color: var(--gold-2);
  text-shadow: 0 2px 12px #000;
}
.ai-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.face-picks { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.face-picks button {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  color: var(--muted);
}
.face-picks button.is-active, .face-picks button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.face-picks svg { width: 54px; height: 62px; margin: 0 auto 6px; }
.ai-report { margin-top: 8px; }
.ai-report h3 { font-family: var(--font-display); font-size: 2rem; margin: 6px 0 10px; }
.ai-report-kicker { color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-size: .72rem; }
.ai-meters { margin: 18px 0 22px; }
.ai-meters label { display: flex; justify-content: space-between; font-size: .88rem; margin-top: 10px; }
.ai-meters i {
  display: block; height: 4px; background: #222; border-radius: 99px; margin-top: 6px;
}
.ai-meters em {
  display: block; height: 100%; width: var(--p);
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  border-radius: inherit;
}
.ai-recs { display: grid; gap: 12px; }
.ai-recs article {
  display: grid; grid-template-columns: 92px 1fr; gap: 12px;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; padding: 8px;
  align-items: center;
}
.ai-recs img { width: 92px; height: 110px; object-fit: cover; border-radius: 12px; }
.ai-recs span { display: block; color: var(--gold); font-size: .8rem; margin: 4px 0 8px; }

.ai-lock {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  background: #111;
}
.ai-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.ai-lock h3 { font-family: var(--font-display); font-size: 1.85rem; margin-bottom: 12px; line-height: 1.2; }
.ai-lock p { color: var(--muted); margin-bottom: 18px; }
.ai-lock ul { list-style: none; margin: 0 0 22px; }
.ai-lock li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem;
}
.ai-lock li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ai-lock-actions { display: grid; gap: 10px; }
.ai-lock-actions .btn {
  width: 100%;
  white-space: normal;
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
}
.ai-lock-actions small { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; font-weight: 400; letter-spacing: 0; }

.ai-peek { margin: 16px 0 18px; }
.ai-peek-kicker { color: var(--gold); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 6px; }
.ai-peek h4 { font-size: 1.15rem; margin-bottom: 8px; }
.ai-peek-bar {
  height: 5px; background: #222; border-radius: 99px; overflow: hidden; margin: 8px 0 14px;
}
.ai-peek-bar em { display: block; height: 100%; width: 86%; background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); }
.ai-peek-models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ai-peek-models figure {
  position: relative; overflow: hidden; border-radius: 12px; border: 1px solid var(--line);
  aspect-ratio: 3/4;
}
.ai-peek-models img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: blur(7px) saturate(.85); transform: scale(1.08);
}
.ai-peek-models figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 8px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  font-size: .72rem;
  letter-spacing: .08em;
}
.ai-peek-models i {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(7,7,8,.28);
  font-size: 1.2rem;
  pointer-events: none;
}

.team-list { display: grid; gap: 10px; margin-top: 18px; }
.team-card {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
  min-width: 0;
}
.team-card > span { min-width: 0; }
.team-card b { display: block; }
.team-card span { color: var(--muted); font-size: .82rem; }
.team-card a { color: var(--gold-2); font-weight: 600; white-space: normal; flex-shrink: 0; }

/* Experience */
.exp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}
.exp-card {
  position: relative; overflow: hidden; border-radius: 16px; border: 1px solid var(--line);
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.exp-card img.foto-cocuk { object-position: center 40%; }
.exp-card:first-child { grid-row: 1 / 3; }
.exp-card figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: opacity var(--ease);
}
.gallery-grid img:hover { opacity: .88; }
.gallery-grid img.foto-cocuk { object-position: center 42%; height: 240px; }

#lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.88);
  display: none; place-items: center;
  padding: 24px;
}
#lightbox.is-open { display: grid; }
#lightbox img { max-width: min(920px, 100%); max-height: 88vh; border-radius: 16px; }

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  min-width: 0;
}
.book-panel, .form, .addr, .visit-grid { min-width: 0; }
.book-panel, .form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #101012;
}
.form { display: grid; gap: 12px; min-width: 0; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.form-split > div { min-width: 0; }
.form label { font-size: .82rem; color: var(--muted); }
.form input, .form select, .form textarea {
  width: 100%;
  background: #0a0a0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.svc-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.svc-picks label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream);
  font-size: .88rem;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.svc-picks label:hover { border-color: rgba(255,255,255,.35); }
.svc-picks label:has(input:checked) {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.svc-picks input {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
  flex-shrink: 0;
}
.svc-picks.is-err { outline: 1px solid var(--red); outline-offset: 4px; }
.svc-hint { color: var(--red); font-size: .8rem; margin-top: 6px; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours li span, .hours li b, .hours li a { min-width: 0; overflow-wrap: anywhere; }

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}
.map-wrap {
  min-height: 420px;
  border-radius: 8px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; filter: grayscale(.5) contrast(1.02); }
.addr p { margin: 8px 0 18px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
}
.foot-grid {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  align-items: end;
}
.site-footer small { color: var(--muted); display: block; margin-top: 20px; }

/* WhatsApp */
#wa-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
#wa-launcher svg { width: 32px; height: 32px; fill: #fff; }
#wa-widget {
  position: fixed; right: 22px; bottom: 96px; z-index: 50;
  width: min(340px, calc(100vw - 32px));
  background: #0f0f12;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  box-shadow: var(--shadow);
}
#wa-widget.is-open { opacity: 1; visibility: visible; transform: none; }
.wa-head {
  background: #075E54;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.wa-body { padding: 16px; }
.wa-msg {
  background: #1c2b28;
  border-radius: 12px 12px 12px 4px;
  padding: 12px;
  font-size: .92rem;
  margin-bottom: 12px;
}
.wa-body .btn { width: 100%; background: #25D366; color: #062; }

@media (max-width: 980px) {
  :root { --header: 60px; }
  [data-reveal] { opacity: 1 !important; }
  .nav-links, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; flex-shrink: 0; }
  .header-inner { width: calc(100% - 16px); gap: 8px; }
  .header-cta { gap: 6px; flex-shrink: 0; }
  .header-cta .btn-gold {
    min-height: 38px;
    padding: 0 12px;
    font-size: .82rem;
    white-space: nowrap;
  }
  .brand { gap: 8px; }
  .brand b { font-size: .78rem; letter-spacing: .08em; }
  .brand small { letter-spacing: .1em; font-size: .48rem; }
  .brand img, .brand svg { width: 30px; height: 34px; flex-shrink: 0; }
  .wrap { width: calc(100% - 16px); }
  .hero-grid, .about-grid, .ai-layout, .booking-grid, .visit-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-grid { display: flex; flex-direction: column; gap: 12px; }
  .hero { padding: calc(var(--header) + 10px) 0 10px; }
  .hero h1 { font-size: 2rem; margin: 8px 0 10px; }
  .hero .lead { font-size: .9rem; }
  .hero-actions { margin-top: 12px; }
  .hero-actions .btn { flex: 1 1 100%; min-height: 44px; white-space: normal; }
  .hero-collage {
    order: -1;
    aspect-ratio: 4 / 5;
    max-height: 42vh;
    width: 100%;
    border-radius: 8px;
  }
  .hero-collage img { max-width: none; }
  .hero-collage .p2, .hero-collage .stamp { display: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; font-size: .8rem; }
  .hero-meta > div { min-width: 0; overflow-wrap: anywhere; }
  .open-pill { margin-top: 8px; }
  section { padding: 22px 0; }
  .sec-head { margin-bottom: 12px; max-width: none; }
  .sec-head h2, .addr .head, .book-panel .head { font-size: 1.45rem !important; margin: 8px 0 10px !important; }
  .service-grid, .model-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service { padding: 12px; border-radius: 8px; }
  .service h3 { font-size: 1rem; margin: 6px 0 4px; }
  .service p { font-size: .78rem; }
  .filters { flex-wrap: nowrap; overflow-x: auto; gap: 6px; margin-bottom: 12px; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filters button { flex: 0 0 auto; padding: 8px 12px; font-size: .82rem; }
  .model-card img, .model-card img.foto-cocuk { height: 200px; object-position: center 20%; }
  .model-card figcaption { padding: 10px; }
  .model-card h3 { font-size: .9rem; }
  .model-card .btn { min-height: 34px; padding: 0 10px; font-size: .75rem; }
  .exp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px 150px; gap: 8px; }
  .exp-card:first-child { grid-row: auto; grid-column: 1 / -1; height: 180px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-grid img, .gallery-grid img.foto-cocuk { height: 140px; }
  .about-photos { height: 220px; max-height: 220px; gap: 8px; }
  .stat-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 12px; }
  .perk-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .perk { min-height: 0; padding: 12px; }
  .perk h3 { font-size: .9rem; }
  .perk p { font-size: .76rem; }
  .corp-strip { grid-template-columns: 1fr 1fr; }
  .corp-strip div:last-child { grid-column: 1 / -1; }
  .stat { padding: 8px; }
  .stat b { font-size: 1.05rem; }
  .ai-stage, .ai-stage video, .ai-stage canvas { min-height: 260px; height: 260px; }
  .face-picks { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .face-picks button { padding: 8px 4px; font-size: .76rem; }
  .map-wrap, .map-wrap iframe { min-height: 220px; }
  .book-panel, .form { padding: 14px; border-radius: 8px; }
  .form-split { grid-template-columns: 1fr; }
  .team-card { flex-wrap: wrap; }
  .team-card a { width: 100%; }
  .site-footer { padding: 20px 0 88px; }
  .marquee { padding: 8px 0; }
  .app-dock { display: grid !important; }
  #wa-launcher { right: 14px; bottom: 78px; width: 52px; height: 52px; }
  #wa-widget { right: 12px; bottom: 138px; }
}
@media (max-width: 640px) {
  .hero-collage { max-height: 34vh; aspect-ratio: 3 / 4; }
  .hero h1 { font-size: 1.7rem; }
  section { padding: 18px 0; }
  .btn { white-space: normal; text-align: center; }
  .svc-picks { grid-template-columns: 1fr; }
}

.app-dock {
  display: none;
  position: fixed;
  left: 10px; right: 10px; bottom: 10px;
  z-index: 55;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12,12,14,.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.app-dock a {
  display: grid; place-items: center;
  min-height: 46px;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-head);
  color: var(--muted);
  border-radius: 12px;
}
.app-dock a.is-on, .app-dock a:active { color: #fff; background: rgba(227,6,19,.22); }
.app-dock .dock-wa { background: var(--red); color: #fff; }


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
