/* ═══════════════════════════════════════════════
   THE SIP BACK SOCIAL — Main Stylesheet
   Brand: Cream · Olive Green · Terracotta
   Aesthetic: Modern Boho · Coastal · Elegant
═══════════════════════════════════════════════ */

:root {
  /* ── Brand Colors ── */
  --cream:        #F7EFE5;
  --cream-dark:   #EEE2D0;
  --cream-deeper: #E4D3BC;
  --terracotta:   #C17A4A;
  --terra-light:  #D4956A;
  --terra-dark:   #A0622E;
  --green:        #2F3A22;
  --green-mid:    #3D4E2C;
  --green-light:  #556840;
  --green-muted:  #7A8C68;
  --blush:        #E8C4B0;
  --white:        #FFFFFF;
  --dark-text:    #1E2416;

  /* ── Typography ── */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  /* ── Utility ── */
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow:     0 8px 40px rgba(47,58,34,0.12);
  --shadow-t:   0 4px 24px rgba(193,122,74,0.22);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--green);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--green); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-sub { font-size: 1.05rem; color: var(--green-muted); max-width: 560px; margin: 0 auto; }

/* ── Decorative divider ── */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 12px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--terracotta); opacity: 0.4;
}
.divider i { color: var(--terracotta); font-size: 0.8rem; opacity: 0.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--green); color: var(--cream); border-color: var(--green);
  box-shadow: 0 4px 20px rgba(47,58,34,0.2);
}
.btn-primary:hover {
  background: var(--green-mid); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47,58,34,0.28);
}
.btn-terra {
  background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
  box-shadow: var(--shadow-t);
}
.btn-terra:hover {
  background: var(--terra-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(193,122,74,0.35);
}
.btn-ghost {
  background: transparent; color: var(--green); border-color: rgba(47,58,34,0.35);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: var(--cream); border-color: rgba(247,239,229,0.5);
}
.btn-ghost-white:hover { border-color: var(--cream); background: rgba(247,239,229,0.1); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════
   NAVIGATION
═══════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(247,239,229,0.97); backdrop-filter: blur(16px);
  padding: 10px 0; box-shadow: 0 2px 24px rgba(47,58,34,0.1);
  border-bottom: 1px solid rgba(193,122,74,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo-img {
  height: 76px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); opacity: 0.9; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.nav-logo-main {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  color: var(--cream); white-space: nowrap;
}
.nav-logo-sub {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--terra-light); white-space: nowrap;
}
#navbar.scrolled .nav-logo-main { color: var(--green); }
#navbar.scrolled .nav-logo-sub { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 50px; font-size: 0.88rem;
  font-weight: 500; transition: var(--transition);
}
#navbar:not(.scrolled) .nav-links a { color: var(--cream); }
#navbar:not(.scrolled) .nav-links a:hover { color: var(--white); background: rgba(247,239,229,0.12); }
#navbar.scrolled .nav-links a { color: var(--green-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--green); background: rgba(47,58,34,0.06); }
.nav-links .nav-cta {
  background: var(--green); color: var(--cream) !important;
  font-weight: 700; padding: 9px 22px; margin-left: 8px;
  border-radius: 50px;
}
.nav-links .nav-cta:hover {
  background: var(--green-mid); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(47,58,34,0.25);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
  overflow: hidden; padding: 120px 24px 80px; text-align: center;
  background: var(--green);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(193,122,74,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(247,239,229,0.06) 0%, transparent 50%),
    var(--green);
}
/* Subtle texture */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23F7EFE5' fill-opacity='0.03'/%3E%3C/g%3E%3C/svg%3E");
}
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubbles span {
  position: absolute; bottom: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,122,74,0.12), rgba(193,122,74,0.02));
  border: 1px solid rgba(193,122,74,0.08);
  animation: float-up linear infinite;
}
.bubbles span:nth-child(1){width:40px;height:40px;left:10%;animation-duration:8s;animation-delay:0s}
.bubbles span:nth-child(2){width:20px;height:20px;left:25%;animation-duration:10s;animation-delay:1s}
.bubbles span:nth-child(3){width:60px;height:60px;left:40%;animation-duration:12s;animation-delay:2s}
.bubbles span:nth-child(4){width:30px;height:30px;left:55%;animation-duration:9s;animation-delay:0.5s}
.bubbles span:nth-child(5){width:50px;height:50px;left:70%;animation-duration:11s;animation-delay:1.5s}
.bubbles span:nth-child(6){width:15px;height:15px;left:80%;animation-duration:7s;animation-delay:3s}
.bubbles span:nth-child(7){width:35px;height:35px;left:90%;animation-duration:13s;animation-delay:2.5s}
.bubbles span:nth-child(8){width:25px;height:25px;left:5%;animation-duration:9s;animation-delay:4s}
@keyframes float-up {
  0%{transform:translateY(0) scale(0.8);opacity:0}
  10%{opacity:1}90%{opacity:0.4}
  100%{transform:translateY(-100vh) scale(1.1);opacity:0}
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

/* Logo in hero */
.hero-logo-wrap {
  margin-bottom: 28px;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.1s;
}
.hero-logo-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  /* Subtle drop shadow so the cream logo background reads well on dark hero */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
  border-radius: 50%;
  background: var(--cream);
  padding: 1px;
  box-shadow: 0 0 0 4px rgba(193,122,74,0.35), 0 8px 32px rgba(0,0,0,0.3);
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(193,122,74,0.35), 0 8px 32px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(193,122,74,0.18), 0 12px 40px rgba(0,0,0,0.35); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--terra-light);
  margin-bottom: 20px;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.25s;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 12px;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.4s;
}
.hero-title em { font-style: italic; color: var(--terra-light); }
.hero-tagline {
  font-family: var(--font-script); font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: rgba(247,239,229,0.7); margin-bottom: 28px;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.55s;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: rgba(247,239,229,0.65);
  margin-bottom: 40px; line-height: 1.8;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.65s;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px; opacity: 0; animation: fade-up 0.8s ease forwards 0.8s;
}
.hero-btns .btn-ghost {
  color: var(--cream);
  border-color: rgba(247,239,229,0.42);
  background: rgba(247,239,229,0.06);
}
.hero-btns .btn-ghost:hover {
  color: var(--green);
  border-color: var(--cream);
  background: var(--cream);
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; opacity: 0; animation: fade-up 0.8s ease forwards 1s;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--terra-light); }
.stat-label { font-size: 0.72rem; color: rgba(247,239,229,0.5); text-transform: uppercase; letter-spacing: 0.12em; }
.stat-divider { width: 1px; height: 36px; background: rgba(193,122,74,0.3); }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(247,239,229,0.4); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; animation: fade-up 0.8s ease forwards 1.3s;
}
.bounce { animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(6px)} }
@keyframes fade-up { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════
   ABOUT
═══════════════════════════ */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── About Photos ── */
.about-photos {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: stretch;
}
.about-photos-single { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
.about-photos-single .about-photo-main { grid-row: auto; min-height: 620px; }
.about-photo-main {
  grid-row: span 2; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--cream-dark); box-shadow: var(--shadow);
  min-height: 620px;
}
.about-photo-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transition: transform 0.5s ease; display: block;
}
.about-photo-main:hover img { transform: scale(1.04); }
.about-photo-sm {
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--cream-dark); box-shadow: var(--shadow); min-height: 300px;
}
.about-photo-sm img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transition: transform 0.5s ease; display: block;
}
.about-photo-sm:first-child img { object-position: center 28%; }
.about-photo-sm:last-child img { object-position: center 16%; }
.about-photo-sm:hover img { transform: scale(1.06); }
.about-photo-stack { display: flex; flex-direction: column; gap: 12px; }
.about-badge-float {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--cream);
  border-radius: var(--radius); padding: 12px 22px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; z-index: 2;
}
.about-badge-float i { color: var(--terra-light); }

