:root {
  --gold: #d4af37;
  --gold-light: #f0cc5a;
  --gold-dark: #9a7b1a;
  --emerald: #0d3d2e;
  --emerald-mid: #0f4d38;
  --emerald-bright: #1a6b4e;
  --red: #b03030;
  --red-bright: #d94040;
  --bg: #080c0a;
  --bg-card: #0c120f;
  --bg-card2: #101a15;
  --border: rgba(212, 175, 55, 0.16);
  --border-em: rgba(26, 107, 78, 0.35);
  --text: #e8e0cc;
  --text-muted: #7a8a7e;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 12px;
}
section .section-tag::before,
footer .section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--emerald-bright);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 40px;
}
.gold-rule::before,
.gold-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gold-rule span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-gold {
  background: var(--gold);
  color: #080c0a;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-2px);
}
.btn-emerald {
  background: var(--emerald-bright);
  color: var(--white);
}
.btn-emerald:hover {
  background: #1f7d5c;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
section {
  padding: 96px 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 12, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-em);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#navbar::before,
#navbar::after {
  display: none;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  position: relative;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.logo-text-wrap .brand {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}
.logo-text-wrap .tagline {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: none !important;
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta::before,
.nav-cta::after {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
  transition: 0.3s;
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  z-index: 999;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-em);
}
.mobile-btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg-full {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 60% 35%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 25% 75%,
      rgba(26, 107, 78, 0.15) 0%,
      transparent 48%
    ),
    radial-gradient(
      ellipse at 85% 75%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 40%
    ),
    linear-gradient(160deg, #0d1a13 0%, #060e09 50%, #080c0a 100%);
}
.hero-bg-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-bg-svg svg {
  width: min(640px, 85vw);
  height: min(640px, 85vw);
}
.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--emerald-bright);
  margin-bottom: 22px;
  justify-content: center;
}
.hero-eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--emerald-bright);
}
.hero-content-centered h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-content-centered h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-content-centered p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 38px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}
.hero-badge-float {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  background: rgba(8, 12, 10, 0.9);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 14px 20px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 250px;
  text-align: left;
}
.hero-badge-float strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 13px;
}
.hero-left,
.hero-right,
.hero-right-img,
.hero-right-overlay,
.hero-right-cards,
.hero-deco-svg,
.hero-float-card {
  display: none !important;
}

#services {
  background: var(--bg-card);
  border-top: 1px solid var(--border-em);
  border-bottom: 1px solid var(--border-em);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-em);
  border: 1px solid var(--border-em);
}
.service-card {
  background: var(--bg-card2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover {
  background: var(--emerald);
}
.service-num {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(212, 175, 55, 0.18);
}
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

#about {
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.about-item {
  position: relative;
  border: 1px solid var(--border-em);
  overflow: hidden;
  transition: border-color 0.3s;
}
.about-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}
.about-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.about-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-card2), var(--emerald));
  gap: 10px;
}
.about-img-ph i {
  font-size: 36px;
  color: var(--gold);
  opacity: 0.4;
}
.about-img-ph code {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
}
.about-img-ph span {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 12px;
}
.about-body {
  padding: 24px;
  border-top: 1px solid var(--border-em);
}
.about-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.about-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

#testimonials {
  background: var(--bg-card);
  border-top: 1px solid var(--border-em);
  border-bottom: 1px solid var(--border-em);
}
.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%;
}
.slide-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  border: 1px solid var(--border-em);
  padding: 28px;
  position: relative;
  background: var(--bg-card2);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: rgba(212, 175, 55, 0.08);
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
}
.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.reviewer-loc {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-em);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: var(--gold);
}

