:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --black-card: #111111;
  --yellow: #ffcc00;
  --yellow-dim: #e6b800;
  --white: #f5f5f5;
  --gray: #8a8a8a;
  --gray-dark: #2a2a2a;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 76px;
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s;
}

.header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 204, 0, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  --logo-yellow: #ffcc00;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--logo-yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.logo-text {
  font-size: clamp(0.6rem, 1.8vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
}

.logo .logo-text strong {
  color: var(--logo-yellow);
  -webkit-text-fill-color: var(--logo-yellow);
  font-weight: 700;
}

a.logo:hover .logo-text strong,
a.logo:focus-visible .logo-text strong {
  color: var(--logo-yellow);
  -webkit-text-fill-color: var(--logo-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media__img--desktop {
  object-position: center 35%;
}

.hero-media__img--mobile {
  display: none;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.2) 35%, rgba(5, 5, 5, 0.92) 85%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.7) 0%, transparent 50%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 5rem;
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: clamp(120px, 22vw, 180px);
  height: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

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

.stripe {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title-line--accent {
  color: var(--yellow);
  -webkit-text-stroke: 0;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(245, 245, 245, 0.75);
  max-width: 48ch;
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.hero-actions .btn {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.hero-actions .btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-scroll {
  display: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-center {
  margin: 2.5rem auto 0;
}

/* ─── Sections ─── */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section--black {
  background: var(--black);
  color: var(--white);
}

.section--yellow {
  background: var(--yellow);
  color: var(--black);
}

.section--yellow .section-label:not(.section-label--on-black) {
  color: var(--black);
}

.section--yellow .section-head h2,
.section--yellow .about-copy h2,
.section--yellow .contact-intro h2,
.section--yellow .hours-block h2,
.section--yellow .location-info h2,
.section--yellow .locations-head h2 {
  color: var(--black);
}

.section--yellow .section-head p,
.section--yellow .about-copy p,
.section--yellow .about-copy .lead,
.section--yellow .contact-intro p,
.section--yellow .hours-block .section-head p,
.section--yellow .locations-head p,
.section--yellow .hours-link {
  color: rgba(0, 0, 0, 0.6);
}

.section--yellow .hours-link:hover {
  color: var(--black);
}

.section--yellow .about-visual::after {
  border-color: var(--black);
}

.section--yellow .location-card {
  background: var(--black);
  border-color: rgba(0, 0, 0, 0.2);
}

.section--yellow .location-card address,
.section--yellow .location-card-info h3 {
  color: var(--white);
}

.section--yellow .location-badge {
  background: var(--black);
  color: var(--yellow);
}

.section--yellow .location-phone {
  color: var(--yellow);
}

.section--yellow .location-phone:hover {
  color: var(--white);
}

.section--yellow .btn-outline {
  border-color: var(--black);
  color: var(--black);
}

.section--yellow .btn-outline:hover {
  background: var(--black);
  color: var(--yellow);
}

.section--yellow .location-map {
  border-color: var(--black);
}

.section--yellow .delivery-location {
  background: var(--black);
  border-color: rgba(0, 0, 0, 0.2);
}

.section--yellow .delivery-links a {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.section--yellow .delivery-links a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.section--yellow .btn-primary {
  background: var(--black);
  color: var(--yellow);
}

.section--yellow .btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

.section--yellow .hours-location {
  background: var(--black);
  border-color: rgba(0, 0, 0, 0.2);
}

.section--yellow .hours-location .hours-row {
  border-bottom-color: var(--gray-dark);
}

.section--yellow .hours-location .hours-day {
  color: var(--yellow);
}

.section--yellow .hours-location .hours-time {
  color: var(--white);
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.section-label--on-black {
  display: inline-block;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  background: var(--black);
  color: var(--yellow);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head--left {
  text-align: left;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── About ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual__img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.about-visual__img--desktop {
  display: block;
  aspect-ratio: 4 / 5;
}

.about-visual__img--mobile {
  display: none;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--yellow);
  z-index: -1;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.about-copy .lead {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-copy p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1.5rem;
}

.about-logo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: transparent;
  border: none;
  overflow: visible;
}

.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  display: block;
}

/* ─── Menu showcase (homepage) ─── */
.menu-showcase {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 204, 0, 0.06), transparent),
    var(--black);
}

.menu-showcase .section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Hero product */
.product-hero {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.3s var(--ease);
}

.product-hero:hover {
  border-color: rgba(255, 204, 0, 0.35);
  transform: translateY(-3px);
}

.product-hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.product-hero:hover .product-hero-media img {
  transform: scale(1.04);
}

.product-hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 5, 0.92) 100%);
  pointer-events: none;
}

.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 2;
}

.product-badges--hero {
  top: 1.25rem;
  left: 1.25rem;
}

.product-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.65rem;
}

