:root {
  --black: #070707;
  --dark: #101010;
  --dark-soft: #181818;
  --white: #f5f2ec;
  --muted: #b8b2aa;
  --red: #d71920;
  --red-dark: #970f14;
  --line: rgba(245, 242, 236, 0.15);
  --max-width: 1180px;
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(7, 7, 7, 0.82);
  color: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
}

.brand-text {
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.25s ease;
}

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

.language-selector {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-btn.active {
  background: var(--red);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease;
}

.section-dark,
.site-footer {
  background: var(--black);
  color: var(--white);
}

.hero,
.page-hero {
  min-height: 100vh;
  padding: 150px clamp(20px, 6vw, 80px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.22), transparent 38%),
    radial-gradient(circle at 85% 20%, rgba(215, 25, 32, 0.32), transparent 28%);
  pointer-events: none;
}

.hero-content,
.hero-card,
.page-hero>* {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-number,
.category-title span,
.feature-card span {
  display: inline-block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h1 {
  max-width: 980px;
  font-size: clamp(4.4rem, 12vw, 11.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.hero-text,
.page-hero p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-secondary {
  border-color: var(--line);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.hero-card {
  min-height: 360px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--dark-soft), #080808);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.08em;
}

.hero-card p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.hero-card strong {
  font-size: 3.8rem;
  line-height: 0.85;
  letter-spacing: -0.1em;
}

.split-section,
.grid-3,
.menu-section,
.contact-layout,
.map-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px clamp(20px, 4vw, 40px);
  padding-bottom: 70px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.split-section h2,
.contact-info h2,
.contact-form h2,
.category-title h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  text-transform: uppercase;
}

.split-section p:not(.section-number) {
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  color: #2a2a2a;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}

.feature-card {
  min-height: 310px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card.highlighted {
  background: var(--black);
  color: var(--white);
}

.feature-card h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.feature-card p {
  color: #5f5b55;
}

.feature-card.highlighted p {
  color: var(--muted);
}

.section-red {
  margin: 0;
  padding: 110px clamp(20px, 6vw, 80px);
  background: var(--red);
  color: var(--white);
}

.big-claim p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.big-claim h2 {
  max-width: 1100px;
  font-size: clamp(3.4rem, 9vw, 9rem);
  text-transform: uppercase;
}

.compact-hero {
  min-height: 72vh;
  grid-template-columns: 1fr;
}

.menu-section {
  display: grid;
  gap: 70px;
}

.menu-category {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.14);
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
}

.menu-list h3 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  text-transform: uppercase;
}

.menu-list span {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.1);
}

.contact-info ul {
  list-style: none;
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.contact-info li {
  display: grid;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
}

.contact-info strong,
.contact-form label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 7, 7, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--black);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form button {
  margin-top: 10px;
  width: fit-content;
}

.form-note {
  color: #6f6a62;
  font-size: 0.9rem;
}

.map-section {
  padding-top: 0;
}

.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.12);
  height: 460px;
  background: #ddd;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 70px clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.site-footer h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid div {
  display: grid;
  gap: 7px;
}