.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { color: var(--green-muted); font-size: 1rem; }
.about-text strong { color: var(--green); }

.about-tagline {
  font-family: var(--font-script); font-size: 1.45rem; color: var(--terracotta);
  border-left: 3px solid var(--terracotta); padding: 8px 0 8px 18px;
  font-style: normal; line-height: 1.5; margin: 4px 0;
}
.about-perks { display: flex; flex-direction: column; gap: 10px; margin: 8px 0; }
.about-perks li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--green-muted); }
.about-perks li i { color: var(--terracotta); font-size: 0.95rem; flex-shrink: 0; }

/* ═══════════════════════════
   SERVICES
═══════════════════════════ */
#services { background: var(--green); }
#services .section-eyebrow { color: var(--terra-light); }
#services .section-title { color: var(--cream); }
#services .section-title em { color: var(--terra-light); }
#services .section-sub { color: rgba(247,239,229,0.6); }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: rgba(247,239,229,0.06); border: 1px solid rgba(247,239,229,0.1);
  border-radius: var(--radius-lg); padding: 34px 26px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--terracotta),transparent); opacity: 0; transition: var(--transition);
}
.service-card:hover { background: rgba(247,239,229,0.1); border-color: rgba(193,122,74,0.3); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: rgba(193,122,74,0.12); border-color: rgba(193,122,74,0.3);
}
.featured-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--terracotta); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 50px;
}
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(193,122,74,0.15); border: 1px solid rgba(193,122,74,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--terra-light); margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(193,122,74,0.25); transform: scale(1.08); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--cream); margin-bottom: 10px; }
.service-card > p { color: rgba(247,239,229,0.6); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.7; }
.service-card ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.service-card li { font-size: 0.83rem; color: rgba(247,239,229,0.55); padding-left: 14px; position: relative; }
.service-card li::before { content: '–'; position: absolute; left: 0; color: var(--terra-light); }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--terra-light); transition: var(--transition); }
.service-link:hover { gap: 12px; }

