@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --bg-dark: #111111;
  --bg-darker: #0D0D0D;
  --bg-light: #F9F6F1;
  --white: #FFFFFF;
  --gold-dark: #C9962A;
  --gold-light: #E8C96A;
  --teal-primary: #1B6B5A;
  --teal-mid: #2A8C72;
  --text-dark: #1A1A1A;
  --text-muted: #888888;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.3s ease;
  --transition-slow: 0.7s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img, video {
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =============================================
   UTILITY — GOLD RULE
   ============================================= */
.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--gold-dark);
}

.gold-rule--thick {
  height: 1.5px;
}

/* =============================================
   UTILITY — SECTION LABEL
   ============================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 48px;
  height: 80px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: var(--bg-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 150, 42, 0.2);
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-dark);
  transition: width var(--transition);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  background: transparent;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-dark);
  color: #000000;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  padding: 40px;
}

.nav__overlay.open {
  right: 0;
}

.nav__overlay-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  font-family: var(--font-body);
  font-weight: 300;
}

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.nav__overlay-links a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav__overlay-links a:hover {
  color: var(--gold-light);
}

.nav__overlay-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
  background: transparent;
  padding: 14px 32px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
}

.nav__overlay-cta:hover {
  background: var(--gold-dark);
  color: #000000;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__rule {
  width: 40px;
  height: 1px;
  background: var(--gold-dark);
  margin-bottom: 20px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-top: 20px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-block;
  text-align: center;
}

.btn--gold {
  background: var(--gold-dark);
  color: #000000;
  border-color: var(--gold-dark);
}

.btn--gold:hover {
  background: #B8861F;
  border-color: #B8861F;
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: #000000;
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline-gold:hover {
  background: var(--gold-dark);
  color: #000000;
}

.btn--reserve-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  background: var(--gold-dark);
  color: #000000;
  border-color: var(--gold-dark);
  border-radius: 0;
}

.btn--reserve-cta:hover {
  background: #B8861F;
  border-color: #B8861F;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite ease-in-out;
  cursor: pointer;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--bg-light);
  padding: 120px 0;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

.about__label {
  color: var(--teal-primary);
  margin-bottom: 16px;
}

.about__rule {
  margin-bottom: 24px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 32px;
}

.about__body p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__image-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

/* =============================================
   MENUS
   ============================================= */
.menus {
  background: var(--bg-dark);
  padding: 120px 0;
}

.menus__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.menus__header {
  text-align: center;
}

.menus__label {
  color: var(--teal-mid);
  margin-bottom: 16px;
}

.menus__rule {
  margin: 0 auto 24px;
}

.menus__heading {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold-light);
}

.menus__subtext {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

.menus__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.menu-card {
  background: #1A1A1A;
  border: 1px solid rgba(201,150,42,0.2);
  padding: 48px 36px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  border-color: rgba(201,150,42,0.6);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.menu-card__icon {
  height: 40px;
  display: flex;
  align-items: center;
}

.menu-card__icon svg {
  height: 40px;
  width: auto;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-top: 24px;
}

.menu-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 12px;
  flex: 1;
}

.menu-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-top: 24px;
  transition: letter-spacing var(--transition);
  display: inline-block;
}

.menu-card__link:hover {
  letter-spacing: 0.14em;
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery {
  background: #0D0D0D;
  border-top: 1px solid rgba(201,150,42,0.3);
  border-bottom: 1px solid rgba(201,150,42,0.3);
  overflow: hidden;
}

.gallery__strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.gallery__strip::-webkit-scrollbar {
  display: none;
}

.gallery__strip.grabbing {
  cursor: grabbing;
}

.gallery__img {
  flex: 0 0 auto;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery__img--portrait {
  min-width: 280px;
}

.gallery__img--landscape {
  min-width: 520px;
}

/* =============================================
   VISIT US
   ============================================= */
.visit {
  background: var(--bg-light);
  padding: 120px 0;
}

.visit__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit__label {
  color: var(--teal-primary);
  margin-bottom: 16px;
}

.visit__rule {
  margin-bottom: 24px;
}

.visit__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

.visit__info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.visit__info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.visit__info-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #444444;
  line-height: 1.6;
}

.visit__hours-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.visit__hours-rule {
  margin-bottom: 20px;
}

.visit__hours-list {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.visit__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #444444;
}

.visit__hours-row--closed {
  color: var(--text-muted);
}

.visit__directions {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--teal-primary);
  transition: letter-spacing var(--transition);
}

.visit__directions:hover {
  letter-spacing: 0.1em;
}

.visit__map {
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.visit__map iframe {
  display: block;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--bg-light);
  padding: 120px 0;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__label {
  color: var(--teal-primary);
  margin-bottom: 16px;
  display: block;
}

.faq__rule {
  margin: 16px auto;
}

.faq__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 8px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
}

.faq-question__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
}

.faq-toggle {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #555555;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--teal-primary);
  text-decoration: underline;
}

/* =============================================
   RESERVE CTA BANNER
   ============================================= */
.reserve {
  min-height: 420px;
  background-color: var(--bg-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='rgba(255,255,255,0.025)' stroke-width='1'/%3E%3C/svg%3E");
  border-top: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.reserve__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
}

.reserve__heading {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.reserve__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-top: 16px;
  line-height: 1.7;
}

.reserve__email-note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.reserve__email-note a {
  color: var(--gold-dark);
  transition: color var(--transition);
}

.reserve__email-note a:hover {
  color: var(--gold-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(201,150,42,0.4);
  padding: 64px 0 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}

.footer__logo img {
  height: 128px;
  width: auto;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.5;
}

.footer__col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  position: relative;
  display: inline-block;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__social-link:hover {
  color: var(--white);
}

.footer__social-link svg {
  flex-shrink: 0;
}

.footer__bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 48px;
  text-align: center;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 48px;
    height: 68px;
  }

  .nav__logo img {
    height: 48px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__headline {
    font-size: 52px;
  }

  /* About */
  .about {
    padding: 80px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .about__heading {
    font-size: 36px;
  }

  /* Menus */
  .menus {
    padding: 80px 0;
  }

  .menus__inner {
    padding: 0 24px;
  }

  .menus__cards {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery__img {
    height: 280px;
  }

  .gallery__img--portrait {
    min-width: 180px;
  }

  .gallery__img--landscape {
    min-width: 360px;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
  }

  .faq__inner {
    padding: 0 24px;
  }

  .faq__heading {
    font-size: 34px;
  }

  .faq-question__text {
    font-size: 18px;
  }

  /* Visit */
  .visit {
    padding: 80px 0;
  }

  .visit__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }

  .visit__heading {
    font-size: 34px;
  }

  .visit__map {
    min-height: 320px;
  }

  /* Reserve */
  .reserve__heading {
    font-size: 40px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
    text-align: center;
  }

  .footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__social {
    align-items: center;
  }

  .footer__bottom {
    padding: 24px;
  }

  /* Hero buttons */
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero__headline {
    font-size: 38px;
  }

  .hero__sub {
    font-size: 15px;
  }

  .about__heading {
    font-size: 32px;
  }

  .menus__heading {
    font-size: 40px;
  }

  .visit__heading {
    font-size: 30px;
  }

  .reserve__heading {
    font-size: 36px;
  }

  .menu-card {
    padding: 36px 24px;
  }
}