.footer-grid span {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .language-selector {
    margin-left: auto;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .page-hero,
  .split-section,
  .grid-3,
  .menu-category,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 260px;
  }

  .grid-3 {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-text {
    font-size: 0.8rem;
  }

  .language-selector {
    order: 2;
  }

  .hero,
  .page-hero {
    padding: 130px 18px 60px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split-section,
  .grid-3,
  .menu-section,
  .contact-layout,
  .map-section {
    padding: 72px 18px;
  }

  .menu-section,
  .map-section {
    padding-top: 72px;
  }

  .menu-list article {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .map-wrapper {
    height: 340px;
  }

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


/* LOGO EN HEADER */

.logo-mark {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* HERO CON FOTO DE FONDO */

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

.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(7, 7, 7, 0.92) 0%,
      rgba(7, 7, 7, 0.72) 42%,
      rgba(7, 7, 7, 0.42) 100%),
    url("../images/bar.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.04);
  z-index: 0;
}

.hero-photo::before {
  display: none;
}

.hero-photo .hero-content,
.hero-photo .hero-card {
  position: relative;
  z-index: 2;
}

.glass-card {
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 242, 236, 0.22);
}


/* TÍTULO SIMPLE DE CARTA */

.simple-page-title {
  padding: 150px clamp(20px, 6vw, 80px) 40px;
  background: var(--black);
  color: var(--white);
}

.simple-page-title h1 {
  font-size: clamp(4rem, 13vw, 12rem);
  text-transform: uppercase;
}


/* FOTO PAVELLÓN */

.pavellon-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px clamp(20px, 4vw, 40px) 110px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: end;
}  

.pavellon-text h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  text-transform: uppercase;
}

.pavellon-text p:not(.section-number) {
  margin-top: 24px;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  color: #3a3a3a;
}

.pavellon-image {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}

.pavellon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* AJUSTE CARTA AL QUITAR HERO GRANDE */

.simple-page-title+.menu-section {
  padding-top: 70px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
  .pavellon-section {
    grid-template-columns: 1fr;
  }

  .pavellon-image {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .simple-page-title {
    padding: 130px 18px 36px;
  }

  .pavellon-section {
    padding: 0 18px 72px;
  }

  .pavellon-image {
    min-height: 280px;
  }

  .hero-photo .hero-bg {
    background-position: center;
    filter: blur(2px);
  }
}

.menu-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
}

.menu-list article h3 {
  grid-column: 1;
}

.menu-list article p {
  grid-column: 1;
  color: #6f6a62;
  font-size: 0.95rem;
  line-height: 1.4;
}

.menu-list article span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

@media (max-width: 560px) {
  .menu-list article {
    grid-template-columns: 1fr;
  }

  .menu-list article h3,
  .menu-list article p,
  .menu-list article span {
    grid-column: 1;
    grid-row: auto;
  }
}

/* TÍTULOS DE CATEGORÍA FIJOS AL HACER SCROLL */

.menu-category {
  align-items: start;
}

.category-title {
  position: sticky;
  top: 105px;
  z-index: 20;
  align-self: start;
  padding: 18px 0;
  background: var(--white);
}

.category-title h2 {
  margin: 0;
}

@media (max-width: 900px) {
  .category-title {
    top: 50px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.12);
  }

  .category-title h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

/* SELECTOR DE IDIOMAS DROPDOWN */

.language-selector.language-dropdown {
  position: relative;
  padding: 0;
  border: 0;
  display: block;
}

.language-current {
  min-width: 126px;
  height: 40px;
  padding: 0 14px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.06);
  color: var(--white);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.current-lang-name {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.language-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.language-dropdown.open .language-arrow {
  transform: rotate(225deg) translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);

  display: grid;
  gap: 4px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu .lang-btn {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.language-menu .lang-btn:hover {
  background: rgba(245, 242, 236, 0.08);
  color: var(--white);
}

.language-menu .lang-btn.active {
  display: none;
}

/* PÁGINAS LEGALES */

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 90px clamp(20px, 4vw, 40px) 120px;
  display: grid;
  gap: 34px;
}

.legal-block {
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.1);
}

.legal-block h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  text-transform: uppercase;
}

.legal-block p {
  margin-top: 14px;
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-block a {
  color: var(--red);
  font-weight: 800;
}

.legal-table {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.legal-table div {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(7, 7, 7, 0.1);
}

.legal-table strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.legal-table p {
  margin: 0;
}

@media (max-width: 560px) {
  .legal-content {
    padding: 64px 18px 80px;
  }

  .legal-block {
    padding: 24px;
  }
}

/* FORMULARIO CONTACTO FUNCIONAL */

.honeypot {
  display: none !important;
}

.form-status {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6f6a62;
}

.form-status.success {
  color: #16813a;
}

.form-status.error {
  color: var(--red);
}