/* ===== Design Tokens — Purple Theme ===== */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --border: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --accent: #ffffff;
  --accent-hover: #dddddd;
  --accent-soft: rgba(255, 255, 255, 0.1);
  --accent-glow: rgba(255, 255, 255, 0.2);
  --error: #e5484d;
  --cta-bg: #ffffff;
  --cta-bg-solid: #ffffff;
  --cta-text: #000000;
  --cta-hover: #e0e0e0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-md: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.65);
  --shadow-purple: 0 16px 48px -12px rgba(255, 255, 255, 0.1);
  --container: 1180px;
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, .logo-text, .main-nav a, .mobile-nav a, .footer-nav a, .btn {
  font-family: var(--font-display);
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn:active { transform: scale(0.97); }
.btn-cta { background: var(--cta-bg); color: var(--cta-text); box-shadow: 0 8px 24px -8px rgba(255,255,255,0.3); }
.btn-cta:hover { background: #e0e0e0; box-shadow: 0 12px 32px -8px rgba(255,255,255,0.4); transform: translateY(-1px); }
.btn-cta:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--text-primary); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-ghost { background: transparent; color: var(--text-secondary); text-transform: none; letter-spacing: 0; font-weight: 600; border: none; }
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-block { width: 100%; margin-top: 8px; padding: 16px; font-size: 16px; }

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.16,1,0.3,1), transform 650ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 11, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 17px; letter-spacing: 0.05em; flex-shrink: 0; }
.logo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.5);
  background: #111;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08), 0 4px 12px rgba(0,0,0,0.6);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.logo-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.logo:hover .logo-avatar {
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 4px 16px rgba(0,0,0,0.7);
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: #0a0a0f;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.logo-text strong { color: var(--accent); letter-spacing: 0.18em; font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.2em; }
.logo-text { color: var(--text-secondary); font-weight: 600; font-size: 18px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: var(--text-secondary); font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; transition: color var(--transition); }
.main-nav a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--text-primary); transition: color var(--transition); font-family: var(--font-body); }
.header-phone:hover { color: var(--accent); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
.burger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile nav ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(14,11,20,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform 350ms cubic-bezier(0.16,1,0.3,1), opacity 350ms, visibility 350ms;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.04em; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 8px; width: 240px; }
.mobile-nav .btn-cta { color: #000000; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) saturate(0.85); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,20,0.55) 0%, rgba(14,11,20,0.72) 50%, var(--bg) 100%),
    linear-gradient(90deg, rgba(14,11,20,0.95) 0%, rgba(14,11,20,0.2) 65%);
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.38);
  color: var(--accent); font-family: var(--font-body); font-size: 13px; font-weight: 600;
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 20px;
}
.hero-title em {
  font-style: italic; font-family: var(--font-serif);
  color: var(--accent); display: block; font-size: 1.08em; line-height: 1.05;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: var(--text-secondary); max-width: 520px; margin-bottom: 32px; line-height: 1.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--text-muted); font-family: var(--font-body); font-size: 13px; }

/* ===== Trust bar ===== */
.trust-bar {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 35%, var(--bg-elevated) 100%);
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; letter-spacing: 0.02em; }
.trust-item span { color: var(--text-secondary); font-size: 13px; line-height: 1.4; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-dark {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 10%, var(--bg-elevated) 90%, var(--bg) 100%);
}
.section-head { margin-bottom: 52px; }
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px; max-width: 680px; line-height: 1.1;
}
.section-title.center { max-width: none; }
.section-desc { color: var(--text-secondary); max-width: 600px; font-size: 16px; }
.section-desc.center { max-width: none; }
.section-desc a { color: var(--accent); font-weight: 600; }
.section-desc a:hover { text-decoration: underline; }

/* ===== Price Table — Menu Style ===== */
.price-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  /* Desktop: 3 columns side by side */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.pt-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
  text-align: center;
}

.pt-category {
  border-right: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  flex-direction: column;
}
.pt-category:last-of-type { border-right: none; border-bottom: none; }

.pt-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px 14px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pt-cat-label svg { color: var(--accent); flex-shrink: 0; }

.pt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: rgba(255,255,255,0.04); }

.pt-name {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.pt-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1.5px dotted rgba(255,255,255,0.15);
  margin: 0 6px;
  min-width: 20px;
}

.pt-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pt-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  min-width: 90px;
  text-align: right;
}

.pt-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
}
.pt-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}
.pt-note a {
  color: var(--text-primary);
  font-weight: 600;
  transition: color var(--transition);
}
.pt-note a:hover { color: var(--accent); }

