/* =============================================
   ALINA DANCE — Sensual Dance Studio
   Style: Dark, Feminine, Luxury
   Palette: black / burgundy / dark-red / rose-gold / cream
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0808;
  --dark:       #140f0f;
  --card-bg:    #1a1212;
  --burgundy:   #6b1c2a;
  --crimson:    #9b2335;
  --rose:       #c85a6e;
  --rose-light: #e8a0ae;
  --gold:       #c9a96e;
  --gold-light: #e8d5a8;
  --cream:      #f5ede4;
  --text:       #e8d8d0;
  --text-muted: #9e8880;
  --border:     rgba(201, 169, 110, 0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --section-gap: 100px;
  --container:   1160px;
  --radius:      4px;
  --radius-lg:   12px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--rose-light);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--crimson);
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(155, 35, 53, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: none;
}

.logo-dot { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--cream); }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--crimson);
  color: var(--rose-light) !important;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--crimson);
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* =============================================
   SECTION 1: HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Вертикальное видео: после rotate(-90deg) ширина→высота, высота→ширина */
  width: 100vh;
  height: 100vw;
  transform: translate(-50%, -50%) rotate(-90deg);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 8, 0.55) 0%,
    rgba(10, 8, 8, 0.4) 40%,
    rgba(10, 8, 8, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--rose-light);
  display: inline;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.05em;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   SECTION 2: HOOK
   ============================================= */
.hook {
  padding: var(--section-gap) 0;
  background: var(--dark);
  position: relative;
}

.hook::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hook-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.hook-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--burgundy);
  text-decoration-thickness: 1px;
}

.hook-cross {
  color: var(--burgundy);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  text-decoration: none;
}

.hook-quote {
  background: rgba(155, 35, 53, 0.08);
  border-left: 2px solid var(--crimson);
  padding: 28px 32px;
  margin-bottom: 36px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hook-quote-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 12px;
}

.hook-author {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hook-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hook-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}

.hook-result-icon {
  color: var(--gold);
  font-size: 10px;
}

/* =============================================
   SECTION 3: ABOUT
   ============================================= */
.about {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107, 28, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.about-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-placeholder-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.about-photo-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-story {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-facts {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-fact-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--rose-light);
  line-height: 1;
}

.about-fact-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* =============================================
   SECTION 4: DIRECTIONS
   ============================================= */
.directions {
  padding: var(--section-gap) 0;
  background: var(--dark);
  position: relative;
}

.directions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.direction-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.direction-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
}

.direction-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.direction-visual--erotic {
  background: linear-gradient(135deg, #2a0a12 0%, #4a1525 100%);
}
.direction-visual--privat {
  background: linear-gradient(135deg, #0a0a2a 0%, #1a1545 100%);
}
.direction-visual--strip {
  background: linear-gradient(135deg, #1a0a2a 0%, #2a1540 100%);
}

.direction-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.direction-icon {
  font-size: 3rem;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.direction-body {
  padding: 28px;
}

.direction-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 12px;
}

.direction-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.direction-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.direction-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.direction-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =============================================
   SECTION 5: FORMATS
   ============================================= */
.formats {
  padding: var(--section-gap) 0;
  position: relative;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.format-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.4);
}

.format-card--highlight {
  border-color: var(--crimson);
  background: linear-gradient(180deg, rgba(155, 35, 53, 0.12) 0%, var(--card-bg) 100%);
}

.format-card--diva {
  border-color: rgba(201, 169, 110, 0.4);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, var(--card-bg) 100%);
  grid-column: span 2;
}

.format-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--crimson);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.format-badge--gold {
  background: var(--gold);
  color: var(--black);
}

.format-icon {
  font-size: 2rem;
}

.format-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
}

.format-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.format-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.format-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.format-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.format-price-val {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--rose-light);
  font-weight: 300;
}

.format-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.format-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.format-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.format-price-row--highlight {
  color: var(--gold);
}

.format-price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.format-price-val-sm {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose-light);
}

.format-price-row--highlight .format-price-label { color: var(--gold); }
.format-price-row--highlight .format-price-val-sm { color: var(--gold); }

.format-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Abonement accordion */
.abonement-details {
  margin-top: 4px;
}

.abonement-details summary {
  font-size: 0.82rem;
  color: var(--gold);
  cursor: pointer;
  letter-spacing: 0.05em;
  user-select: none;
  margin-bottom: 12px;
}

.abonement-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.abonement-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.abonement-row--best {
  color: var(--gold);
  font-weight: 500;
}

.abonement-price {
  color: var(--rose-light);
  font-family: var(--font-serif);
}

.abonement-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =============================================
   SECTION 6: GALLERY
   ============================================= */
.gallery {
  padding: var(--section-gap) 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-placeholder {
  background: rgba(107, 28, 42, 0.2);
}

.gallery-video,
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-cta {
  text-align: center;
}

/* =============================================
   SECTION 7: REVIEWS
   ============================================= */
.reviews {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '"';
  position: absolute;
  top: 60px; left: -40px;
  font-family: var(--font-serif);
  font-size: 300px;
  color: rgba(155, 35, 53, 0.04);
  line-height: 1;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cream);
  flex-shrink: 0;
}

.review-name {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.review-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(158, 136, 128, 0.5);
  margin-top: 32px;
  font-style: italic;
}

/* =============================================
   SECTION 8: FAQ
   ============================================= */
.faq {
  padding: var(--section-gap) 0;
  background: var(--dark);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(201, 169, 110, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--cream);
  text-align: left;
  background: var(--card-bg);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: rgba(155, 35, 53, 0.08);
  color: var(--rose-light);
}

.faq-item.open .faq-question {
  color: var(--rose-light);
}

.faq-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 20px 24px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  background: rgba(0,0,0,0.2);
}

.faq-answer a {
  color: var(--rose-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   SECTION 9: CONTACT / CTA
   ============================================= */
.contact {
  position: relative;
  padding: var(--section-gap) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(107, 28, 42, 0.3) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, #1a0a10 50%, var(--black) 100%);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155, 35, 53, 0.08) 0%, transparent 50%);
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 16px 0 24px;
}

.contact-title em {
  font-style: italic;
  color: var(--rose-light);
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-option {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.contact-option--tg:hover {
  border-color: #229ED9;
  background: rgba(34, 158, 217, 0.08);
}

.contact-icon {
  width: 40px;
  height: 40px;
  color: #229ED9;
}

.contact-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-social-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-link {
  font-size: 0.9rem;
  color: var(--rose-light);
  padding: 6px 16px;
  border: 1px solid rgba(200, 90, 110, 0.3);
  border-radius: 20px;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(200, 90, 110, 0.1);
  border-color: var(--rose);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(158, 136, 128, 0.5);
  line-height: 1.7;
}

.footer-copy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .nav { display: none; gap: 0; }
  .burger { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .nav.open .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
  }

  .hook-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }

  .directions-grid { grid-template-columns: 1fr 1fr; }

  .formats-grid { grid-template-columns: 1fr 1fr; }
  .format-card--diva { grid-column: span 2; flex-direction: column; }

  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {
  :root { --section-gap: 56px; }

  .hero-title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .directions-grid { grid-template-columns: 1fr; }

  .formats-grid { grid-template-columns: 1fr; }
  .format-card--diva { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .btn { white-space: normal; text-align: center; }
  .hook-quote { padding: 20px; }

  .footer-links { gap: 16px; }

  .contact-option { padding: 20px 24px; width: 100%; }
}

/* =============================================
   UTILS
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
