@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171411;
  --ink-soft: #29231f;
  --cream: #f5efe5;
  --paper: #fffaf2;
  --orange: #bd4e25;
  --orange-dark: #923b1d;
  --sand: #c4a78c;
  --line: rgba(23, 20, 17, 0.15);
  --white-line: rgba(255, 255, 255, 0.2);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Clash Display", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 40px));
  --radius: 22px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffbd8f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 200;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #9d8067 !important;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-bl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ffff !important;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-intro {
  max-width: 670px;
  margin: 24px 0 0;
  color: #5a514b;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head .section-intro {
  max-width: 450px;
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  height: 72px;
  background: #1A1B1E;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.86rem;
  font-weight: 500;
}

.site-nav > a:not(.button) {
  position: relative;
  opacity: 0.86;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"] {
  opacity: 1;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before { top: 16px; }
.menu-toggle span { top: 22px; }
.menu-toggle::after { top: 28px; }

.menu-open .menu-toggle::before {
  top: 22px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::after {
  top: 22px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button-outline {
  border-color: currentColor;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover {
  background: #bd4e25 !important;
  border: #ffff solid 1px !important;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 10, 9, 0.87) 0%, rgba(13, 10, 9, 0.45) 52%, rgba(13, 10, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(13, 10, 9, 0.72) 0%, transparent 47%);
  content: "";
}

.hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-inner {
  display: grid;
  width: var(--container);
  margin: auto;
  padding: calc(var(--header-height) + 74px) 0 44px;
  align-content: end;
}

.home-copy {
  max-width: 850px;
}

.home-copy .eyebrow {
  color: #f6c2ab;
}

.home-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10.5vw, 9.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.home-lead {
  max-width: 770px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.feeling-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 26px 0 0;
  padding: 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

.feeling-line li:not(:last-child)::after {
  margin-left: 20px;
  color: var(--orange);
  content: "•";
}

.hero-control {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: rgba(16, 13, 12, 0.36);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.branches {
  padding: 105px 0 120px;
  background: var(--paper);
}

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

.branch-card {
  position: relative;
  display: flex;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}

.branch-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 12, 10, 0.9) 0%, rgba(16, 12, 10, 0.1) 75%);
  content: "";
}

.branch-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.branch-card:hover img {
  transform: scale(1.045);
}

.branch-card-content {
  display: flex;
  width: 100%;
  padding: 38px;
  align-self: end;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.branch-card h2 {
  margin: 6px 0 8px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.branch-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.circle-link {
  display: inline-flex;
  width: 64px;
  min-width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.branch-card:hover .circle-link {
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(12deg);
}

.statement {
  padding: 115px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.statement p {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.statement em {
  color: var(--orange);
  font-style: normal;
}

.branch-hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  overflow: hidden;
  align-items: end;
  color: #fff;
  isolation: isolate;
}

.branch-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 11, 10, 0.86) 0%, rgba(14, 11, 10, 0.2) 67%);
  content: "";
}

.branch-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 80px) 0 70px;
}

.branch-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.3rem, 11vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.branch-hero .location {
  display: block;
  margin-top: 22px;
  color: #f4c7b4;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.branch-hero-bottom {
  display: flex;
  margin-top: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.branch-hero-bottom p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
}

.experience {
  padding: 120px 0;
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.experience-copy p:not(.eyebrow) {
  color: #5a514b;
}

.experience-quote {
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.info-band {
  padding: 110px 0;
  background: var(--cream);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.panel-dark {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background: rgb(16, 16, 22);
  color: #fff;
}

.panel-dark::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.panel h2,
.panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.panel p {
  margin: 22px 0 0;
}

.panel .button {
  margin-top: 30px;
}

.schedule {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
}

.schedule tr {
  border-top: 1px solid var(--line);
}

.schedule th,
.schedule td {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
}

.schedule th {
  width: 42%;
  font-weight: 600;
}

.schedule td {
  color: #615750;
}

.promotions {
  padding: 120px 0;
  background: var(--orange);
  color: #fff;
}

.promotions .eyebrow,
.promotions .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promo-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(60, 19, 8, 0.08);
}

.promo-day {
  display: inline-block;
  margin-bottom: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.promo-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.promo-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.food {
  padding: 120px 0;
  background: var(--paper);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.food-card {
  position: relative;
  grid-column: span 6;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}

.food-card:nth-child(2),
.food-card:nth-child(3),
.food-card:nth-child(4),
.food-card:nth-child(5),
.food-card:nth-child(8),
.food-card:nth-child(9)  {
  grid-column: span 3;
}

.food-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 10, 0.82), transparent 62%);
  content: "";
}

.food-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

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

.food-card h3 {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.food-card h3 span {
  position: absolute;
  font-size: clamp(1rem);
  font-family: var(--tp-ff-p);
  font-weight: 200;
}

/* ========================================
   DESCRIPCIÓN DE LOS PLATILLOS
======================================== */

.food-card-copy {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

/* Evita que el título conserve el
   posicionamiento absoluto anterior */
.food-card-copy h3 {
  position: static;
}

/* Párrafo descriptivo */
.food-card-copy p {
  max-width: 470px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.32);
}

.cantaritos {
  padding: 110px 0;
  background: var(--cream);
}

.cantaritos-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.cantarito-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8d8c7;
}

.cantarito-visual img {
  max-width: 78%;
  max-height: 460px;
  object-fit: contain;
}

.size-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.size-list li {
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #9d8067;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.size-list strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.size-list span {
  color: #ffff;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.music {
  padding: 120px 0;
  background: #bd4e25;
  color: #fff;
}

.music-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.music-copy .eyebrow {
  color: #ffff !important;
}

.music-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.music-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
}

.music-image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.event {
  padding: 120px 0;
  background: var(--paper);
}

.event-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.event-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.event-copy {
  display: flex;
  padding: clamp(34px, 6vw, 70px);
  flex-direction: column;
  justify-content: center;
}

.event-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.event-meta {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.event-meta li {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
}

.event-meta span {
  color: #766a62;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.connect {
  padding: 110px 0;
  background: var(--cream);
}

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

.contact-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-list li {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-list span {
  color: #766a62;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  background: var(--ink);
  color: #fff;
}

.reserve-cta {
  padding: 125px 0;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.reserve-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.reserve-cta p {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.reserve-cta .button {
  margin-top: 32px;
}

.inner-hero {
  padding: calc(var(--header-height) + 90px) 0 78px;
  background: #1A1B1E;
  color: #fff;
}

.inner-hero h1 {
  max-width: 930px;
  color: #ffff !important;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.inner-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

.form-section {
  padding: 100px 0 120px;
  background: var(--cream);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 110px;
}

.form-aside h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-aside p {
  color: #5e554e;
}

.reservation-form {
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--paper);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field legend {
  color: #4f4741;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid #d8cec4;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgba(189, 78, 37, 0.15);
}

.consent {
  display: flex;
  grid-column: 1 / -1;
  gap: 12px;
  color: #5a514b;
  font-size: 0.9rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.consent a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.reservation-form .button {
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}

.simple-page {
  padding: 90px 0 120px;
  background: var(--cream);
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--paper);
}

.legal h2 {
  margin: 54px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  color: #514942;
}

.legal a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.thank-you {
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) 20px 70px;
  place-items: center;
  background:
    linear-gradient(rgba(18, 14, 12, 0.79), rgba(18, 14, 12, 0.84)),
    url("../img/instalaciones/fiesta-corazon-tequilero-4.webp") center / cover;
  color: #fff;
  text-align: center;
}

.thank-you-content {
  max-width: 780px;
}

.thank-you h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 12vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.thank-you p {
  max-width: 600px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  padding: 40px 0 30px;
  background: #101016;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--white-line);
}

.footer-logo {
  width: 190px;
  margin-bottom: 25px;
}

.footer-top p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
  text-align: right;
}

.footer-links a:hover {
  color: #ed9c78;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2cad63;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float img {
  width: 27px;
  filter: brightness(0) invert(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    background: #171310;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 19px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav > a:not(.button) {
    display: block;
    font-family: var(--display);
    font-size: 2.2rem;
    line-height: 1;
  }

  .site-nav .button {
    margin-top: 12px;
  }

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

  .experience-grid,
  .cantaritos-grid,
  .music-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .experience-copy,
  .music-copy {
    max-width: 760px;
  }

  .media-frame,
  .media-frame video,
  .media-frame img,
  .music-image,
  .music-image img {
    min-height: 560px;
    height: 560px;
  }

  .form-aside {
    position: static;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    background: #171310;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 19px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    display: block;
    font-family: var(--display);
    font-size: 2.2rem;
    line-height: 1;
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .section-head,
  .branch-hero-bottom,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head {
    display: grid;
    gap: 22px;
  }

  .home-hero-inner {
    align-content: center;
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .home-title {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .hero-control {
    right: 16px;
    bottom: 17px;
  }

  .branch-grid,
  .info-grid,
  .event-card,
  .connect-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .branch-card {
    min-height: 500px;
  }

  .branch-card-content {
    padding: 28px;
  }

  .circle-link {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

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

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

  .food-card,
  .food-card:nth-child(2),
  .food-card:nth-child(3) {
    grid-column: auto;
    min-height: 360px;
  }

  .event-card img {
    min-height: 460px;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .brand img {
    width: 112px;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(13, 10, 9, 0.88), rgba(13, 10, 9, 0.35));
  }

  .home-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .feeling-line {
    display: none;
  }

  .branches,
  .experience,
  .info-band,
  .promotions,
  .food,
  .cantaritos,
  .music,
  .event,
  .connect,
  .form-section,
  .simple-page {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .branch-card {
    min-height: 430px;
  }

  .branch-card-content {
    display: grid;
  }

  .branch-hero {
    min-height: 78svh;
  }

  .branch-hero h1 {
    font-size: clamp(3.8rem, 19vw, 6.2rem);
  }

  .branch-hero-bottom .button {
    width: 100%;
  }

  .media-frame,
  .media-frame video,
  .media-frame img,
  .music-image,
  .music-image img {
    min-height: 460px;
    height: 460px;
  }

  .promo-grid,
  .food-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 220px;
  }

  .food-card,
  .food-card:nth-child(2),
  .food-card:nth-child(3) {
    min-height: 390px;
  }

  .event-card img {
    min-height: 390px;
  }

  .field-full,
  .consent {
    grid-column: auto;
  }

  .contact-list li,
  .event-meta li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   FOTOGRAFÍAS EN TIPOS DE EVENTOS
======================================== */

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.event-type-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.event-type-photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-type-copy {
  padding: 28px;
}

.event-type-copy > span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.event-type-card h3 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.event-type-card p {
  margin: 16px 0 0;
  color: #655b54;
  font-size: 0.94rem;
}


/* ========================================
   FOTOGRAFÍAS EN CAPACIDADES Y AMENIDADES
======================================== */

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

.event-detail-panel {
  min-height: 720px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.event-detail-photo {
  height: 280px;
  margin: 0;
  background: var(--ink-soft);
}

.event-detail-photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.event-detail-content {
  padding: clamp(30px, 5vw, 58px);
}

.event-detail-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.event-detail-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #665c55;
}

.event-detail-panel-dark {
  border-color: transparent;
  background: var(--ink-soft);
  color: #fff;
}

.event-detail-panel-dark .eyebrow {
  color: #f1aa8b;
}


/* ========================================
   FOTOGRAFÍA DE FONDO EN EL CIERRE
======================================== */

.event-closing {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--ink-soft);
  color: #fff;
  isolation: isolate;
  text-align: center;
}

.event-closing::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 17, 13, 0.72),
    rgba(67, 25, 10, 0.9)
  );
  content: "";
}

.event-closing-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-closing h2 {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.event-closing h2 strong {
  font-weight: 500;
}

.event-closing p {
  max-width: 690px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.event-closing .whatsapp-actions {
  justify-content: center;
}


/* ========================================
   FOTOGRAFÍA JUNTO AL FORMULARIO
======================================== */

.form-location-photo {
  position: relative;
  min-height: 330px;
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.form-location-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(
    0deg,
    rgba(14, 11, 10, 0.82),
    transparent
  );
  content: "";
}

.form-location-photo img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.form-location-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


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

@media (max-width: 1040px) {
  .event-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-type-photo {
    height: 260px;
  }

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

  .form-aside {
    position: static;
  }

  .form-location-photo,
  .form-location-photo img {
    min-height: 500px;
    height: 500px;
  }
}

@media (max-width: 800px) {
  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-photo,
  .event-detail-photo img {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .event-type-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-panel {
    min-height: auto;
  }

  .event-type-photo,
  .event-detail-photo,
  .event-detail-photo img {
    height: 230px;
  }

  .form-location-photo,
  .form-location-photo img {
    min-height: 300px;
    height: 300px;
  }
}

/* ========================================
   HERO DE EVENTOS CON FOTO DE FONDO
======================================== */

.event-page-hero-background {
  position: relative;
  display: flex;
  min-height: 90svh;
  overflow: hidden;
  padding:
    calc(var(--header-height) + 100px)
    0
    100px;
  align-items: center;
  background-color: var(--ink);
  background-image:
    linear-gradient(
      90deg,
      rgba(18, 13, 10, 0.9) 0%,
      rgba(18, 13, 10, 0.72) 48%,
      rgba(18, 13, 10, 0.28) 100%
    ),
    url("../img/renta-evento-corazon-tequilero-optimizada-final.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.event-page-hero-content {
  position: relative;
  z-index: 1;
}

.event-page-hero-content h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 7.2vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.event-page-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.event-page-hero-background .eyebrow {
  color: #f1aa8b;
}

.event-page-hero-background .event-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}


/* TABLET */

@media (max-width: 800px) {
  .event-page-hero-background {
    min-height: 80svh;
    padding:
      calc(var(--header-height) + 80px)
      0
      80px;
    background-image:
      linear-gradient(
        90deg,
        rgba(18, 13, 10, 0.88),
        rgba(18, 13, 10, 0.5)
      ),
      url("../img/renta-evento-corazon-tequilero.jpg");
    background-position: 60% center;
  }
}


/* CELULAR */

@media (max-width: 560px) {
  .event-page-hero-background {
    min-height: 85svh;
    padding:
      calc(var(--header-height) + 70px)
      0
      70px;
    background-image:
      linear-gradient(
        0deg,
        rgba(18, 13, 10, 0.94) 0%,
        rgba(18, 13, 10, 0.65) 100%
      ),
      url("../img/renta-evento-corazon-tequilero.jpg");
    background-position: center;
  }

  .event-page-hero-content h1 {
    font-size: clamp(3.2rem, 16vw, 5.3rem);
  }

  .event-page-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .event-page-hero-background .event-hero-actions {
    flex-direction: column;
  }

  .event-page-hero-background .event-hero-actions .button {
    width: 100%;
  }
}