/* ===== Review author ===== */
.review-author {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ===== Works Gallery ===== */
.works-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 10%, var(--bg-elevated) 90%, var(--bg) 100%);
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.work-card:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 500ms ease;
}
.work-card:hover img { transform: scale(1.06); }
.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,11,20,0.88) 0%, rgba(14,11,20,0.3) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-label {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.work-card-sub {
  font-family: var(--font-body);
  font-size: 11px; color: var(--accent);
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 3px;
}
.works-cta { margin-top: 40px; text-align: center; }

/* ===== About ===== */
.about-section { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3.5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95); transition: transform 600ms ease; }
.about-media:hover img { transform: scale(1.03); }
.about-content p { color: var(--text-secondary); font-family: var(--font-body); margin-bottom: 24px; font-size: 15.5px; line-height: 1.7; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 15px; }
.about-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.about-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.about-actions .btn-ghost svg { transition: transform var(--transition); }
.about-actions .btn-ghost:hover svg { transform: translate(2px, -2px); }

/* ===== Reviews ===== */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.review-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  position: relative;
  transition: transform var(--transition);
}
.review-card::before { display: none; }
.review-card:hover { transform: translateY(-4px); border: none; box-shadow: none; }
.review-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #1a1528;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  margin-bottom: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.review-card:hover .review-icon {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}
.review-stars { color: #f5c344; letter-spacing: 3px; font-size: 17px; }
.review-text {
  color: var(--text-secondary); font-family: var(--font-body);
  font-size: 14.5px; line-height: 1.7; font-style: italic;
  max-width: 320px;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
.review-author {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin-top: 4px;
}
.review-meta-name {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--text-primary); letter-spacing: 0.04em;
}
.review-date {
  font-family: var(--font-body); font-size: 12px;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.review-date::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--text-muted);
}

/* ===== Booking ===== */
.booking-section {
  position: relative; overflow: hidden;
  padding: 120px 0; text-align: center;
}
.booking-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); z-index: 3;
}
.booking-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%); z-index: 3;
}
.booking-bg { position: absolute; inset: 0; z-index: 0; }
.booking-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.5); }
.booking-scrim { position: absolute; inset: 0; background: rgba(8,6,14,0.87); }
.ghost-watermark {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13vw; line-height: 1;
  color: rgba(255,255,255,0.04); white-space: nowrap; pointer-events: none; user-select: none;
}
.booking-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.booking-logo {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.4);
  margin: 0 auto 28px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.booking-logo img { width: 100%; height: 100%; object-fit: cover; }
.booking-form { max-width: 520px; margin: 24px auto 0; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--text-secondary); margin-bottom: 7px; letter-spacing: 0.07em; text-transform: uppercase;
}
.field input, .field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,0.09);
}
.field input[aria-invalid="true"] { border-color: var(--error); }
.field-error { display: block; min-height: 16px; color: var(--error); font-family: var(--font-body); font-size: 12px; margin-top: 5px; }
.booking-status { margin-top: 14px; font-family: var(--font-body); font-size: 14px; min-height: 20px; text-align: center; }
.booking-status.success { color: #7cd992; }
.booking-status.error { color: var(--error); }
.booking-status.error a { color: #fff; text-decoration: underline; }
.booking-secondary { margin-top: 24px; color: var(--text-muted); font-family: var(--font-body); font-size: 14px; }
.booking-secondary a { color: var(--text-primary); font-weight: 600; transition: color var(--transition); }
.booking-secondary a:hover { color: var(--accent); }

/* ===== Contacts ===== */
.contacts-section { padding: 96px 0; }
.contacts-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: stretch; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 420px;
  filter: grayscale(0.4) contrast(1.05) invert(0.92) hue-rotate(230deg);
}
.contacts-info {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contacts-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--accent); letter-spacing: 0.02em; }
.info-row { padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row dt { color: var(--text-muted); font-family: var(--font-display); font-size: 11.5px; letter-spacing: 0.07em; margin-bottom: 4px; text-transform: uppercase; }
.info-row dd { color: var(--text-primary); font-family: var(--font-body); font-size: 15px; }
.info-row dd a { color: var(--text-primary); font-weight: 600; transition: color var(--transition); }
.info-row dd a:hover { color: var(--accent); }
.contacts-info .btn { margin-top: 24px; width: 100%; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 44px 0 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 30px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-secondary); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; transition: color var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-secondary); transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-socials a svg { width: 17px; height: 17px; }
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 18px 0; border-top: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-body); font-size: 12px;
}

