/* Hotel Restaurante Alte Frankfurt — diseño premium */
:root {
  --bg-dark: #1c1b19;
  --bg-charcoal: #252422;
  --bg-light: #ffffff;
  --bg-muted: #f3f0eb;
  --gold: #b8945f;
  --gold-hover: #c9a86a;
  --gold-dark: #96784a;
  --text-dark: #2a2622;
  --text-body: #5c554c;
  --text-light: #f8f6f2;
  --text-muted-light: rgba(248, 246, 242, 0.75);
  --border-light: #e5e0d8;
  --shadow-card: 0 12px 40px rgba(28, 27, 25, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 80px;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover { color: var(--gold); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header--overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  border-bottom: none;
}

.site-header.scrolled,
.site-header:not(.site-header--overlay) {
  background: rgba(28, 27, 25, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  color: var(--text-light);
}

.logo-link:hover { color: var(--text-light); opacity: 0.9; }

.logo-link img {
  height: 52px;
  width: auto;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-phone:hover { color: var(--gold); }

.header-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
}

.header-wa svg { width: 22px; height: 22px; fill: #fff; }

.header-wa:hover { transform: scale(1.05); }

.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.lang-switcher a {
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0.35rem;
}

.lang-switcher a.is-active {
  color: var(--gold);
  font-weight: 600;
}

.lang-switcher .sep { color: rgba(255,255,255,0.35); user-select: none; }

.site-header:not(.site-header--overlay) .lang-switcher a { color: var(--text-muted-light); }
.site-header:not(.site-header--overlay) .lang-switcher a.is-active { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-light);
  margin: 0 auto;
  transition: var(--ease);
}

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

.main-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform var(--ease);
  overflow-y: auto;
}

.main-nav.is-open { transform: translateX(0); }

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav li { margin-bottom: 0.25rem; }

.main-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.main-nav a:hover,
.main-nav a.is-active { color: var(--gold); }

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

@media (min-width: 1100px) {
  .nav-toggle { display: none; }

  .header-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 1.5rem;
  }

  .header-contact { display: flex; }

  .main-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
  }

  .main-nav ul {
    display: flex;
    gap: 0.35rem 1.1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.72rem;
    padding: 0.35rem 0;
    white-space: nowrap;
  }

  .header-actions {
    justify-self: end;
  }

  .lang-switcher--mobile { display: none; }
}

@media (max-width: 1099px) {
  .lang-switcher--desktop { display: none; }
}

/* ========== HERO HOME ========== */
.hero-home {
  position: relative;
  /* Altura acorde al ratio de la fachada (~1368×718) para recortar menos */
  min-height: max(520px, min(100vh, 100dvh, calc(100vw / 1.905 + 220px)));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text-light);
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-home__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Coche abajo-derecha: anclar ahí para que no se corte */
  object-position: 82% 100%;
}

@media (min-width: 768px) {
  .hero-home__bg img {
    object-position: 72% 88%;
  }
}

@media (min-width: 1200px) {
  .hero-home {
    min-height: max(640px, min(100vh, calc(100vw / 1.905 + 200px)));
  }

  .hero-home__bg img {
    object-position: 65% 82%;
  }
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(28,27,25,0.45) 65%,
    rgba(28,27,25,0.88) 100%
  );
}

.hero-home__content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 0;
  width: min(1200px, 92%);
  margin-inline: auto;
}

.hero-home h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  color: var(--text-light);
  max-width: 14ch;
  margin: 0 0 1rem;
  font-weight: 400;
}

.hero-home__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted-light);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.hero-home__actions--multi .btn {
  min-width: 10.5rem;
}

@media (max-width: 520px) {
  .hero-home__actions--multi {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-home__actions--multi .btn { width: 100%; }
}

.hero-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(28, 27, 25, 0.85);
  border-top: 1px solid rgba(184, 148, 95, 0.25);
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .hero-features { grid-template-columns: repeat(4, 1fr); }
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted-light);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: background var(--ease);
}

.hero-feature:last-child { border-right: none; }

.hero-feature:hover {
  background: rgba(184, 148, 95, 0.1);
  color: var(--text-light);
}

.hero-feature__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.hero-feature strong {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 148, 95, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: #fff;
}

.btn-whatsapp-lg {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  padding: 1rem 2rem;
  font-size: 0.85rem;
}

.btn-whatsapp-lg:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.72rem; }

.btn-block { width: 100%; }

