/* styles.css */
:root {
  --bg: #0b0c10;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.04);
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.65);
  --faint: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.12);

  --accent: #e08a2e; /* warm orange */
  --accent-2: #f0b35a;

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 18px;

  --max: 1120px;
  --pad: 20px;

  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(1200px 800px at 70% 10%, rgba(224, 138, 46, 0.22), transparent 55%),
    radial-gradient(900px 700px at 10% 20%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Ambient overlays */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}

.bg-glow {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(224, 138, 46, 0.12), transparent 55%);
  filter: blur(10px);
  z-index: 0;
}

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

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

/* Layout */
.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.section {
  padding: 84px 0;
}

.section--alt {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.section__head {
  margin-bottom: 28px;
  max-width: 760px;
}

.section__head--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.h2 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  margin: 0 0 10px;
}

.h3 {
  font-family: var(--font-display);
  letter-spacing: 0.4px;
  font-size: 26px;
  line-height: 1;
  margin: 0 0 10px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 16, 0.55);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.brand__mark {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 30px;
  color: var(--accent);
}

.brand__name {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 28px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav__link--cta {
  background: rgba(224, 138, 46, 0.18);
  border: 1px solid rgba(224, 138, 46, 0.35);
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  margin: 4px 0;
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, rgba(224, 138, 46, 0.95), rgba(195, 112, 30, 0.95));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  color: #0b0c10;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 84px 0 0;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__title {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  margin: 0 0 10px;
}

.hero__titleAccent {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 24px rgba(224, 138, 46, 0.2);
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.hero__fineprint {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.hero__img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.hero__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(11, 12, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero__badgeTop {
  font-family: var(--font-display);
  letter-spacing: 0.8px;
  font-size: 22px;
  margin-bottom: 4px;
}

.hero__badgeBottom {
  color: var(--muted);
  font-size: 13px;
}

/* Checkered divider */
.checkered {
  margin-top: 50px;
  height: 16px;
  background-size: 32px 16px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 50%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.22) 50%, transparent 50%);
  background-position: 0 0, 16px 8px;
  opacity: 0.18;
}

/* About stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat__num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat__label {
  font-weight: 600;
  margin-bottom: 6px;
}

.stat__text {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

.card__icon {
  font-size: 22px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.card__link {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step__num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  background: rgba(224, 138, 46, 0.16);
  border: 1px solid rgba(224, 138, 46, 0.28);
  color: var(--text);
}

/* Safety */
.safety {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.note {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(224, 138, 46, 0.12);
  border: 1px solid rgba(224, 138, 46, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.safety__media img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

/* Events */
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.event {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.event__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin: -2px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event__img--label {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2px;
  background:
    radial-gradient(circle at 20% 20%, rgba(224, 138, 46, 0.28), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  color: var(--text);
  letter-spacing: 0.08em;
}

.event__img--label span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.event__img--label small {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}

.event__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 138, 46, 0.16);
  border: 1px solid rgba(224, 138, 46, 0.25);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.event__tag--alt {
  background: rgba(240, 179, 90, 0.14);
  border-color: rgba(240, 179, 90, 0.25);
}

.event__tag--open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.event__meta {
  color: var(--faint);
  margin: 0 0 10px;
  font-size: 13px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery__item {
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq__item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  padding: 8px 0;
}

.faq__item p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.contact__links {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact__email {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.contact__icon {
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact__actions {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: grid;
  place-items: center;
}

.icon-btn:hover {
  background: rgba(224, 138, 46, 0.2);
  border-color: rgba(224, 138, 46, 0.3);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.icon-btn[href^="tel:"] svg {
  fill: currentColor;
}

.icon-btn[href*="wa.me"] {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.icon-btn[href*="wa.me"] svg {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: filter 160ms ease;
}

.icon-btn[href*="wa.me"]:hover {
  border-color: rgba(224, 138, 46, 0.3);
}

.icon-btn[href*="wa.me"]:hover svg {
  filter: brightness(1.06) saturate(1.06);
}

.contact__small {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

/* Form */
.form {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field span {
  color: var(--faint);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 12, 16, 0.45);
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(224, 138, 46, 0.6);
  box-shadow: 0 0 0 4px rgba(224, 138, 46, 0.18);
}

.form__hint {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(11, 12, 16, 0.45);
}

.footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.footer__text {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 40ch;
}

.footer__right {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer__link {
  color: var(--muted);
  font-size: 13px;
}

.footer__link:hover {
  color: var(--text);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.footer__social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 50;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__img {
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    min-height: 280px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety {
    grid-template-columns: 1fr;
  }
  .events {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__right {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 0;
    background: rgba(11, 12, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav__link--cta {
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 100svh;
    padding: 0;
    margin-top: -64px;
  }

  .hero .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero__grid {
    position: relative;
    gap: 0;
    min-height: 100svh;
    grid-template-columns: 1fr;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    order: 1;
    border-radius: 0;
    border: 0;
  }

  .hero__img,
  .hero__video {
    min-height: 100%;
  }

  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(11, 12, 16, 0.16) 22%,
      rgba(11, 12, 16, 0.68) 58%,
      rgba(11, 12, 16, 0.92) 100%
    );
    pointer-events: none;
  }

  .hero__copy {
    order: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-top: 0;
    padding: 0 20px calc(18px + env(safe-area-inset-bottom));
  }

  .hero__badge {
    display: none;
  }

  .contact__email {
    font-size: 16px;
    gap: 12px;
  }

  .contact__icon svg {
    width: 24px;
    height: 24px;
  }

  .icon-btn {
    width: 52px;
    height: 52px;
  }
}
