/* ════════════════════════════════════════════════════════════════
   ROSH.MOSCOW — Complete Stylesheet (no Tailwind)
   ════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg-dark:       #0A0A0A;
  --bg-medium:     #131313;
  --bg-light:      #FAFAFA;
  --bg-card:       #1A1A1A;
  --bg-card-high:  #2a2a2a;

  --gold:          #FFD700;
  --gold-dim:      #e9c400;

  --text-primary:  #e5e2e1;
  --text-light:    #1A1A1A;
  --text-muted:    #6B6B6B;
  --text-dim:      #c7c6c6;
  --text-white:    #ffffff;

  --radius-sm:     2px;
  --radius-md:     8px;
  --radius-lg:     12px;

  --font-heading:  'Jost', sans-serif;
  --font-headline: 'Jost', sans-serif;
  --font-body:     'Montserrat', sans-serif;

  --header-h:      70px;
  --section-pad:   100px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { user-select: none; -webkit-user-select: none; }
input, textarea, [contenteditable] { user-select: text; -webkit-user-select: text; }

/* ─── Accessibility ─────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -999px;
  left: 6px;
  z-index: 9999;
  background: var(--gold);
  color: #0A0A0A;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* ─── Focus visible ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #F5C518 #0D0D0D;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #F5C518; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #D4A810; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol { list-style: none; }

/* ─── Global typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}
p, span, a, li, label, input, select, textarea, button {
  font-family: var(--font-body);
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* Hidden utility */
.hidden { display: none !important; }

/* ─── Shared Button ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-gold {
  background: var(--gold);
  color: #0A0A0A;
  overflow: hidden;
  position: relative;
}
.btn-gold:hover { filter: brightness(1.08); transform: scale(1.02); }
.btn-full { width: 100%; }

/* ─── Star Divider ──────────────────────────────────────────── */
.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.star-divider-line {
  height: 1px;
  width: 96px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.star-divider--light .star-divider-icon { color: var(--gold); }
.star-divider-line--light {
  background: rgba(0,0,0,0.12);
  opacity: 1;
}
.star-divider-icon { color: var(--gold); font-size: 20px; }

/* ═════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13,13,13,0.85);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.is-scrolled {
  background: rgba(13,13,13,0.95);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.header-logo-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--text-white);
}
.header-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
.header-nav-link {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 0.2s;
}
.header-nav-link:hover { color: var(--gold); }
.header-nav-star { color: var(--gold); font-size: 0.7rem; opacity: 0.5; }
.header-nav-link:hover .header-nav-star { opacity: 1; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--gold); }
.header-phone-icon { font-size: 18px; color: var(--gold); }

@media (max-width: 767px) {
  .header-actions .btn-gold { display: none; }
}
@media (min-width: 768px) {
  .header-nav { display: flex; }
}
@media (min-width: 1024px) {
  .header-phone { display: flex; }
  .header-inner { padding: 0 48px; }
}

/* ═════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) grayscale(0.15);
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A 0%, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 24px) 20px 80px;
  max-width: 1200px;
  width: 100%;
}
.hero-title {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--text-white);
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.hero-title-gold { color: var(--gold); }
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  color: #B0B0B0;
  font-size: clamp(1rem, 2vw, 1.4rem);
  max-width: 640px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.btn-hero {
  padding: 20px 44px;
  font-size: 1.05rem;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.btn-hero:hover {
  transform: scale(1.03);
  box-shadow: 0 0 32px rgba(255,215,0,0.28);
}
.btn-shine {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.btn-hero:hover .btn-shine { transform: translateY(0); }
.hero-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 14px 24px;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.hero-badge-item {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge-star { color: var(--gold); font-weight: 700; }
.hero-badge-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 480px) {
  .hero-badge-sep { display: none; }
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-white);
}
.hero-scroll-icon {
  color: var(--text-white);
  font-size: 1.875rem;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═════════════════════════════════════════════════════════════
   2. О ЦЕНТРЕ
   ════════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-dark);
  padding: 80px 0 100px;
}
.about-title-wrap {
  text-align: center;
  margin-bottom: 60px;
}
.about-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: -0.02em;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1;
}
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-inner { grid-template-columns: 60% 1fr; gap: 60px; }
}

/* Slider */
.about-slider-col { display: flex; flex-direction: column; gap: 20px; }
.about-slider-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  background: #1c1b1b;
}
@media (min-width: 640px) { .about-slider-wrap { height: 380px; } }
@media (min-width: 1024px) { .about-slider-wrap { height: 500px; } }
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 900ms ease;
}
.about-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.about-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  z-index: 2;
  pointer-events: none;
}
.about-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  padding: 0;
}
.about-dot.is-active { background: var(--gold); transform: scale(1.15); }

