/* =========================================================
   LUCI RESTAURANT — Luxurious Italian theme
   Palette: black / cream / gold / red
   ========================================================= */

:root {
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --cream: #f6efe4;
  --cream-soft: #fbf7ef;
  --gold: #c9a24a;
  --gold-soft: #e6cf86;
  --red: #8a1414;
  --red-deep: #5e0d0d;
  --text: #1c1714;
  --muted: #6b6258;
  --line: rgba(201,162,74,.25);

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', 'Allura', cursive;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 12px 38px rgba(0,0,0,.12);
  --shadow-lift: 0 22px 60px rgba(0,0,0,.25);
  --radius: 4px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* guard against off-canvas nav / sub-pixel horizontal scroll on mobile */
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
.container { width: min(1200px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .03em;
  margin-bottom: -.4em;
}

.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.section--dark { background: var(--black); color: var(--cream); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(246,239,228,.78); }
.section--cream { background: var(--cream); }
.section--soft { background: var(--cream-soft); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head p { color: var(--muted); max-width: 620px; margin: 0 auto; }

.divider {
  display: flex; align-items: center; justify-content: center;
  gap: .8rem; margin: 1rem auto 1.5rem; color: var(--gold);
}
.divider::before, .divider::after {
  content: ''; height: 1px; background: var(--gold-soft); width: 50px; opacity: .6;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; min-height: 48px;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; font-size: .82rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer; transition: all .25s ease;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--black); color: var(--gold); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-dark { background: var(--black); color: var(--cream); }
.btn-dark:hover { background: var(--red); color: var(--cream); }
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: var(--red-deep); }
.btn-lg { padding: 16px 34px; min-height: 54px; }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.header--scrolled, .header--inner {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 22px rgba(0,0,0,.18);
  padding: 10px 0;
}
.header__row { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  text-decoration: none; line-height: 1;
}
.logo__img {
  height: 50px; width: auto; display: block;
  transition: height .3s ease;
}
.header--scrolled .logo__img, .header--inner .logo__img { height: 42px; }
.logo__sub { display: block; font-family: var(--font-script); color: var(--gold); font-size: 1rem; margin-top: 2px; letter-spacing: .02em; }
@media (max-width: 600px) {
  .logo__img { height: 40px; }
  .logo__sub { font-size: .82rem; }
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  color: var(--cream); font-weight: 500; font-size: .95rem;
  letter-spacing: .04em; padding: 6px 0; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .25s;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.lang-switch { display: flex; gap: .5rem; align-items: center; }
.lang-switch a {
  color: var(--cream); opacity: .65; font-size: .8rem;
  padding: 4px 8px; text-transform: uppercase; font-weight: 600; letter-spacing: .12em;
}
.lang-switch a.active { color: var(--gold); opacity: 1; border-bottom: 1px solid var(--gold); }
.lang-switch a:hover { opacity: 1; color: var(--gold); }

.menu-toggle {
  display: none; background: transparent; border: 0; color: var(--cream);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  /* backdrop-filter makes the header a containing block for the fixed nav
     drawer, clipping it to the header height — disable it on mobile so the
     drawer spans the full screen */
  .header--inner, .header--scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav {
    position: fixed; inset: 0 0 0 30%; background: var(--black);
    flex-direction: column; padding: 90px 30px 30px; gap: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .35s ease;
    border-left: 1px solid rgba(201,162,74,.25);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 1.1rem; width: 100%; }
  .nav__link { font-size: 1.1rem; }
  .lang-switch { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(201,162,74,.18); }
}

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; color: var(--cream); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
  transform: scale(1.05);
  animation: slow-zoom 12s ease-in-out infinite alternate;
}
.hero__slide.active { opacity: 1; }
@keyframes slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.55) 0%, rgba(13,13,13,.4) 35%, rgba(13,13,13,.85) 100%);
  z-index: 1; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem;
}
.hero__eyebrow { font-family: var(--font-script); color: var(--gold); font-size: 2.6rem; line-height: 1; margin-bottom: -.6rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 6rem); line-height: 1.05;
  margin: 1rem 0 .5rem; color: var(--cream);
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero__sub { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2.2rem; opacity: .92; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4);
  border: 0; cursor: pointer; transition: background .2s;
}
.hero__dot.active { background: var(--gold); }

