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

:root {
  --emerald: #0F4C3A;
  --emerald-dark: #0A3528;
  --emerald-light: #1A6B4F;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --cream-dark: #E8E0D0;
  --ink: #1A1A1A;
  --ink-light: #4A4A4A;
  --ink-muted: #7A7A7A;
  --white: #FFFFFF;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* ─── Loader ───────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bar {
  width: 60px;
  height: 1px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--cream);
  animation: loaderSlide 1s var(--ease-in-out) infinite;
}

@keyframes loaderSlide {
  to { left: 100%; }
}

/* ─── Skip Link ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--emerald);
  color: var(--cream);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* ─── Header ────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 58, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--emerald);
  transition: background 0.3s, color 0.3s;
}

.logo:hover .logo-mark {
  background: var(--emerald);
  color: var(--cream);
}

.logo-text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
  color: var(--emerald);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-reserve {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  padding: 0.625rem 1.5rem;
  transition: background 0.3s, color 0.3s;
}

.btn-reserve:hover {
  background: var(--emerald);
  color: var(--cream);
}

/* ─── Menu Toggle ───────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.menu-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ─── Mobile Menu ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  position: relative;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--emerald);
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 53, 40, 0.45) 0%,
    rgba(10, 53, 40, 0.35) 50%,
    rgba(10, 53, 40, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-headline .serif-italic {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

/* ─── Section Shared ────────────────────────────────── */
.section {
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title .serif-italic {
  font-style: italic;
  font-weight: 400;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--emerald);
  margin-bottom: 2rem;
}

/* ─── Reveal Animation ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

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

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ─── About ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text p {
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

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

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
  transform: scale(1.03);
}

/* ─── Text Divider ──────────────────────────────────── */
.text-divider {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.text-divider p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--emerald);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
}

.text-divider::before,
.text-divider::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--cream-dark);
  margin: 0 auto 2rem;
}

.text-divider::after {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* ─── Drinks ────────────────────────────────────────── */
.drinks {
  background: var(--cream-light);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.drink-card {
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.drink-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 20px 60px rgba(15, 76, 58, 0.06);
}

.drink-number {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.drink-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.drink-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ─── Space ─────────────────────────────────────────── */
.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.space-images {
  position: relative;
}

.space-img-main {
  overflow: hidden;
}

.space-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.8s var(--ease-out);
}

.space-img-main:hover img {
  transform: scale(1.03);
}

.space-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  overflow: hidden;
  border: 4px solid var(--cream);
}

.space-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.8s var(--ease-out);
}

.space-img-secondary:hover img {
  transform: scale(1.05);
}

.space-text p {
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.space-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-light);
}

.feature svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ─── Visit ─────────────────────────────────────────── */
.visit {
  background: var(--emerald);
  color: var(--cream);
}

.visit .section-eyebrow {
  color: rgba(245, 240, 232, 0.6);
}

.visit .section-title {
  color: var(--cream);
}

.visit .divider {
  background: rgba(245, 240, 232, 0.4);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}

.contact-item dt {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 0.5rem;
}

.contact-item dd {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
}

.contact-item a {
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.contact-item a:hover {
  border-color: var(--cream);
}

.phone-digits {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
}

.phone-group {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

.visit-map {
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.15);
}

.visit-map iframe {
  width: 100%;
  height: 520px;
  filter: saturate(0.3) brightness(1.1) contrast(1.05);
  transition: filter 0.5s;
}

.visit-map:hover iframe {
  filter: saturate(0.5) brightness(1.05) contrast(1.02);
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
  background: var(--emerald-dark);
  color: var(--cream);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-footer .logo-mark {
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--cream);
}

.logo-footer:hover .logo-mark {
  background: var(--cream);
  color: var(--emerald-dark);
}

.logo-footer .logo-text {
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 0.25rem;
}

.footer-right p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .drinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav, .btn-reserve {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    height: 70px;
  }

  .about-grid,
  .space-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .space-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 1rem;
    border: none;
  }

  .space-features {
    grid-template-columns: 1fr;
  }

  .visit-map iframe {
    height: 360px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .drink-card {
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
