:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --panel: #111114;
  --panel-light: #17171b;
  --gold: #f5c84b;
  --gold-strong: #d69c18;
  --gold-soft: #fff1a8;
  --white: #ffffff;
  --muted: #d7d7d7;
  --line: rgba(245, 200, 75, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(245, 200, 75, 0.13), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(214, 156, 24, 0.10), transparent 30rem),
    linear-gradient(135deg, #000000 0%, #070707 45%, #111111 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  background: var(--gold);
  color: #000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  z-index: 1000;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 200, 75, 0.18);
}

.navbar {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(245, 200, 75, 0.35);
  background: #000;
  box-shadow: 0 10px 30px rgba(245, 200, 75, 0.10);
}

.brand-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #000;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-strong));
  box-shadow: 0 12px 32px rgba(245, 200, 75, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 200, 75, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 1rem clamp(3rem, 7vw, 6rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(245, 200, 75, 0.18);
  border-radius: 42px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(245, 200, 75, 0.14);
  filter: blur(32px);
  pointer-events: none;
}

.hero-glow-one {
  left: -8rem;
  top: 8rem;
}

.hero-glow-two {
  right: -10rem;
  bottom: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-logo-card {
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(245, 200, 75, 0.32);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  border-radius: 26px;
  object-fit: contain;
  background: #000;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  font-weight: 500;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: -0.06em;
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.slogan {
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  margin-bottom: 1rem;
}

.hero-description {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-strong));
  color: #000;
  box-shadow: 0 16px 36px rgba(245, 200, 75, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(245, 200, 75, 0.38);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading p:not(.eyebrow),
.split-content p,
.contact-main p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.17rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card,
.coverage-item,
.contact-shell,
.event-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23);
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.5rem;
}

.info-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(245, 200, 75, 0.10);
}

.card-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  background: rgba(245, 200, 75, 0.14);
  border: 1px solid rgba(245, 200, 75, 0.4);
  color: var(--gold);
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 0.7rem;
}

.info-card p,
.coverage-item p,
.event-card p,
.contact-row span,
.site-footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.split-content {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 200, 75, 0.13), transparent 48%),
    var(--panel-light);
  border: 1px solid var(--line);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.8rem 0;
}

.service-tags span {
  display: inline-flex;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(245, 200, 75, 0.25);
  background: rgba(0, 0, 0, 0.26);
}

.event-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(245, 200, 75, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(245, 200, 75, 0.10), transparent 50%);
}

.event-card > * {
  position: relative;
  z-index: 1;
}

.event-card-top {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.event-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.event-footer {
  margin-top: 2rem;
  display: inline-flex;
  width: fit-content;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: rgba(245, 200, 75, 0.14);
  border: 1px solid rgba(245, 200, 75, 0.35);
  color: var(--gold-soft);
  font-weight: 800;
}

.coverage {
  position: relative;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.coverage-item {
  min-height: 190px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
}

.coverage-item span {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(245, 200, 75, 0.12);
}

.coverage-item h3 {
  margin-bottom: 0.7rem;
}

.contact-shell {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(245, 200, 75, 0.18), transparent 25rem),
    var(--panel);
}

.contact-main {
  align-self: start;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row strong {
  color: var(--white);
  text-align: right;
}

.contact-buttons {
  grid-column: 1 / -1;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 7rem;
  text-align: center;
  border-top: 1px solid rgba(245, 200, 75, 0.18);
}

.footer-logo {
  width: min(240px, 82vw);
  margin: 0 auto 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(245, 200, 75, 0.24);
}

.footer-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
  color: var(--white) !important;
}

.site-footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.15rem;
  border-radius: 999px;
  color: #000;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-strong));
  box-shadow: 0 18px 42px rgba(245, 200, 75, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.reveal {
  animation: softIn 720ms ease both;
}

@keyframes softIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 94px;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(245, 200, 75, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero-inner,
  .split,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-actions,
  .contact-buttons {
    justify-content: center;
  }

  .info-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-row strong {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .navbar {
    min-height: 78px;
    width: min(100% - 1rem, var(--max));
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero::before {
    inset: 0.55rem;
    border-radius: 26px;
  }

  .hero-logo-card,
  .info-card,
  .split-content,
  .event-card,
  .coverage-item,
  .contact-shell {
    border-radius: 22px;
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    left: 1rem;
    width: calc(100% - 2rem);
  }
}
