/* ═══════════════════════════════════════════════════════════════
   SANDÌ RISTORANTE – Premium CSS
   Style: Dark & Moody | Ispirazione ZeroUno / Fine Dining
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111110;
  --bg-3:      #1a1815;
  --surface:   #161412;
  --gold:      #C9A96E;
  --gold-light:#e8c98e;
  --gold-dim:  rgba(201,169,110,0.18);
  --gold-line: rgba(201,169,110,0.25);
  --text:      #f0ebe0;
  --text-2:    #a8998a;
  --text-3:    #6a5e52;
  --border:    rgba(240,235,224,0.08);
  --ff-head:   'Cormorant Garamond', Georgia, serif;
  --ff-body:   'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --radius:    4px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }

/* ─── UTILITIES ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.text-center { text-align: center; }
.section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 15px 36px;
  font-size: 0.8rem;
}
.btn--full { width: 100%; }
.btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10,10,10,0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading .btn-text { opacity: 0.4; }
.btn.loading .btn-loader { display: block; }


/* ─── IMAGE PLACEHOLDERS ─── */
.img-placeholder-wrap {
  background: linear-gradient(135deg, #1a1510 0%, #120e0a 60%, #1a1510 100%);
  position: relative;
}
.gallery-item {
  background: linear-gradient(160deg, #181410 0%, #0f0c09 100%);
  min-height: 200px;
  position: relative;
}
/* Subtle diagonal stripe texture on placeholders */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(201,169,110,0.03) 24px,
    rgba(201,169,110,0.03) 25px
  );
  pointer-events: none;
  z-index: 0;
}
.gallery-item img { position: relative; z-index: 1; }
/* About image placeholder text */
.about__img-wrap.no-image::before {
  content: 'SANDÌ';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0.12);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────
   NAVBAR
   ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 4vw, 50px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}
.navbar--scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
  padding-top: 0;
  padding-bottom: 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__logo {
  margin-right: auto;
}
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: color 0.3s;
}
.logo-text:hover { color: var(--gold); }
.navbar__nav ul {
  display: flex;
  gap: 2.5rem;
}
.navbar__nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s;
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.navbar__nav a:hover { color: var(--text); }
.navbar__nav a:hover::after { width: 100%; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-2);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn {
  font-size: 0.8rem;
  padding: 12px 32px;
  margin-top: 1rem;
}