.product-badge--hero {
  background: var(--white);
  color: var(--black);
}

.product-badge--outline {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

.product-badge--on-black {
  background: var(--black);
  color: var(--yellow);
}

.product-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.35rem 1.5rem;
  background: var(--black-card);
}

.product-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--gray);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 1.25rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
}

.product-price--hero {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.product-card:hover {
  border-color: rgba(255, 204, 0, 0.35);
  transform: translateY(-3px);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 5, 0.92) 100%);
  pointer-events: none;
}

.product-card-media .product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
}

.product-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-name {
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.product-card .product-desc {
  font-size: 0.88rem;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.product-card .product-price {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Menús combos */
.menu-combos {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--gray-dark);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.menu-combos-head {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-combos-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.menu-combos-head p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.25rem);
}

.combo-card {
  display: flex;
  flex-direction: column;
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.combo-card:hover {
  border-color: rgba(255, 204, 0, 0.35);
}

.combo-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.15);
}

.combo-card-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.combo-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.5s var(--ease);
}

.combo-card:hover .combo-card-visual img {
  transform: scale(1.05);
}

.combo-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.combo-card-body .product-badge {
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.combo-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.combo-desc {
  color: var(--gray);
  font-size: 0.85rem;
  flex: 1;
}

.combo-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-top: 0.5rem;
}

/* Cerveza */
.menu-cerveza {
  padding-top: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  background: var(--black);
  border-top: 1px solid var(--gray-dark);
}

.cerveza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.cerveza-card {
  display: flex;
  flex-direction: column;
  background: var(--black);
  border: 1px solid var(--gray-dark);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.cerveza-card:hover {
  border-color: rgba(255, 204, 0, 0.35);
  transform: translateY(-2px);
}

.cerveza-card-visual {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black-card);
}

.cerveza-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.cerveza-card:hover .cerveza-card-visual img {
  transform: scale(1.04);
}

.cerveza-card-body {
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
  background: var(--black);
}

.cerveza-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.cerveza-desc {
  font-family: var(--font-condensed);
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* Showcase CTAs */
.menu-showcase-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.btn-menu-full {
  min-width: min(100%, 280px);
  text-align: center;
}

.menu-delivery-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 520px;
}

.menu-delivery-ctas .btn {
  flex: 1 1 200px;
  min-width: 0;
}

/* ─── Full menu page ─── */
.carta-page {
  padding-top: var(--header-h);
}

.carta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.carta-categories {
  display: grid;
  gap: 2.5rem;
  max-width: 640px;
  margin-inline: auto 0;
  margin-bottom: 3rem;
}

@media (min-width: 769px) {
  .carta-categories {
    margin-inline: auto;
    max-width: 720px;
  }
}

.carta-category-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-dark);
}

.carta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.carta-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-dark);
}

.carta-item-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.carta-item-price {
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}

.carta-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ─── Hours ─── */
.hours-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hours-block .section-head {
  width: 100%;
  max-width: 900px;
  text-align: left;
}

.hours-block .section-head p {
  color: var(--gray);
  margin-top: 0.5rem;
}

.hours-link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-link:hover {
  color: var(--white);
}

.hours-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  text-align: left;
}

.hours-location {
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  padding: 2rem 2.25rem;
}

