/* El Sabor de Doña Beni — modern professional styles */

:root {
  /* Logo-led palette: Benni's Kitchen red + apron green */
  --color-brand: #d32f2f;
  --color-brand-dark: #b71c1c;
  --color-brand-deep: #7f1212;
  --color-accent-green: #1f5c3d;
  --color-burgundy: #c62828;
  --color-burgundy-deep: #5c0f0f;
  --color-burgundy-soft: #d32f2f;
  --color-amber: #b8860b;
  --color-amber-bright: #d4a012;
  --color-amber-muted: rgba(184, 134, 11, 0.15);
  --color-ink: #1a1614;
  --color-ink-soft: #4a4540;
  --color-muted: #6e6963;
  --color-surface: #ffffff;
  --color-surface-elevated: #fdfcfa;
  --color-bg: #f4f1ec;
  --color-bg-warm: #ebe6df;
  --color-border: rgba(26, 22, 20, 0.08);
  --color-border-strong: rgba(26, 22, 20, 0.12);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, sans-serif;
  --text-base: 1.0625rem;
  --leading: 1.65;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(26, 22, 20, 0.04);
  --shadow-sm: 0 4px 16px rgba(26, 22, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 22, 20, 0.08);
  --shadow-lg: 0 24px 64px rgba(127, 18, 18, 0.22);
  --header-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1180px;
  --max-w-prose: 42rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero__blob {
    animation: none !important;
    opacity: 0.35 !important;
  }

  .hero__inner--animate > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .page-hero::after {
    animation: none !important;
  }

  html.js .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: var(--leading);
  color: var(--color-ink-soft);
  background: var(--color-bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

::selection {
  background: var(--color-amber-muted);
  color: var(--color-ink);
}

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

a {
  color: var(--color-burgundy);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--color-burgundy-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 0.8;
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(139, 24, 24, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header--scrolled {
  background: rgba(92, 15, 15, 0.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.875rem clamp(1rem, 4vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand:hover .brand__mark {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.brand:hover .brand__logo {
  color: #fff;
}

.brand__mark {
  width: clamp(48px, 10vw, 58px);
  height: clamp(48px, 10vw, 58px);
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #fff;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.brand__logo {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  transition: color 0.2s var(--ease-out);
}

.brand__tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.brand__sub {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

/* Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #fff;
  transition: background 0.2s var(--ease-out);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
}

.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);
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

.nav__link:focus-visible {
  outline: 2px solid var(--color-amber-bright);
  outline-offset: 2px;
}

.nav__link--active {
  background: rgba(212, 160, 18, 0.22);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: linear-gradient(180deg, #4a0e0e 0%, #7f1212 100%);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.is-open {
    max-height: min(420px, calc(100dvh - var(--header-h) - 1rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 1rem 1.125rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
}

/* ----- Main ----- */
main {
  flex: 1;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.75rem);
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.section-head {
  max-width: var(--max-w-prose);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-brand-dark);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.section__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Trust bar */
.trust-bar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding: 1rem clamp(1rem, 4vw, 1.75rem);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-ink-soft);
}

.trust-bar__item strong {
  color: var(--color-ink);
  font-weight: 700;
}

.trust-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .trust-bar__inner {
    justify-content: space-between;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  min-height: min(88dvh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vw, 5rem) clamp(1rem, 4vw, 1.75rem);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(212, 160, 18, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(211, 47, 47, 0.38) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(92, 15, 15, 0.55) 0%, transparent 45%),
    linear-gradient(160deg, #3d0a0a 0%, #6d1010 42%, #c62828 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.45;
  animation: hero-blob-float 14s ease-in-out infinite;
}

.hero__blob--a {
  width: min(55vw, 380px);
  height: min(55vw, 380px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.65) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero__blob--b {
  width: min(45vw, 320px);
  height: min(45vw, 320px);
  bottom: -5%;
  left: -10%;
  background: radial-gradient(circle, rgba(212, 160, 18, 0.35) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes hero-blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, 5%) scale(1.08);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__inner--animate > * {
    animation: hero-enter 0.85s var(--ease-out) backwards;
  }

  .hero__inner--animate > *:nth-child(1) {
    animation-delay: 0.06s;
  }

  .hero__inner--animate > *:nth-child(2) {
    animation-delay: 0.14s;
  }

  .hero__inner--animate > *:nth-child(3) {
    animation-delay: 0.22s;
  }

  .hero__inner--animate > *:nth-child(4) {
    animation-delay: 0.3s;
  }

  .hero__inner--animate > *:nth-child(5) {
    animation-delay: 0.38s;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 18, 0.6));
}

.hero__eyebrow::after {
  background: linear-gradient(90deg, rgba(212, 160, 18, 0.6), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.5rem;
  letter-spacing: 0;
}

.hero__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  min-height: 48px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    background-position 0.55s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--color-amber-bright);
  outline-offset: 3px;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(
    120deg,
    var(--color-amber) 0%,
    var(--color-amber-bright) 40%,
    #f0d060 50%,
    var(--color-amber-bright) 60%,
    var(--color-amber) 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: var(--color-ink);
  box-shadow: 0 4px 24px rgba(184, 134, 11, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.42);
  color: var(--color-ink);
  background-position: 100% 50%;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

/* Home features — mobile → tablet → desktop */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 600px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.feature-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

@media (hover: hover) and (min-width: 900px) {
  .feature-card:hover {
    transform: translateY(-6px) perspective(900px) rotateX(1.5deg);
  }
}

.feature-card__accent {
  width: 2.5rem;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-brand), var(--color-amber-bright));
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.625rem;
  font-size: 1.25rem;
  color: var(--color-ink);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Menu */
.menu-disclaimers {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-xs);
}

.menu-disclaimers p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  line-height: 1.55;
}

.menu-disclaimers p:last-child {
  margin-bottom: 0;
}

.menu-disclaimers strong {
  color: var(--color-ink);
  font-weight: 700;
}

.menu-category {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.menu-category:last-of-type {
  margin-bottom: 0;
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--color-ink);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-category__title::before {
  content: "";
  width: 4px;
  height: 1.25em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-brand-dark), var(--color-accent-green));
  flex-shrink: 0;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  align-items: baseline;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s var(--ease-out);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: var(--radius-sm);
}

.menu-item:last-child {
  border-bottom: none;
}

@media (hover: hover) {
  .menu-item:hover {
    background: var(--color-surface-elevated);
  }
}

.menu-item__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.menu-item__desc {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.55;
}

@media (min-width: 600px) {
  .menu-item__desc {
    grid-column: 1;
  }
}

.menu-item__price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-burgundy-soft);
  white-space: nowrap;
  justify-self: end;
}

.menu-placeholder {
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-muted);
  margin: 0;
  padding: 0.5rem 0 0;
  line-height: 1.6;
}

/* About */
.prose {
  max-width: 38rem;
  font-size: 1.0625rem;
}

.prose p {
  margin: 0 0 1.25rem;
  font-weight: 500;
  color: var(--color-ink-soft);
}

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

.prose strong {
  color: var(--color-ink);
  font-weight: 700;
}

.prose--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.prose--center .pullquote {
  border-left: none;
  border-top: 3px solid var(--color-amber-bright);
  padding: 1.25rem 1.25rem 1.15rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  background: linear-gradient(180deg, var(--color-amber-muted), transparent);
  border-radius: var(--radius-sm);
}

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 0.5;
  color: var(--color-burgundy-deep);
  border-left: 3px solid var(--color-amber-bright);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2.5rem 0;
  background: linear-gradient(90deg, var(--color-amber-muted), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  letter-spacing: -0.01em;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 700px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-card {
  background: var(--color-surface);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.25s var(--ease-out);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

.contact-card h3 {
  font-family: var(--font-display);
  margin: 0 0 1.125rem;
  font-size: 1.2rem;
  color: var(--color-ink);
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-top: 1.125rem;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.35rem 0 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink-soft);
}

.contact-card a {
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card__note {
  margin: 1.125rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  line-height: 1.55;
}

.contact-map-wrap {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  min-height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: min(320px, 45vh);
  border: 0;
  display: block;
}

@media (min-width: 600px) {
  .map-embed iframe {
    height: min(400px, 50vh);
  }
}

@media (min-width: 1024px) {
  .map-embed iframe {
    height: min(440px, 55vh);
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1a1412 0%, #0f0d0c 100%);
  color: rgba(255, 255, 255, 0.82);
  margin-top: auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0
    calc(clamp(2.5rem, 6vw, 3.5rem) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--color-amber-bright);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.75rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 520px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.footer__kitchen {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.footer-block h3 {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(212, 160, 18, 0.9);
  margin: 0 0 1rem;
}

.footer-block p,
.footer-block address {
  margin: 0;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: clamp(2rem, 5vw, 2.5rem) auto 0;
  padding: 1.5rem clamp(1rem, 4vw, 1.75rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Page title bar */
.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(2.75rem, 7vw, 4rem) clamp(1rem, 4vw, 1.75rem);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 160, 18, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #5c0f0f 0%, #c62828 50%, #3d0a0a 100%);
  z-index: 0;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 45%,
      transparent 55%
    );
    background-size: 200% 100%;
    animation: page-hero-shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }
}

@keyframes page-hero-shimmer {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

/* Scroll reveal — sin clase .js en <html>, el contenido sigue visible (progresivo) */
.js-reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .js-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.75rem);
}

html.js .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Small phones */
@media (max-width: 380px) {
  .brand__tagline {
    display: none;
  }

  .brand__logo {
    font-size: 1rem;
  }
}

/* Tablet / iPad: comfortable tap targets & rhythm */
@media (min-width: 600px) and (max-width: 1024px) {
  .section {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
  }

  .trust-bar__inner {
    gap: 1.25rem 2rem;
  }
}

/* Large desktop: cap content width feel */
@media (min-width: 1400px) {
  :root {
    --max-w: 1240px;
  }
}