/* Stats */
.about-info-col { display: flex; flex-direction: column; gap: 40px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
.about-stat { display: flex; flex-direction: column; }
.about-stat-num {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1.1;
}
.about-stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #B0B0B0;
}
.about-text strong { color: var(--text-white); font-weight: 400; }

/* ═════════════════════════════════════════════════════════════
   3. MARQUEE + PARTNERS
   ════════════════════════════════════════════════════════════ */
@keyframes marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-section {
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gold);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-fwd 30s linear infinite;
  will-change: transform;
}
.marquee-track--reverse { animation: marquee-rev 30s linear infinite; }
.marquee-text {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0A0A0A;
  padding: 0 32px;
  flex-shrink: 0;
}
@media (min-width: 640px) { .marquee-text { font-size: 0.875rem; } }

.partners-bar {
  background: var(--bg-light);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 8px;
}
.partners-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  max-width: 1200px;
  width: 100%;
}
@media (min-width: 768px) {
  .partners-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 32px;
  }
}
.partner-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  color: rgba(0,0,0,0.55);
  letter-spacing: -0.02em;
  filter: grayscale(1);
}
.partner-name--italic { font-style: italic; }

/* ═════════════════════════════════════════════════════════════
   4. УСЛУГИ
   ════════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-dark);
  padding: 80px 0 120px;
}
.services-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 60px;
}
.services-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.services-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) { .services-list { gap: 100px; } }
@media (min-width: 1024px) { .services-list { gap: 140px; } }

/* Service item — JS renders these */
.svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .svc-item { flex-direction: row; gap: 60px; }
  .svc-item--even { flex-direction: row-reverse; }
}
.svc-img-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1c1b1b;
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
  transition: transform 0.4s;
}
.svc-item:hover .svc-img-wrap { transform: scale(1.01); }
.svc-img-wrap--mask1 { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); }
.svc-img-wrap--mask2 { clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%); }
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.svc-item:hover .svc-img { transform: scale(1.06); }
.svc-img-shimmer {
  position: absolute;
  inset: 0;
  background: rgba(255,215,0,0.04);
  mix-blend-mode: overlay;
}
.svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .svc-item--even .svc-body { text-align: right; }
  .svc-item--even .svc-desc { border-left: none; border-right: 2px solid rgba(255,215,0,0.2); padding-left: 0; padding-right: 24px; }
}
.svc-num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(5rem, 10vw, 7.5rem);
  color: var(--gold);
  line-height: 1;
}
.svc-name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.svc-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  border-left: 2px solid rgba(255,215,0,0.2);
  padding: 4px 0 4px 20px;
  line-height: 1.6;
}
.svc-price {
  font-family: var(--font-headline);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
}

/* ═════════════════════════════════════════════════════════════
   5. ПОРТФОЛИО
   ════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.portfolio-watermark {
  position: absolute;
  top: 40px;
  right: -20px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.portfolio-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .portfolio-inner { padding: 0 32px; } }
.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .portfolio-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.portfolio-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--text-light);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.portfolio-sub-wrap {
  max-width: 300px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.portfolio-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 72px;
}
.filter-star {
  color: var(--gold);
  font-size: 0.875rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.filter-btn {
  padding: 8px 24px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--text-white);
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn--active {
  background: var(--gold);
  color: #0A0A0A;
  border-color: transparent;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
.portfolio-empty {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-muted);
  padding: 60px 0;
}

/* Portfolio footer */
.pf-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}
.pf-footer-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  padding: 14px 40px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pf-footer-btn:hover { background: var(--gold); border-color: var(--gold); color: #0A0A0A; }
.pf-footer-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Portfolio card */
.pf-card {
  display: flex;
  flex-direction: column;
}
.pf-card--odd  { margin-top: 0; }
@media (min-width: 768px) {
  .pf-card--odd  { margin-top: -32px; }
  .pf-card--even { margin-top: 48px; }
}
/* Before/after slider */
.ba-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
  background: #d4d4d4;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  transition: box-shadow 0.3s;
}
.ba-card:hover { box-shadow: 0 28px 56px rgba(0,0,0,0.13); }
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--gold);
}
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.72);
}
.ba-label-before {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-white);
  border-radius: var(--radius-sm);
}
.ba-label-after {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-radius: var(--radius-sm);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-btn {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  color: #0A0A0A;
  transform: translateX(-50%);
}
.ba-handle-btn .material-symbols-outlined { font-size: 1.1rem; }
.pf-card-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 480px) {
  .pf-card-meta { flex-direction: row; align-items: center; }
}
.pf-card-name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pf-card-dots {
  display: none;
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(0,0,0,0.18);
  margin: 0 16px;
}
@media (min-width: 480px) { .pf-card-dots { display: block; } }
.pf-card-tag {
  padding: 6px 16px;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-lg);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  text-align: center;
}