/* ═══════════════════════════
   MENU
═══════════════════════════ */
#menu { background: var(--cream-dark); }
.menu-tabs {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 48px;
  background: var(--cream); border: 1px solid rgba(193,122,74,0.15);
  border-radius: 50px; padding: 5px; width: fit-content; margin-left: auto; margin-right: auto;
  box-shadow: 0 2px 12px rgba(47,58,34,0.08);
}
.tab-btn { padding: 10px 26px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--green-muted); transition: var(--transition); white-space: nowrap; }
.tab-btn.active { background: var(--green); color: var(--cream); box-shadow: 0 4px 14px rgba(47,58,34,0.2); }
.tab-btn:hover:not(.active) { color: var(--green); background: rgba(47,58,34,0.06); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade-in 0.4s ease; }
@keyframes fade-in { from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)} }

.drinks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.drink-card {
  background: var(--cream); border: 1px solid rgba(193,122,74,0.12);
  border-radius: var(--radius); padding: 18px; display: flex; align-items: flex-start;
  gap: 14px; transition: var(--transition); box-shadow: 0 2px 8px rgba(47,58,34,0.05);
}
.drink-card:hover { border-color: rgba(193,122,74,0.3); transform: translateX(4px); box-shadow: 0 4px 20px rgba(47,58,34,0.1); }
.drink-icon {
  font-size: 1.8rem; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark); border-radius: var(--radius); flex-shrink: 0;
  border: 1px solid rgba(193,122,74,0.1);
}
.drink-info h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--green); margin-bottom: 5px; }
.drink-info p { font-size: 0.8rem; color: var(--green-muted); line-height: 1.5; margin-bottom: 8px; }
.drink-tag {
  display: inline-block; background: rgba(193,122,74,0.1); color: var(--terracotta);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(193,122,74,0.2);
}
.menu-note {
  text-align: center; margin-top: 44px; padding: 18px 24px;
  background: var(--cream); border: 1px solid rgba(193,122,74,0.2);
  border-radius: var(--radius); color: var(--green-muted); font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 2px 8px rgba(47,58,34,0.05);
}
.menu-note i { color: var(--terracotta); }