/* Legacy aliases for inner pages */
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-muted { background: var(--bg-muted); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 { color: var(--text-light); }

.section-dark p { color: var(--text-muted-light); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: 0 0 1rem;
  max-width: 20ch;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
  max-width: 24ch;
}

.section-intro {
  color: var(--text-body);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

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

.section-header .section-intro {
  margin-inline: auto;
}

/* About split */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .split--reverse .split__text { order: 1; }
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split__text p {
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* Room cards premium */
.room-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1000px) {
  .room-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.room-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform var(--ease), box-shadow var(--ease);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(28,27,25,0.12);
}

.room-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card__img img { transform: scale(1.04); }

.room-card__body { padding: 1.75rem; }

.room-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.room-amenities {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.room-amenities li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.room-amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.room-card__price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.room-card__note {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  font-weight: 500;
}

.text-small {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-top: 0.75rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-row--center { justify-content: center; }

.events-list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-body);
}

.events-list li { margin-bottom: 0.35rem; }

/* Why book direct */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  margin-inline: auto;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.why-item__mark {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  box-shadow: 0 0 0 4px rgba(184, 148, 95, 0.2);
}

.why-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.why-item span {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* Gallery */
.gallery-group { margin-bottom: 3rem; }

.gallery-group:last-child { margin-bottom: 0; }

.gallery-group__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img { transform: scale(1.03); }

.location-address {
  margin: 1rem 0 1.25rem;
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
  padding: 4rem 0;
  background: var(--bg-muted);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.final-cta h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.final-cta p {
  color: var(--text-body);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.section-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* Perks bar */
.perks-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .perks-bar { grid-template-columns: repeat(4, 1fr); }
}

.perk {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-body);
}

.perk__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.perk strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* Trust / values */
.values-section {
  text-align: center;
}

.values-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--text-dark);
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.45;
}

.values-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

/* Location band */
.location-band {
  position: relative;
  padding: 5rem 0;
  color: var(--text-light);
  overflow: hidden;
}

.location-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,27,25,0.92) 0%, rgba(28,27,25,0.7) 50%, rgba(28,27,25,0.5) 100%);
}

.location-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .location-band .container {
    grid-template-columns: 1fr 340px;
  }
}

.location-band h2 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.location-band p { color: var(--text-muted-light); }

.map-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.map-card__preview {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
}

.map-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text-body);
}

/* ========== INNER PAGES ========== */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-hero h1 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-hero .lead {
  color: var(--text-muted-light);
  max-width: 40rem;
  margin-inline: auto;
  font-size: 1.1rem;
}

.page-content { padding: 4rem 0; }

/* Cards (inner) */
.cards-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease);
}

.card:hover { transform: translateY(-4px); }

.card-image { aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.75rem; }
.card-body h3 { margin: 0 0 0.5rem; }
.card-body .price {
  font-family: var(--font-serif);
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card-body ul { color: var(--text-body); font-size: 0.95rem; }
.card-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
}

.feature-row {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-image { order: 2; }
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-text p { color: var(--text-body); }

.notice {
  padding: 1.25rem 1.5rem;
  background: rgba(184, 148, 95, 0.1);
  border-left: 3px solid var(--gold);
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-muted);
}

.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { color: var(--text-body); max-width: 32rem; margin: 0 auto 1.5rem; }
.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  padding: 2rem;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.contact-item { margin-bottom: 1.25rem; }
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.legal-content { max-width: 720px; margin-inline: auto; }
.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  color: var(--text-dark);
}
.legal-content p, .legal-content li { color: var(--text-body); }

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

@media (min-width: 600px) {
  .mini-gallery { grid-template-columns: repeat(3, 1fr); }
}

.mini-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.dish-tags, .event-types { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.dish-tag, .event-type {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  color: var(--text-body);
}

.event-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.event-type { text-align: center; padding: 1rem; border-radius: var(--radius); }

.intro-text {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  color: var(--text-body);
}

.trust-block {
  text-align: center;
  padding: 3rem;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
}

.trust-block blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  margin: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-muted-light);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}

.footer-brand img { height: 60px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(248, 246, 242, 0.88); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }

.footer-contact-list a { color: rgba(248, 246, 242, 0.92); }

.footer-contact-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.footer-talk p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom .lang-switcher a { color: var(--text-muted-light); }
.footer-bottom .lang-switcher a.is-active { color: var(--gold); }
.footer-bottom .lang-switcher .sep { color: rgba(255,255,255,0.25); }

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal-links a { color: var(--text-muted-light); font-size: 0.8rem; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--ease);
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
