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

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

body {
  font-family: 'Lora', Georgia, serif;
  color: #371c2f;
  background: #FAF6F0;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ─── TYPOGRAPHY ────────────────────────────────────── */
.section-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8943E;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #371c2f;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: #8A8278;
  line-height: 1.7;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #C8943E;
  color: #1e0e19;
  border: 1.5px solid #C8943E;
}

.btn-primary:hover {
  background: #b07a2e;
  border-color: #b07a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 148, 62, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #FAF6F0;
  border: 1.5px solid rgba(250, 246, 240, 0.5);
}

.btn-ghost:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: #FAF6F0;
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: #FAF6F0;
  border: 1.5px solid rgba(250, 246, 240, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: #FAF6F0;
  transform: translateY(-2px);
}

/* ─── HEADER ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(30, 14, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.site-header .max-w-7xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1001;
}

.nav-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAF6F0;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 14, 25, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: #FAF6F0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.nav-links.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-links a:nth-child(2) { transition-delay: 0.15s; }
.nav-links a:nth-child(3) { transition-delay: 0.2s; }
.nav-links a:nth-child(4) { transition-delay: 0.25s; }
.nav-links a:nth-child(5) { transition-delay: 0.3s; }

.nav-links a:hover {
  color: #C8943E;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #FAF6F0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(250, 246, 240, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-cta:hover {
  background: rgba(250, 246, 240, 0.1);
  border-color: rgba(250, 246, 240, 0.6);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAF6F0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  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;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 14, 25, 0.88) 0%,
    rgba(55, 28, 47, 0.75) 50%,
    rgba(107, 47, 91, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 6rem;
}

.hero-card {
  max-width: 640px;
  padding: 3rem;
  background: rgba(30, 14, 25, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.hero-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8943E;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: #C8943E;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: #FAF6F0;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating stat cards */
.hero-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 640px;
}

.stat-card {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem 1.5rem;
  background: rgba(250, 246, 240, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(250, 246, 240, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C8943E;
  margin-bottom: 0.375rem;
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── DIVIDER ───────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.divider-icon {
  color: #C8943E;
  opacity: 0.5;
  animation: rotateSlow 12s linear infinite;
  transform-origin: center;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: #FAF6F0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(55, 28, 47, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: #C8943E;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.2;
}

.about-content {
  padding: 1rem 0;
}

.about-content p {
  font-size: 1.05rem;
  color: #542648;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 47, 91, 0.15);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #6b2f5b;
}

.about-signature svg {
  color: #C8943E;
  opacity: 0.7;
}

/* ─── DRINKS ────────────────────────────────────────── */
.drinks {
  padding: 8rem 0;
  background: #f0e8df;
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.drink-card {
  background: #FAF6F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(55, 28, 47, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(107, 47, 91, 0.06);
}

.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(55, 28, 47, 0.14);
}

.drink-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.drink-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drink-card:hover .drink-card-img img {
  transform: scale(1.06);
}

.drink-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 14, 25, 0.5), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.drink-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FAF6F0;
  background: rgba(200, 148, 62, 0.85);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
}

.drink-card-body {
  padding: 1.75rem;
}

.drink-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #371c2f;
  margin-bottom: 0.75rem;
}

.drink-card-desc {
  font-size: 0.95rem;
  color: #8A8278;
  line-height: 1.7;
}

/* ─── ATMOSPHERE ────────────────────────────────────── */
.atmosphere {
  padding: 8rem 0;
  background: #FAF6F0;
}

.atm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.atm-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(55, 28, 47, 0.1);
}

.atm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.atm-photo:hover img {
  transform: scale(1.03);
}

.atm-photo--large {
  min-height: 320px;
}

.atm-photo:not(.atm-photo--large) {
  min-height: 220px;
}

.atm-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.atm-feature {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: #f0e8df;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.atm-feature:hover {
  background: #FAF6F0;
  border-color: rgba(107, 47, 91, 0.1);
  box-shadow: 0 8px 32px rgba(55, 28, 47, 0.08);
  transform: translateY(-2px);
}

.atm-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6b2f5b, #8b3d7a);
  border-radius: 12px;
  color: #FAF6F0;
}

.atm-feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #371c2f;
  margin-bottom: 0.5rem;
}

.atm-feature-desc {
  font-size: 0.95rem;
  color: #8A8278;
  line-height: 1.7;
}

/* ─── EVENTS ────────────────────────────────────────── */
.events {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

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

.events-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 14, 25, 0.92) 0%,
    rgba(55, 28, 47, 0.85) 100%
  );
}

.events-content {
  position: relative;
  z-index: 1;
}

.events-inner {
  max-width: 720px;
}

.events-label {
  color: #C8943E;
}

.events-title {
  color: #FAF6F0;
}

.events-desc {
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── VISIT ─────────────────────────────────────────── */
.visit {
  padding: 8rem 0;
  background: #f0e8df;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.visit-info {
  max-width: 520px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: #FAF6F0;
  border-radius: 16px;
  border: 1px solid rgba(107, 47, 91, 0.08);
}

.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6b2f5b, #8b3d7a);
  border-radius: 10px;
  color: #FAF6F0;
}

.visit-detail-label {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8943E;
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  display: block;
  font-size: 1rem;
  color: #371c2f;
  line-height: 1.6;
}

.visit-link:hover {
  color: #6b2f5b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-hours {
  padding: 2rem;
  background: #FAF6F0;
  border-radius: 16px;
  border: 1px solid rgba(107, 47, 91, 0.08);
}

.visit-hours-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #371c2f;
  margin-bottom: 1rem;
}

.visit-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  font-size: 0.95rem;
}

.visit-hours-row:last-of-type {
  border-bottom: none;
}

.visit-hours-row span:first-child {
  color: #542648;
  font-weight: 500;
}

.visit-hours-row span:last-child {
  color: #8A8278;
}

.visit-hours-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #8A8278;
  font-style: italic;
}

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(55, 28, 47, 0.12);
  min-height: 400px;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: #1e0e19;
  padding: 4rem 0 2rem;
  color: #FAF6F0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAF6F0;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #C8943E;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.6);
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #C8943E;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  color: rgba(250, 246, 240, 0.35);
}

/* ─── ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .atm-photo--large {
    grid-column: span 2;
    min-height: 360px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    backdrop-filter: none;
    gap: 2rem;
    padding: 0;
  }

  .nav-links a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 1;
    transform: none;
    letter-spacing: 0.04em;
    color: rgba(250, 246, 240, 0.8);
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: #C8943E;
  }

  .nav-cta {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-image img {
    height: 520px;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .drinks-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .atm-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 639px) {
  .hero-card {
    padding: 2rem;
  }

  .stat-card {
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}