/* ═══════════════════════════
   DRINKS STRIP
═══════════════════════════ */
#drinks-strip { padding: 0; background: var(--green-mid); overflow: hidden; }
.drinks-strip-inner { display: flex; }
.strip-item { flex: 1; position: relative; height: 260px; overflow: hidden; cursor: pointer; }
.strip-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease; display: block; filter: brightness(0.65) saturate(0.9);
}
.strip-item:hover img { transform: scale(1.08); filter: brightness(0.85) saturate(1); }
.strip-item span {
  position: absolute; bottom: 0; left: 0; right: 0; text-align: center;
  padding: 28px 12px 14px;
  background: linear-gradient(0deg,rgba(47,58,34,0.8),transparent);
  color: var(--cream); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.strip-item::after {
  content: ''; position: absolute; inset: 0;
  border-right: 1px solid rgba(247,239,229,0.08); pointer-events: none;
}
.strip-item:last-child::after { border-right: none; }

/* Strip photo class (alias for strip-item img) */
.strip-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease; display: block; filter: brightness(0.65) saturate(0.9);
}
.strip-item:hover .strip-photo { transform: scale(1.08); filter: brightness(0.85) saturate(1); }
/* Fallback gradient for strip items without images */
.strip-item { background: linear-gradient(160deg,#2F3A22,#3D4E2C); }
.strip-emoji {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  font-size: 3rem; opacity: 0.35; transition: var(--transition);
}
.strip-item:hover .strip-emoji { opacity: 0.55; transform: translate(-50%, -65%) scale(1.1); }

/* ═══════════════════════════
   PROCESS
═══════════════════════════ */
#process { background: var(--cream); }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1; text-align: center; padding: 36px 20px;
  background: var(--white); border: 1px solid rgba(193,122,74,0.12);
  border-radius: var(--radius-lg); position: relative; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(47,58,34,0.06);
}
.step:hover { border-color: rgba(193,122,74,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: var(--white);
  font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 50px;
}
.step-icon {
  width: 60px; height: 60px; background: rgba(193,122,74,0.1);
  border: 1px solid rgba(193,122,74,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--terracotta); margin: 12px auto 14px;
}
.step h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green); margin-bottom: 8px; }
.step p { font-size: 0.86rem; color: var(--green-muted); line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; color: var(--terracotta); font-size: 1rem; padding: 0 6px; margin-top: 40px; opacity: 0.4; flex-shrink: 0; }

/* ═══════════════════════════
   GALLERY
═══════════════════════════ */
#events { background: var(--cream-dark); }
.gallery-grid {
  columns: 3 280px;
  column-gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: var(--radius-lg);
  background: var(--green-mid);
  box-shadow: 0 8px 28px rgba(47,58,34,0.1);
}
.gallery-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); filter: saturate(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,rgba(47,58,34,0.82) 0%,rgba(47,58,34,0.12) 52%,transparent 78%);
  display: flex; align-items: flex-end; padding: 18px; z-index: 2;
  opacity: 1; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: linear-gradient(0deg,rgba(47,58,34,0.88) 0%,rgba(47,58,34,0.16) 58%,transparent 82%); }
.gallery-label { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--cream); }

/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
#testimonials { background: var(--green); overflow: hidden; }
#testimonials .section-eyebrow { color: var(--terra-light); }
#testimonials .section-title { color: var(--cream); }
#testimonials .section-title em { color: var(--terra-light); }

.testimonials-slider { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: 100%; background: rgba(247,239,229,0.07); border: 1px solid rgba(247,239,229,0.1);
  border-radius: var(--radius-lg); padding: 48px; text-align: center;
}
.t-stars { color: var(--terracotta); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.t-quote {
  font-family: var(--font-serif); font-size: clamp(1.05rem,2.2vw,1.3rem);
  font-style: italic; color: var(--cream); line-height: 1.8;
  max-width: 720px; margin: 0 auto 28px;
}
.t-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: var(--white); flex-shrink: 0;
}
.t-author strong { display: block; color: var(--cream); font-size: 0.95rem; margin-bottom: 2px; }
.t-author span { font-size: 0.8rem; color: rgba(247,239,229,0.5); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(193,122,74,0.35);
  background: rgba(247,239,229,0.06); color: var(--terra-light); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.slider-btn:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(193,122,74,0.3); transition: var(--transition); cursor: pointer; }
.dot.active { background: var(--terracotta); width: 22px; border-radius: 4px; }

/* ═══════════════════════════
   BOOKING
═══════════════════════════ */
#booking {
  background: var(--cream);
  background-image: radial-gradient(ellipse at 5% 50%, rgba(193,122,74,0.08) 0%,transparent 55%),
    radial-gradient(ellipse at 95% 20%, rgba(47,58,34,0.05) 0%,transparent 55%);
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: stretch; }
.booking-info {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(47,58,34,0.18) 0%, rgba(47,58,34,0.68) 58%, rgba(30,36,22,0.9) 100%),
    url("../images/booking-bar-bg.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.booking-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,36,22,0.28), rgba(30,36,22,0.04));
  pointer-events: none;
}
.booking-info > * { position: relative; z-index: 1; }
.booking-info .section-title { text-align: left; color: var(--cream); }
.booking-info .section-title em { color: var(--terra-light); }
.booking-info .section-eyebrow { text-align: left; color: var(--terra-light); }
.booking-info > p { color: rgba(247,239,229,0.82); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: rgba(247,239,229,0.84); }
.contact-item i {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(247,239,229,0.14);
  border: 1px solid rgba(247,239,229,0.24); display: flex; align-items: center; justify-content: center;
  color: var(--terra-light); font-size: 0.82rem; flex-shrink: 0;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,239,229,0.28);
  background: rgba(247,239,229,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); transform: translateY(-3px); }

