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

:root {
  --green-dark:   #2A3D2E;
  --green-mid:    #3D5C42;
  --green-light:  #6B8F6E;
  --gold:         #C8963E;
  --gold-light:   #E4B96A;
  --cream:        #F5EFE4;
  --cream-dark:   #EDE4D3;
  --white:        #FFFFFF;
  --text-dark:    #1C1C1C;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', sans-serif;

  --section-pad: 100px 0;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, opacity 0.3s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-smooth),
              height 0.3s var(--ease-smooth),
              border-color 0.3s ease,
              opacity 0.3s ease;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--gold-light);
  opacity: 0.6;
}

/* ===========================
   TYPOGRAPHY HELPERS
   =========================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 30px;
}
.section-title.light { color: var(--white); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(200,150,62,0.35);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 13px 34px;
  background: transparent;
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid var(--green-dark);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: none;
  margin-top: 24px;
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,61,46,0.25);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 34px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 5%;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--green-dark);
  padding: 13px 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  cursor: none;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.85; }

.logo-emblem {
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-spring);
}
.nav-logo:hover .logo-emblem { transform: rotate(5deg) scale(1.05); }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s ease;
  position: relative;
  cursor: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1552566626-52f8b828add9?w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(20,35,22,0.5) 0%,
    rgba(20,35,22,0.75) 55%,
    rgba(20,35,22,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  padding: 0 24px;
}

/* Hero entrance animation */
.hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 0.9s var(--ease-smooth) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 11vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title span:first-child {
  font-weight: 400;
  font-style: italic;
  font-size: 0.42em;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.7);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-divider span:not(.hero-divider-diamond) {
  display: block;
  width: 60px; height: 1px;
  background: rgba(228,185,106,0.5);
}
.hero-divider-diamond {
  width: 6px; height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 42px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: heroIn 1s ease 1.4s both;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(228,185,106,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.9); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

/* ===========================
   WELCOME
   =========================== */
.welcome {
  padding: var(--section-pad);
  background: var(--white);
  text-align: center;
}
.welcome-content {
  max-width: 720px;
  margin: 0 auto 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.welcome-content p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.88;
}
.welcome-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-light);
  margin-top: 18px;
}

/* ===========================
   STATS
   =========================== */
.stats {
  background: var(--green-dark);
  padding: 60px 5%;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===========================
   BANNER STRIP
   =========================== */
.banner-strip {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* ===========================
   FEATURE SECTIONS
   =========================== */
.feature { background: var(--white); }
.feature-alt { background: var(--cream); }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-image { overflow: hidden; position: relative; }
.feature-image img {
  transition: transform 0.9s var(--ease-smooth);
}
.feature-image:hover img { transform: scale(1.06); }

.feature-text {
  padding: 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.feature-text p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.88;
  max-width: 460px;
}

.feature-left .feature-image { order: 1; }
.feature-left .feature-text  { order: 2; }
.feature-right .feature-image { order: 2; }
.feature-right .feature-text  { order: 1; }

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: var(--section-pad);
  background: var(--cream-dark);
}
.gallery .container { text-align: center; margin-bottom: 50px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  grid-auto-flow: row dense;
  gap: 8px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.8s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,22,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.08em;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ===========================
   EVENTS
   =========================== */
.events {
  position: relative;
  padding: 120px 5%;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.events-overlay {
  position: absolute; inset: 0;
  background: rgba(20,35,22,0.87);
}
.events-content { position: relative; z-index: 2; }
.events-desc {
  max-width: 620px;
  margin: 0 auto 60px;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.82;
}
.events-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.event-card {
  border: 1px solid rgba(200,150,62,0.35);
  padding: 40px 30px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-spring);
}
.event-card:hover {
  border-color: var(--gold);
  background: rgba(200,150,62,0.07);
  transform: translateY(-6px);
}
.event-date {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.event-card p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.72; }

/* ===========================
   CONTACT
   =========================== */
.contact { padding: var(--section-pad); background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; color: var(--green-dark); margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.contact-item a { color: var(--text-mid); transition: color 0.3s ease; cursor: none; }
.contact-item a:hover { color: var(--gold); }

.contact-form { background: var(--cream); padding: 50px 44px; }
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 600;
  color: var(--green-dark); margin-bottom: 30px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.85rem; color: var(--green-mid); min-height: 20px; text-align: center; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
}
.footer-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.1em;
  display: block;
}
.footer-logo .logo-sub {
  font-size: 0.6rem; font-weight: 400;
  color: var(--gold-light); letter-spacing: 0.28em;
  text-transform: uppercase; margin-top: 4px;
  display: block;
}
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease; cursor: none;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-social { text-align: right; }
.footer-social p {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  margin-bottom: 12px;
}
.social-links { display: flex; gap: 12px; justify-content: flex-end; }
.social-btn {
  display: inline-block; padding: 8px 20px;
  border: 1px solid rgba(200,150,62,0.4);
  color: var(--gold-light);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: none;
}
.social-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); transform: translateY(-2px);
}
.footer-bottom {
  text-align: center; padding: 24px 5%;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  display: flex; flex-direction: column; gap: 4px;
}
.footer-credit {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
.footer-credit a {
  color: var(--gold-light);
  font-weight: 700;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: none;
}
.footer-credit a:hover { color: var(--white); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   MENU OVERLAY
   =========================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  overflow: hidden;
  pointer-events: none;
}
.menu-overlay.is-open { pointer-events: all; }

.menu-overlay-bg {
  position: absolute; inset: 0;
  background: var(--green-dark);
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-overlay.is-open .menu-overlay-bg { transform: translateY(0); }

.menu-overlay-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
  padding: 60px 5% 90px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.menu-overlay.is-open .menu-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Close button */
.menu-close {
  position: fixed;
  top: 30px; right: 36px;
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring), border-color 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.menu-overlay.is-open .menu-close {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease 0.55s,
              background 0.3s ease,
              transform 0.3s var(--ease-spring),
              border-color 0.3s ease;
}
.menu-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.08);
}
.menu-close span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  position: absolute;
}
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child  { transform: rotate(-45deg); }

