/* ═══════════════════════════════════════════════════
   GRND COFFEE — style.css
   Neo Specialty Coffee / Urban Artsy Landing Page
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────── */
:root {
  --black:        #0D0D0D;
  --terracotta:   #C4622D;
  --cream:        #F5EDD6;
  --olive:        #4A5240;
  --burnt-orange: #E05A1A;
  --warm-white:   #FAF7F2;
  --dark-brown:   #2C1810;
  --font-bebas:   'Bebas Neue', cursive;
  --font-oswald:  'Oswald', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) var(--black);
}
html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-track { background: var(--black); }
html::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 2px; }

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-poppins);
  overflow-x: hidden;
  cursor: none;
}

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

/* ─── Scroll Progress ──────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--burnt-orange));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Custom Cursor ────────────────────────────── */
#cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-expo),
              height 0.3s var(--ease-expo),
              background 0.3s ease,
              border-color 0.3s ease;
  mix-blend-mode: difference;
}
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 60px;
  height: 60px;
  background: rgba(196, 98, 45, 0.12);
  border-color: var(--burnt-orange);
}

/* ─── Navbar ───────────────────────────────────── */
#navbar {
  z-index: 100;
}
#navbar .nav-inner {
  transition: all 0.5s var(--ease-expo);
}
#navbar.scrolled .nav-inner {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 98, 45, 0.15);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-link {
  color: rgba(245, 237, 214, 0.6);
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

/* Logo */
.logo-wrap { cursor: none; }
.logo-icon { transition: transform 0.3s var(--ease-back); }
.logo-wrap:hover .logo-icon { transform: rotate(15deg); }

/* Book button */
.book-btn {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
  z-index: 0;
}
.book-btn span { position: relative; z-index: 1; }
.book-btn:hover { color: var(--cream); }
.book-btn:hover::before { transform: scaleX(1); }

/* Hamburger */
.ham-line {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.4s var(--ease-expo);
  border-radius: 1px;
}
.ham-line.short { width: 60%; margin-left: auto; }
#hamburger:hover .ham-line { background: var(--terracotta); }

/* ─── Mobile Menu ──────────────────────────────── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-expo);
  overflow: hidden;
}
.mobile-menu-overlay.open {
  transform: translateX(0);
}
.mobile-nav-link {
  color: var(--cream);
  opacity: 0.5;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-expo), color 0.3s ease;
}
.mobile-menu-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-link:hover { color: var(--terracotta); }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.open .book-btn { transition-delay: 0.4s; }
.mobile-menu-deco {
  position: absolute;
  bottom: -5vw;
  right: -5vw;
  pointer-events: none;
  user-select: none;
}

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

/* ─── Magnetic Button ──────────────────────────── */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: transform 0.3s var(--ease-expo);
}

/* ─── HERO SECTION ─────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: var(--black);
  position: relative;
}
.hero-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Left panel */
.hero-left { background: var(--black); }

/* Headline */
.headline-line {
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}
.headline-outline {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.hero-sub {
  max-width: 380px;
}

/* CTAs */
.hero-cta-primary {
  background: var(--terracotta);
  color: var(--cream);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  border: none;
  overflow: hidden;
  position: relative;
}
.hero-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--burnt-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
  z-index: 0;
}
.hero-cta-primary span, .hero-cta-primary svg { position: relative; z-index: 1; }
.hero-cta-primary:hover::before { transform: scaleX(1); }

.hero-cta-secondary {
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  border: 1px solid rgba(245, 237, 214, 0.2);
  transition: border-color 0.3s, color 0.3s;
}
.hero-cta-secondary:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* Stats */
.hero-stats { flex-wrap: wrap; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 237, 214, 0.1);
}

/* Hero right / image */
.hero-right {
  position: relative;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.1s ease-out;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.1) 60%, transparent 100%);
}

/* Floating card */
.hero-float-card {
  position: absolute;
  bottom: 80px;
  left: -20px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 98, 45, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  z-index: 30;
}
.float-avatar-stack {
  display: flex;
  position: relative;
  width: 60px;
  height: 32px;
}
.float-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--black);
  object-fit: cover;
  position: absolute;
  top: 2px;
}
.float-avatar:nth-child(1) { left: 0; z-index: 3; }
.float-avatar:nth-child(2) { left: 14px; z-index: 2; }
.float-avatar:nth-child(3) { left: 28px; z-index: 1; }

/* Blob */
.hero-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  pointer-events: none;
  animation: blobPulse 6s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Sticker badges */