/* =====================================================
   WELCOME
   ===================================================== */
.welcome { background: var(--cream); }
.welcome__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .welcome__grid { grid-template-columns: 1fr; gap: 2rem; } }
.welcome__img {
  position: relative; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
}
.welcome__img::after {
  content: ''; position: absolute; inset: -18px -18px 18px 18px;
  border: 1px solid var(--gold); z-index: -1;
}
.welcome__text h2 { color: var(--black); }
.welcome__text .lead { font-family: var(--font-display); font-size: 1.4rem; color: var(--black-soft); font-style: italic; }

/* =====================================================
   FESTIVAL
   ===================================================== */
.festival { background: var(--black); color: var(--cream); }
.festival h2 { color: var(--cream); }
.festival__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.festival__item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 2px; }
.festival__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.festival__item:hover img { transform: scale(1.08); }
.festival__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.85));
}
.festival__caption {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: #fff; font-family: var(--font-display); font-size: 1.1rem;
}
@media (max-width: 800px) { .festival__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ PIZZA SHOWCASE (interactive selector) ============ */
.pizza-hero { background: var(--cream-soft); }
.pizza-hero__panel {
  position: relative;
  background: radial-gradient(120% 130% at 72% 28%, #2b2620 0%, #161311 55%, #0d0d0d 100%);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 34px 70px rgba(13, 13, 13, .28);
}
.pizza-hero__accent {
  position: absolute; top: 26px; right: 30px;
  width: 64px; height: 64px; border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .55);
}
.pizza-hero__left { color: var(--cream); max-width: 480px; position: relative; z-index: 2; }
.pizza-hero__badge {
  display: inline-block; background: var(--gold); color: #1a1407;
  font-weight: 700; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 5px; margin-bottom: 1.1rem;
}
.pizza-hero__title { color: var(--cream); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.04; margin: 0 0 .3rem; }
.pizza-hero__sub { color: var(--gold-soft); font-family: var(--font-script); font-size: 1.7rem; line-height: 1; margin: 0 0 1.1rem; }
.pizza-hero__text { color: rgba(246, 239, 228, .72); font-size: .94rem; line-height: 1.75; margin: 0 0 1.7rem; }
.pizza-hero__cta {
  display: inline-flex; align-items: center; gap: 13px;
  color: var(--cream); font-weight: 600; letter-spacing: .13em; text-transform: uppercase; font-size: .8rem;
}
.pizza-hero__cta-ico {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #1a1407; font-size: 1.15rem; transition: transform .3s ease;
}
.pizza-hero__cta:hover { color: var(--gold); }
.pizza-hero__cta:hover .pizza-hero__cta-ico { transform: translateX(5px); }

.pizza-hero__stage { position: relative; display: grid; place-items: center; min-height: clamp(340px, 44vw, 520px); }

/* concentric guide circles behind the pizza */
.pizza-hero__rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 0; }
.pizza-hero__rings span { position: absolute; border-radius: 50%; }
.pizza-hero__rings span:nth-child(1) { width: clamp(300px, 40vw, 470px); height: clamp(300px, 40vw, 470px); border: 1px solid rgba(201, 162, 74, .18); }
.pizza-hero__rings span:nth-child(2) { width: clamp(390px, 52vw, 610px); height: clamp(390px, 52vw, 610px); border: 1px solid rgba(255, 255, 255, .05); }

/* orbit = mouse-parallax layer · feature = float layer (separate so the transforms never fight) */
.pizza-hero__orbit { position: relative; z-index: 2; transition: transform .25s ease-out; will-change: transform; }
.pizza-hero__feature {
  width: clamp(230px, 30vw, 360px); height: clamp(230px, 30vw, 360px);
  border-radius: 50%; position: relative; background: #1a1714;
  box-shadow: 0 0 0 1px rgba(201, 162, 74, .22), 0 34px 64px rgba(0, 0, 0, .6);
}
.pizza-hero__feature img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block;
  will-change: transform, opacity;
  transition: transform .7s ease, opacity .5s ease;
}
/* spin + shrink + fade as a pizza swaps out/in */
.pizza-hero__feature img.swapping { transform: scale(.6) rotate(360deg); opacity: 0; }
.pizza-hero__caption { position: absolute; left: 0; right: 0; bottom: 2px; text-align: center; color: var(--cream); z-index: 3; }
.pizza-hero__caption h3 { color: var(--cream); font-size: 1.55rem; margin: 0 0 .2rem; }
.pizza-hero__price .now { color: var(--gold); font-weight: 700; font-size: 1.15rem; }
.pizza-hero__price .old { color: rgba(246, 239, 228, .45); text-decoration: line-through; margin-left: 9px; font-size: .95rem; }

