/* ============================================================
   PitStop — Bar & Tavola Calda, Lecce
   Brand: bianco/nero + gradient arcobaleno (rosa→arancio→giallo→verde→blu→viola)
   Stile: pulito ma giocoso, casual, ad alta energia.
   ============================================================ */

:root {
  /* Colore base */
  --bg: #ffffff;
  --bg-soft: #f5f3ee;
  --bg-cream: #fdf8e7;
  --ink: #0a0a0a;
  --ink-2: #1f1f1f;
  --ink-mute: #5a5a5a;
  --line: rgba(10, 10, 10, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --cream-on-dark: #f5f3ee;

  /* Accenti dal logo */
  --pink:   #ec4899;
  --orange: #f97316;
  --yellow: #facc15;
  --green:  #10b981;
  --blue:   #3b82f6;
  --purple: #8b5cf6;
  --red:    #ef4444;

  --gradient: linear-gradient(90deg, #ec4899 0%, #f97316 20%, #facc15 40%, #10b981 60%, #3b82f6 80%, #8b5cf6 100%);

  /* Tipografia */
  --display: "Archivo", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 780px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: var(--gradient);
  flex-shrink: 0;
}

.kicker--light { color: var(--cream-on-dark); }

.section__title {
  font-size: clamp(2.1rem, 4.5vw + 0.5rem, 4rem);
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 1vw + 0.6rem, 1.18rem);
  color: var(--ink-mute);
  margin: 0 0 2rem;
  max-width: 640px;
}

.section--dark .section__subtitle { color: rgba(245, 243, 238, 0.7); }

/* ============ LAYOUT ============ */

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}

.section--dark {
  background: var(--ink);
  color: var(--cream-on-dark);
}
.section--dark .section__title { color: var(--cream-on-dark); }

.section--cream { background: var(--bg-cream); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--container-narrow); }

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__header .kicker { margin-bottom: 1rem; }
.section__header .section__subtitle { text-align: center; }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--primary:hover {
  background: transparent;
  color: var(--ink);
}
.section--dark .btn--primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.section--dark .btn--primary:hover {
  background: transparent;
  color: #fff;
}

.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover {
  background: transparent;
  color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0.9rem 0;
  transition: all 0.3s var(--ease);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px -20px rgba(0,0,0,0.15);
  padding: 0.65rem 0;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-svg {
  width: 56px;
  height: 56px;
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-svg { transform: rotate(-6deg); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s var(--ease);
}

.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.nav.is-scrolled .lang-switcher { background: rgba(10, 10, 10, 0.06); }

.lang-switcher button {
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  filter: saturate(0.25) brightness(0.85);
  opacity: 0.55;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.lang-switcher button:hover {
  filter: saturate(0.85);
  opacity: 0.85;
  transform: translateY(-1px);
}
.lang-switcher button.is-active {
  filter: saturate(1.1);
  opacity: 1;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.18);
}
.nav.is-scrolled .lang-switcher button.is-active {
  background: rgba(10, 10, 10, 0.08);
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.mobile-menu[hidden] { display: none; }

.mobile-menu a {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu__lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.mobile-menu__lang button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 0.5rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  opacity: 0.6;
}
.mobile-menu__lang button .flag { font-size: 1.05rem; line-height: 1; }
.mobile-menu__lang button.is-active {
  opacity: 1;
  background: var(--ink);
  color: #fff;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream-on-dark);
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 30%, rgba(236, 72, 153, 0.18), transparent 60%),
    radial-gradient(45% 40% at 85% 60%, rgba(59, 130, 246, 0.18), transparent 60%),
    radial-gradient(40% 30% at 50% 90%, rgba(250, 204, 21, 0.12), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  margin: 0 0 1.75rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: fit-content;
}
.hero__kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulseDot 2s var(--ease) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 1.75rem;
  color: var(--cream-on-dark);
}
.hero__line { display: block; }

.hero__line--gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  background-size: 200% 100%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__tagline {
  font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.3rem);
  line-height: 1.5;
  color: rgba(245, 243, 238, 0.78);
  margin: 0 0 2.25rem;
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo svg {
  width: min(100%, 380px);
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* ============ MARQUEE ============ */

.marquee {
  background: var(--gradient);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--ink);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

/* ============ ABOUT ============ */

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__copy .section__title { margin-bottom: 1.5rem; }

.about__body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 1.25rem;
}
.about__body:last-child { margin-bottom: 0; }

/* Events callout — highlights the private-events offering */
.about__body--events {
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem 1.35rem 1.85rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  font-size: 1.02rem;
}
.about__body--events::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--gradient);
}
.about__body--events::after {
  content: "🎉";
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 1.5rem;
  transform: rotate(15deg);
}

.about__visual {
  position: relative;
}
.about__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.3);
}