/* ────────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fallback gradient when image hasn't loaded */
  background: radial-gradient(ellipse at 60% 40%, #2a1e0f 0%, #100c08 40%, #0a0a0a 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.6s;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.6) 80%,
    rgba(10,10,10,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeIn 1.4s var(--ease-out) forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero__subtitle {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.hero__cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ────────────────────────────────────────────────────────────────
   TICKER
   ──────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  color: #0a0a0a;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.ticker__track {
  display: inline-block;
  animation: tickerScroll 30s linear infinite;
}
.ticker__track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ────────────────────────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────────────────────────── */
.about {
  padding: clamp(80px, 10vw, 130px) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about__text {
  max-width: 520px;
}
.about__body {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about__body:last-of-type { margin-bottom: 2.5rem; }
.about__image {
  position: relative;
}
.about__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}
.about__img-wrap:hover img { transform: scale(1.04); }
.about__deco-line {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold-line);
  border-right: 1px solid var(--gold-line);
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────
   MENU
   ──────────────────────────────────────────────────────────────── */
.menu-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 3rem 0 0;
  flex-wrap: wrap;
}
.menu-tab {
  flex: 1;
  min-width: 80px;
  padding: 13px 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  background: transparent;
  border-right: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.menu-tab:last-child { border-right: none; }
.menu-tab:hover { color: var(--text-2); background: rgba(255,255,255,0.02); }
.menu-tab.active { color: #0a0a0a; background: var(--gold); }

.menu-content {
  margin-top: 1px;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.menu-panel { display: none; padding: clamp(24px, 4vw, 48px); }
.menu-panel.active { display: block; }

.menu-category-header {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  padding: 1.5rem 0 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
}
.menu-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(201,169,110,0.03); margin: 0 -24px; padding: 1.2rem 24px; }
.menu-item__info { flex: 1; min-width: 0; }
.dish-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-item:hover .dish-name { color: var(--gold); }
.dish-desc {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 2px;
  font-style: italic;
  line-height: 1.5;
}
.menu-item__dots {
  flex: 1;
  display: block;
  border-bottom: 1px dashed var(--text-3);
  opacity: 0.3;
  min-width: 20px;
  align-self: baseline;
  margin-bottom: 5px;
}
.dish-price {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Dish hover image – cursor follower */
.dish-hover-img {
  display: none; /* handled by cursor-dish-preview below */
}
.cursor-dish-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 185px;
  border-radius: var(--radius);
  overflow: hidden;
  pointer-events: none;
  z-index: 9000;
  opacity: 0;
  transform: translateY(-50%) scale(0.95);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-line);
  will-change: transform, left, top;
}
.cursor-dish-preview.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.cursor-dish-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-cta {
  padding-top: 4rem;
}
.menu-cta__text {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.menu-cta__text strong { color: var(--text); }

/* ────────────────────────────────────────────────────────────────
   GALLERY (Masonry via CSS columns)
   ──────────────────────────────────────────────────────────────── */
.gallery-section {
  padding: clamp(80px, 10vw, 130px) 0;
}
.gallery-section .section-title { margin-bottom: 3rem; }
.gallery-masonry {
  columns: 3;
  column-gap: 6px;
  padding: 0 6px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
  object-fit: cover;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ────────────────────────────────────────────────────────────────
   CONTACTS
   ──────────────────────────────────────────────────────────────── */
.contact-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info .section-title { margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }
.contact-item em { color: var(--text-3); font-style: italic; }
.contact-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact-social a:hover { color: var(--gold); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  display: block;
  filter: grayscale(1) invert(0.9) contrast(0.85);
  transition: filter 0.3s;
}
.contact-map:hover iframe { filter: grayscale(0.3) invert(0) contrast(1); }

/* ────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: 60px;
}
.footer__brand {
  padding-right: 20px;
}
.footer__logo-text {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}
.footer__brand p {
  color: var(--text-3);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer__col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col li, .footer__col a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--gold); }
.footer__hours {
  width: 100%;
  border-collapse: collapse;
}
.footer__hours td {
  font-size: 0.82rem;
  color: var(--text-3);
  padding: 4px 0;
  line-height: 1.5;
}
.footer__hours td:last-child {
  text-align: right;
  color: var(--text-2);
}
.footer__hours .closed td { color: var(--text-3); font-style: italic; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-3);
}
.footer__bottom a {
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--gold); }

/* ────────────────────────────────────────────────────────────────
   MODAL
   ──────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}
.modal.open {
  visibility: visible;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.modal.open .modal__overlay { opacity: 1; }
.modal__box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--text-3) transparent;
}
.modal.open .modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 16px 0 0;
  color: var(--text-3);
  transition: color 0.2s;
  z-index: 1;
}
.modal__close:hover { color: var(--text); }
.modal__inner {
  padding: clamp(28px, 5vw, 48px);
  padding-top: 10px;
}
.modal__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.modal__subtitle {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 2.5rem;
}
.modal__subtitle a { color: var(--gold); }
.modal__subtitle a:hover { text-decoration: underline; }

/* ─── FORM ─── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.form-group label span { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-line);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236a5e52' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--surface); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input.invalid,
.form-group select.invalid { border-color: #c0392b; }
.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  min-height: 20px;
  margin-bottom: 0.5rem;
}
.booking-form .btn--gold { margin-top: 0.5rem; }

/* Success state */
.booking-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.booking-success.visible { display: block; }
.booking-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.booking-success h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.booking-success p {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.booking-success__phone a { color: var(--gold); }
.booking-success .btn { margin-top: 1.5rem; }


/* ────────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about__text { max-width: 100%; }
  .about__deco-line { display: none; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .navbar__nav,
  .navbar > .btn { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__cta-group { flex-direction: column; align-items: center; }
  .hero__cta-group .btn { width: 100%; max-width: 280px; }

  .menu-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .menu-tab { flex: 0 0 auto; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .cursor-dish-preview { display: none; }
}

@media (max-width: 500px) {
  .gallery-masonry { columns: 1; padding: 0; gap: 4px; }
  .menu-item:hover { margin: 0; padding: 1.2rem 0; }
  .menu-item { flex-wrap: wrap; }
  .menu-item__dots { display: none; }
  .dish-price { margin-left: auto; }
  .dish-name { white-space: normal; }
}