.hours-location-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hours-location-name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hours-location-address {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section--yellow .hours-location-name {
  color: var(--yellow);
}

.section--yellow .hours-location-address {
  color: var(--white);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-dark);
  text-align: left;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hours-time {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

/* ─── Locations ─── */
.locations-head {
  margin-bottom: 2.5rem;
}

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

.location-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  padding: 0;
  overflow: hidden;
}

.location-card-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.location-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.5s var(--ease);
}

.location-card:hover .location-card-photo img {
  transform: scale(1.04);
}

.location-card-info {
  padding: 1.5rem 1.5rem 0;
}

.location-card .location-map {
  margin: 1.25rem 1.5rem 1.5rem;
}

.location-card-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.location-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.25rem 0.55rem;
  margin-bottom: 0.75rem;
}

.location-card address {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.location-phone {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

.location-phone:hover {
  color: var(--white);
}

.location-map {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  border: 2px solid var(--gray-dark);
  overflow: hidden;
  flex: 1;
  transition: border-color 0.35s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.location-map:hover {
  border-color: var(--yellow);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  transition: filter 0.45s var(--ease);
}

.location-map:hover iframe {
  filter: none;
}

/* ─── Contact ─── */
.contact-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.contact-intro p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-form {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  border: 1px solid transparent;
}

.contact-form-status.is-success {
  background: rgba(0, 0, 0, 0.08);
  border-color: var(--black);
  color: var(--black);
}

.contact-form-status.is-error {
  background: rgba(140, 0, 0, 0.08);
  border-color: rgba(140, 0, 0, 0.35);
  color: #5a0000;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.contact-optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.45);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.contact-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--black);
}

.contact-consent a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-consent a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.contact-submit {
  width: 100%;
}

.contact-pedir-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-pedir-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-pedir-head p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin-inline: auto;
}

.delivery-location {
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  padding: 2rem;
  text-align: center;
}

.delivery-location-title {
  margin-bottom: 1.5rem;
}

.delivery-location-title .location-badge {
  font-size: 0.7rem;
}

.delivery-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.delivery-links a {
  display: block;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--gray-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.delivery-links a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* ─── Racing checker stripe divider ─── */
.racing-checker-divider {
  --checker-size: clamp(20px, 3.5vw, 36px);
  position: relative;
  display: grid;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  justify-content: start;
  align-content: start;
}

.racing-checker-cell {
  width: var(--checker-size);
  height: var(--checker-size);
  background: transparent;
}

.racing-checker-cell.is-yellow {
  background: var(--yellow);
}

/* ─── Instagram ─── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.insta-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-card);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0);
  transition: background 0.3s;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  background: rgba(255, 204, 0, 0.25);
}

/* ─── Footer ─── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-dark);
}

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

.footer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-details .footer-social {
  justify-content: center;
}

.footer-details .footer-meta {
  justify-content: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
}

.footer-meta-sep {
  color: var(--gray-dark);
  font-size: 0.8rem;
  user-select: none;
}

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

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gray-dark);
  border-radius: 50%;
  color: var(--gray);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.footer-social-btn:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(255, 204, 0, 0.08);
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease);
}

.footer-credit:hover {
  transform: translateY(-1px);
}

.footer-credit-text {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-credit-brand {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-credit-logo {
  height: 24px;
  width: auto;
  max-width: 88px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}

.footer-credit:hover .footer-credit-logo {
  transform: scale(1.05);
}

.footer-legal {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-dark);
  text-align: center;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
}

.footer-legal-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-legal-nav a:hover {
  color: var(--yellow);
}

.footer-legal-company {
  font-size: 0.7rem;
  color: rgba(154, 154, 154, 0.85);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ─── Legal pages ─── */
.legal-page {
  padding-top: var(--header-h);
  min-height: 100vh;
}

.legal-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-dark);
  background: rgba(5, 5, 5, 0.95);
}

.legal-header .logo {
  justify-content: center;
}

.legal-main {
  padding: clamp(2.5rem, 6vw, 4rem) 0 4rem;
}

.legal-content {
  max-width: 720px;
  margin-inline: auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-content a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--white);
}