.about__dots {
  position: absolute;
  top: -1.25rem;
  right: -1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--ink);
  padding: 0.7rem 0.55rem;
  border-radius: 999px;
}
.about__dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}
.about__dots span:nth-child(1) { background: var(--red); }
.about__dots span:nth-child(2) { background: var(--yellow); }
.about__dots span:nth-child(3) { background: var(--green); }

/* ============ MENU ============ */

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.menu__category {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.menu__category-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.menu__category-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.menu__category:nth-child(1) .menu__category-dot { background: var(--red); }
.menu__category:nth-child(2) .menu__category-dot { background: var(--yellow); }
.menu__category:nth-child(3) .menu__category-dot { background: var(--green); }

.menu__category-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--cream-on-dark);
  letter-spacing: -0.01em;
  margin: 0;
}

.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  align-items: baseline;
}
.menu__item:last-child { border-bottom: none; }

.menu__item-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream-on-dark);
  margin: 0;
  letter-spacing: -0.005em;
}

.menu__item-desc {
  font-size: 0.88rem;
  color: rgba(245, 243, 238, 0.6);
  margin: 0;
  line-height: 1.5;
  grid-column: 1;
}

.menu__item-price {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  grid-column: 2;
  grid-row: 1;
}

.menu__note {
  text-align: center;
  color: rgba(245, 243, 238, 0.55);
  font-size: 0.95rem;
  margin: 0;
}

/* ============ GALLERY ============ */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  position: relative;
  border-radius: var(--radius);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

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

/* ============ VISIT ============ */

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.visit__info .section__title { margin-bottom: 2.5rem; }

.visit__details {
  display: grid;
  gap: 1.75rem;
  margin: 0 0 2.5rem;
}
.visit__details > div { display: grid; gap: 0.5rem; }

.visit__details dt {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.visit__details dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.visit__details dd a:hover { color: var(--orange); }

.visit__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: baseline;
}
.visit__phones span { color: var(--ink-mute); opacity: 0.5; }

.visit__hours { display: grid; gap: 0.35rem; }
.visit__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  max-width: 320px;
}
.visit__hours-row span:first-child { color: var(--ink); }
.visit__hours-row span:last-child { color: var(--ink-mute); font-weight: 500; }

.visit__closed {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.visit__map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.3);
  border: 3px solid var(--ink);
  background: var(--bg-soft);
}
.visit__map-canvas {
  width: 100%;
  height: 100%;
  background: var(--bg-soft);
}
/* hide Leaflet's default ugly attribution background — keep text legible */
.visit__map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255,255,255,0.85);
}
.visit__map-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.visit__map-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.6);
}
.visit__map-pin { font-size: 1.05rem; line-height: 1; }

/* Leaflet marker — teardrop pin in brand colours */
.pitstop-pin {
  background: transparent;
  border: 0;
}
.pitstop-pin > span {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--ink);
  border: 3px solid var(--yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
  position: relative;
  left: 0;
  top: 0;
}

/* ============ CONTACT ============ */

.contact { text-align: center; }
.contact .kicker { justify-content: center; }
.contact__title {
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.6rem);
  margin: 0 auto 2.5rem;
  max-width: 720px;
  color: var(--cream-on-dark);
}

.contact__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border: 2px solid var(--line-on-dark);
  border-radius: 999px;
  color: var(--cream-on-dark);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s var(--ease);
}
.contact__social-link:hover {
  border-color: var(--cream-on-dark);
  background: rgba(255, 255, 255, 0.05);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--ink);
  color: rgba(245, 243, 238, 0.65);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-on-dark);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo { width: 56px; height: 56px; }

.footer__tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream-on-dark);
  margin: 0 0 0.15rem;
  letter-spacing: 0.02em;
}
.footer__sub {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(245, 243, 238, 0.55);
}

.footer__rights {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .nav__links { display: none; }
  /* push lang switcher + hamburger to the far right when nav links are hidden */
  .nav__right { margin-left: auto; }
  /* keep lang switcher visible next to the hamburger on mobile */
  .nav__right .lang-switcher { display: flex; }
  .nav__right .lang-switcher button { font-size: 1rem; padding: 0.25rem 0.3rem; }
  .nav__toggle { display: flex; }

  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__kicker { margin-left: auto; margin-right: auto; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  /* hide the big circular hero logo on mobile — the enlarged nav logo is enough */
  .hero__logo { display: none; }

  /* Enlarge the small nav logo by ~30% on mobile (56 → 73 px) */
  .nav__logo-svg { width: 73px; height: 73px; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 480px; margin: 0 auto; }

  .menu__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  /* keep all 6 items uniform on tablet → 2×3 grid fills perfectly, no gaps */
  .gallery__item--wide { grid-column: auto; }
  .gallery__item--tall { grid-row: auto; }

  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { aspect-ratio: 4 / 3; max-height: 400px; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo svg,
  .marquee__track,
  .hero__line--gradient,
  .hero__kicker::before { animation: none; }
}
