@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --hu-emerald: #0c3b2e;
  --hu-emerald-deep: #07261e;
  --hu-emerald-soft: #145c47;
  --hu-gold: #c9a44a;
  --hu-gold-light: #e2c878;
  --hu-cream: #f6f1e7;
  --hu-ivory: #fffaf2;
  --hu-ink: #15201c;
  --hu-muted: #5e6b65;
  --hu-line: rgba(201, 164, 74, 0.28);
  --hu-shadow: 0 24px 60px rgba(7, 38, 30, 0.18);
  --hu-radius: 1.25rem;
  --hu-transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--hu-ink);
  background:
    radial-gradient(circle at top right, rgba(201, 164, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f3eee4 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.hu-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--hu-transition), opacity var(--hu-transition);
}

a:hover {
  color: var(--hu-gold);
}

h1,
h2,
h3,
h4,
.hu-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.hu-topbar {
  background: linear-gradient(90deg, var(--hu-emerald-deep), var(--hu-emerald));
  color: var(--hu-cream);
  font-size: 0.85rem;
  padding: 0.7rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(201, 164, 74, 0.35);
}

.hu-topbar i {
  color: var(--hu-gold-light);
  margin-right: 0.4rem;
}

.hu-navbar {
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 32, 28, 0.06);
  padding: 0.85rem 0;
}

.hu-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hu-emerald);
}

.hu-logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--hu-emerald), var(--hu-emerald-soft));
  color: var(--hu-gold-light);
  box-shadow: 0 10px 24px rgba(12, 59, 46, 0.25);
  font-size: 1.15rem;
}

.hu-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hu-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--hu-emerald-deep);
}

.hu-logo-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hu-muted);
}

.hu-nav-link {
  position: relative;
  padding: 0.45rem 0.7rem !important;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hu-ink) !important;
}

.hu-nav-link::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--hu-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--hu-transition);
}

.hu-nav-link:hover,
.hu-nav-link:focus {
  color: var(--hu-emerald) !important;
}

.hu-nav-link:hover::after,
.hu-nav-link:focus::after {
  transform: scaleX(1);
}

.hu-toggler {
  border: 1px solid var(--hu-line);
  border-radius: 0.75rem;
  padding: 0.45rem 0.7rem;
  background: var(--hu-ivory);
  color: var(--hu-emerald);
}

.hu-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 164, 74, 0.25);
}

.hu-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  color: var(--hu-ivory);
  background:
    linear-gradient(120deg, rgba(7, 38, 30, 0.88) 12%, rgba(12, 59, 46, 0.55) 48%, rgba(7, 38, 30, 0.72) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hu-hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -20% auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.22), transparent 70%);
  pointer-events: none;
}

.hu-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 5rem 0;
}

.hu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(226, 200, 120, 0.45);
  border-radius: 999px;
  color: var(--hu-gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  background: rgba(7, 38, 30, 0.35);
}

.hu-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hu-hero p {
  font-size: 1.08rem;
  max-width: 34rem;
  color: rgba(255, 250, 242, 0.88);
  margin-bottom: 2rem;
}

.hu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--hu-transition), background var(--hu-transition), color var(--hu-transition), border-color var(--hu-transition), box-shadow var(--hu-transition);
}

.hu-btn:hover {
  transform: translateY(-2px);
}

.hu-btn-gold {
  background: linear-gradient(135deg, var(--hu-gold), var(--hu-gold-light));
  color: var(--hu-emerald-deep);
  box-shadow: 0 14px 30px rgba(201, 164, 74, 0.28);
}

.hu-btn-gold:hover {
  color: var(--hu-emerald-deep);
  box-shadow: 0 18px 36px rgba(201, 164, 74, 0.38);
}

.hu-btn-outline {
  background: transparent;
  border-color: rgba(255, 250, 242, 0.45);
  color: var(--hu-ivory);
}

.hu-btn-outline:hover {
  background: rgba(255, 250, 242, 0.08);
  color: #fff;
}

.hu-btn-dark {
  background: var(--hu-emerald);
  color: var(--hu-ivory);
}

.hu-btn-dark:hover {
  background: var(--hu-emerald-soft);
  color: #fff;
}

.hu-section {
  padding: 6rem 0;
  position: relative;
}

.hu-section-alt {
  background:
    linear-gradient(180deg, rgba(12, 59, 46, 0.04), rgba(12, 59, 46, 0.02)),
    var(--hu-ivory);
}

.hu-section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 164, 74, 0.12), transparent 30%),
    linear-gradient(160deg, var(--hu-emerald-deep), var(--hu-emerald));
  color: var(--hu-cream);
}

.hu-section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.85rem;
  color: var(--hu-emerald-deep);
}

.hu-section-dark .hu-section-title {
  color: #fff;
}

.hu-section-lead {
  max-width: 40rem;
  color: var(--hu-muted);
  margin-bottom: 2.5rem;
}

.hu-section-dark .hu-section-lead {
  color: rgba(246, 241, 231, 0.78);
}

.hu-kicker {
  display: inline-block;
  color: var(--hu-gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hu-media {
  border-radius: calc(var(--hu-radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--hu-shadow);
  position: relative;
}

.hu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.8s ease;
}

.hu-media:hover img {
  transform: scale(1.04);
}

.hu-card {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(21, 32, 28, 0.06);
  border-radius: var(--hu-radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 16px 40px rgba(7, 38, 30, 0.06);
  transition: transform var(--hu-transition), box-shadow var(--hu-transition);
}

.hu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(7, 38, 30, 0.12);
}

.hu-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(12, 59, 46, 0.1), rgba(201, 164, 74, 0.18));
  color: var(--hu-emerald);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.hu-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
  color: var(--hu-emerald-deep);
}