/* mini pizzas: round image with the name + price directly underneath (no pill) */
.pizza-hero__thumbs { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 1.9rem; }
.pizza-hero__thumb {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  width: 96px; padding: 6px 2px; cursor: pointer; color: var(--cream);
  background: transparent; border: 0;
}
.pizza-hero__thumb-img {
  width: 72px; height: 72px; border-radius: 50%; flex: 0 0 auto;
  background-size: cover; background-position: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
  outline: 2px solid transparent; outline-offset: 3px;
  transition: transform .3s ease, outline-color .25s ease;
}
.pizza-hero__thumb:hover .pizza-hero__thumb-img { transform: scale(1.12); }
.pizza-hero__thumb.active .pizza-hero__thumb-img { transform: scale(1.12); outline-color: var(--gold); }
.pizza-hero__thumb-info { text-align: center; line-height: 1.28; }
.pizza-hero__thumb-info strong { display: block; font-size: .82rem; color: var(--cream); font-weight: 600; }
.pizza-hero__thumb.active .pizza-hero__thumb-info strong { color: var(--gold); }
.pizza-hero__thumb-info em { font-style: normal; font-size: .76rem; color: var(--gold); font-weight: 700; }
.pizza-hero__thumb-info s { color: rgba(246, 239, 228, .4); font-weight: 400; margin-left: 4px; }

/* =====================================================
   GIN — magazine layout (region map + bottle cards)
   ===================================================== */
