/* ── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:    #5B2C6F;
  --plum-dk: #3D1F4D;
  --plum-lt: #7D3C99;
  --amber:   #F5C518;
  --amber-dk:#D4A017;
  --cream:   #FDF8F0;
  --offwhite:#FAFAF8;
  --gray-100:#F4F4F2;
  --gray-200:#E8E8E4;
  --gray-400:#A0A09A;
  --gray-600:#5C5C56;
  --gray-800:#2A2A26;
  --gray-900:#1A1A16;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(91,44,111,.08);
  --shadow-lg: 0 12px 48px rgba(91,44,111,.12);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--amber {
  background: var(--amber);
  color: var(--plum-dk);
  border-color: var(--amber);
}
.btn--amber:hover { background: var(--amber-dk); border-color: var(--amber-dk); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--sm { padding: 8px 18px; font-size: .875rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ── SECTION HEADER ─────────────────────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 8px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gray-900);
  letter-spacing: .02em;
  line-height: 1.1;
}

/* ── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(61,31,77,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,197,24,.15);
  transition: background .3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .04em;
}
.nav__logo { flex-shrink: 0; }
.nav__logo svg circle { stroke: var(--amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .03em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--amber); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(61,31,77,.92) 0%,
    rgba(91,44,111,.82) 50%,
    rgba(26,26,22,.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: .03em;
  margin-bottom: 24px;
}
.text-amber { color: var(--amber); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: .3; transform: translateY(10px); }
}

/* ── FEATURES ───────────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--offwhite);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--plum-lt);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91,44,111,.07);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-900);
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── MENU ───────────────────────────────────────────────────────────────── */
.menu {
  padding: 100px 0;
  background: var(--gray-100);
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.menu-card__body {
  padding: 28px;
}
.menu-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.menu-card__body p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.menu__note {
  text-align: center;
  font-size: .9rem;
  color: var(--gray-400);
}

/* ── EVENTS ─────────────────────────────────────────────────────────────── */
.events {
  padding: 100px 0;
  background: var(--plum-dk);
  color: #fff;
}
.events__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.events__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.events__text .section-header__eyebrow { color: var(--amber); }
.events__text .section-header__title { color: #fff; }
.events__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 16px;
}
.events__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.events__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── GALLERY ────────────────────────────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--offwhite);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .3s, filter .3s;
}
.gallery__item img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* ── VISIT ──────────────────────────────────────────────────────────────── */
.visit {
  padding: 100px 0;
  background: var(--gray-100);
}
.visit__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.visit__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit__info .section-header__eyebrow { color: var(--plum); }
.visit__info .section-header__title { color: var(--gray-900); margin-bottom: 32px; }
.visit__details {
  font-size: 1rem;
  line-height: 2;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.visit__details a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-weight: 500;
  transition: color .2s;
}
.visit__details a:hover { color: var(--plum-lt); }
.visit__details strong { color: var(--gray-900); }
.visit__map iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.55);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: .04em;
}
.footer__copy { font-size: .85rem; }
.footer__contact {
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.footer__contact a {
  color: var(--amber);
  transition: color .2s;
}
.footer__contact a:hover { color: var(--amber-dk); }

/* ── MOBILE ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(61,31,77,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__toggle { display: flex; }

  .events__split,
  .visit__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .events__image img { height: 320px; }

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

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { height: 220px; }
}
