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

:root {
  --green-dark:    #1E3A2F;
  --green-rich:    #2D5A3D;
  --green-mid:     #3D7A52;
  --green-sage:    #6B9E7A;
  --green-light:   #A8C5A0;
  --gold:          #C9A84C;
  --gold-light:    #E8D5A0;
  --cream:         #FAF7F2;
  --cream-warm:    #F4EDE3;
  --cream-dark:    #EDE3D6;
  --beige:         #D9CCBA;
  --text-dark:     #1A1A1A;
  --text-mid:      #4A4A4A;
  --text-light:    #8A8A8A;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 12px rgba(30,58,47,0.08);
  --shadow:        0 6px 28px rgba(30,58,47,0.12);
  --shadow-lg:     0 12px 48px rgba(30,58,47,0.18);
  --shadow-xl:     0 20px 64px rgba(30,58,47,0.22);
  --radius:        20px;
  --radius-sm:     12px;
  --radius-xs:     8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
em { font-style: italic; color: var(--green-rich); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
  max-width: 40px;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow 0.3s;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.logo-leaf {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav a:hover { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }

.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.4rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  flex-shrink: 0;
}

.btn-order:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--green-dark);
  z-index: 99;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(201,168,76,0.15);
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
  z-index: 0;
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.05;
}

.leaf-tl {
  width: 280px; height: 280px;
  top: 60px; left: -80px;
  background: var(--green-dark);
  transform: rotate(-25deg);
}

.leaf-tr {
  width: 200px; height: 200px;
  top: 80px; right: -50px;
  background: var(--green-dark);
  transform: rotate(35deg);
}

.hero-content {
  padding: 4rem 3rem 4rem 7rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}

.hero-title em {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 0.6em;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 0.1em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 400px;
  line-height: 1.75;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.hero-badges svg {
  width: 14px;
  height: 14px;
  color: var(--green-mid);
  flex-shrink: 0;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.2rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(30,58,47,0.3);
}

.btn-primary:hover {
  background: var(--green-rich);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30,58,47,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--green-dark);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  z-index: 1;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 7rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 64px; opacity: 0.5; }
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--green-dark);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.ticker {
  display: inline-flex;
  gap: 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0 1.75rem;
}

.ticker .dot {
  color: var(--gold);
  padding: 0 0.25rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
  background: var(--cream-warm);
}

.about-image {
  position: relative;
  overflow: hidden;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--cream-warm) 100%);
}

.about-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: var(--green-dark);
  color: var(--white);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
  z-index: 2;
}

.about-badge small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.about-content {
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--beige);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.stat span:not(.stat-num) {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0.4rem 0 0;
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 6rem 0 7rem;
  background: var(--cream);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige), transparent);
}

.menu-header {
  text-align: center;
  padding: 0 2rem 3.5rem;
}

.menu-header .section-label {
  justify-content: center;
}

.menu-header .section-label::before,
.menu-header .section-label::after {
  max-width: 60px;
}

.menu-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.menu-sub {
  color: var(--text-light);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem 3.5rem;
}

.tab {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--beige);
  background: transparent;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.22s;
}

.tab:hover {
  border-color: var(--green-sage);
  color: var(--green-dark);
  background: rgba(107,158,122,0.06);
}

.tab.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,58,47,0.2);
}

/* ── MENU CATEGORY ── */
.menu-category {
  max-width: 1320px;
  margin: 0 auto 5rem;
  padding: 0 2.5rem;
}

.category-banner {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.category-banner::before,
.category-banner::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige));
}

.category-banner::after {
  background: linear-gradient(to left, transparent, var(--beige));
}

.banner-stroke {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.banner-stroke::before,
.banner-stroke::after {
  content: '✦';
  font-size: 0.6em;
  color: var(--gold);
}

/* ── DRINKS GRID ── */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* ── DRINK CARD ── */
.drink-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(217,204,186,0.5);
}

.drink-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-light);
}

.drink-card.hidden { display: none; }

.drink-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
}

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

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

.price-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(30,58,47,0.3);
  border: 1px solid rgba(201,168,76,0.3);
}

.drink-info {
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid var(--cream-dark);
}

.drink-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.drink-info p {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--green-dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header .section-label {
  justify-content: center;
  color: var(--gold);
}

.contact-header .section-label::before,
.contact-header .section-label::after {
  background: rgba(201,168,76,0.3);
  max-width: 60px;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.contact-header h2 em {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.5);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.contact-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── FOOTER ── */
.footer {
  background: #111E18;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.footer-badges svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social > span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  color: rgba(255,255,255,0.7);
  transition: all 0.22s;
}

.social-icon svg { width: 15px; height: 15px; }

.social-icon:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .drinks-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-content { padding: 4rem 2.5rem 4rem 4rem; }
  .about-content { padding: 4rem 3rem 4rem 3rem; }
}

@media (max-width: 960px) {
  .drinks-grid { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 340px; }
  .about-content { padding: 3rem 2.5rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 3.5rem 2.5rem; }
  .hero::before { width: 100%; }
  .scroll-hint { left: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .btn-order { display: none; }
  .hamburger { display: flex; }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats { gap: 2rem; }
  .menu-category { padding: 0 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .drinks-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-title { font-size: 2.8rem; }
  .filter-tabs { gap: 0.4rem; }
  .tab { padding: 0.4rem 1rem; font-size: 0.78rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .menu-category { padding: 0 1rem; }
}