.legal-company {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--gray-dark);
  border-left: 3px solid var(--yellow);
}

.legal-company p {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.9rem;
}

.legal-company p:last-child {
  margin-bottom: 0;
}

.legal-back {
  display: inline-flex;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.legal-back:hover {
  color: var(--white);
}

/* ─── Mobile ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .about,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .hours-locations {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hours-block .section-head {
    max-width: 520px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --m-display: clamp(1.3rem, 5vw, 1.6rem);
    --m-title: clamp(1.08rem, 4vw, 1.3rem);
    --m-body: 0.7rem;
    --m-body-sm: 0.68rem;
    --m-about-body: 0.64rem;
    --m-label: 0.56rem;
    --m-price: 0.88rem;
    --m-input: 0.82rem;
    --m-btn: 0.6rem;
    --m-lh: 1.55;
    --m-head-gap: 1.35rem;
    --m-stack: 1.25rem;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(1.4rem, 5.5vw, 1.9rem);
  }

  body {
    font-size: 0.875rem;
    line-height: var(--m-lh);
  }

  .section {
    padding-block: clamp(3.5rem, 8vw, 4.5rem);
  }

  .section-head {
    margin-bottom: var(--m-head-gap);
  }

  .section-head h2 {
    font-size: var(--m-display);
    letter-spacing: 0.09em;
    margin-bottom: 0.4rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .section-head p {
    font-size: var(--m-body);
    line-height: var(--m-lh);
    letter-spacing: 0.03em;
    font-weight: 400;
  }

  .section-label {
    font-size: var(--m-label);
    letter-spacing: 0.24em;
    margin-bottom: 0.5rem;
  }

  .section-label--on-black {
    font-size: 0.54rem;
    letter-spacing: 0.26em;
    padding: 0.32rem 0.6rem;
  }

  .btn {
    font-size: var(--m-btn);
    letter-spacing: 0.15em;
    padding: 0.65rem 1rem;
    line-height: 1.2;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .logo-text {
    font-size: clamp(0.55rem, 2.2vw, 0.72rem);
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    padding: 0.5rem 0 1rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--gray-dark);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-media__img--desktop {
    display: none;
  }

  .hero-media__img--mobile {
    display: block;
    object-position: center 40%;
  }

  .hero-content {
    padding-top: 2.25rem;
    padding-bottom: 3.25rem;
    max-width: 100%;
  }

  .hero-logo {
    width: clamp(96px, 26vw, 124px);
    margin-bottom: 1rem;
  }

  .hero-title {
    margin-bottom: 1.15rem;
  }

  .hero-title-line {
    font-size: clamp(2.35rem, 11vw, 3rem);
    letter-spacing: 0.04em;
  }

  .hero-lead {
    font-size: var(--m-body);
    line-height: var(--m-lh);
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero-eyebrow {
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: clamp(0.48rem, 2.4vw, 0.58rem);
    letter-spacing: 0.14em;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .hero-eyebrow .stripe {
    width: 24px;
    flex-shrink: 0;
  }

  .about-copy h2 {
    font-size: var(--m-display);
    letter-spacing: 0.09em;
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .about-copy .lead {
    font-size: var(--m-body-sm);
    line-height: var(--m-lh);
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 0.65rem;
  }

  .about-copy p {
    font-size: var(--m-about-body);
    line-height: var(--m-lh);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
  }

  /* Sobre nosotros – Bild: volle Breite, halbe Höhe (8:5 statt 4:5) */
  #ueber-uns .about-visual {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 8 / 5;
    margin-inline: auto;
    overflow: hidden;
  }

  #ueber-uns .about-visual::after {
    inset: 8px -8px -8px 8px;
  }

  #ueber-uns .about-visual__img--desktop {
    display: none;
  }

  #ueber-uns .about-visual__img--mobile {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  #standort .location-card-info h3 {
    font-size: var(--m-title);
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 1.05;
  }

  /* Menú & cerveza – mobile compact */
  #menu .section-head {
    margin-bottom: 1rem;
  }

  #menu .section-head h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.35rem);
    margin-bottom: 0.3rem;
  }

  #menu .section-head p {
    font-size: 0.64rem;
  }

  #menu .product-hero {
    margin-bottom: 0.65rem;
  }

  #menu .product-hero-media,
  #menu .product-card-media,
  #menu .combo-card-visual,
  #menu .cerveza-card-visual {
    aspect-ratio: 16 / 9;
  }

  #menu .cerveza-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  #menu .product-hero-body,
  #menu .product-card-body,
  #menu .combo-card-body,
  #menu .cerveza-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 100%;
    padding: 0.62rem 0.8rem 0.62rem;
    text-align: center;
  }

  #menu .product-hero-body > :last-child,
  #menu .product-card-body > :last-child,
  #menu .combo-card-body > :last-child,
  #menu .cerveza-card-body > :last-child {
    margin-bottom: 0;
  }

  #menu .product-eyebrow {
    font-size: 0.48rem;
    letter-spacing: 0.2em;
    margin: 0 0 0.18rem;
    line-height: 1.2;
  }

  #menu .product-hero .product-name,
  #menu .product-card .product-name,
  #menu .combo-name,
  #menu .cerveza-name {
    font-size: clamp(0.92rem, 3.4vw, 1.06rem);
    letter-spacing: 0.1em;
    margin: 0 0 0.2rem;
    line-height: 1.08;
    max-width: 28ch;
  }

  #menu .product-hero .product-desc,
  #menu .product-card .product-desc,
  #menu .combo-desc,
  #menu .cerveza-desc {
    font-size: 0.61rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 400;
    margin: 0 0 0.3rem;
    padding: 0;
    max-width: 34ch;
  }

  #menu .product-card .product-desc {
    margin-bottom: 0.3rem;
    padding-bottom: 0;
  }

  #menu .combo-desc {
    flex: none;
    margin-bottom: 0.28rem;
  }

  #menu .product-price,
  #menu .product-price--hero,
  #menu .product-card .product-price,
  #menu .combo-price {
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
  }

  #menu .product-badge,
  #menu .product-badge--hero,
  #menu .product-badge--outline,
  #menu .product-badge--on-black {
    font-size: 0.48rem;
    letter-spacing: 0.14em;
    padding: 0.2rem 0.4rem;
  }

  #menu .product-badges--hero {
    top: 0.55rem;
    left: 0.55rem;
    gap: 0.28rem;
  }

  #menu .product-card-media .product-badge {
    top: 0.5rem;
    left: 0.5rem;
  }

  #menu .product-grid {
    gap: 0.65rem;
    margin-bottom: 1.35rem;
  }

  #menu .menu-combos {
    padding-top: 1rem;
    margin-bottom: 1.15rem;
  }

  #menu .menu-combos-head,
  #menu .menu-cerveza .menu-combos-head {
    margin-bottom: 0.75rem;
  }

  #menu .menu-combos-head h2 {
    font-size: clamp(1.1rem, 4.2vw, 1.28rem);
    margin-bottom: 0.28rem;
  }

  #menu .menu-combos-head p {
    font-size: 0.62rem;
    line-height: 1.48;
  }

  #menu .combo-grid {
    gap: 0.65rem;
  }

  #menu .combo-card-body .product-badge {
    align-self: center;
    margin: 0 0 0.16rem;
  }

  #menu .menu-cerveza {
    padding-top: 1rem;
    margin-bottom: 1.15rem;
  }

  #menu .cerveza-grid {
    width: 100%;
    max-width: none;
    gap: 0.65rem;
  }

  #menu .cerveza-card {
    width: 100%;
  }

  #menu .menu-showcase-actions {
    gap: 0.85rem;
    padding-top: 0.15rem;
  }

  #menu .btn-menu-full {
    min-width: min(100%, 220px);
    font-size: 0.58rem;
    padding: 0.58rem 0.85rem;
  }

  /* Horarios – mobile: Kopf zentriert, Öffnungszeiten-Grid unverändert */
  #oeffnungszeiten .hours-block .section-head {
    max-width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }

  #oeffnungszeiten .hours-link {
    font-size: inherit;
  }

  #oeffnungszeiten .hours-locations {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  #oeffnungszeiten .hours-location {
    padding: 0.6rem 0.5rem 0.55rem;
    min-width: 0;
  }

  #oeffnungszeiten .hours-location-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    margin-bottom: 0.45rem;
    line-height: 1.15;
  }

  #oeffnungszeiten .hours-location-name {
    font-size: clamp(0.82rem, 3.1vw, 0.98rem);
    letter-spacing: 0.08em;
    line-height: 1.05;
  }

  #oeffnungszeiten .hours-location-address {
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.35;
  }

  #oeffnungszeiten .hours-row {
    padding: 0.32rem 0;
    gap: 0.08rem;
  }

  #oeffnungszeiten .hours-day {
    font-size: 0.48rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    line-height: 1.2;
  }

  #oeffnungszeiten .hours-time {
    font-size: clamp(0.5rem, 2.2vw, 0.58rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
    word-break: break-word;
    hyphens: auto;
  }

  /* Locales – mobile */
  #standort .locations-head {
    text-align: center;
  }

  #standort .locations-grid {
    gap: 2.5rem;
  }

  #standort .location-card-info {
    padding: 1.05rem 1.1rem 0;
    text-align: center;
  }

  #standort .location-badge {
    font-size: 0.54rem;
    letter-spacing: 0.22em;
    padding: 0.28rem 0.48rem;
    margin-bottom: 0.45rem;
  }

  #standort .location-card-info h3 {
    margin-bottom: 0.4rem;
  }

  #standort .location-card address {
    font-size: var(--m-body);
    line-height: var(--m-lh);
    margin-bottom: 0.5rem;
    font-weight: 400;
  }

  #standort .location-phone {
    font-size: var(--m-body-sm);
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: var(--m-lh);
  }

  #standort .location-actions {
    align-items: center;
    gap: 0.6rem;
  }

  #standort .location-actions .btn {
    font-size: var(--m-btn);
    padding: 0.6rem 0.95rem;
    letter-spacing: 0.15em;
  }

  #standort .location-card .location-map {
    margin: 0.75rem 1.1rem 1.1rem;
    min-height: 160px;
  }

  .contact-intro,
  .contact-pedir-head {
    margin-bottom: var(--m-head-gap);
  }

  .contact-intro h2,
  .contact-pedir-head h2 {
    font-size: var(--m-display);
    letter-spacing: 0.09em;
    margin-bottom: 0.4rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .contact-intro p,
  .contact-pedir-head p {
    font-size: var(--m-body);
    line-height: var(--m-lh);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  #kontakt > .container {
    padding-inline: clamp(2rem, 9vw, 2.75rem);
  }

  #kontakt .contact-intro {
    margin-bottom: 1.15rem;
    max-width: 100%;
    padding-inline: 0.15rem;
  }

  .contact-form {
    margin-bottom: 0;
    max-width: 100%;
  }

  .contact-form-grid {
    gap: 0.85rem;
    margin-bottom: 0.9rem;
  }

  .contact-field {
    gap: 0.32rem;
  }

  .contact-field label {
    font-size: var(--m-label);
    font-weight: 600;
    letter-spacing: 0.18em;
  }

  .contact-optional {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 0.76rem;
    line-height: var(--m-lh);
    padding: 0.62rem 0.72rem;
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(5, 5, 5, 0.94);
  }

  .contact-field input:focus,
  .contact-field textarea:focus {
    border-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  }

  .contact-field textarea {
    min-height: 100px;
    resize: none;
  }

  .contact-consent {
    font-size: 0.62rem;
    line-height: 1.52;
    letter-spacing: 0.02em;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding-inline: 0.1rem;
  }

  .contact-consent input {
    width: 0.85rem;
    height: 0.85rem;
    margin-top: 0.12rem;
  }

  .contact-submit {
    font-size: var(--m-btn);
    letter-spacing: 0.15em;
    padding: 0.62rem 0.85rem;
  }

  .delivery-links a {
    font-size: var(--m-btn);
    letter-spacing: 0.14em;
    padding: 0.7rem 1rem;
    line-height: 1.2;
  }

  .insta-cta-wrap .btn {
    font-size: var(--m-btn);
    letter-spacing: 0.15em;
  }

  .footer-copy {
    font-size: var(--m-body-sm);
    letter-spacing: 0.04em;
    font-weight: 400;
    line-height: var(--m-lh);
  }

  .footer-credit-text,
  .footer-credit-brand {
    font-size: 0.54rem;
    letter-spacing: 0.14em;
  }

  .footer-meta a {
    font-size: var(--m-body-sm);
    letter-spacing: 0.1em;
    line-height: var(--m-lh);
  }

  .footer-legal-nav {
    flex-wrap: nowrap;
    gap: 0.35rem 0.55rem;
  }

  .footer-legal-nav a {
    font-size: clamp(0.48rem, 2.1vw, 0.58rem);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .footer-legal-company {
    font-size: var(--m-body-sm);
    letter-spacing: 0.04em;
    line-height: var(--m-lh);
  }

  .legal-content h1 {
    font-size: var(--m-display);
    letter-spacing: 0.09em;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .legal-content h2 {
    font-size: var(--m-title);
    letter-spacing: 0.08em;
    margin: 1.5rem 0 0.5rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .legal-content p,
  .legal-content li {
    font-size: var(--m-body);
    line-height: var(--m-lh);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
  }

  .legal-company p {
    font-size: var(--m-body);
    letter-spacing: 0.02em;
    line-height: var(--m-lh);
  }

  .hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
  }

  .hero-scroll i {
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(var(--yellow), transparent);
    animation: scroll-pulse 1.5s ease infinite;
  }

  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  #menu .product-grid,
  #menu .combo-grid {
    grid-template-columns: 1fr;
  }

  #menu .cerveza-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .menu-delivery-ctas {
    flex-direction: column;
    max-width: 100%;
  }

  .menu-delivery-ctas .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.75rem;
  }

  .footer-details {
    align-items: center;
    gap: 1.25rem;
    width: 100%;
  }

  .footer-details .footer-social {
    justify-content: center;
  }

  .footer-details .footer-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo--footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
  }

  .logo--footer .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .logo--footer .logo-text {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: clamp(0.58rem, 2.8vw, 0.72rem);
    letter-spacing: 0.12em;
  }

  .logo--footer .logo-text strong {
    color: var(--logo-yellow);
    -webkit-text-fill-color: var(--logo-yellow);
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-meta-sep {
    display: none;
  }

  .about-logos {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: var(--m-stack);
  }

  .about-logo {
    flex: 0 1 42px;
    width: 42px;
    min-width: 34px;
    height: 42px;
    aspect-ratio: 1;
    opacity: 0.9;
  }

  .carta-title {
    font-size: var(--m-display);
    letter-spacing: 0.09em;
    margin-bottom: 0.4rem;
    line-height: 1.05;
  }

  .carta-category-title {
    font-size: var(--m-title);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.05;
  }

  .carta-list li {
    padding: 0.65rem 0;
  }

  .carta-item-name {
    font-size: var(--m-body);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: var(--m-lh);
  }

  .carta-item-price {
    font-size: var(--m-price);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .carta-note {
    font-size: var(--m-body-sm);
    letter-spacing: 0.02em;
    line-height: var(--m-lh);
  }
}

@media (min-width: 769px) {
  .header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.6), transparent);
  }

  .footer-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(0.75rem, 2vw, 1.75rem);
  }

  .footer-details {
    display: contents;
  }

  .logo--footer {
    order: 1;
    flex: 0 0 auto;
    flex-direction: row;
    width: auto;
  }

  .footer-meta {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    min-width: 0;
  }

  .footer-copy,
  .footer-credit,
  .footer-credit-text,
  .footer-credit-brand {
    white-space: nowrap;
  }

  .footer-meta-sep {
    display: inline;
    flex-shrink: 0;
  }

  .footer-social {
    order: 3;
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