.sticker {
  position: absolute;
  background: var(--cream);
  color: var(--black);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 30;
  white-space: nowrap;
}
.sticker-1 {
  top: 120px;
  right: 5%;
  transform: rotate(3deg);
  box-shadow: 3px 3px 0 var(--terracotta);
}
.sticker-2 {
  bottom: 30%;
  left: 2%;
  transform: rotate(-5deg);
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--burnt-orange);
}

/* Scroll hint */
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,237,214,0.4), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Vertical label */
.section-label-vertical {
  position: absolute;
  left: 20px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  display: flex;
  align-items: center;
}

/* ─── Pre-headline ─────────────────────────────── */
.pre-headline { display: flex; align-items: center; gap: 6px; }

/* ─── Text Stroke Utilities ────────────────────── */
.text-stroke-terracotta {
  -webkit-text-stroke: 2px var(--terracotta);
  color: transparent;
}
.text-stroke-cream {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.text-stroke-dark {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

/* ─── DRINKS SECTION ───────────────────────────── */
.drinks-section {
  background: var(--black);
  position: relative;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

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

/* Drink Card */
.drink-card {
  perspective: 800px;
  cursor: none;
}
.drink-card-inner {
  background: #161616;
  border: 1px solid rgba(245, 237, 214, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s ease, border-color 0.3s;
  transform-style: preserve-3d;
}
.drink-card:hover .drink-card-inner {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(196, 98, 45, 0.3);
  border-color: rgba(196, 98, 45, 0.3);
}

.drink-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.drink-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.drink-card:hover .drink-img { transform: scale(1.08); }
.drink-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8), transparent 50%);
}
.drink-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-oswald);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.new-badge { background: var(--olive); }

.drink-info {
  padding: 18px 20px 20px;
  position: relative;
}
.drink-number {
  position: absolute;
  top: -10px;
  right: 12px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.drink-tag {
  font-family: var(--font-oswald);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.4);
  border: 1px solid rgba(245, 237, 214, 0.1);
  padding: 3px 8px;
  border-radius: 2px;
}

/* View All Button */
.view-all-btn {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 237, 214, 0.2);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 0.25em;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.view-all-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ─── STORY SECTION ────────────────────────────── */
.story-section {
  background: #111111;
  position: relative;
}

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

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

.feature-item {
  padding: 28px 24px;
  border: 1px solid rgba(245, 237, 214, 0.05);
  background: rgba(245, 237, 214, 0.01);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-expo);
  cursor: default;
}
.feature-item:hover {
  background: rgba(196, 98, 45, 0.06);
  border-color: rgba(196, 98, 45, 0.2);
  transform: translateY(-4px);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196, 98, 45, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 98, 45, 0.05);
  transition: background 0.3s, border-color 0.3s;
}
.feature-item:hover .feature-icon-wrap {
  background: rgba(196, 98, 45, 0.15);
  border-color: var(--terracotta);
}

/* Feature highlight */
.feature-highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}
.fh-bar {
  width: 3px;
  height: 100%;
  background: var(--terracotta);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
}
.feature-highlight { position: relative; }

/* ─── GALLERY SECTION ──────────────────────────── */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px 250px;
  gap: 12px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gal-tall, .gal-wide { grid-column: auto; grid-row: auto; }
}

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: transform 0.6s var(--ease-expo), filter 0.6s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── IMAGE MODAL ──────────────────────────────── */
.img-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.img-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: none;
  opacity: 0.5;
  transition: opacity 0.3s;
  line-height: 1;
}
.modal-close-btn:hover { opacity: 1; }
.modal-content-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-expo);
}
.img-modal-overlay.active .modal-content-wrap { transform: scale(1); }
.modal-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}
.modal-caption {
  color: rgba(245, 237, 214, 0.5);
  letter-spacing: 0.3em;
}