.booking-form-wrap {
  background: var(--white); border: 1px solid rgba(193,122,74,0.15);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow);
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--green-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream); border: 1.5px solid rgba(193,122,74,0.2);
  border-radius: var(--radius); padding: 12px 14px; font-size: 0.92rem;
  color: var(--green); font-family: var(--font-sans); transition: var(--transition); outline: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,140,104,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(193,122,74,0.1); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C17A4A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group select option { background: var(--cream); color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status {
  display: none;
  text-align: center;
  font-size: 0.84rem;
  border-radius: var(--radius);
  padding: 12px 14px;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.error {
  color: #8f2d22;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.18);
}
.form-status.error a {
  color: #8f2d22;
  font-weight: 700;
  text-decoration: underline;
}
.form-status.success {
  color: var(--green);
  background: rgba(47,58,34,0.08);
  border: 1px solid rgba(47,58,34,0.15);
}
.form-status.success a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}
.form-note { text-align: center; font-size: 0.76rem; color: rgba(122,140,104,0.6); display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-success { display: none; text-align: center; padding: 48px 24px; flex-direction: column; align-items: center; gap: 16px; }
.form-success.show { display: flex; animation: fade-up 0.5s ease; }
.success-icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(47,58,34,0.08); border: 2px solid rgba(47,58,34,0.2); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--green); margin-bottom: 8px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--green); }
.form-success p { color: var(--green-muted); max-width: 360px; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
#footer { background: var(--green); border-top: 1px solid rgba(247,239,229,0.08); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: rgba(247,239,229,0.55); margin: 12px 0 18px; line-height: 1.7; }
.footer-logo-img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  /* Slight brightness lift so logo pops on dark footer */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)) brightness(1.08);
}
.footer-links h4 { font-family: var(--font-serif); font-size: 0.95rem; color: var(--cream); margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links li { font-size: 0.85rem; color: rgba(247,239,229,0.5); display: flex; align-items: center; gap: 8px; }
.footer-links li a { transition: var(--transition); color: rgba(247,239,229,0.5); }
.footer-links li a:hover { color: var(--terra-light); }
.footer-links li i { color: var(--terracotta); font-size: 0.78rem; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(247,239,229,0.15);
  background: rgba(247,239,229,0.05); display: flex; align-items: center; justify-content: center;
  color: rgba(247,239,229,0.6); font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(247,239,229,0.08);
  font-size: 0.8rem; color: rgba(247,239,229,0.3); flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════
   FLOATING CTA
═══════════════════════════ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--terracotta); color: var(--white);
  border-radius: 50px; padding: 13px 22px;
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem;
  box-shadow: 0 6px 28px rgba(193,122,74,0.45); z-index: 999;
  transform: translateY(80px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, box-shadow 0.3s ease;
}
.float-cta.visible { transform: translateY(0); opacity: 1; }
.float-cta:hover { box-shadow: 0 10px 36px rgba(193,122,74,0.6); transform: translateY(-3px); }

/* ═══════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .nav-logo-img { height: 66px; }
  .nav-logo-main { font-size: 1.05rem; }
  .nav-logo-sub { font-size: 0.5rem; letter-spacing: 0.12em; }
  .nav-links a { padding: 8px 10px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photos { max-width: 540px; margin: 0 auto; }
  .about-photo-main { min-height: 560px; }
  .about-photo-sm { min-height: 220px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .drinks-grid { grid-template-columns: repeat(2,1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { flex-wrap: wrap; }
  .step { flex: 0 0 calc(50% - 8px); }
  .step-connector { display: none; }
  .drinks-strip-inner { flex-wrap: wrap; }
  .strip-item { flex: 0 0 33.333%; height: 200px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-logo { gap: 10px; }
  .nav-logo-img { height: 58px; }
  .nav-logo-main { font-size: 0.98rem; }
  .nav-logo-sub { display: none; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(247,239,229,0.98);
    backdrop-filter: blur(20px); flex-direction: column;
    justify-content: center; align-items: center; gap: 6px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 12px 32px; color: var(--green); }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero-logo-img { width: 110px; height: 110px; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.5rem; }
  .stat-divider { height: 26px; }
  .about-photos { grid-template-columns: 1fr; }
  .about-photo-main { grid-row: span 1; min-height: 420px; }
  .about-photo-stack { flex-direction: row; }
  .about-photo-sm { min-height: 220px; flex: 1; }
  .about-badge-float { position: relative; bottom: auto; left: auto; transform: none; margin-top: 18px; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; border-radius: var(--radius-lg); width: 100%; }
  .tab-btn { border-radius: var(--radius); text-align: center; }
  .drinks-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .step { flex: none; }
  .strip-item { flex: 0 0 50%; height: 180px; }
  .gallery-grid { columns: 2 240px; column-gap: 14px; }
  .gallery-item { margin-bottom: 14px; }
  .testimonial-card { padding: 28px 20px; }
  .booking-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-cta { bottom: 16px; right: 16px; }
  .booking-info .section-title,
  .booking-info .section-eyebrow { text-align: center; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo-img { height: 52px; }
  .nav-logo-main { font-size: 0.86rem; max-width: 150px; white-space: normal; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 50px; height: 1px; }
  .about-photo-main { min-height: 360px; }
  .about-photo-stack { flex-direction: column; }
  .about-photo-sm { min-height: 240px; }
  .gallery-grid { columns: 1; }
  .strip-item { flex: 0 0 100%; height: 160px; }
}

/* ═══════════════════════════
   NAV LOGO ICON (text-based)
═══════════════════════════ */
.nav-logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 2px solid rgba(193,122,74,0.3);
}