.gin-region { display: flex; align-items: center; gap: 18px; margin: 2.6rem 0 1.4rem; }
.gin-region__map { flex: 0 0 auto; width: 84px; height: 84px; display: grid; place-items: center; }
.gin-region__map .it-svg { width: 100%; height: 100%; display: block; }
.gin-region__flag { font-size: 2.6rem; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.18)); }
.gin-region__title h3 { margin: 0; line-height: 1.05; }
.gin-region__title span { display: block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.gin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 26px; margin-bottom: 1rem; }
.gin-card { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px dotted rgba(13,13,13,.16); }
.gin-card__img {
  flex: 0 0 auto; width: 56px; height: 92px; border-radius: 6px; overflow: hidden;
  display: grid; place-items: center; background: linear-gradient(160deg,#2b2620,#161311);
}
.gin-card__img img { width: 100%; height: 100%; object-fit: contain; }
.gin-card__img .gin-bottle { font-size: 1.5rem; opacity: .55; }
.gin-card__body { flex: 1 1 auto; min-width: 0; }
.gin-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.gin-card__name { font-family: var(--font-display, 'Cormorant Garamond', serif); font-size: 1.12rem; color: var(--text); margin: 0; line-height: 1.15; }
.gin-card__price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.gin-card__note { font-size: .86rem; line-height: 1.5; color: var(--muted); margin: 5px 0 0; }

@media (max-width: 760px) {
  .gin-grid { grid-template-columns: 1fr; }
  .gin-region { gap: 14px; }
  .gin-region__map { width: 64px; height: 64px; }
}

@media (max-width: 860px) {
  /* stack: featured pizza on top, text + thumbs underneath */
  .pizza-hero__panel { grid-template-columns: minmax(0, 1fr); text-align: center; gap: 4px; padding: clamp(26px, 6vw, 44px); }
  /* min-width:0 lets the grid items shrink below their content's min-content,
     so the nowrap thumb-scroller can't force the whole panel to overflow */
  .pizza-hero__left { width: 100%; max-width: 520px; min-width: 0; margin: 0 auto; order: 2; }
  .pizza-hero__stage { order: 1; min-height: 0; min-width: 0; margin-bottom: 1.1rem; }
  .pizza-hero__cta { justify-content: center; }
  /* caption flows directly under the pizza instead of floating in empty space */
  .pizza-hero__caption { position: static; margin-top: 1rem; }
  /* keep the decorative rings from overflowing on narrow screens */
  .pizza-hero__rings span:nth-child(1) { width: min(72vw, 320px); height: min(72vw, 320px); }
  .pizza-hero__rings span:nth-child(2) { width: min(90vw, 400px); height: min(90vw, 400px); }
  .pizza-hero__feature { width: min(58vw, 300px); height: min(58vw, 300px); }
  .pizza-hero__accent { width: 50px; height: 50px; top: 18px; right: 18px; }
  /* thumbs become a horizontal, snap-scrolling strip that stays within the panel */
  .pizza-hero__thumbs {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    min-width: 0; max-width: 100%; margin-top: 1.4rem; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  }
  .pizza-hero__thumb { flex: 0 0 auto; scroll-snap-align: center; }
  .pizza-hero__thumbs::-webkit-scrollbar { height: 4px; }
  .pizza-hero__thumbs::-webkit-scrollbar-thumb { background: rgba(201, 162, 74, .45); border-radius: 4px; }
}

@media (max-width: 480px) {
  .pizza-hero__panel { border-radius: 18px; padding: 26px 16px; }
  .pizza-hero__title { font-size: clamp(1.7rem, 8vw, 2.25rem); }
  .pizza-hero__sub { font-size: 1.35rem; margin-bottom: .9rem; }
  .pizza-hero__text { font-size: .9rem; line-height: 1.65; }
  .pizza-hero__feature { width: 62vw; height: 62vw; }
  .pizza-hero__rings span:nth-child(1) { width: 76vw; height: 76vw; }
  .pizza-hero__rings span:nth-child(2) { width: 94vw; height: 94vw; }
  .pizza-hero__caption h3 { font-size: 1.3rem; }
  .pizza-hero__thumb { width: 84px; }
  .pizza-hero__thumb-img { width: 64px; height: 64px; }
}
/* =====================================================
   CARDS / TEAM
   ===================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-card__photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
  filter: saturate(.9);
  transition: filter .3s, transform .3s;
}
.team-card:hover .team-card__photo { filter: saturate(1.1); transform: translateY(-4px); }
.team-card h3 { margin: 0 0 4px; color: var(--black); }
.team-card .role { color: var(--gold); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.team-card p { color: var(--muted); margin-top: .8rem; font-size: .95rem; }

/* =====================================================
   MENU
   ===================================================== */
.menu-tabs {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.menu-tab {
  padding: 14px 22px;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--black-soft);
  background: transparent; border: 0; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all .25s;
}
.menu-tab:hover { color: var(--gold); }
.menu-tab.active { color: var(--red); border-bottom-color: var(--gold); }

.menu-category { margin-bottom: 3.5rem; }
.menu-category h3 {
  font-family: var(--font-display); font-size: 1.9rem; color: var(--red);
  text-align: center; margin-bottom: .3rem;
}
.menu-category .subtitle { text-align: center; color: var(--muted); font-style: italic; margin-bottom: 2rem; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem; }
.menu-item {
  border-bottom: 1px dashed var(--line); padding-bottom: 1.2rem;
}
.menu-item__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-item__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--black); margin: 0; }
.menu-item__price { color: var(--gold); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.menu-item__desc { color: var(--muted); font-size: .92rem; margin: .3rem 0 0; }
.menu-item__meta { color: var(--red); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-top: .3rem; }
.menu-item__tags { display: inline-flex; gap: 6px; }
.menu-tag {
  display: inline-block; font-size: .65rem; padding: 2px 7px; border-radius: 30px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(201,162,74,.18); color: var(--gold); border: 1px solid rgba(201,162,74,.4);
}
.menu-tag.veg { background: rgba(34,90,40,.12); color: #2b7a36; border-color: rgba(34,90,40,.3); }

/* Wine table style */
.wine-table { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1fr auto; gap: 12px 18px; align-items: baseline; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.wine-table:hover { background: rgba(201,162,74,.04); }
.wine-table .name { font-family: var(--font-display); color: var(--black); font-size: 1.05rem; }
.wine-table .region, .wine-table .producer, .wine-table .grape { color: var(--muted); font-size: .85rem; }
.wine-table .producer { font-style: italic; }
.wine-table .price { color: var(--gold); font-weight: 700; }
@media (max-width: 760px) {
  .wine-table { grid-template-columns: 1fr auto; }
  .wine-table .region, .wine-table .producer, .wine-table .grape { grid-column: 1 / -1; font-size: .8rem; margin-top: 2px; }
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-filters { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.gallery-filters button {
  background: transparent; border: 1px solid var(--line);
  padding: 8px 18px; cursor: pointer; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text); transition: all .2s;
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--black); color: var(--gold); border-color: var(--black); }

.gallery-grid {
  column-count: 4; column-gap: 14px;
}
.gallery-grid figure { break-inside: avoid; margin: 0 0 14px; position: relative; overflow: hidden; border-radius: 2px; }
.gallery-grid img { transition: transform .8s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 10px; color: #fff;
  font-size: .85rem; opacity: 0; transition: opacity .3s;
  text-shadow: 0 2px 6px rgba(0,0,0,.7);
}
.gallery-grid figure:hover figcaption { opacity: 1; }
@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 760px)  { .gallery-grid { column-count: 2; } }
@media (max-width: 480px)  { .gallery-grid { column-count: 1; } }

/* =====================================================
   NEWS CARDS
   ===================================================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.news-card {
  background: var(--cream-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.news-card__img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.news-card__body { padding: 1.4rem 1.5rem 1.8rem; }
.news-card__date { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; }
.news-card h3 { margin: .5rem 0 .8rem; color: var(--black); font-size: 1.35rem; }
.news-card p { color: var(--muted); font-size: .95rem; }

/* =====================================================
   CONTACT / FORM
   ===================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; gap: .8rem; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info li strong { color: var(--gold); display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }

.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--black); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--text);
  border-radius: 2px; transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--gold); outline: 0; box-shadow: 0 0 0 3px rgba(201,162,74,.18);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__consent { font-size: .85rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; }
.form__consent input { width: auto; margin-top: 4px; }

.alert { padding: 14px 18px; border-radius: 2px; margin-bottom: 1rem; font-size: .95rem; }
.alert-success { background: #e9f5ec; color: #1e6932; border: 1px solid #b9d9c2; }
.alert-error   { background: #fae9e9; color: #8a1414; border: 1px solid #e6bdbd; }

.map { width: 100%; height: 360px; border: 0; border-radius: 2px; box-shadow: var(--shadow-soft); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--black); color: var(--cream); padding: 70px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 2.5rem; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; }
.footer a { color: rgba(246,239,228,.78); }
.footer a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,162,74,.14); color: var(--gold);
  transition: background .2s;
}
.footer__social a:hover { background: var(--gold); color: var(--black); }
.footer__bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(246,239,228,.12); text-align: center; font-size: .85rem; color: rgba(246,239,228,.55); }
.footer__bottom .doitd { color: #e0524a; font-weight: 700; letter-spacing: .02em; }

/* Follow Us social buttons */
.footer__follow { list-style: none; padding: 0; margin: 0; }
.footer__follow li { padding: 5px 0; }
.footer__follow a { display: inline-flex; align-items: center; gap: .7rem; color: rgba(246,239,228,.82); }
.footer__follow a:hover { color: var(--gold); }
.footer__follow a:hover .footer__follow-ico { background: var(--gold); color: var(--black); }
.footer__follow-ico {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(201,162,74,.14); color: var(--gold);
  transition: background .2s, color .2s;
}

/* =====================================================
   WHATSAPP FLOAT BUTTON
   ===================================================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  background: #25d366; color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.55);
  font-size: 1.8rem;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: .35; animation: wa-pulse 1.8s infinite;
}
@keyframes wa-pulse { 0% {transform: scale(1); opacity:.5;} 100% {transform: scale(1.6); opacity:0;} }

/* =====================================================
   PAGE BANNER (for inner pages)
   ===================================================== */
.banner {
  height: 56vh; min-height: 380px; position: relative;
  background-size: cover; background-position: center;
  display: grid; place-items: center; text-align: center; color: var(--cream);
}
.banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,.5), rgba(13,13,13,.75)); }
.banner__inner { position: relative; z-index: 2; padding-top: 60px; }
.banner h1 { color: var(--cream); }
.banner .eyebrow { color: var(--gold); }