/* ═════════════════════════════════════════════════════════════
   6. ОТЗЫВЫ
   ════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--bg-light);
}
.reviews .marquee-section { margin-bottom: 0; }
.reviews-inner {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .reviews-inner { padding: 80px 32px 100px; } }
.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* Review card */
.review-card {
  background: var(--text-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0A0A0A;
}
.review-stars { display: flex; gap: 2px; color: var(--gold); }
.review-stars .material-symbols-outlined { font-size: 1.1rem; }
.review-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: #404040;
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
}
.review-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.review-name {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--text-light);
  font-size: 1.1rem;
}
.review-car {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .reviews-footer { flex-direction: row; justify-content: center; }
}
.yandex-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-light);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.yandex-badge:hover { background: rgba(255,215,0,0.08); }
.yandex-badge-star { color: var(--gold); font-size: 1.2rem; }

/* ═════════════════════════════════════════════════════════════
   7. ЗАПИСЬ
   ════════════════════════════════════════════════════════════ */
.booking {
  background: var(--bg-dark);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking-header {
  text-align: center;
  max-width: 720px;
  margin-bottom: 40px;
}
.booking-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.booking-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #AAAAAA;
  letter-spacing: 0.01em;
}
.booking-card {
  width: 100%;
  max-width: 660px;
  background: #1A1A1A;
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: #F5C518;
  border-radius: 12px;
  padding: 18px 60px;
  transition: background 0.2s;
  text-decoration: none;
}
.booking-btn:hover { background: #d9aa00; }

/* ═════════════════════════════════════════════════════════════
   8. БЛОГ
   ════════════════════════════════════════════════════════════ */
.blog-section {
  background: #0D0D0D;
  padding: 80px 0 100px;
}
.blog-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-header {
  text-align: center;
  margin-bottom: 56px;
}
.blog-title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.blog-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.blog-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.03); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #AAAAAA;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-footer {
  text-align: center;
  margin-top: 52px;
}
.blog-all-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 40px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.blog-all-btn:hover { color: var(--gold); border-color: var(--gold); }

/* ═════════════════════════════════════════════════════════════
   9. FAQ (was 8)
   ════════════════════════════════════════════════════════════ */
