/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1a0a0e;
  background: #fdf8f4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #1a0a0e;
  margin-bottom: 24px;
}
.section-sub {
  font-size: 1.1rem;
  color: #5a3a42;
  max-width: 540px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #7B2D3B;
  color: #fff;
}
.btn-primary:hover { background: #5e1f2b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.3); }
.btn-ghost {
  background: transparent;
  color: #1a0a0e;
  border: 1.5px solid rgba(26,10,14,0.2);
}
.btn-ghost:hover { border-color: #7B2D3B; color: #7B2D3B; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(253,248,244,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(123,45,59,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a0a0e;
}
.nav-logo-icon { color: #7B2D3B; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #3a2026;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #7B2D3B; }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: #7B2D3B;
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: #7B2D3B;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.85rem;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: #5e1f2b; transform: translateY(-1px); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #1a0a0e;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf8f4 0%, #f9e8e4 50%, #f5d5cc 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(123,45,59,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(200,140,50,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #1a0a0e;
  margin-bottom: 24px;
}
.headline-accent {
  color: #7B2D3B;
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: #5a3a42;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual + stat cards */
.hero-visual {
  position: relative;
  height: 620px;
}
.hero-card-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(123,45,59,0.15);
  width: 100%;
  height: 100%;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }

.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(123,45,59,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.stat-card-1 {
  bottom: 60px; left: -40px;
  animation: float 4s ease-in-out infinite;
}
.stat-card-2 {
  top: 40px; right: -30px;
  animation: float 4s ease-in-out infinite 1s;
}
.stat-card-3 {
  bottom: -20px; right: 40px;
  animation: float 4s ease-in-out infinite 2s;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #7B2D3B;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: #5a3a42;
  font-weight: 500;
  line-height: 1.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B2D3B;
  opacity: 0.7;
  z-index: 1;
}

/* ── Sections ── */
.section { padding: 120px 0; }

/* ── About ── */
.about { background: #fdf8f4; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; height: 580px; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123,45,59,0.12);
  height: 580px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,59,0.15);
  width: 260px;
  border: 6px solid #fdf8f4;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-bar {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: #7B2D3B;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.about-content p {
  font-size: 1.05rem;
  color: #4a2a30;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-signature {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #7B2D3B;
}

/* ── Drinks ── */
.drinks { background: #1a0a0e; color: #f5e0da; }
.drinks .section-eyebrow { color: #c88c32; }
.drinks .section-headline { color: #fdf8f4; }
.drinks .section-sub { color: #c4a09a; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

.drink-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.drink-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.drink-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.drink-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.drink-card:last-child:nth-child(odd) .drink-card-img { display: none; }
.drink-card:last-child:nth-child(odd) .drink-card-body { grid-column: 1 / -1; }
.drink-card-img { border-radius: 20px 0 0 20px; overflow: hidden; min-height: 220px; }
.drink-card-img img { width: 100%; height: 100%; object-fit: cover; }
.drink-card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.drink-card-body h3 {
  font-size: 1.4rem;
  color: #f5e0da;
  margin-bottom: 10px;
}
.drink-card-body p {
  font-size: 0.9rem;
  color: #b89088;
  line-height: 1.7;
  margin-bottom: 16px;
}
.drink-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c88c32;
  background: rgba(200,140,50,0.12);
  padding: 6px 14px;
  border-radius: 60px;
  width: fit-content;
}

.drinks-cta {
  text-align: center;
  padding: 40px;
  background: rgba(200,140,50,0.08);
  border: 1px solid rgba(200,140,50,0.2);
  border-radius: 20px;
}
.drinks-cta p {
  color: #c4a09a;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ── Experience ── */
.experience { background: #fdf8f4; }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-features { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.exp-feature { display: flex; gap: 20px; align-items: flex-start; }
.exp-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(123,45,59,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D3B;
}
.exp-feature h4 {
  font-size: 1.1rem;
  color: #1a0a0e;
  margin-bottom: 6px;
}
.exp-feature p {
  font-size: 0.92rem;
  color: #5a3a42;
  line-height: 1.7;
}
.experience-visuals { position: relative; }
.exp-img-grid { display: flex; flex-direction: column; gap: 20px; }
.exp-img-1 { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(123,45,59,0.12); height: 500px; }
.exp-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.exp-img-2 {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,59,0.1);
  height: 240px;
  margin-left: -40px;
  border: 6px solid #fdf8f4;
}
.exp-img-2 img { width: 100%; height: 100%; object-fit: cover; }

/* ── Visit ── */
.visit { background: #f5e8e4; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.visit-details { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.visit-detail { display: flex; gap: 16px; align-items: flex-start; }
.visit-detail-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #7B2D3B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.visit-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a0a0e;
  margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
  font-size: 0.92rem;
  color: #5a3a42;
  line-height: 1.7;
}
.visit-detail a:hover { color: #7B2D3B; }
.visit-map { border-radius: 20px; overflow: hidden; min-height: 440px; box-shadow: 0 16px 48px rgba(123,45,59,0.1); }

/* ── Contact ── */
.contact { background: #1a0a0e; color: #f5e0da; }
.contact .section-eyebrow { color: #c88c32; }
.contact .section-headline { color: #fdf8f4; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text p { color: #c4a09a; font-size: 1.05rem; line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c88c32;
}
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #f5e0da;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,224,218,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: #c88c32; background: rgba(255,255,255,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: #7a5a54; text-align: center; }
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px;
}
.contact-success svg { color: #6dbf6b; }
.contact-success h3 {
  font-size: 1.6rem;
  color: #fdf8f4;
}
.contact-success p { color: #c4a09a; }

/* ── Footer ── */
.footer { background: #12070a; color: #c4a09a; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong, .footer-contact strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fdf8f4;
  margin-bottom: 4px;
}
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #c88c32; }
.footer-contact a { font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: #c88c32; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: #7a5a54;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 440px; order: -1; }
  .stat-card-1 { left: 10px; bottom: 30px; }
  .stat-card-2 { right: 10px; top: 20px; }
  .stat-card-3 { right: 20px; bottom: -10px; }
  .about-grid, .experience-grid, .visit-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 420px; }
  .about-img-secondary { width: 200px; right: -20px; }
  .drink-categories { grid-template-columns: 1fr; }
  .drink-card:last-child:nth-child(odd) .drink-card-body { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,248,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-visual { height: 360px; }
  .stat-card { padding: 14px 18px; }
  .stat-number { font-size: 1.5rem; }
  .stat-card-1 { left: 0; }
  .stat-card-2 { right: 0; }
  .section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .drink-card { grid-template-columns: 1fr; }
  .drink-card-img { border-radius: 20px 20px 0 0; min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
