:root {
  --bg: #050403;
  --panel: #0b0806;
  --panel-2: #130d09;
  --line: rgba(196, 143, 63, 0.34);
  --gold: #c89341;
  --gold-2: #e2bf7a;
  --red: #9f171b;
  --red-2: #6f1013;
  --text: #f4ead8;
  --muted: #b8a894;
  --soft: rgba(244, 234, 216, 0.76);
  --shell-width: 1220px;
  --header-height: 70px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  background: 
    radial-gradient(circle at 75% 10%, rgba(160, 30, 26, 0.15), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(200, 147, 65, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button, input, select { font: inherit; transition: var(--transition); outline: none; }
h1, h2, h3 { font-family: 'Georgia', serif; font-weight: normal; margin-bottom: 15px; }

/* Shell */
.shell {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header / Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 4, 3, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 143, 63, 0.15);
  display: flex;
  align-items: center;
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(200, 147, 65, 0.15);
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.brand-text small {
  color: #d2b274;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  color: #e8dccb;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}
.nav a:hover, .nav a.active { color: var(--gold-2); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-contact { text-align: right; }
.header-contact a { display: block; color: var(--gold-2); font-size: 15px; font-weight: 700; }
.header-contact a:hover { color: #fff; }
.header-contact span { color: var(--muted); font-size: 10px; display: block; margin-top: 2px;}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(159, 23, 27, 0.3);
}
.order-btn:hover, .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(159, 23, 27, 0.5);
  background: linear-gradient(135deg, #b81c20, var(--red));
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: 
    linear-gradient(90deg, rgba(5,4,3,1) 0%, rgba(5,4,3,0.9) 30%, rgba(5,4,3,0.3) 60%, rgba(5,4,3,0) 100%),
    url("assets/compact-hero.jpg") right center / cover no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}
.hero-copy {
  padding: 60px 0;
  max-width: 550px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  color: #e9e4db;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.hero h1 span { color: #cc252b; }
.hero p {
  font-size: 16px;
  color: var(--soft);
  margin: 20px 0;
  line-height: 1.6;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 30px;
}
.hero-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #e8dccb;
}
.hero-points i {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(200, 147, 65, 0.2);
}

.hero-actions { display: flex; gap: 15px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(159, 23, 27, 0.3);
}
.btn.ghost {
  background: rgba(200, 147, 65, 0.05);
  border: 1px solid var(--gold);
  color: var(--gold-2);
}
.btn.ghost:hover {
  background: rgba(200, 147, 65, 0.15);
  transform: translateY(-2px);
}
.btn.ghost b {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.btn.ghost b::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  border-left: 4px solid var(--gold);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.hero-note {
  justify-self: end;
  align-self: end;
  margin-bottom: 40px;
  width: 220px;
  padding: 20px;
  background: rgba(10, 7, 5, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--gold-2);
  font-size: 12px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Stats */
.stats {
  background: linear-gradient(180deg, #0a0705, #050403);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  border-right: 1px solid var(--line);
}
.stats article:last-child { border-right: none; }
.stats span {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(200, 147, 65, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 24px;
}
.stats strong { display: block; color: #cf3337; font-family: Georgia, serif; font-size: 28px; line-height: 1; }
.stats p { color: #e7d9bf; font-size: 11px; text-transform: uppercase; margin-top: 4px; font-weight: 600; letter-spacing: 0.5px; }

/* Programs */
.programs { padding: 40px 0; border-bottom: 1px solid rgba(196,143,63,0.15); }
.section-title {
  text-align: center;
  color: #e9dcc7;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-title::before, .section-title::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.program-card {
  background: linear-gradient(180deg, rgba(20,15,10,0.8), rgba(10,7,5,0.9));
  border: 1px solid rgba(196,143,63,0.2);
  padding: 20px 15px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.program-card .ico {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.program-card strong { display: block; color: #f3e7d2; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.program-card span { color: var(--muted); font-size: 11px; line-height: 1.4; display: block; }

/* Main Grid Layout */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}
.block { margin-bottom: 40px; }
.block h2 {
  font-size: 20px;
  color: var(--gold-2);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(196,143,63,0.2);
  padding-bottom: 10px;
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.about p { color: var(--soft); font-size: 13px; margin-bottom: 15px; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9c6a7;
  font-size: 12px;
}
.check-list span::before {
  content: "";
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  border: 1px solid var(--red);
  color: var(--text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}
.small-action:hover { background: rgba(159, 23, 27, 0.1); border-color: var(--red-2); }

/* Gallery Preview */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(196,143,63,0.3);
  transition: var(--transition);
}
.gallery-grid img:hover { transform: scale(1.05); border-color: var(--gold); }

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.review-card {
  background: rgba(15, 10, 7, 0.6);
  border: 1px solid rgba(196,143,63,0.2);
  padding: 20px;
  border-radius: 4px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: Georgia, serif;
  font-size: 60px;
  color: rgba(200, 147, 65, 0.1);
  line-height: 1;
}
.review-card p { color: var(--soft); font-size: 12px; margin-bottom: 10px; position: relative; z-index: 1; font-style: italic; }
.review-card strong { color: var(--gold-2); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.video-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(10, 7, 5, 0.8);
  border: 1px solid rgba(196,143,63,0.2);
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 12px;
}
.video-item:hover { border-color: var(--gold); }
.video-item img,
.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 0;
  background: #000;
}
.video-thumb {
  position: relative;
  display: block;
}
.video-item .duration,
.video-item strong,
.video-item p,
.video-item .video-link,
.video-item em {
  margin-left: 12px;
  margin-right: 12px;
}
.video-item .duration {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
}
.video-item strong { display: block; color: #f3e6d0; font-size: 14px; line-height: 1.25; }
.video-item p { color: var(--soft); font-size: 12px; line-height: 1.45; }
.video-link,
.video-item em {
  color: var(--gold-2);
  font-size: 12px;
  font-style: italic;
}
.video-link:hover { color: #fff; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.service-card {
  background: rgba(14,9,6,0.8);
  border: 1px solid rgba(196,143,63,0.2);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-card img { width: 100%; height: 120px; object-fit: cover; }
.service-info { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.service-info strong { color: var(--gold-2); font-size: 13px; margin-bottom: 8px; text-transform: uppercase; }
.service-info p { color: var(--soft); font-size: 11px; margin-bottom: 15px; flex-grow: 1; }
.service-info a {
  align-self: center;
  border: 1px solid var(--red);
  padding: 6px 15px;
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 3px;
}
.service-info a:hover { background: var(--red); }

/* Form Request */
.request-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.request form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.request input, .request select {
  height: 42px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(196,143,63,0.3);
  color: var(--text);
  padding: 0 15px;
  border-radius: 4px;
  width: 100%;
}
.request input:focus, .request select:focus { border-color: var(--gold); }
.request input::placeholder { color: rgba(255,255,255,0.3); }
.request button {
  grid-column: 1 / -1;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 5px;
}
.request button:hover { background: linear-gradient(135deg, #b81c20, var(--red)); }

.contact-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196,143,63,0.3);
  padding: 30px 20px;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.contact-content { position: relative; z-index: 1; }
.contact-content a { font-size: 22px; color: var(--gold-2); font-weight: 700; display: block; margin-bottom: 10px; }
.contact-content span { font-size: 13px; color: var(--text); display: block; margin-bottom: 5px; }

/* Footer */
.footer {
  background: #080604;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.footer .nav { justify-content: center; flex-wrap: wrap; }
.footer .socials { display: flex; gap: 10px; justify-content: flex-end; }
.social-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}
.social-icon:hover { background: var(--gold); color: #000; }

/* ========================================= */
/* Responsive Design (Mobile & Tablet)       */
/* ========================================= */

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .header-right { display: none; } /* Hide contact/btn on tablet to save space */
  .nav { gap: 15px; justify-content: flex-end; }
  .nav a { font-size: 10px; }
  
  .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-copy { padding: 40px 0; display: flex; flex-direction: column; align-items: center; }
  .hero-points { justify-content: center; }
  .hero-note { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats article:nth-child(2) { border-right: none; }
  .stats article:nth-child(1), .stats article:nth-child(2) { border-bottom: 1px solid var(--line); }
  
  .program-grid { grid-template-columns: repeat(3, 1fr); }
  
  .main-grid { grid-template-columns: 1fr; gap: 20px; }
  .request-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { height: auto; padding: 15px 0; }
  .nav-shell { flex-direction: column; gap: 15px; }
  .nav { flex-wrap: wrap; justify-content: center; }
  
  .hero { background-position: 60% center; }
  .hero h1 { font-size: 32px; }
  
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .video-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer .socials { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats article { border-right: none; border-bottom: 1px solid var(--line); }
  .stats article:last-child { border-bottom: none; }
  
  .program-grid { grid-template-columns: 1fr; }
  
  .request form { grid-template-columns: 1fr; }
  
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* ========================================= */
/* Floating Phone Button                     */
/* ========================================= */
.floating-phone {
  display: none; /* hidden on desktop */
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(159, 23, 27, 0.6);
  justify-content: center;
  align-items: center;
  animation: pulse-ring 2s infinite;
}
.floating-phone svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .floating-phone {
    display: flex;
  }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(159, 23, 27, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(159, 23, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(159, 23, 27, 0); }
}

/* ========================================= */
/* Success Modal                             */
/* ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.modal-content {
  background: var(--panel);
  border: 1px solid var(--gold);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.modal-overlay.hidden .modal-content {
  transform: translateY(20px);
}
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200, 147, 65, 0.1);
  color: var(--gold);
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
}
.modal-content h3 {
  font-family: Georgia, serif;
  color: var(--gold-2);
  font-size: 24px;
  margin-bottom: 10px;
}
.modal-content p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 25px;
}
.modal-close-btn {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}
.modal-close-btn:hover {
  background: linear-gradient(135deg, #b81c20, var(--red));
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.lightbox[hidden] { display: none !important; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox p { color: #fff; margin-top: 15px; font-size: 14px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

/* Success Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); }
.modal-overlay[hidden] { display: none !important; }
.modal-content { background: var(--panel); border: 1px solid var(--gold); border-radius: 8px; padding: 40px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.modal-icon { font-size: 50px; margin-bottom: 20px; }
.modal-content h3 { color: var(--gold-2); font-family: Georgia, serif; font-size: 24px; margin-bottom: 10px; }
.modal-content p { color: var(--text); font-size: 14px; margin-bottom: 25px; line-height: 1.5; }
.modal-content button { width: 100%; }

/* Floating Phone */
.floating-phone { position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #128C7E, #25D366); display: none; align-items: center; justify-content: center; font-size: 24px; color: #fff; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 900; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 768px) { .floating-phone { display: flex; } }

.dancer-widget {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 950;
  width: 126px;
  height: 176px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.58));
  animation: dancer-enter .42s ease both;
}

.dancer-widget.custom-asset {
  width: 150px;
  height: 238px;
  right: 18px;
  bottom: 78px;
}

.dancer-widget:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 18px;
}

.dancer-stage,
.dancer-custom {
  position: relative;
  display: block;
  width: 110px;
  height: 146px;
  margin: 0 auto;
  transform-origin: 50% 100%;
  animation: dancer-body-sway .9s ease-in-out infinite;
}

.dancer-widget.custom-asset .dancer-custom {
  width: 138px;
  height: 210px;
  transform-origin: 50% 92%;
  animation: dancer-photo-dance .96s ease-in-out infinite;
}

.dancer-custom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.4));
}

.dancer-shadow {
  position: absolute;
  left: 22px;
  right: 20px;
  bottom: 4px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.48), rgba(0,0,0,0) 70%);
}

.dancer-head {
  position: absolute;
  left: 42px;
  top: 10px;
  width: 28px;
  height: 31px;
  border-radius: 48% 48% 44% 44%;
  background: linear-gradient(145deg, #f0c09a, #c97955);
  box-shadow: inset -3px -3px 0 rgba(94,38,24,.16);
  animation: dancer-head .9s ease-in-out infinite;
}

.dancer-hair {
  position: absolute;
  left: 34px;
  top: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 48% 52%;
  background:
    radial-gradient(circle at 26% 28%, #2c100a 0 8px, transparent 9px),
    radial-gradient(circle at 74% 28%, #2c100a 0 8px, transparent 9px),
    linear-gradient(135deg, #170804, #42170d 58%, #1b0804);
  transform-origin: 50% 20%;
  animation: dancer-hair .9s ease-in-out infinite;
}

.dancer-body {
  position: absolute;
  left: 38px;
  top: 40px;
  width: 35px;
  height: 42px;
  border-radius: 16px 16px 10px 10px;
  background:
    linear-gradient(90deg, transparent 43%, rgba(247,196,89,.8) 44% 50%, transparent 51%),
    linear-gradient(145deg, #16100f, #6e1117 54%, #12100f);
  border: 1px solid rgba(214,162,74,.64);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.18);
}

.dancer-skirt {
  position: absolute;
  left: 19px;
  top: 73px;
  width: 74px;
  height: 48px;
  border-radius: 10px 10px 44px 44px;
  background:
    radial-gradient(circle at 20% 72%, #f0bd4f 0 3px, transparent 4px),
    radial-gradient(circle at 55% 80%, #f0bd4f 0 3px, transparent 4px),
    radial-gradient(circle at 82% 62%, #f0bd4f 0 3px, transparent 4px),
    linear-gradient(115deg, #8c151c, #e23442 48%, #260708 52%, #0e0a09);
  border: 1px solid rgba(214,162,74,.7);
  transform-origin: 50% 10%;
  animation: dancer-skirt .44s ease-in-out infinite;
}

.dancer-arm,
.dancer-leg,
.dancer-scarf {
  position: absolute;
  display: block;
  transform-origin: 50% 0;
}

.dancer-arm {
  top: 43px;
  width: 12px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(#e7b38c 0 32%, #7b1217 33% 100%);
  border: 1px solid rgba(214,162,74,.45);
}

.arm-left {
  left: 31px;
  transform: rotate(58deg);
  animation: dancer-arm-left .72s ease-in-out infinite;
}

.arm-right {
  right: 31px;
  transform: rotate(-58deg);
  animation: dancer-arm-right .72s ease-in-out infinite;
}

.dancer-leg {
  top: 112px;
  width: 12px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(#d79a73, #3a1711);
}

.leg-left {
  left: 43px;
  animation: dancer-leg-left .72s ease-in-out infinite;
}

.leg-right {
  left: 57px;
  animation: dancer-leg-right .72s ease-in-out infinite;
}

.dancer-scarf {
  left: 71px;
  top: 55px;
  width: 40px;
  height: 18px;
  border-radius: 80% 20% 80% 20%;
  background: linear-gradient(90deg, #df2332, #f0bd4f);
  transform-origin: 0 50%;
  animation: dancer-scarf .62s ease-in-out infinite;
}

.dancer-hint {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 2px 10px;
  border: 1px solid rgba(214,162,74,.62);
  border-radius: 999px;
  background: rgba(11,5,4,.88);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dancer-widget.muted .dancer-hint {
  color: rgba(255,255,255,.74);
  border-color: rgba(255,255,255,.22);
}

.dancer-widget.muted .dancer-hint::before {
  content: "off ";
}

.dancer-audio {
  position: fixed;
  width: 1px;
  height: 1px;
  right: 0;
  bottom: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

@keyframes dancer-enter {
  from { opacity: 0; transform: translate3d(28px, 12px, 0) scale(.82); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes dancer-photo-dance {
  0%, 100% { transform: translateY(0) rotate(-2.4deg); }
  25% { transform: translateY(-6px) rotate(2.8deg); }
  50% { transform: translateY(0) rotate(1.8deg); }
  75% { transform: translateY(-4px) rotate(-2.2deg); }
}

@keyframes dancer-body-sway {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  25% { transform: translateY(-5px) rotate(4deg); }
  50% { transform: translateY(0) rotate(3deg); }
  75% { transform: translateY(-4px) rotate(-4deg); }
}

@keyframes dancer-head {
  0%, 100% { transform: translateX(-1px) rotate(-4deg); }
  50% { transform: translateX(2px) rotate(5deg); }
}

@keyframes dancer-hair {
  0%, 100% { transform: rotate(-6deg) scaleX(1); }
  50% { transform: rotate(7deg) scaleX(1.05); }
}

@keyframes dancer-skirt {
  0%, 100% { transform: skewX(-4deg) scaleX(1.02); }
  50% { transform: skewX(5deg) scaleX(1.12); }
}

@keyframes dancer-arm-left {
  0%, 100% { transform: rotate(58deg); }
  50% { transform: rotate(96deg); }
}

@keyframes dancer-arm-right {
  0%, 100% { transform: rotate(-58deg); }
  50% { transform: rotate(-96deg); }
}

@keyframes dancer-leg-left {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-18deg) translateY(2px); }
}

@keyframes dancer-leg-right {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(18deg) translateY(-2px); }
}

@keyframes dancer-scarf {
  0%, 100% { transform: rotate(14deg) scaleX(.92); }
  50% { transform: rotate(-10deg) scaleX(1.14); }
}

@media (prefers-reduced-motion: reduce) {
  .dancer-widget {
    animation: dancer-enter .2s ease both;
  }
}

/* Polished stage dancer: front-facing red folk dress inspired by the client's reference. */
.dancer-stage {
  isolation: isolate;
}

.dancer-stage::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 58px;
  width: 70px;
  height: 62px;
  border-radius: 20px 20px 34px 34px;
  background:
    radial-gradient(circle at 18% 68%, #f7d66b 0 2px, transparent 3px),
    radial-gradient(circle at 44% 80%, #f7d66b 0 2px, transparent 3px),
    radial-gradient(circle at 72% 68%, #f7d66b 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 18%, rgba(0,0,0,.42) 19% 23%, transparent 24% 76%, rgba(0,0,0,.42) 77% 81%, transparent 82%),
    linear-gradient(145deg, #d71928 0 48%, #840d17 49% 100%);
  border: 1px solid rgba(238,190,91,.86);
  box-shadow: inset 0 -9px 0 rgba(20,9,7,.34), inset 0 0 0 3px rgba(255,214,105,.13);
  transform-origin: 50% 10%;
  animation: dancer-skirt .52s ease-in-out infinite;
  z-index: 2;
}

.dancer-head {
  left: 41px;
  top: 8px;
  width: 30px;
  height: 34px;
  z-index: 8;
  border-radius: 48% 48% 46% 46%;
  background:
    radial-gradient(circle at 37% 43%, #472017 0 1.5px, transparent 2px),
    radial-gradient(circle at 63% 43%, #472017 0 1.5px, transparent 2px),
    radial-gradient(ellipse at 50% 74%, #9c3328 0 3px, transparent 4px),
    linear-gradient(145deg, #ffd1a9, #d9926d 72%, #ba6b4d);
  box-shadow: inset -3px -4px 0 rgba(89,39,24,.13), 0 0 0 1px rgba(96,35,21,.18);
}

.dancer-eye,
.dancer-smile {
  display: none;
}

.dancer-hair {
  left: 29px;
  top: 1px;
  width: 54px;
  height: 58px;
  z-index: 7;
  border-radius: 48% 48% 38% 42%;
  background:
    radial-gradient(circle at 20% 72%, #160706 0 8px, transparent 9px),
    radial-gradient(circle at 80% 70%, #160706 0 8px, transparent 9px),
    radial-gradient(circle at 24% 34%, #38140d 0 10px, transparent 11px),
    radial-gradient(circle at 76% 34%, #38140d 0 10px, transparent 11px),
    linear-gradient(135deg, #100504, #2d0d08 52%, #541f12);
  box-shadow: 0 8px 0 -2px rgba(22,7,5,.95);
  animation: dancer-hair .82s ease-in-out infinite;
}

.dancer-body {
  left: 36px;
  top: 41px;
  width: 40px;
  height: 43px;
  z-index: 5;
  border-radius: 18px 18px 9px 9px;
  background:
    radial-gradient(circle at 50% 14%, #f7d66b 0 2px, transparent 3px),
    linear-gradient(90deg, #f6e9d7 0 29%, #581017 30% 43%, #f2c456 44% 48%, #581017 49% 70%, #f6e9d7 71% 100%);
  border: 1px solid rgba(238,190,91,.68);
  box-shadow: inset 0 -7px 0 rgba(58,10,12,.42);
}

.dancer-skirt {
  left: 14px;
  top: 75px;
  width: 84px;
  height: 60px;
  z-index: 3;
  border-radius: 16px 16px 44px 44px;
  background:
    linear-gradient(0deg, rgba(10,5,4,.8) 0 8px, transparent 9px),
    repeating-linear-gradient(90deg, rgba(255,217,106,.75) 0 2px, transparent 3px 12px),
    radial-gradient(circle at 22% 65%, #ffd76a 0 3px, transparent 4px),
    radial-gradient(circle at 50% 78%, #ffd76a 0 3px, transparent 4px),
    radial-gradient(circle at 77% 65%, #ffd76a 0 3px, transparent 4px),
    linear-gradient(120deg, #ee2638, #8c0e18 58%, #160807 59% 100%);
  border: 1px solid rgba(238,190,91,.8);
  box-shadow: inset 0 5px 0 rgba(255,255,255,.08), 0 3px 0 rgba(0,0,0,.18);
}

.dancer-arm {
  top: 43px;
  width: 11px;
  height: 52px;
  z-index: 4;
  border-radius: 999px;
  background: linear-gradient(#f1c39c 0 46%, #f6e9d7 47% 65%, #b91521 66% 100%);
  border: 1px solid rgba(238,190,91,.5);
}

.arm-left {
  left: 26px;
  animation: dancer-arm-left .78s ease-in-out infinite;
}

.arm-right {
  right: 26px;
  animation: dancer-arm-right .78s ease-in-out infinite;
}

.dancer-leg {
  top: 124px;
  width: 10px;
  height: 25px;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(#d99a74 0 62%, #2b100d 63% 100%);
}

.leg-left {
  left: 43px;
}

.leg-right {
  left: 58px;
}

.dancer-scarf {
  left: 16px;
  top: 52px;
  width: 82px;
  height: 28px;
  z-index: 6;
  border-radius: 80% 20% 78% 22%;
  background:
    radial-gradient(circle at 18% 42%, rgba(255,222,117,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 58%, rgba(255,222,117,.9) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255,255,255,.5), #c91a28 28%, #f2c456 54%, #7d0c14);
  opacity: .88;
  transform-origin: 50% 50%;
}

.dancer-earring {
  position: absolute;
  top: 35px;
  width: 5px;
  height: 8px;
  border-radius: 50%;
  background: #f2c456;
  box-shadow: 0 0 8px rgba(242,196,86,.5);
  z-index: 9;
}

.earring-left {
  left: 38px;
}

.earring-right {
  left: 70px;
}

@keyframes dancer-body-sway {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  25% { transform: translateY(-4px) rotate(3deg); }
  50% { transform: translateY(0) rotate(2deg); }
  75% { transform: translateY(-3px) rotate(-3deg); }
}

@keyframes dancer-hair {
  0%, 100% { transform: rotate(-3deg) translateX(-1px); }
  50% { transform: rotate(4deg) translateX(2px); }
}

@keyframes dancer-skirt {
  0%, 100% { transform: skewX(-3deg) scaleX(1.02); }
  50% { transform: skewX(4deg) scaleX(1.1); }
}

@keyframes dancer-arm-left {
  0%, 100% { transform: rotate(126deg); }
  50% { transform: rotate(94deg) translateY(-2px); }
}

@keyframes dancer-arm-right {
  0%, 100% { transform: rotate(-126deg); }
  50% { transform: rotate(-94deg) translateY(-2px); }
}

/* Final expert QA pass: stable header, gallery buttons, form states */
.topbar {
  min-height: var(--header-height);
  height: auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(212px, 250px) minmax(0, 1fr) minmax(384px, auto);
  gap: 18px;
  align-items: center;
}

.brand,
.brand-text {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand strong {
  white-space: nowrap;
}

.brand small {
  max-width: 230px;
  white-space: normal;
  line-height: 1.25;
}

.nav {
  justify-content: center;
  gap: clamp(7px, .78vw, 13px);
  min-width: 0;
}

.nav a {
  white-space: nowrap;
}

.header-right {
  display: grid;
  grid-template-columns: auto minmax(154px, auto) minmax(148px, auto);
  align-items: center;
  gap: 14px;
  min-width: 0;
  justify-content: flex-end;
}

.topbar .lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(196, 143, 63, .25);
  border-radius: 4px;
  background: rgba(5, 4, 3, .65);
  justify-self: end;
}

.topbar .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
}

.topbar .lang-btn.active,
.topbar .lang-btn:hover {
  background: rgba(200, 147, 65, .18);
  color: var(--gold-2);
}

.header-contact {
  min-width: 154px;
  padding-left: 14px;
  border-left: 1px solid rgba(196, 143, 63, .24);
}

.order-btn {
  min-width: 148px;
  text-align: center;
}

.gallery-photo {
  appearance: none;
  display: block;
  width: 100%;
  border: 1px solid rgba(196,143,63,.28);
  background-color: #090604;
  background-position: center;
  background-size: cover;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-photo:focus-visible,
.video-item:focus-visible,
.btn:focus-visible,
.order-btn:focus-visible,
.request button:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0;
}

.request button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--gold-2);
  font-size: 12px;
}

.form-message.error {
  color: #ff8b8b;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-links {
  position: relative;
  z-index: 1;
}

@media (max-width: 1400px) {
  .shell {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-shell {
    grid-template-columns: minmax(188px, 220px) minmax(0, 1fr) minmax(62px, auto) minmax(142px, auto) minmax(132px, auto);
    gap: 12px;
  }

  .nav a {
    font-size: 10px;
  }

  .header-right {
    display: contents;
  }

  .topbar .lang-switcher {
    grid-column: 3;
  }

  .header-contact {
    grid-column: 4;
  }

  .order-btn {
    grid-column: 5;
    min-width: 132px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10px;
  }

  .header-contact {
    min-width: 0;
    padding-left: 10px;
  }

  .header-contact span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: minmax(180px, 210px) minmax(0, 1fr) minmax(58px, auto) minmax(130px, auto) minmax(124px, auto);
  }

  .order-btn {
    min-width: 124px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10px;
  }

  .nav {
    gap: 8px;
  }

  .topbar .lang-btn {
    min-width: 26px;
  }

  .header-contact a {
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: minmax(180px, 210px) minmax(0, 1fr) auto;
    gap: 14px;
  }

  .header-right {
    display: contents;
  }

  .topbar .lang-switcher {
    grid-column: 3;
    justify-self: end;
  }

  .topbar .header-contact,
  .topbar .order-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    position: relative;
  }

  .nav-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    justify-content: center;
  }

  .brand small {
    max-width: none;
    text-align: center;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196,143,63,.16);
    padding: 0 6px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .header-right {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    align-items: center;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

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

  .nav a {
    min-height: 40px;
    font-size: 10px;
  }

  .header-right {
    display: none;
  }

  .dancer-widget {
    right: 14px;
    bottom: 86px;
    width: 118px;
    height: 174px;
  }

  .dancer-widget.custom-asset {
    right: 8px;
    bottom: 82px;
    width: 108px;
    height: 182px;
  }

  .dancer-widget.custom-asset .dancer-custom {
    width: 98px;
    height: 150px;
  }

  .dancer-stage,
  .dancer-custom {
    width: 110px;
    height: 146px;
  }

  .dancer-hint {
    min-height: 22px;
    padding: 2px 8px;
    font-size: 10px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 220px;
    text-align: left;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 31px;
    line-height: 1.05;
    text-align: left;
  }

  .hero-copy p,
  .hero-points,
  .hero-actions {
    max-width: 320px;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-points span {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid,
  .program-grid,
  .gallery-grid,
  .video-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr !important;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

.stats article:last-child {
    border-bottom: 0;
  }
}

/* Final visual polish: make generated stat/program icons visible without external icon fonts. */
.stats span::before,
.program-card .ico::before {
  display: inline-block;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.stats span::before { font-size: 22px; }
.stats .laurel::before { content: "20"; font-size: 18px; }
.stats .note-icon::before { content: "\266A"; }
.stats .team-icon::before { content: "3"; font-size: 18px; }
.stats .globe-icon::before { content: "UA"; font-size: 15px; }

.program-card .ico::before { font-size: 22px; }
.program-card .rings::before { content: "oo"; letter-spacing: -5px; padding-right: 5px; }
.program-card .cake::before { content: "#"; }
.program-card .star::before { content: "*"; font-size: 26px; }
.program-card .case::before { content: "[]"; font-size: 16px; }
.program-card .guests::before { content: "3"; }
.program-card .mask::before { content: "\221E"; }

/* Final mobile/header/footer QA fixes. */
.footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer nav a {
  color: #e8dccb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer .header-contact {
  min-width: 0;
  padding-left: 0;
  border-left: 0;
  text-align: center;
}

@media (max-width: 620px) {
  .topbar .header-right {
    display: contents;
  }

  .topbar .lang-switcher {
    display: inline-flex;
    grid-row: 2;
    justify-self: center;
    margin: 0 auto 2px;
  }

  .topbar .header-contact,
  .topbar .order-btn {
    display: none;
  }

  .topbar .nav {
    grid-row: 3;
  }

  .footer {
    padding: 28px 0 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer .brand,
  .footer nav,
  .footer .header-contact,
  .footer .socials {
    grid-column: 1 !important;
  }

  .footer .brand {
    justify-content: center;
    width: 100%;
  }

  .footer .brand-text {
    align-items: center;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 340px;
    gap: 8px;
  }

  .footer nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196,143,63,.16);
    border-radius: 4px;
    background: rgba(255,255,255,.025);
    padding: 0 8px;
    text-align: center;
    white-space: normal;
  }

  .footer .header-contact {
    width: 100%;
    padding: 0;
  }

  .footer .header-contact a {
    width: auto;
    color: var(--gold-2);
    font-size: 16px;
    line-height: 1.35;
  }

  .footer .socials {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: 18px;
  }

  .nav a {
    font-size: 9px;
  }
}