.faq { background: var(--bg-light); }
.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}
@media (min-width: 768px) { .faq-inner { padding: 100px 48px 80px; } }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  color: var(--text-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto 80px;
}
/* Accordion item — JS renders these */
.acc-item {
  border-bottom: 1px solid #E5E5E5;
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 20px;
}
.acc-question {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-light);
  transition: color 0.25s;
  line-height: 1.3;
}
.acc-btn:hover .acc-question { color: var(--gold); }
.acc-icon {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.is-open .acc-body { max-height: 360px; }
.acc-answer {
  font-family: var(--font-body);
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  font-size: 0.9375rem;
  padding: 0 0 24px;
}
.faq-cta {
  background: #F0F0F0;
  border: 1px solid #E5E5E5;
  border-radius: var(--radius-sm);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .faq-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.faq-cta-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-cta-sub {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
}
.faq-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═════════════════════════════════════════════════════════════
   9. SEO
   ════════════════════════════════════════════════════════════ */
.seo-section {
  background: #0d0d0d;
  padding: 80px 40px;
}
@media (max-width: 640px) { .seo-section { padding: 56px 18px; } }
.seo-container { max-width: 1200px; margin: 0 auto; }
.seo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto;
}
.seo-divider::before,
.seo-divider::after {
  content: '';
  height: 1px;
  width: min(220px, 28vw);
  background: rgba(245,197,24,0.5);
}
.seo-divider span { color: #f5c518; font-size: 14px; }
.seo-heading {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
}
.seo-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (min-width: 768px) { .seo-columns { grid-template-columns: 1fr 1fr; gap: 40px; } }
.seo-columns p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 16px;
}
.seo-columns h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: #f5c518;
  margin: 20px 0 10px;
}
.seo-columns strong { color: #f5c518; font-weight: 700; }
.seo-columns a { color: #f5c518; border-bottom: 1px solid rgba(245,197,24,0.3); }
.seo-columns a:hover { border-bottom-color: #f5c518; }

/* ═════════════════════════════════════════════════════════════
   10. КОНТАКТЫ
   ════════════════════════════════════════════════════════════ */
.contacts {
  background: var(--bg-dark);
  padding: 80px 0 0;
}
.contacts-title-wrap { text-align: center; margin-bottom: 48px; }
.contacts-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.contacts-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contacts-inner { grid-template-columns: 60% 1fr; gap: 60px; }
}
.contacts-map-wrap {
  position: relative;
  min-height: 300px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .contacts-map-wrap { aspect-ratio: 16/9; min-height: 250px; height: 350px; border-radius: 8px; }
  .contacts-inner { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) { .contacts-map-wrap { aspect-ratio: auto; min-height: 440px; } }
.contacts-map-frame {
  position: absolute;
  inset: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.9);
}
.contacts-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
  pointer-events: none;
}
.contacts-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.contacts-info-items { display: flex; flex-direction: column; gap: 28px; }
.contacts-info-row { display: flex; align-items: flex-start; gap: 16px; }
.contacts-icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contacts-address {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-white);
  line-height: 1.5;
}
.contacts-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-white);
  transition: color 0.2s;
}
.contacts-link:hover { color: var(--gold); }
.contacts-hours {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--text-white);
}
.contacts-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.contacts-social-link {
  color: #666;
  transition: color 0.2s, transform 0.2s;
}
.contacts-social-link:hover { opacity: 1; transform: scale(1.1); }
.contacts-social-link .social-icon-img { opacity: 0.55; transition: opacity 0.2s, transform 0.2s; }
.contacts-social-link:hover .social-icon-img { opacity: 1; }
.social-icon-img { width: 26px; height: 26px; object-fit: contain; display: block; }
.contacts-open-map-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 2;
  transition: background 0.2s;
  text-decoration: none;
}
.contacts-open-map-btn:hover { background: rgba(0,0,0,0.8); color: var(--gold); }
.btn-route {
  padding: 18px 28px;
  font-size: 0.875rem;
  justify-content: center;
  width: 100%;
}

/* Subscribe bar */
.subscribe-bar {
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  margin: 0 20px 60px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .subscribe-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    margin: 0 40px 60px;
  }
}
.subscribe-text { flex-shrink: 0; }
.subscribe-title {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.subscribe-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: #777;
}
.subscribe-form { display: flex; flex-direction: column; gap: 12px; width: 100%; }
@media (min-width: 768px) { .subscribe-form { max-width: 480px; } }
.subscribe-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) { .subscribe-input-wrap { flex-direction: row; gap: 0; } }
.subscribe-input {
  background: transparent;
  border: 1px solid #444;
  color: var(--text-white);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  width: 100%;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.subscribe-input:focus { border-color: var(--gold); outline: none; }
.subscribe-input::placeholder { color: #555; }
@media (min-width: 480px) {
  .subscribe-input {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border-right: none;
  }
  .subscribe-input-wrap .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    flex-shrink: 0;
  }
}
.subscribe-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: #4ade80;
}
.subscribe-msg-icon { color: #4ade80; }

/* ═════════════════════════════════════════════════════════════
   11. FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid #1e1e1e;
  padding: 60px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo-wrap {
  cursor: pointer;
  transition: transform 0.4s;
}
.footer-logo-wrap:hover { transform: scale(1.06); }
.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-sm);
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.footer-contact-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,215,0,0.35);
}
@media (max-width: 480px) { .footer-dot { display: none; } }
.footer-location {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.8;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-social-link {
  color: var(--text-white);
  transition: color 0.3s, transform 0.3s;
}
.footer-social-link:hover { color: var(--gold); transform: translateY(-3px); }
.footer-social-link .material-symbols-outlined { font-size: 1.4rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}
.footer-nav-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav-link:hover { color: var(--gold); opacity: 1; }
.footer-nav-sep {
  color: rgba(255,215,0,0.25);
  font-size: 0.6rem;
}
.footer-sep {
  width: min(340px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, #2D2D2D, transparent);
}
.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.55;
  text-align: center;
}

/* ═════════════════════════════════════════════════════════════
   BURGER MENU (mobile)
   ════════════════════════════════════════════════════════════ */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.is-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  .burger-btn { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: #0D0D0D;
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav-link {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--gold);
  color: #0A0A0A;
  text-align: center;
  padding: 14px 0;
  border-radius: 2px;
  border-bottom: none;
}
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}

/* ─── Tap-target fixes ──────────────────────────────────────── */
.filter-btn {
  min-height: 44px;
}
.about-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