/* Menu header */
.menu-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 4px;
}
.menu-logo-emblem { color: var(--gold-light); flex-shrink: 0; }
.menu-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.menu-subtitle {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
}

/* Menu ornament */
.menu-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 28px;
}
.menu-ornament span:not(.orn-diamond) {
  flex: 1;
  height: 1px;
  background: rgba(200,150,62,0.3);
}
.orn-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Menu tabs */
.menu-tabs {
  position: relative;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.menu-tab:hover { color: rgba(255,255,255,0.8); }
.menu-tab.active { color: var(--gold-light); }

.menu-tab-indicator {
  position: absolute;
  bottom: -1px; left: 0;
  height: 2px;
  background: var(--gold);
  transition: transform 0.4s var(--ease-smooth), width 0.4s var(--ease-smooth);
  width: 0;
}

/* Menu pages */
.menu-pages-wrapper {
  position: relative;
  flex: 1;
  min-height: 340px;
}

.menu-page {
  display: none;
  animation-duration: 0.45s;
  animation-fill-mode: both;
  animation-timing-function: var(--ease-smooth);
}
.menu-page.active {
  display: block;
}
.menu-page.page-enter-right { animation-name: pageFromRight; }
.menu-page.page-enter-left  { animation-name: pageFromLeft; }

@keyframes pageFromRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pageFromLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

.page-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Menu list items */
.menu-list { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(14px);
  animation: menuItemIn 0.4s var(--ease-smooth) forwards;
  animation-delay: calc(var(--item-i, 0) * 0.07s + 0.1s);
}
.menu-item:last-child { border-bottom: none; }

@keyframes menuItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.item-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}
.item-dots {
  flex: 1;
  min-width: 20px;
  height: 1px;
  border-top: 1px dotted rgba(200,150,62,0.25);
  margin-bottom: 4px;
}
.item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-footer-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 14px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--green-dark);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
  letter-spacing: 0.14em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}
.menu-overlay.is-open .menu-footer-note {
  opacity: 1;
}

/* ===========================
   BODY LOCKED (menu open)
   =========================== */
body.menu-open { overflow: hidden; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .btn-primary, .btn-outline, .btn-ghost,
  .nav-links a, .nav-toggle, .menu-tab,
  .menu-close, .footer-nav a, .social-btn,
  .contact-item a { cursor: auto; }
}

@media (max-width: 1024px) {
  .feature-text { padding: 60px 46px; }
  .contact-grid { gap: 50px; }
  .contact-form { padding: 40px 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }

  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    gap: 0; padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li a {
    display: block;
    padding: 16px 6%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    cursor: auto;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-title { font-size: clamp(3rem, 14vw, 6rem); }
  .hero-cta { flex-direction: column; align-items: center; }

  .feature-inner { grid-template-columns: 1fr; }
  .feature-image { height: 300px; }
  .feature-text { padding: 50px 7%; }
  .feature-left .feature-image,
  .feature-right .feature-image { order: 1; }
  .feature-left .feature-text,
  .feature-right .feature-text  { order: 2; }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 24px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gallery-item.tall  { grid-row: span 1; }
  .gallery-item.wide  { grid-column: span 2; }

  .events-cards { grid-template-columns: 1fr; gap: 16px; }
  .events { padding: 80px 5%; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center; gap: 32px;
  }
  .footer-logo { justify-content: center; }
  .footer-social { text-align: center; }
  .social-links { justify-content: center; }
  .footer-nav { gap: 20px; }

  .menu-overlay-inner { padding: 80px 6% 50px; }
  .menu-tab { padding: 12px 16px; font-size: 0.68rem; }
  .item-dots { display: none; }
  .menu-item { flex-wrap: wrap; }
  .item-price { margin-left: auto; }
  .menu-close { top: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
