:root {
  --bg: #070708;
  --bg-2: #101012;
  --bg-3: #17171b;
  --gold: #c9a227;
  --gold-2: #e8d48b;
  --gold-dim: rgba(201, 162, 39, 0.16);
  --cream: #f4efe4;
  --text: #f3efe6;
  --muted: #b7b0a3;
  --line: rgba(232, 212, 139, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1180px;
  --header: 108px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.gold { color: var(--gold-2); }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}
h1, h2, h3, .serif { font-family: "Playfair Display", serif; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.08; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.15; }
h3 { font-size: 1.45rem; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}
.btn:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
}
.btn-ghost:hover { background: var(--gold-dim); color: var(--gold-2); }

/* Header */
.topbar {
  background: #0b0b0d;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.socials { display: flex; gap: 14px; color: var(--muted); }
.socials a:hover { color: var(--gold-2); }
.whatsapp { color: var(--gold-2); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img,
.logo .custom-logo,
.custom-logo-link img { height: 86px; width: auto; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--cream); font-size: 0.95rem; position: relative; }
.nav a:hover, .nav a.active { color: var(--gold-2); }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 134px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,8,0.35) 0%, rgba(7,7,8,0.55) 45%, rgba(7,7,8,0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(201,162,39,0.18), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 100px;
}
.hero-content h1 { margin: 14px 0 18px; }
.hero-content .lead { margin: 0 auto 32px; }
.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
}
.hero-dots button.active { background: var(--gold); }

/* Sections */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .lead { margin: 14px auto 0; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 180px;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-card span {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  text-align: center;
  line-height: 36px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

/* Passionate Style Awards */
.awards-feature {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 40%, rgba(201, 162, 39, 0.22), transparent 46%),
    radial-gradient(ellipse at 88% 12%, rgba(232, 212, 139, 0.1), transparent 36%),
    linear-gradient(180deg, #050506 0%, #0d0a07 48%, #070708 100%);
  border-block: 1px solid var(--line);
}
.awards-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 212, 139, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 212, 139, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
  pointer-events: none;
}
.awards-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
}
.awards-trophy {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.awards-trophy::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.42), transparent 68%);
  filter: blur(28px);
  animation: awards-glow 4.5s ease-in-out infinite alternate;
}
.awards-trophy img {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(201, 162, 39, 0.28));
}
@keyframes awards-glow {
  from { opacity: 0.55; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1.08); }
}
.awards-copy h2 {
  margin: 10px 0 6px;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
}
.awards-copy h2 em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.awards-786 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  letter-spacing: 0.42em;
  font-size: 1.35rem;
  margin: 0 0 18px;
}
.awards-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.awards-pills span {
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.awards-copy .lead { margin-bottom: 18px; }
.awards-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.awards-actions .btn { margin: 0; }
.awards-panels {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 56px;
}
.awards-panel {
  background: rgba(16, 16, 18, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}
.awards-panel h3 { margin: 8px 0 12px; }
.awards-panel p { color: var(--muted); }
.awards-sponsors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.awards-sponsor {
  border: 1px dashed var(--line);
  border-radius: 14px;
  min-height: 86px;
  display: grid;
  place-items: center;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-align: center;
  padding: 14px 10px;
  background: rgba(7, 7, 8, 0.45);
}

/* Homepage press */
.press-feature {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(201, 162, 39, 0.12), transparent 42%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.press {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.press-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  background: #050506;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.press-visual img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}
.press-copy h2 { margin: 10px 0 12px; }
.press-copy p { color: var(--muted); margin: 14px 0 0; }
.press-copy .gold { margin-top: 0; }
.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.press-home .masonry { margin-top: 24px; }

/* Countdown */
.countdown-wrap {
  background:
    linear-gradient(180deg, rgba(7,7,8,0.55), rgba(7,7,8,0.82)),
    url("../img/award.jpg") center/cover;
  border-block: 1px solid var(--line);
}
.countdown-box { text-align: center; }
.countdown-box h3 { margin: 10px 0 6px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.timer div {
  min-width: 110px;
  background: rgba(10,10,12,0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 10px;
}
.timer strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--gold-2);
  line-height: 1;
}
.timer span { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote p { color: var(--cream); margin-bottom: 22px; }
.quote b { display: block; color: var(--gold-2); }
.quote small { color: var(--muted); }

/* Recent event */
.recent {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.recent-event-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.recent-copy p { color: var(--muted); margin: 16px 0; }
.recent-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.recent-slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #050506;
  min-height: 460px;
}
.recent-slider-track {
  display: flex;
  height: 460px;
  transition: transform 0.45s ease;
}
.recent-slider-slide {
  min-width: 100%;
  height: 100%;
}
.recent-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.recent-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.recent-slider-nav.prev { left: 14px; }
.recent-slider-nav.next { right: 14px; }
.recent-slider-nav:hover { background: #fff; }
.recent-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.recent-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.recent-slider-dots button.active { background: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}
.gallery-grid img,
.masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.gallery-grid .tall { grid-row: span 2; min-height: 360px; }
.gallery-grid img { min-height: 170px; }

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.masonry a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1;
  min-height: 0;
}
.masonry img { transition: 0.4s ease; }
.masonry a:hover img { transform: scale(1.06); }

.event-film {
  margin-top: 64px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.event-film .section-head { margin-bottom: 24px; }
.event-film-frame {
  display: flex;
  justify-content: center;
  background: #050506;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.event-film video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  background: #000;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}
.contact-card, .form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
}
.contact-list { list-style: none; margin-top: 22px; color: var(--muted); }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
input, textarea, select {
  width: 100%;
  background: #0d0d10;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select { appearance: none; }
textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.88rem; margin-top: 12px; }
.form-success {
  display: none;
  margin-top: 14px;
  color: var(--gold-2);
}
.reg-wrap { max-width: 860px; margin: 0 auto; }
.reg-wrap .form-card { margin-top: 28px; }
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 6px;
}
.form-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--cream);
  font-size: 0.95rem;
}
.form-options input {
  width: auto;
  accent-color: var(--gold);
}
.form-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cream);
  font-size: 0.92rem;
}
.form-terms input { width: auto; margin-top: 4px; accent-color: var(--gold); }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: end start;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,8,0.25), rgba(7,7,8,0.88));
}
.page-hero .container { position: relative; z-index: 1; padding-bottom: 48px; }

.prose { color: var(--muted); }
.prose p, .prose li { margin-bottom: 14px; }
.prose h3 { color: var(--cream); margin: 28px 0 10px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.value { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }

.event-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}
.event-card img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.event-card .body { padding: 28px 28px 28px 0; }
.event-meta { color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  background: #08080a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}
.site-footer h4 { margin-bottom: 14px; }
.site-footer a, .site-footer p { color: var(--muted); }
.site-footer a:hover { color: var(--gold-2); }
.copyright {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #111;
  color: var(--gold-2);
  cursor: pointer;
  display: none;
  z-index: 30;
}
.to-top.show { display: grid; place-items: center; }

@media (max-width: 900px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0d0d10;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 20px 24px;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .services, .quotes, .recent, .recent-event-card, .press, .contact-grid, .footer-grid, .form-grid, .values, .event-card, .masonry, .awards-grid, .awards-panels, .awards-sponsors {
    grid-template-columns: 1fr;
  }
  .awards-trophy { min-height: 380px; }
  .press-visual { min-height: 320px; }
  .event-card .body { padding: 22px; }
  .logo img { height: 64px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
