/* ============================================
   ZIMA Tattoo Studio — White Bento v3
   ============================================ */

/* --- Font Faces --- */
@font-face { font-family: 'Unbounded'; src: url('fonts/Unbounded-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('fonts/Unbounded-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('fonts/Unbounded-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('fonts/Unbounded-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('fonts/Unbounded-Black.ttf') format('truetype'); font-weight: 900; font-display: swap; }

/* --- CSS Variables --- */
:root {
  --white: #FFFFFF;
  --black: #000000;
  --blue: #312CFF;
  --green: #91FF23;
  --bg: #F5F5F5;
  --border: rgba(0,0,0,0.08);
  --text: #0A0A0A;
  --muted: rgba(0,0,0,0.45);
  --text-inv: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 20px;
  --radius-full: 999px;
  --gap: 16px;
  --pad: 28px;
  --max-w: 1200px;
  --font: 'Unbounded', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
input, select, textarea { font-family: var(--font); }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Scroll Animations --- */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Section Labels --- */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-label--dark {
  color: rgba(255,255,255,0.45);
}

/* --- Section Heading --- */
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.section-heading .blue { color: var(--blue); }

/* ============================================
   1. HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo svg { flex-shrink: 0; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--blue); }
.header__cta {
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(145,255,35,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-nav .header__cta {
  margin-top: 16px;
  display: inline-block;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  padding: 16px 24px 0;
}
.hero__block {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 520px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #312CFF 0%, #000000 25%, #00A3FF 50%, #5B5BFF 75%, #0a0a1a 100%);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__wordmark { margin-bottom: 16px; }
.hero__subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__btn-primary {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero__btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255,255,255,0.2);
}
.hero__btn-secondary {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s;
}
.hero__btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* ============================================
   3. CATEGORY SECTION
   ============================================ */
.section { padding: 40px 0; }
.section--categories { padding-top: 80px; }

/* ---- CATEGORY BENTO GRID ---- */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.category-card {
  flex: 1 1 calc(50% - 6px);
  min-width: 260px;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.category-card:hover { background: #1a1a1a; }
.category-card.active { background: var(--blue); }

.category-card__left { display: contents; }

.category-card__name {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-inv);
  letter-spacing: -0.01em;
  line-height: 1;
}
.category-card__meta {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.category-card__price {
  font-size: 34px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-top: auto;
}
.category-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.2s;
  line-height: 1;
}
.category-card.active .category-card__arrow {
  color: white;
  transform: rotate(180deg);
}

/* Category Detail Panel */
.category-detail {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  height: 480px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: slideDown 0.3s ease;
  margin-top: 12px;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.category-detail__info {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* No close button — closing via card click */
.category-detail__close { display: none; }
.category-detail__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.category-detail__tag {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-detail__price {
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 900;
  color: var(--green);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  white-space: nowrap;
}
.category-detail__desc {
  font-size: clamp(15px, 1.4vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 40px;
}
.category-detail__cta {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 22px 36px;
  border-radius: var(--radius-full);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.category-detail__cta:hover { background: #2520cc; }
.category-detail__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.category-detail__close:hover { background: rgba(255,255,255,0.22); }
.category-detail__photos {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-lg);
}
.category-detail__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}
/* Photo slider */
.cd-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cd-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cd-slide.active {
  opacity: 1;
  pointer-events: all;
}
.detail-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 16px;
}
.detail-nav-btn:hover { background: rgba(0,0,0,0.8); }
.detail-nav-btn--prev { left: 12px; }
.detail-nav-btn--next { right: 12px; }
.detail-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.detail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.detail-dot.active { background: var(--white); }

/* AI Consultation Block */
.ai-block {
  margin-top: var(--gap);
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ai-block__left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ai-block__btn {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.ai-block__btn:hover { background: #2520cc; transform: translateY(-1px); }
.ai-block__right { display: flex; align-items: center; gap: 14px; }
.ai-block__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s infinite alternate;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(49,44,255,0.4); }
  100% { box-shadow: 0 0 20px 8px rgba(49,44,255,0.15); }
}
.ai-block__bubble {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ============================================
   4. TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 8px;
}
.team-card {
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  position: relative;
}
.team-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(49,44,255,0.25);
}
.team-card.active {
  border-color: var(--blue);
}
.team-card__photo {
  aspect-ratio: 3/4;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.team-card__text { flex: 1; min-width: 0; }
.team-card__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 2px;
}
.team-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.team-card__spec {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.team-card__chevron {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  flex-shrink: 0;
  padding-bottom: 2px;
}

/* Team Detail Panel */
.team-detail {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  height: 480px;
  background: transparent;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: slideDown 0.3s ease;
  margin-top: 12px;
}
.team-detail__info {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  gap: 0;
}
.team-detail__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.team-detail__close:hover { background: rgba(255,255,255,0.22); }
.team-detail__num {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}
.team-detail__name {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.team-detail__specialty {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.team-detail__bio {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 28px;
}
.team-detail__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.team-detail__tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-detail__cta {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 22px 36px;
  border-radius: var(--radius-full);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.team-detail__cta:hover { background: #2520cc; }
.team-detail__photos {
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-lg);
}

/* ============================================
   5. FLASH DESIGNS
   ============================================ */
.section--flash { padding-top: 40px; }
.flash-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 24px;
  font-weight: 400;
}
.flash-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.flash-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.flash-tab:hover { border-color: rgba(0,0,0,0.2); }
.flash-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.flash-wrapper {
  position: relative;
  overflow: hidden;
}
.flash-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.flash-arrow:hover { background: #222; transform: translateY(-50%) scale(1.05); }
.flash-arrow--left { left: 8px; }
.flash-arrow--right { right: 8px; }

.flash-grid {
  display: flex;
  gap: var(--gap);
  width: 100%;
}
.flash-card {
  flex: 0 0 calc(25% - var(--gap) * 3 / 4);
  min-width: 0;
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
  position: relative;
}
.flash-card:hover {
  transform: scale(1.03);
  border-color: var(--blue);
}
.flash-card__image {
  aspect-ratio: 3/4;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.flash-card__image svg { opacity: 0.5; width: 80%; height: 80%; }
.flash-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.flash-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flash-card__cat {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.flash-card__price {
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 10px;
}
.flash-card__btn {
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  display: block;
}
.flash-card__btn:hover { background: #2520cc; }

/* ============================================
   6. ABOUT SECTION
   ============================================ */
.about-block {
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, #0a0a2e 0%, #0a0a0a 40%, #111 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  min-height: 400px;
}
.about-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(49,44,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.about__left {
  width: 55%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.about__heading {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.about__text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.about__address {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.about__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.about__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.about__social:hover { transform: translateY(-2px); }
.about__social svg { width: 20px; height: 20px; }
.about__right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
}
.about__badge {
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-align: center;
  width: 100%;
  max-width: 280px;
}

/* ============================================
   7. BOOKING FORM
   ============================================ */
.booking-block {
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, #312CFF 0%, #1a1a8a 30%, #0d0d5c 60%, #0a0a2e 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  min-height: 500px;
}
.booking__left {
  width: 45%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.booking__heading {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.booking__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.booking__prices { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.booking__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 12px;
}
.booking__price-name {
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.booking__price-size {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-left: 8px;
}
.booking__price-val {
  font-weight: 900;
  color: var(--green);
}
.booking__right {
  width: 55%;
  padding: 48px 48px 48px 24px;
  display: flex;
  align-items: center;
}
.booking__form-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 32px;
  width: 100%;
}
.booking__form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: white;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
}
.form-group select { appearance: none; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select option { background: #1a1a1a; color: white; }
.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.form-submit:hover { background: #2520cc; transform: translateY(-1px); }
.form-fine {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-success__text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 40px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__nav {
  display: flex;
  gap: 24px;
}
.footer__nav a {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text); }
.footer__copy {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.footer__attr {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
.footer__attr a {
  font-size: 10px;
  color: rgba(0,0,0,0.25);
  font-weight: 400;
  transition: color 0.2s;
}
.footer__attr a:hover { color: var(--muted); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 680px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-banner__text {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.cookie-banner__link {
  color: var(--green);
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}
.cookie-banner__details {
  display: none;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.cookie-banner__details.open { display: block; }
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--accept {
  background: var(--green);
  color: var(--black);
}
.cookie-banner__btn--decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; gap: 14px; bottom: 16px; }
  .cookie-banner__actions { flex-direction: row; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  transition: opacity 0.15s ease;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__nav.hidden { display: none; }
.cd-slide { cursor: zoom-in; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__cta { display: none; }

  .hero__block { min-height: 420px; padding: 60px 24px; }
  .hero__buttons { flex-direction: column; gap: 8px; }

  .category-card { flex: 1 1 100%; }
  .category-card__name { font-size: 22px; }
  .category-card__price { font-size: 28px; }
  .category-detail { grid-template-columns: 1fr; height: auto; gap: 8px; }
  .category-detail__info { padding: 32px 28px; }
  .category-detail__price { font-size: 48px; }
  .category-detail__desc { font-size: 15px; }
  .category-detail__photos { aspect-ratio: 4 / 3; }

  .team-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .team-detail { grid-template-columns: 1fr; height: auto; gap: 8px; }
  .team-detail__info { padding: 28px 20px; }
  .team-detail__name { font-size: 28px; }
  .team-detail__bio { font-size: 14px; margin-bottom: 20px; }
  .team-detail__cta { font-size: 12px; padding: 16px 20px; }
  .team-detail__photos { aspect-ratio: 4 / 3; }

  .flash-card { flex: 0 0 calc(50% - var(--gap) / 2); }
  .flash-arrow--left { left: 6px; }
  .flash-arrow--right { right: 6px; }

  .about-block { flex-direction: column; }
  .about__left { width: 100%; padding: 32px 24px; }
  .about__right { width: 100%; padding: 0 24px 32px; }

  .booking-block { flex-direction: column; }
  .booking__left { width: 100%; padding: 32px 24px; }
  .booking__right { width: 100%; padding: 0 24px 32px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
}
@media (max-width: 560px) {
  .flash-card { flex: 0 0 calc(50% - var(--gap) / 2); }
  .flash-card__price { font-size: 13px; }
  .flash-card__btn { font-size: 9px; padding: 6px 10px; }
  .flash-card__overlay { padding: 36px 12px 12px; }
  .ai-block { flex-direction: column; text-align: center; align-items: center; gap: 16px; padding: 24px 20px; }
  .ai-block__left { flex-direction: column; align-items: center; }
  .ai-block__right { flex-direction: column; align-items: center; }
  .ai-block__bubble { text-align: center; }
  .header__cta { font-size: 11px; padding: 8px 16px; }
}

/* ============================================
   FLOATING BOOKING BUTTON (FAB)
   ============================================ */
.fab-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--text);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 1;
  pointer-events: auto;
}
.fab-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.fab-book svg { flex-shrink: 0; }

@media (max-width: 560px) {
  .fab-book { bottom: 20px; right: 16px; padding: 13px 18px 13px 14px; font-size: 12px; }
}

/* ============================================
   ALTEGIO MODAL
   ============================================ */
.altegio-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}
.altegio-modal.open {
  display: block;
}
.altegio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
}
.altegio-modal__box {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.altegio-modal.open .altegio-modal__box {
  transform: translateX(0);
}
.altegio-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  background: var(--bg);
  border: none;
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s;
}
.altegio-modal__close:hover { background: var(--border); }
.altegio-modal__iframe {
  width: 100%;
  flex: 1;
  border: none;
}
@media (max-width: 560px) {
  .altegio-modal__box { width: 100vw; }
}