.hu-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px dashed rgba(12, 59, 46, 0.15);
}

.hu-menu-item:last-child {
  border-bottom: 0;
}

.hu-menu-item h4 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  color: var(--hu-emerald-deep);
}

.hu-menu-item p {
  margin: 0;
  color: var(--hu-muted);
  font-size: 0.95rem;
}

.hu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--hu-gold);
  white-space: nowrap;
  font-weight: 700;
}

.hu-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hu-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hu-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hu-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(12, 59, 46, 0.06);
  color: var(--hu-emerald);
  font-size: 0.88rem;
  font-weight: 600;
}

.hu-section-dark .hu-pill {
  background: rgba(255, 250, 242, 0.08);
  color: var(--hu-gold-light);
}

.hu-event-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--hu-radius);
  min-height: 280px;
  color: #fff;
  box-shadow: var(--hu-shadow);
}

.hu-event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hu-event-card .hu-event-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 38, 30, 0.88) 100%);
}

.hu-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hu-stat {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 250, 242, 0.06);
  border: 1px solid rgba(226, 200, 120, 0.2);
}

.hu-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--hu-gold-light);
}

.hu-contact-panel {
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.95), rgba(246, 241, 231, 0.9));
  border: 1px solid rgba(12, 59, 46, 0.08);
  border-radius: calc(var(--hu-radius) + 0.25rem);
  padding: 2rem;
  box-shadow: var(--hu-shadow);
}

.hu-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(12, 59, 46, 0.08);
}

.hu-contact-item:last-child {
  border-bottom: 0;
}

.hu-contact-item i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(12, 59, 46, 0.08);
  color: var(--hu-emerald);
}

.hu-disclaimer {
  background: #fff;
  border-left: 4px solid var(--hu-gold);
  border-radius: 0 1rem 1rem 0;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 12px 30px rgba(7, 38, 30, 0.06);
}

.hu-footer {
  background: var(--hu-emerald-deep);
  color: rgba(246, 241, 231, 0.82);
  padding: 4rem 0 2rem;
}

.hu-footer h3,
.hu-footer h4 {
  color: #fff;
}

.hu-footer a {
  color: rgba(246, 241, 231, 0.78);
}

.hu-footer a:hover {
  color: var(--hu-gold-light);
}

.hu-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hu-footer-links li {
  margin-bottom: 0.55rem;
}

.hu-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 200, 120, 0.18);
  font-size: 0.9rem;
}

.hu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 38, 30, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.hu-overlay.is-active {
  display: flex;
}

.hu-modal {
  width: min(100%, 460px);
  background: linear-gradient(165deg, #fffaf2, #f3eee4);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 164, 74, 0.28);
  text-align: center;
}

.hu-modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--hu-emerald), var(--hu-emerald-soft));
  color: var(--hu-gold-light);
  font-size: 1.35rem;
}

.hu-modal h2 {
  font-size: 2rem;
  color: var(--hu-emerald-deep);
  margin-bottom: 0.75rem;
}

.hu-modal p {
  color: var(--hu-muted);
  margin-bottom: 1.5rem;
}

.hu-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hu-restricted {
  display: none;
}

.hu-restricted.is-active {
  display: block;
}

.hu-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  display: none;
  max-width: 520px;
  margin-left: auto;
  background: rgba(7, 38, 30, 0.96);
  color: var(--hu-cream);
  border: 1px solid rgba(201, 164, 74, 0.35);
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hu-cookie.is-active {
  display: block;
}

.hu-cookie p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.86);
}

.hu-cookie a {
  color: var(--hu-gold-light);
  text-decoration: underline;
}

.hu-cookie .hu-btn-outline {
  border-color: rgba(255, 250, 242, 0.4);
  color: var(--hu-ivory);
}

.hu-cookie .hu-btn-outline:hover {
  background: rgba(255, 250, 242, 0.1);
  color: #fff;
}

.hu-policy-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(7, 38, 30, 0.92), rgba(12, 59, 46, 0.85)),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.hu-policy-content {
  padding: 3.5rem 0 5rem;
}

.hu-policy-content h2 {
  font-size: 1.8rem;
  color: var(--hu-emerald-deep);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.hu-policy-content p,
.hu-policy-content li {
  color: var(--hu-muted);
}

.hu-policy-content ul {
  padding-left: 1.2rem;
}

.hu-fade-up {
  animation: huFadeUp 0.8s ease both;
}

@keyframes huFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .hu-navbar .navbar-collapse {
    background: var(--hu-ivory);
    border: 1px solid rgba(12, 59, 46, 0.08);
    border-radius: 1rem;
    margin-top: 0.85rem;
    padding: 0.75rem;
    box-shadow: var(--hu-shadow);
  }

  .hu-nav-link {
    padding: 0.75rem 0.85rem !important;
  }

  .hu-nav-link::after {
    display: none;
  }

  .hu-hero {
    min-height: 78vh;
  }

  .hu-section {
    padding: 4.25rem 0;
  }
}

@media (max-width: 575.98px) {
  .hu-topbar {
    font-size: 0.78rem;
    padding: 0.65rem 0.5rem;
  }

  .hu-modal,
  .hu-cookie {
    border-radius: 1rem;
  }

  .hu-stat-grid {
    grid-template-columns: 1fr;
  }
}