/* ═══════════════════════════
   HERO LOGO CIRCLE
═══════════════════════════ */
.hero-logo-circle {
  width: 160px; height: 160px; border-radius: 50%;
  border: 2px solid rgba(193,122,74,0.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto;
  background: rgba(247,239,229,0.06);
  backdrop-filter: blur(4px);
  padding: 16px;
  position: relative;
}
.hero-logo-circle::before {
  content: ''; position: absolute; inset: 5px;
  border-radius: 50%; border: 1px solid rgba(193,122,74,0.15);
}
.hero-logo-drinks { font-size: 1.6rem; margin-bottom: 6px; }
.hero-logo-brand-name {
  font-family: var(--font-script); font-size: 1.1rem;
  color: var(--cream); line-height: 1.2; text-align: center;
}
.hero-logo-tagline-small {
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--terra-light);
  margin-top: 4px; text-align: center;
}

/* ═══════════════════════════
   ABOUT PHOTOS (real images)
═══════════════════════════ */
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.about-photo-main { overflow: hidden; border-radius: var(--radius-lg); }
.about-photo-main .about-photo-img { min-height: 380px; object-position: center 20%; }
.about-photo-main:hover .about-photo-img { transform: scale(1.04); }
.about-photo-sm { overflow: hidden; border-radius: var(--radius-lg); height: 160px; }
.about-photo-sm .about-photo-img { height: 100%; }
.about-photo-sm:hover .about-photo-img { transform: scale(1.06); }

/* Gallery overlay always visible for images */
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gv-1 { background: linear-gradient(135deg, #2F3A22 0%, #556840 60%, #C17A4A 100%); }
.gv-2 { background: linear-gradient(135deg, #3D4E2C 0%, #7A8C68 100%); }
.gv-3 { background: linear-gradient(135deg, #2F3A22 0%, #A0622E 100%); }
.gv-4 { background: linear-gradient(135deg, #3D4E2C 0%, #C17A4A 100%); }
.gv-5 { background: linear-gradient(135deg, #2F3A22 0%, #556840 40%, #A0622E 100%); }

/* Always show overlay label (not just on hover) for placeholders */
.gv-1 .gallery-overlay,
.gv-2 .gallery-overlay,
.gv-3 .gallery-overlay,
.gv-4 .gallery-overlay,
.gv-5 .gallery-overlay { opacity: 1; }

/* ═══════════════════════════
   FOOTER LOGO TEXT
═══════════════════════════ */
.footer-logo-text { margin-bottom: 4px; }
.footer-logo-script {
  font-family: var(--font-script); font-size: 1.6rem;
  color: var(--cream); line-height: 1.2;
}
.footer-logo-sub {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra-light);
  margin-top: 2px;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; opacity: 0.6; }
::-webkit-scrollbar-thumb:hover { background: var(--terra-dark); }