/* ===== Mobile CTA ===== */
.mobile-cta {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 90; display: none; align-items: center; gap: 8px;
  background: #ffffff; color: #000000;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  box-shadow: 0 12px 30px -8px rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* ===================================================
   RESPONSIVE — Tablet (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .works-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   RESPONSIVE — Mobile (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-cta { display: flex; }

  /* Header */
  .site-header { padding: 14px 0; }
  .logo-text strong { font-size: 1.1em; letter-spacing: 0.14em; }

  /* Hero */
  .hero { padding-top: 70px; min-height: 100svh; }
  .hero-inner { max-width: 100%; padding-bottom: 40px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 16px; }
  .hero-title em { font-size: 1.05em; }
  .hero-sub { font-size: 0.7rem; margin-bottom: 24px; letter-spacing: 0.04em; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 16px; }
  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 8px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  /* Trust bar */
  .trust-bar { padding: 28px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
  .trust-item svg { width: 26px; height: 26px; }
  .trust-item strong { font-size: 13.5px; }
  .trust-item span { font-size: 12px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .section-desc { font-size: 14.5px; }

  /* Price table — mobile: 1 column vertical */
  .price-table-wrap {
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
  }
  .pt-category { border-right: none; border-bottom: 1px solid var(--border); }
  .pt-category:last-of-type { border-bottom: none; }
  .pt-footer { grid-column: auto; }
  .pt-cat-label { padding: 14px 18px 12px; font-size: 11px; letter-spacing: 0.1em; }
  .pt-row { padding: 12px 18px; gap: 8px; }
  .pt-name { font-size: 14px; white-space: normal; }
  .pt-time { font-size: 11px; }
  .pt-price { font-size: 15px; min-width: 76px; }
  .pt-dots { min-width: 10px; }
  .pt-footer { padding: 18px; gap: 14px; flex-direction: column; align-items: flex-start; border-top: 1px solid var(--border); }

  /* Works — horizontal scroll, one big card */
  .works-section { padding: 56px 0; }
  .works-section .container { overflow: visible; }
  .works-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 24px 14px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .works-grid::-webkit-scrollbar { display: none; }
  .work-card {
    flex: 0 0 88vw;
    aspect-ratio: 3/4;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
  }
  .works-cta { margin-top: 28px; }

  /* About */
  .about-section { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media { order: -1; aspect-ratio: 16/10; border-radius: 14px; }
  .about-media img { object-position: center; }
  .about-content p { font-size: 14.5px; }
  .about-list { gap: 10px; }
  .about-list li { font-size: 14px; }
  .about-actions { flex-direction: column; gap: 12px; }
  .about-actions .btn { width: 100%; justify-content: center; }

  /* Reviews — horizontal scroll */
  .reviews-section .container { overflow: visible; }
  .reviews-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 24px 14px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: center;
  }
  .review-icon { width: 56px; height: 56px; }
  .review-text { font-size: 14px; max-width: 100%; padding: 0 4px; }
  .review-stars { font-size: 16px; }

  /* Booking */
  .booking-section { padding: 72px 0; }
  .ghost-watermark { font-size: 22vw; letter-spacing: 0; }
  .booking-inner { padding: 0 4px; }
  .booking-form { max-width: 100%; }
  .field input, .field textarea { font-size: 16px; } /* prevent iOS zoom */
  .btn-block { font-size: 15px; padding: 15px; }

  /* Contacts */
  .contacts-section { padding: 56px 0; }
  .contacts-grid { grid-template-columns: 1fr; gap: 20px; }
  .map-wrap { min-height: 260px; border-radius: 14px; }
  .contacts-info { padding: 22px 20px; border-radius: 14px; }
  .contacts-info h3 { font-size: 19px; margin-bottom: 18px; }
  .info-row { padding: 12px 0; }
  .info-row dd { font-size: 14.5px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-bottom: 24px; }
  .footer-nav { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .footer-nav a { font-size: 12.5px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; font-size: 11px; gap: 4px; }

  /* Padding for fixed mobile CTA */
  body { padding-bottom: 76px; }
}

/* ===================================================
   RESPONSIVE — Small mobile (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .booking-section { padding: 60px 0; }
  .mobile-cta { padding: 13px 24px; font-size: 13.5px; bottom: 14px; }
  .btn-lg { padding: 15px 22px; font-size: 14px; }
  .section { padding: 48px 0; }
}

/* ===================================================
   RESPONSIVE — Extra small (≤ 360px)
   =================================================== */
@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { flex-direction: row; text-align: left; align-items: flex-start; }
  .logo-text strong { font-size: 1em; letter-spacing: 0.12em; }
  .mobile-cta { padding: 12px 20px; font-size: 13px; }
}