#slots {
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.slot-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-em);
  background: var(--bg-card2);
  transition: border-color 0.3s;
}
.slot-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
}
.slot-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s,
    filter 0.4s;
}
.slot-thumb-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #101a15, #060a08);
  color: var(--text-muted);
  gap: 8px;
  transition: filter 0.4s;
}
.slot-thumb-ph i {
  font-size: 36px;
  color: var(--gold);
  opacity: 0.35;
}
.slot-thumb-ph span {
  font-size: 11px;
  letter-spacing: 1px;
}
.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.slot-card:hover .slot-overlay {
  opacity: 1;
}
.slot-card:hover .slot-thumb {
  transform: scale(1.07);
  filter: brightness(0.6);
}
.slot-card:hover .slot-thumb-ph {
  filter: brightness(0.6);
}
.slot-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 12, 10, 0.95), transparent);
  padding: 28px 14px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.slot-name .slot-provider {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

#faq {
  background: var(--bg-card);
  border-top: 1px solid var(--border-em);
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar h2 {
  margin-bottom: 12px;
}
.faq-sidebar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border-em);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q i {
  color: var(--gold);
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-a-inner a {
  color: var(--gold);
}

#footer {
  background: #040806;
  border-top: 1px solid var(--border-em);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-em);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 14px 0 20px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-em);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-rg-strip {
  border-left: 2px solid var(--red-bright);
  padding: 28px 0 28px 24px;
  margin-left: -24px;
  border-bottom: 1px solid var(--border-em);
}
.rg-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.rg-headline i {
  color: var(--red-bright);
  font-size: 18px;
}
.rg-headline strong {
  font-size: 16px;
  color: var(--white);
}
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-em);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s;
  color: inherit;
  text-decoration: none;
}
.rg-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}
.rg-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.rg-card strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.rg-card span {
  font-size: 12px;
  color: var(--text-muted);
}
.rg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.rg-tag {
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  letter-spacing: 0.5px;
}
.rg-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.rg-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 900px;
}
.rg-note strong {
  color: var(--text);
}
.rg-note a {
  color: var(--gold);
}

.footer-badges-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-em);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.footer-badges-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-badges-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}
.badge.green {
  border-color: #2ecc71;
  color: #2ecc71;
}
.badge.blue {
  border-color: #3498db;
  color: #3498db;
}
.badge.gold {
  border-color: var(--gold);
  color: var(--gold);
}
.badge-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.badge-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.badge-logo-img {
  height: 45px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .badges-group--logos {
    justify-content: center;
  }
  .badge-logo-img {
    height: 36px;
  }
}
.payment-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-badge {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-legal {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-em);
}
.footer-legal p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.footer-legal a {
  color: var(--gold);
}
.footer-reg-no {
  font-family: "Courier New", monospace;
  font-size: 12px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1px 6px;
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-em);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}
.modal-box > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border-em);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: var(--gold);
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check label {
  font-size: 12px;
  color: var(--text-muted);
}
.form-check a {
  color: var(--gold);
}
.modal-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.modal-switch a {
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
}
.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.modal-success.show {
  display: flex;
}
.modal-success .success-icon {
  width: 60px;
  height: 60px;
  border: 1px solid #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.08);
}
.modal-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--white);
}
.modal-success p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.6;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #04080a;
  border-top: 1px solid var(--border-em);
  padding: 16px 28px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden {
  transform: translateY(110%);
}
#cookie-banner > p {
  flex: 1 1 300px;
  font-size: 13px;
  color: var(--text-muted);
}
#cookie-banner > p a {
  color: var(--gold);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#cookie-settings-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border-top: 1px solid var(--border-em);
  padding-top: 14px;
  margin-top: 4px;
}
#cookie-settings-panel.open {
  display: flex;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-toggle-row label {
  font-size: 13px;
  color: var(--text);
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 21px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #222;
  border-radius: 21px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(17px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.4;
  cursor: default;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 6, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
#age-gate.hidden {
  display: none;
}
.age-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 56px 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}
.age-suit {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.age-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}
.age-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.age-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--emerald-bright);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 900;
}
#scroll-top.visible {
  display: flex;
}
#scroll-top:hover {
  background: var(--gold);
  color: var(--bg);
}

@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 130px 40px 60px;
  }
  .hero-left::after {
    display: none;
  }
  .hero-right {
    height: 360px;
    min-height: 0;
  }
  .hero-right-overlay {
    background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  }
  .hero-right-cards {
    display: none;
  }
  .hero-deco-svg {
    width: 90%;
    height: 90%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #navbar {
    padding: 0 20px;
  }
}
@media (max-width: 680px) {
  section {
    padding: 64px 20px;
  }
  #hero {
    padding: 0;
  }
  .hero-left {
    padding: 110px 20px 60px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    padding: 0 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 32px 0;
  }
  .footer-rg-strip {
    padding-left: 16px;
    margin-left: -16px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .age-box {
    padding: 36px 24px;
  }
}