/* ─── EVENTS SECTION ───────────────────────────── */
.events-section { background: var(--black); }

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 237, 214, 0.08);
  cursor: none;
  transition: background 0.3s ease;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.event-card::before {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: rgba(196, 98, 45, 0.04);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.event-card:hover::before { opacity: 1; }
.event-card:last-child { border-bottom: 1px solid rgba(245, 237, 214, 0.08); }

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.event-tag {
  display: inline-block;
  border: 1px solid rgba(196, 98, 45, 0.4);
  color: var(--terracotta);
  padding: 3px 10px;
  border-radius: 2px;
}
.event-dot {
  width: 4px;
  height: 4px;
  background: rgba(245, 237, 214, 0.2);
  border-radius: 50%;
}
.event-arrow {
  color: rgba(245, 237, 214, 0.2);
  margin-left: auto;
  padding-top: 24px;
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.event-card:hover .event-arrow {
  color: var(--terracotta);
  transform: translateX(4px);
}

/* ─── REVIEWS SECTION ──────────────────────────── */
.reviews-section { background: var(--cream); }

.reviews-slider-wrap { position: relative; }
.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.reviews-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  padding: 20px 80px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

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

.review-card {
  background: var(--warm-white);
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: 4px;
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.4s var(--ease-expo);
  cursor: default;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.review-quote-mark { line-height: 0.7; margin-bottom: 8px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Review bars */
.review-bars { gap: 6px; }
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-bar-track {
  width: 80px;
  height: 4px;
  background: rgba(13, 13, 13, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--terracotta);
  border-radius: 2px;
}

/* ─── RESERVATION SECTION ──────────────────────── */
.reservation-section {
  background: #111111;
  position: relative;
}

/* Blobs */
.res-blob-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  top: -100px;
  left: -150px;
  pointer-events: none;
}
.res-blob-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 82, 64, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  bottom: -80px;
  right: 5%;
  pointer-events: none;
}

/* Info rows */
.info-row { align-items: center; }
.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(196, 98, 45, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form */
.reservation-form-wrap {
  background: var(--cream);
  padding: 40px;
  border-radius: 4px;
}
.form-label {
  font-family: var(--font-oswald);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.5);
  display: block;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: rgba(13, 13, 13, 0.04);
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-poppins);
  font-size: 13px;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--terracotta);
  background: rgba(196, 98, 45, 0.04);
}
.form-textarea {
  min-height: 80px;
  resize: vertical;
}
.form-group { display: flex; flex-direction: column; }

/* Guest counter */
.guest-counter { }
.counter-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(13, 13, 13, 0.2);
  background: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--black);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  line-height: 1;
}
.counter-btn:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
}

/* Submit */
.submit-btn {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.25em;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: background 0.3s;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
  z-index: 0;
}
.submit-btn span, .submit-btn svg { position: relative; z-index: 1; }
.submit-btn:hover::before { transform: scaleX(1); }

/* Success */
.res-success {
  text-align: center;
  padding: 40px 20px;
}
.hidden { display: none; }

/* ─── FOOTER ───────────────────────────────────── */
.footer-section {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.footer-link {
  font-family: var(--font-poppins);
  font-size: 13px;
  color: rgba(245, 237, 214, 0.4);
  transition: color 0.3s;
  display: inline-block;
}
.footer-link:hover { color: var(--cream); }

/* Socials */
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 237, 214, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 214, 0.4);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.social-icon:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(196, 98, 45, 0.08);
}

/* Open badge */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.open-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Newsletter */
.newsletter-form {
  border: 1px solid rgba(245, 237, 214, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-family: var(--font-poppins);
  font-size: 12px;
  color: var(--cream);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(245, 237, 214, 0.25); }
.newsletter-btn {
  background: var(--terracotta);
  border: none;
  padding: 10px 14px;
  color: var(--cream);
  cursor: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
}
.newsletter-btn:hover { background: var(--burnt-orange); }

/* Footer bg text */
.footer-bg-text {
  position: absolute;
  bottom: -2vw;
  right: -2vw;
  font-size: 20vw;
  color: rgba(245, 237, 214, 0.015);
  line-height: 1;
  letter-spacing: 0.05em;
  user-select: none;
  pointer-events: none;
}

/* ─── BACK TO TOP ──────────────────────────────── */
.back-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-expo), background 0.3s;
  box-shadow: 0 8px 24px rgba(196, 98, 45, 0.4);
}
.back-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-top-btn:hover {
  background: var(--burnt-orange);
  transform: translateY(-3px);
}

/* ─── Section Spacing / Layout ─────────────────── */
section { position: relative; }

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 1023px) {
  .hero-left { padding: 120px 24px 60px; }
  .sticker { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-form-wrap { padding: 28px 24px; }
}

@media (max-width: 767px) {
  .headline-line { font-size: clamp(4rem, 18vw, 6rem); }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gal-tall, .gal-wide { grid-column: auto !important; grid-row: auto !important; }
  .event-card { gap: 16px; flex-wrap: wrap; }
  .event-date-block { min-width: 44px; }
  .review-card { width: 280px; }
  .reviews-track { padding: 16px 40px; }
  .reviews-slider-wrap::before,
  .reviews-slider-wrap::after { width: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
  .back-top-btn { bottom: 20px; right: 20px; }
}

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

/* ─── Animations ───────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ─── Focus visible (accessibility) ───────────── */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ─── Selection ────────────────────────────────── */
::selection {
  background: var(--terracotta);
  color: var(--cream);
}
