/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.97);
  box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__name { display: flex; flex-direction: column; }
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #064e3b;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #059669;
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: #047857; }
.nav__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #064e3b;
  border: 1.5px solid #064e3b;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover { background: #064e3b; color: #f5f0e8; }
.nav__burger { color: #064e3b; padding: 4px; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}
.mobile-menu.open { visibility: visible; pointer-events: all; }
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 44, 34, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: #faf8f3;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #064e3b;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__link:hover { color: #059669; padding-left: 8px; }
.mobile-menu__cta {
  display: block;
  text-align: center;
  background: #064e3b;
  color: #f5f0e8;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.mobile-menu__cta:hover { background: #047857; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 44, 34, 0.72) 0%,
    rgba(6, 78, 59, 0.65) 50%,
    rgba(2, 44, 34, 0.80) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero__card {
  background: rgba(250, 248, 243, 0.1);
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 20px;
  padding: 48px 44px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 560px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 16px;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f5f0e8;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.82);
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: #064e3b;
  color: #f5f0e8;
  border: 2px solid #064e3b;
}
.btn--primary:hover { background: #047857; border-color: #047857; box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3); }
.btn--outline {
  background: transparent;
  color: #f5f0e8;
  border: 2px solid rgba(245, 240, 232, 0.5);
}
.btn--outline:hover { background: rgba(245, 240, 232, 0.12); border-color: #f5f0e8; }
.btn--full { width: 100%; }

/* ─── FLOATING STAT CARDS ─── */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-bottom: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 248, 243, 0.12);
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s, transform 0.25s;
}
.stat-card:hover { background: rgba(250, 248, 243, 0.18); transform: translateY(-2px); }
.stat-card__icon {
  flex-shrink: 0;
  color: #f5f0e8;
  opacity: 0.85;
}
.stat-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5f0e8;
}

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section--light { background: #f5f0e8; }
.section--dark { background: #022c22; }
.section--cream { background: #faf8f3; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 12px;
}
.section__eyebrow--light { color: rgba(245, 240, 232, 0.6); }
.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #064e3b;
  margin-bottom: 20px;
}
.section__title--light { color: #f5f0e8; }
.section__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #374151;
  max-width: 640px;
}
.section__title--light + .menu__lead,
.section__title--light ~ p { color: rgba(245, 240, 232, 0.75); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.15);
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #059669;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.2;
}
.about__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}
.about__features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #064e3b;
}
.about__check { color: #059669; flex-shrink: 0; }

/* ─── MENU ─── */
.menu__header { margin-bottom: 56px; }
.menu__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  max-width: 560px;
  margin: 0 auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { background: rgba(245, 240, 232, 0.1); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.menu-card__img-wrap { overflow: hidden; }
.menu-card__img-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.menu-card:hover .menu-card__img-wrap img { transform: scale(1.05); }
.menu-card__body { padding: 24px 28px 28px; }
.menu-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 8px;
}
.menu-card__desc { font-size: 0.9375rem; line-height: 1.65; color: rgba(245, 240, 232, 0.7); }
.menu__note { font-size: 0.9375rem; color: rgba(245, 240, 232, 0.55); }
.menu__note-link { color: #34d399; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.menu__note-link:hover { color: #6ee7b7; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(6, 78, 59, 0.18); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img { transform: scale(1.06); }

/* ─── VISIT ─── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit__details { display: flex; flex-direction: column; gap: 0; }
.visit__detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}
.visit__detail:first-child { padding-top: 0; }
.visit__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #059669;
  padding-top: 2px;
}
.visit__value { font-size: 1rem; color: #064e3b; line-height: 1.6; }
.visit__link {
  color: #059669;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.visit__link:hover { color: #047857; }

/* ─── CONTACT FORM ─── */
.visit__form-wrap { padding-top: 8px; }
.visit__form-card {
  background: #f5f0e8;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08);
}
.visit__form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #064e3b;
  margin-bottom: 8px;
}
.visit__form-sub { font-size: 0.9375rem; color: #6b7280; margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #064e3b;
  margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(6, 78, 59, 0.18);
  border-radius: 8px;
  background: #faf8f3;
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #064e3b;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__input::placeholder { color: #9ca3af; }
.form__input:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12); }
.form__textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 8px;
  color: #047857;
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-success svg { flex-shrink: 0; color: #059669; }

/* ─── FOOTER ─── */
.footer { background: #022c22; padding: 56px 0 32px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer__name { font-size: 1.125rem; }
.footer__tagline { font-size: 0.8125rem; letter-spacing: 0.06em; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; }
.footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.2s;
}
.footer__link:hover { color: #f5f0e8; }
.footer__bottom {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer__bottom p { font-size: 0.8125rem; color: rgba(245, 240, 232, 0.4); }
.footer__location { font-size: 0.75rem; color: rgba(245, 240, 232, 0.25); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .visit-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .section { padding: 72px 0; }
  .hero__card { padding: 32px 28px; }
  .hero__headline { font-size: 1.625rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 14px 16px; }
  .stat-card__label { font-size: 0.75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about__accent { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 200px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit__detail { grid-template-columns: 80px 1fr; gap: 12px; }
  .visit__form-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
