:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --cream: #f4eee6;
  --cream-dark: #e5d8c8;
  --gold: #c8a46b;
  --gold-dark: #9f7a3f;
  --wood: #6e4b33;
  --terracotta: #a45c40;
  --muted: #b8aea3;
  --line: rgba(200, 164, 107, 0.28);
  --shadow: rgba(0, 0, 0, 0.35);
}

html[data-theme="night"] {
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --text: #f4eee6;
  --text-muted: #b8aea3;
  --card: rgba(255, 255, 255, 0.055);
  --overlay: rgba(0, 0, 0, 0.58);
}

html[data-theme="day"] {
  --bg: #f4eee6;
  --bg-soft: #eadfce;
  --text: #17120d;
  --text-muted: #6e4b33;
  --card: rgba(255, 255, 255, 0.65);
  --overlay: rgba(255, 244, 226, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  transition: background 0.45s ease, color 0.45s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 5vw;
  transition: 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 14px 5vw;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.brand-logo {
  width: 210px;
  max-width: 210px;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-logo-day {
  display: none;
}

html[data-theme="day"] .brand-logo-night {
  display: none;
}

html[data-theme="day"] .brand-logo-day {
  display: block;
}

html[data-theme="night"] .brand-logo-night {
  display: block;
}

html[data-theme="night"] .brand-logo-day {
  display: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--cream);
  opacity: 0.88;
  transition: 0.25s ease;
}

html[data-theme="day"] .nav-links a {
  color: #111111;
}

html[data-theme="day"] .mobile-menu-btn,
html[data-theme="day"] .theme-toggle {
  color: #111111;
}

html[data-theme="day"] .site-header.scrolled {
  background: rgba(244, 238, 230, 0.92);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 20px;
  cursor: pointer;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  transition: 0.25s ease;
}

.theme-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(200, 164, 107, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  box-shadow: 0 12px 30px rgba(200, 164, 107, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 45px rgba(200, 164, 107, 0.34);
}

.btn-secondary {
  color: var(--cream);
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background: rgba(200, 164, 107, 0.16);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 7vw 80px;
  background-image: url("assets/hero-night.webp");
  background-size: cover;
  background-position: center;
}

html[data-theme="day"] .hero {
  background-image: url("assets/hero-day.webp");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), var(--overlay), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 20% 50%, rgba(200, 164, 107, 0.18), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hero-subtitle {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 580px;
  color: var(--cream-dark);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 7vw;
  bottom: 8vh;
  z-index: 2;
  width: 170px;
  height: 170px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.hero-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--cream);
  margin-top: 5px;
}

.intro-strip {
  background: var(--bg-soft);
  color: var(--text);
  padding: 34px 8vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 36px);
}

.section {
  padding: 110px 7vw;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 1fr;
}

.section-image {
  min-height: 560px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 90px var(--shadow);
  border: 1px solid var(--line);
}

.image-bar {
  background-image: url("assets/bar.webp");
}

.image-cave {
  background-image: url("assets/cave.webp");
}

.section-content {
  max-width: 600px;
}

.section h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  margin-bottom: 26px;
}

.section p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.cards-section {
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.16), rgba(0,0,0,0.16)),
    var(--bg-soft);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 46px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 38px 32px;
  border-radius: 26px;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.card h3 {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 16px;
}

.events {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.contact-section {
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}

.contact-card h3 {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 12px;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer {
  background: #080808;
  color: #aaa;
  padding: 34px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  margin-left: 22px;
  color: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.94);
    padding: 25px;
    border-radius: 24px;
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }

  .section-image {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 150px;
    max-width: 150px;
  }

  .site-header {
    padding: 18px 5vw;
  }

  .hero {
    padding: 130px 6vw 70px;
  }

  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .footer {
    flex-direction: column;
  }

  .footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}