@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg: #f4ede2;
  --surface: rgba(255, 251, 245, 0.94);
  --surface-strong: #fffdfa;
  --ink: #31241b;
  --muted: #6c5b4f;
  --line: rgba(124, 90, 48, 0.18);
  --primary: #8b5e34;
  --primary-strong: #6f4722;
  --accent: #54724c;
  --accent-strong: #40583a;
  --sand: #dfc8ab;
  --hero-shadow: 0 22px 60px rgba(77, 51, 25, 0.16);
  --card-shadow: 0 18px 42px rgba(77, 51, 25, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, calc(100% - 32px));
  --menu-font: "Hive Pro", "droid-serif-w01-regular", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(223, 200, 171, 0.42), transparent 34%),
    radial-gradient(circle at top right, rgba(84, 114, 76, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f2e8 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

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

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

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(49, 36, 27, 0.82);
  color: rgba(255, 245, 232, 0.86);
}

.topbar .contenedor {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.92rem;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: none;
  background: #f4ede2;
  border-bottom: 1px solid rgba(139, 94, 52, 0.1);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  transition: padding 0.35s ease, gap 0.35s ease;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(170px, 16vw, 245px);
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-title,
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--primary-strong);
}

.brand-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(124, 76, 42, 0.12);
  border-radius: 18px;
  background: #fff8ef;
  box-shadow: 0 10px 24px rgba(61, 37, 19, 0.08);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
  background: #fffaf4;
  box-shadow: 0 14px 28px rgba(61, 37, 19, 0.12);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #7d2417;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.menu a {
  position: relative;
  font-family: var(--menu-font);
  text-decoration: none;
  color: var(--ink);
  padding: 10px 14px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.9;
  transition: transform 0.28s ease;
}

.menu a:hover,
.menu a.activo {
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.menu a:hover::after,
.menu a.activo::after {
  transform: scaleX(1);
}

.menu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.menu-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--menu-font);
  text-decoration: none;
  color: var(--ink);
  padding: 10px 14px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.menu-dropdown-trigger i {
  font-size: 0.7rem;
  opacity: 0.72;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.9;
  transition: transform 0.28s ease;
}

.menu-dropdown:hover .menu-dropdown-trigger,
.menu-dropdown:focus-within .menu-dropdown-trigger,
.menu-dropdown.is-active .menu-dropdown-trigger {
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.menu-dropdown:hover .menu-dropdown-trigger i,
.menu-dropdown:focus-within .menu-dropdown-trigger i,
.menu-dropdown.is-active .menu-dropdown-trigger i {
  opacity: 1;
  transform: rotate(180deg);
}

.menu-dropdown:hover .menu-dropdown-trigger::after,
.menu-dropdown:focus-within .menu-dropdown-trigger::after,
.menu-dropdown.is-active .menu-dropdown-trigger::after {
  transform: scaleX(1);
}

.menu-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 196px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 251, 246, 0.96);
  border: 1px solid rgba(124, 76, 42, 0.09);
  box-shadow: 0 16px 34px rgba(46, 28, 16, 0.12);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.menu-dropdown:hover .menu-submenu,
.menu-dropdown:focus-within .menu-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-submenu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 11px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.98rem;
}

.menu-submenu a::after {
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
}

.menu-submenu a i {
  width: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--primary-strong);
  opacity: 0.78;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-submenu a:hover,
.menu-submenu a.activo {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(124, 76, 42, 0.08);
}

.menu-submenu a:hover i,
.menu-submenu a.activo i {
  opacity: 1;
  transform: translateX(1px);
}

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.lang-current {
  font-family: var(--menu-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 108px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  justify-content: flex-start;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.lang-current:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c61f1f 0 34%, #fff 34% 66%, #c61f1f 66% 100%);
  font-size: 0;
  box-shadow: none;
  flex: 0 0 24px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 124px;
  padding: 8px;
  border: 1px solid rgba(139, 94, 52, 0.12);
  border-radius: 22px;
  background: #fffaf4;
  box-shadow:
    0 18px 44px rgba(46, 28, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 18px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(139, 94, 52, 0.12);
  border-left: 1px solid rgba(139, 94, 52, 0.12);
  background: #fffaf4;
  transform: rotate(45deg);
}

.lang-menu a {
  font-family: var(--menu-font);
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #7a3124;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lang-menu a:hover {
  background: rgba(139, 94, 52, 0.08);
  color: #5f241a;
  transform: translateX(2px);
}

.lang-switch:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}


.page-shell {
  padding: 32px 0 0;
}

.home-page .page-shell {
  padding-top: 0;
  padding-bottom: 0;
}

body:not(.home-page) main.page-shell {
  padding-top: 132px;
}

.hero,
.hero-split {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 94, 52, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.97), rgba(246, 236, 222, 0.92)),
    linear-gradient(160deg, rgba(84, 114, 76, 0.08), transparent 42%);
  box-shadow: var(--hero-shadow);
}

.header-home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(244, 237, 226, 0.9) 0%, rgba(244, 237, 226, 0.62) 58%, rgba(244, 237, 226, 0) 100%);
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

.header-home .menu a {
  color: #7d2f23;
}

.header-home .lang-current {
  color: #7d2f23;
}

.header-home .menu a:hover,
.header-home .menu a.activo {
  color: #7d2f23;
}

.header.is-scrolled {
  border-bottom-color: rgba(123, 73, 39, 0.16);
  background: #f4ede2;
  box-shadow: 0 18px 36px rgba(59, 35, 18, 0.12);
  backdrop-filter: none;
}

.header.is-scrolled .contenedor {
  padding: 12px 0;
  gap: 24px;
}

.header-home.is-scrolled {
  position: fixed;
  animation: headerFloatIn 0.4s ease;
  background: linear-gradient(180deg, rgba(244, 237, 226, 0.94) 0%, rgba(244, 237, 226, 0.78) 68%, rgba(244, 237, 226, 0.28) 100%);
}

.header-home.is-scrolled .menu a,
.header-home.is-scrolled .lang-current {
  color: #6f2e23;
}

.header-home.is-scrolled .menu a:hover,
.header-home.is-scrolled .menu a.activo {
  color: #6f2e23;
}

.header-home.is-scrolled .menu a::after {
  opacity: 1;
}

@keyframes headerFloatIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

.video-banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #19130f;
}

.video-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 233, 212, 0.14) 0%, rgba(36, 24, 17, 0.03) 16%, rgba(16, 10, 7, 0.08) 100%),
    linear-gradient(90deg, rgba(12, 8, 6, 0.12) 0%, rgba(12, 8, 6, 0.02) 42%, rgba(12, 8, 6, 0.06) 100%);
}

.video-banner-fade {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(244, 237, 226, 0) 0%, rgba(244, 237, 226, 0.58) 100%);
}

.video-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 110px;
}

.video-banner-copy {
  max-width: 620px;
  color: #fff8ef;
}

.video-banner-copy .eyebrow {
  background: rgba(255, 247, 236, 0.15);
  color: #fff7ef;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.video-banner-copy h1 {
  max-width: 10ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  line-height: 0.9;
  margin-bottom: 16px;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.video-banner-copy p {
  max-width: 50ch;
  font-size: 1.08rem;
  color: rgba(255, 247, 239, 0.9);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.home-content {
  margin-top: -6px;
  position: relative;
  z-index: 2;
}

.section-full-bleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-shell {
  padding: 0;
}

.locations-parallax {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(rgba(18, 7, 5, 0.36), rgba(18, 7, 5, 0.36)),
    url("../img/Recreo-kay-pacha.jpg") center 32% / cover no-repeat;
  overflow: hidden;
  will-change: background-position;
}

.locations-parallax-overlay {
  width: 100%;
}

.locations-parallax-shell {
  position: relative;
  z-index: 1;
}

.locations-parallax-heading {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
  color: #fff7f0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.locations-parallax-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 0.94;
  margin-bottom: 12px;
  color: #fffdf8;
  text-shadow: 0 10px 24px rgba(18, 7, 5, 0.7);
}

.locations-parallax-heading p {
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 251, 245, 0.98);
  text-shadow: 0 8px 18px rgba(18, 7, 5, 0.65);
}

.locations-parallax-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 940px;
  margin: 0 auto;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 12px;
  border-radius: 18px;
  background: rgba(247, 238, 226, 0.96);
  box-shadow: 0 24px 40px rgba(25, 12, 7, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(25, 12, 7, 0.28);
}

.location-card-media {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.location-card img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.42s ease;
}

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

.location-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 10px 8px 6px;
  text-align: center;
}

.location-card-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
  color: #7d2417;
}

.location-card-copy p {
  margin: 8px auto 0;
  max-width: 30ch;
  color: #6c150e;
  font-size: 0.95rem;
  line-height: 1.45;
  flex: 1;
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: 12px;
  padding: 9px 15px;
  border-radius: 999px;
  text-decoration: none;
  background: #6c150e;
  color: #fff8f2;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.location-card-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.location-card-link:hover {
  transform: translateY(-1px);
  background: #571008;
}

.location-card-link:hover::after {
  transform: translateX(3px);
}

.about-kay-pacha {
  padding-top: 34px;
}

.about-kay-pacha-quote {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
  font-family: "plantin-mt-std", serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.12;
  color: #8b2f20;
}

.about-kay-pacha-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
}

.about-kay-pacha-media {
  margin: 0;
  padding: 0;
}

.about-kay-pacha-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  box-shadow: var(--hero-shadow);
}

.about-kay-pacha-copy {
  max-width: 520px;
}

.about-kay-pacha-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #6c150e;
  text-wrap: balance;
}

.about-kay-pacha-title span {
  display: block;
}

.about-kay-pacha-mark {
  display: block;
  position: relative;
  width: 34px;
  height: 16px;
  margin: 22px 0 26px;
}

.about-kay-pacha-mark::before,
.about-kay-pacha-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #b15240;
}

.about-kay-pacha-mark::before {
  top: 2px;
}

.about-kay-pacha-mark::after {
  top: 11px;
}

.about-kay-pacha-copy p {
  font-family: wfont_bd3a8a_076c8d75a03b4b64b26e5efd1c03aa5c, wf_076c8d75a03b4b64b26e5efd1, orig_tt_firs_neue_trl_regular, sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.42;
  color: #6c150e;
}

.about-kay-pacha-copy p span {
  display: block;
}

.about-kay-pacha-lead span,
.about-kay-pacha-body span {
  white-space: nowrap;
}

.about-kay-pacha-copy p + p {
  margin-top: 18px;
}

.hero::before,
.hero-split::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 114, 76, 0.18), transparent 68%);
}

.hero {
  padding: clamp(32px, 5vw, 54px);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(84, 114, 76, 0.12);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.section-heading h2,
.card h3,
.article-card h3,
.faq-card h3,
.panel h2,
.cta-panel h2,
.content-block h2,
.content-block h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.hero h1,
.hero h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 5rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.hero p,
.hero-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.huaraz-slider-page .page-shell {
  padding-top: 0;
}

.huaraz-slider-page .hero-slider--full,
.anta-slider-page .hero-slider--full {
  min-height: clamp(640px, 94svh, 980px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #d9b98f;
}

.hero-slider--full {
  min-height: clamp(640px, 94svh, 980px);
}

.hero-slider-track {
  position: relative;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img,
.hero-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-slide img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-slide.is-active img {
  transform: scale(1.08);
}

.hero-fallback {
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.6), rgba(255, 247, 232, 0.12)),
    linear-gradient(120deg, #b16d3b, #7e351e 55%, #dfbe85);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 240, 224, 0.9) 0, rgba(247, 240, 224, 0.22) 16%, rgba(0, 0, 0, 0) 28%);
}

.hero-slide-copy {
  position: absolute;
  left: clamp(96px, 11vw, 190px);
  bottom: 24%;
  max-width: 520px;
  z-index: 2;
  color: #fff8ef;
  text-shadow: 0 4px 14px rgba(60, 31, 20, 0.24);
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  margin: 0 0 18px;
  max-width: 460px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-wrap: balance;
  font-family: "Plantin MT Pro Bold", Plantin, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.08;
}

.hero-slide-copy p {
  margin: 0;
  max-width: 340px;
  font-family: "TT Firs Neue Trl Regular", "TT Firs Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
  color: #fff4e9;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(125, 36, 23, 0.95);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-arrow:hover {
  background: #6c150e;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow--prev {
  left: 44px;
}

.slider-arrow--next {
  right: 44px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 248, 239, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
  width: 34px;
  background: rgba(255, 248, 239, 0.98);
}

.venue-switch-cta {
  position: absolute;
  right: clamp(78px, 7vw, 132px);
  top: 56%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 260px;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: rgba(125, 36, 23, 0.72);
  color: #fff7ec;
  box-shadow: 0 16px 32px rgba(34, 12, 7, 0.2);
  backdrop-filter: none;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(20px, -50%, 0) scale(0.96);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.venue-switch-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.venue-switch-cta:hover {
  background: rgba(125, 36, 23, 0.86);
  box-shadow: 0 20px 38px rgba(34, 12, 7, 0.24);
  transform: translate3d(-4px, -50%, 0) scale(1.02);
}

.venue-switch-cta i {
  font-size: 13px;
  transition: transform 0.24s ease;
}

.venue-switch-cta:hover i {
  transform: translateX(3px);
}

.intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 42px;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255, 251, 244, 0.78);
  box-shadow: var(--hero-shadow);
  border: 1px solid rgba(123, 76, 44, 0.09);
  backdrop-filter: none;
}

.intro-copy h2,
.menu-promo-copy h2,
.quote-band blockquote,
.review-card h3,
.review-card p {
  font-family: "Cormorant Garamond", serif;
}

.intro-copy h2,
.menu-promo-copy h2 {
  margin: 20px 0 14px;
  color: #2e241f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.intro-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.intro-aside {
  padding: 34px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(125, 74, 47, 0.12);
}

.intro-aside h3 {
  margin: 0 0 20px;
  color: #915317;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.15;
}

.intro-aside ul {
  margin: 0;
  padding-left: 22px;
  color: #463127;
  line-height: 1.7;
  font-size: 18px;
}

.huaraz-slider-page .page-section {
  padding: 56px 0;
}

.huaraz-slider-page .cta-row,
.huaraz-slider-page .menu-promo-actions,
.anta-slider-page .menu-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.huaraz-slider-page .menu-promo-actions,
.anta-slider-page .menu-promo-actions {
  justify-content: center;
}

.huaraz-slider-page .button,
.anta-slider-page .button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.huaraz-slider-page .button:hover,
.anta-slider-page .button:hover {
  transform: translateY(-2px);
}

.huaraz-slider-page .button-primary,
.anta-slider-page .button-primary {
  background: #7d160f;
  color: #fff;
  box-shadow: 4px 4px 0 rgba(26, 14, 10, 0.7);
}

.huaraz-slider-page .button-secondary,
.anta-slider-page .button-secondary {
  background: rgba(255, 251, 243, 0.92);
  color: #7d2417;
  border-color: rgba(143, 31, 20, 0.14);
}

.huaraz-slider-page .tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 225, 207, 0.55);
  color: #714e32;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.huaraz-slider-page .tag-row span:hover {
  transform: translateY(-2px);
  background: rgba(143, 27, 18, 0.1);
  color: #8f1b12;
}

.huaraz-slider-page .section-heading {
  display: block;
  margin-bottom: 28px;
  text-align: center;
}

.huaraz-slider-page .section-heading h2 {
  margin: 20px 0 14px;
  color: #2e241f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.huaraz-slider-page .section-heading p {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.huaraz-slider-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.huaraz-slider-page .feature-card {
  padding: 24px;
  border: 1px solid rgba(121, 72, 50, 0.1);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.84);
  box-shadow: var(--card-shadow);
}

.huaraz-slider-page .feature-card h3 {
  margin: 0 0 10px;
  color: #7d2417;
  font-size: 22px;
}

.huaraz-slider-page .feature-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.huaraz-slider-page .feature-card a {
  color: #8a311d;
  text-decoration: none;
  font-weight: 800;
}

.huaraz-slider-page .intro-section,
.huaraz-slider-page .cards-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.huaraz-slider-page .intro-section {
  padding: 92px 0 54px;
  background:
    linear-gradient(90deg, rgba(244, 237, 226, 0.94), rgba(244, 237, 226, 0.88) 48%, rgba(244, 237, 226, 0.72)),
    url("../img/huaraz/slider/recreo kay pacha huaraz.jpg") center / cover fixed;
}

.huaraz-slider-page .intro-section::before,
.huaraz-slider-page .cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.62), transparent 42%),
    linear-gradient(180deg, rgba(143, 27, 18, 0.1), rgba(47, 20, 12, 0.08));
  pointer-events: none;
}

.huaraz-slider-page .cards-section {
  padding: 90px 0 112px;
  background:
    linear-gradient(180deg, rgba(36, 18, 12, 0.48), rgba(36, 18, 12, 0.68)),
    url("../img/huaraz/slider/el-mejore-restaurant-huraz-kay-pacha.jpg") center / cover fixed;
}

.huaraz-slider-page .intro-section .page-shell,
.huaraz-slider-page .cards-section .page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.huaraz-slider-page .intro-card {
  position: relative;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.72fr);
  gap: 56px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(125, 22, 15, 0.13);
  border-left: 6px solid #8f1b12;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 24px 54px rgba(63, 34, 18, 0.12);
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.huaraz-slider-page .intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 42%);
  pointer-events: none;
}

.huaraz-slider-page .intro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 27, 18, 0.24);
  box-shadow: 0 34px 68px rgba(63, 34, 18, 0.18);
}

.huaraz-slider-page .intro-copy,
.huaraz-slider-page .intro-aside {
  position: relative;
  z-index: 1;
}

.huaraz-slider-page .intro-copy .eyebrow,
.huaraz-slider-page .section-heading .eyebrow {
  background: rgba(143, 27, 18, 0.1);
  color: #7d2417;
}

.huaraz-slider-page .intro-copy h2,
.huaraz-slider-page .section-heading h2 {
  color: #2f241e;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.huaraz-slider-page .intro-copy h2 {
  max-width: 920px;
  font-size: clamp(38px, 3.4vw, 54px);
}

.huaraz-slider-page .intro-copy p {
  max-width: 78ch;
  color: #5f4d43;
  font-size: 17px;
  line-height: 1.85;
}

.huaraz-slider-page .intro-aside {
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(143, 27, 18, 0.98), rgba(111, 22, 15, 0.98));
  box-shadow: 0 18px 36px rgba(70, 16, 10, 0.24);
}

.huaraz-slider-page .intro-aside h3 {
  color: #fff7ec;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.huaraz-slider-page .intro-aside ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
  color: #fff2e3;
}

.huaraz-slider-page .intro-aside li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 247, 236, 0.13);
  transition: transform 0.24s ease, color 0.24s ease;
}

.huaraz-slider-page .intro-aside li::before {
  display: none;
}

.huaraz-slider-page .intro-aside li:last-child {
  border-bottom: 0;
}

.huaraz-slider-page .intro-aside li:hover {
  transform: translateX(4px);
  color: #fffaf2;
}

.huaraz-slider-page .intro-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 247, 236, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.12);
  color: #fff7ec;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.huaraz-slider-page .intro-aside li:hover .intro-detail-icon {
  transform: scale(1.06);
  background: #fff7ec;
  color: #8f1b12;
}

.huaraz-slider-page .cards-section .section-heading {
  margin-bottom: 56px;
  color: #fff7ec;
}

.huaraz-slider-page .cards-section .section-heading .eyebrow {
  background: rgba(255, 247, 236, 0.16);
  color: #fff7ec;
  border: 1px solid rgba(255, 247, 236, 0.24);
}

.huaraz-slider-page .cards-section .section-heading h2 {
  color: #fff7ec;
  text-shadow: 0 10px 28px rgba(22, 10, 6, 0.38);
  font-size: clamp(40px, 4vw, 58px);
}

.huaraz-slider-page .cards-section .section-heading p {
  color: rgba(255, 247, 236, 0.86);
}

.huaraz-slider-page .feature-grid {
  counter-reset: huaraz-feature;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.huaraz-slider-page .feature-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 34px 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 236, 0.2);
  border-top: 4px solid rgba(255, 247, 236, 0.34);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.9);
  backdrop-filter: none;
  box-shadow: 0 24px 52px rgba(17, 8, 5, 0.2);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.huaraz-slider-page .feature-card::before {
  counter-increment: huaraz-feature;
  content: "0" counter(huaraz-feature);
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(143, 27, 18, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
}

.huaraz-slider-page .feature-card:hover {
  transform: translateY(-10px);
  border-top-color: #fff7ec;
  background: rgba(255, 251, 244, 0.97);
  box-shadow: 0 34px 62px rgba(17, 8, 5, 0.28);
}

.huaraz-slider-page .feature-card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(143, 27, 18, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(143, 27, 18, 0.1), rgba(143, 27, 18, 0.04));
  color: #8f1b12;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.huaraz-slider-page .feature-card:hover .feature-card-icon {
  transform: translateY(-3px) scale(1.06);
  background: #8f1b12;
  color: #fff7ec;
  box-shadow: 0 16px 26px rgba(143, 27, 18, 0.22);
}

.huaraz-slider-page .feature-card h3 {
  position: relative;
  max-width: calc(100% - 56px);
  margin-bottom: 14px;
  color: #8f1b12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.huaraz-slider-page .feature-card p {
  position: relative;
  color: #6a5448;
  font-size: 15px;
}

.huaraz-slider-page .feature-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(143, 27, 18, 0.16);
  border-radius: 999px;
  background: rgba(143, 27, 18, 0.08);
  color: #8f1b12;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.huaraz-slider-page .feature-card a:hover {
  transform: translateX(3px);
  border-color: #8f1b12;
  background: #8f1b12;
  color: #fff7ec;
}

.huaraz-slider-page .feature-card a i {
  font-size: 12px;
  transition: transform 0.24s ease;
}

.huaraz-slider-page .feature-card a:hover i {
  transform: translateX(3px);
}

.quote-band {
  padding: 54px 0 46px;
  text-align: center;
}

.huaraz-slider-page .quote-band,
.anta-slider-page .quote-band {
  padding: 64px 0;
  background: #f4ede2;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 760px;
  color: #7f2618;
  font-family: "Plantin MT Std", Plantin, Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.28;
  font-style: italic;
}

.showcase-band {
  padding: 42px 0 54px;
  background: #8b1c12;
}

.huaraz-slider-page .showcase-band,
.anta-slider-page .showcase-band {
  min-height: 600px;
  padding: 74px 0 82px;
  background: #81180f;
  display: flex;
  align-items: center;
}

.huaraz-slider-page .showcase-band .page-shell,
.anta-slider-page .showcase-band .page-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.showcase-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
}

.huaraz-slider-page .showcase-carousel,
.anta-slider-page .showcase-carousel {
  display: block;
  overflow: hidden;
  padding: 8px 0 12px;
}

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

.huaraz-slider-page .showcase-track,
.anta-slider-page .showcase-track {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  transform-origin: center;
  will-change: transform;
}

.showcase-card {
  min-height: 420px;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 247, 234, 0.12);
}

.huaraz-slider-page .showcase-card,
.anta-slider-page .showcase-card {
  flex: 0 0 calc((100% - 24px) / 3);
  box-shadow: 0 20px 34px rgba(32, 8, 5, 0.18);
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    filter 0.38s ease;
}

.huaraz-slider-page .showcase-card:hover,
.anta-slider-page .showcase-card:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 0 28px 44px rgba(32, 8, 5, 0.28);
  filter: saturate(1.06) contrast(1.03);
}

.huaraz-slider-page .showcase-carousel.is-moving .showcase-card,
.anta-slider-page .showcase-carousel.is-moving .showcase-card {
  pointer-events: none;
}

.showcase-card img,
.showcase-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card img {
  transition: transform 0.8s ease, filter 0.4s ease;
}

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

.showcase-fallback {
  display: grid;
  place-items: center;
  color: rgba(255, 248, 239, 0.8);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
}

.showcase-arrow,
.gallery-nav,
.gallery-close {
  border: 0;
  cursor: pointer;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.9);
  color: #7d2417;
  font-size: 34px;
  line-height: 1;
}

.huaraz-slider-page .showcase-arrow,
.anta-slider-page .showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(35, 16, 10, 0.18);
}

.huaraz-slider-page .showcase-arrow--prev,
.anta-slider-page .showcase-arrow--prev {
  left: 0;
}

.huaraz-slider-page .showcase-arrow--next,
.anta-slider-page .showcase-arrow--next {
  right: 0;
}

.menu-promo {
  padding: 74px 0;
}

.huaraz-slider-page .menu-promo,
.anta-slider-page .menu-promo {
  padding: 54px 0 46px;
  background: #f4ede2;
}

.menu-promo-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.huaraz-slider-page .menu-promo-grid,
.anta-slider-page .menu-promo-grid {
  width: min(980px, calc(100% - 48px));
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  margin: 0 auto;
}

.menu-promo-copy {
  text-align: center;
}

.menu-promo-copy h2 {
  margin-bottom: 8px;
  color: #99291d;
  font-style: italic;
}

.huaraz-slider-page .menu-promo-copy h2,
.anta-slider-page .menu-promo-copy h2 {
  margin: 0 0 34px;
  color: #7d2417;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.04;
}

.menu-promo-copy .button-row {
  justify-content: center;
}

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

.huaraz-slider-page .menu-promo-visuals,
.anta-slider-page .menu-promo-visuals {
  gap: 14px;
}

.menu-visual-card {
  min-height: 470px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.huaraz-slider-page .menu-visual-card,
.anta-slider-page .menu-visual-card {
  min-height: 420px;
  box-shadow: 0 16px 20px rgba(49, 21, 13, 0.22);
}

.menu-visual-card img,
.menu-visual-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-visual-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dcb88b, #9e4a2b);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.reviews-band {
  background: #8b1c12;
}

.huaraz-slider-page .reviews-band {
  background: #8f1b12;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  min-height: 440px;
  padding: 56px 40px;
  text-align: center;
  color: #fff4e6;
  border-right: 1px solid rgba(255, 248, 239, 0.34);
}

.huaraz-slider-page .review-card {
  min-height: 474px;
  padding: 62px 58px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right-color: rgba(255, 248, 239, 0.28);
}

.review-card:last-child {
  border-right: 0;
}

.review-quote {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1;
}

.huaraz-slider-page .review-quote {
  margin-bottom: 12px;
}

.review-card h3 {
  margin: 0 0 26px;
  font-size: 28px;
}

.huaraz-slider-page .review-card h3 {
  margin-bottom: 28px;
  font-family: "Plantin MT Std", Plantin, Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.review-card p {
  margin: 0 auto;
  max-width: 360px;
  font-size: 24px;
  line-height: 1.42;
}

.huaraz-slider-page .review-card p {
  max-width: 360px;
  font-family: "Plantin MT Std", Plantin, Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

.huaraz-slider-page .hero-slide::before,
.anta-slider-page .hero-slide::before {
  background:
    radial-gradient(ellipse at 34% 47%, rgba(28, 16, 10, 0.46) 0%, rgba(28, 16, 10, 0.3) 30%, rgba(28, 16, 10, 0) 58%),
    linear-gradient(90deg, rgba(33, 18, 11, 0.5) 0%, rgba(33, 18, 11, 0.22) 44%, rgba(33, 18, 11, 0.04) 74%),
    linear-gradient(180deg, rgba(247, 240, 224, 0.86) 0, rgba(247, 240, 224, 0.18) 18%, rgba(0, 0, 0, 0) 34%);
}

.huaraz-slider-page .hero-slide-copy,
.anta-slider-page .hero-slide-copy {
  left: clamp(96px, 24vw, 420px);
  top: 43%;
  bottom: auto;
}

.huaraz-slider-page .hero-slide-copy h1,
.huaraz-slider-page .hero-slide-copy h2,
.anta-slider-page .hero-slide-copy h1,
.anta-slider-page .hero-slide-copy h2 {
  max-width: 560px;
}

.anta-slider-page .anta-content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 86px 0 96px;
  background:
    linear-gradient(180deg, rgba(244, 237, 226, 0.96), rgba(238, 228, 213, 0.94)),
    linear-gradient(90deg, rgba(244, 237, 226, 0.94), rgba(244, 237, 226, 0.82) 48%, rgba(244, 237, 226, 0.68)),
    url("../img/anta/slider/Vive-la-experiencia-Kay-Pacha-en-Anta.jpg") center / cover fixed;
}

.anta-slider-page .anta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.62), transparent 42%),
    radial-gradient(circle at 50% 0, rgba(143, 27, 18, 0.14), transparent 34%);
  pointer-events: none;
}

.anta-slider-page .anta-content .contenedor {
  position: relative;
  z-index: 1;
}

.anta-slider-page .anta-intro {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(143, 27, 18, 0.18);
  border-left: 6px solid #8f1b12;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 24px 54px rgba(63, 34, 18, 0.12);
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.anta-slider-page .anta-intro::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 42%);
}

.anta-slider-page .anta-intro:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 27, 18, 0.3);
  box-shadow: 0 34px 68px rgba(63, 34, 18, 0.18);
}

.anta-slider-page .anta-intro h1,
.anta-slider-page .anta-intro h2,
.anta-slider-page .anta-links-section h2,
.anta-slider-page .panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #2f241e;
}

.anta-slider-page .anta-intro .eyebrow,
.anta-slider-page .anta-links-section .eyebrow {
  background: rgba(143, 27, 18, 0.1);
  color: #7d2417;
}

.anta-slider-page .hero-aside {
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(143, 27, 18, 0.98), rgba(111, 22, 15, 0.98));
  color: #fff7ec;
  box-shadow: 0 18px 36px rgba(70, 16, 10, 0.24);
}

.anta-slider-page .hero-aside h3,
.anta-slider-page .hero-aside p,
.anta-slider-page .hero-aside li {
  color: #fff7ec;
}

.anta-slider-page .hero-actions .btn-secundario {
  background: #8f1b12;
  box-shadow: 4px 4px 0 rgba(70, 16, 10, 0.24);
}

.anta-slider-page .hero-actions .btn-outline {
  border-color: rgba(143, 27, 18, 0.18);
  color: #7d2417;
  background: rgba(255, 251, 244, 0.84);
}

.anta-slider-page .hero-actions .btn-secundario:hover,
.anta-slider-page .hero-actions .btn-outline:hover {
  transform: translateY(-2px);
}

.anta-slider-page .hero-actions .btn-outline:hover {
  border-color: #8f1b12;
  background: rgba(143, 27, 18, 0.1);
}

.anta-slider-page .hero-list li::before,
.anta-slider-page .check-list li::before {
  background: linear-gradient(135deg, #8f1b12, #7d2417);
}

.anta-slider-page .hero-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 247, 236, 0.13);
  transition: transform 0.24s ease, color 0.24s ease;
}

.anta-slider-page .hero-list li::before {
  display: none;
}

.anta-slider-page .hero-list li:last-child {
  border-bottom: 0;
}

.anta-slider-page .hero-list li:hover {
  transform: translateX(4px);
  color: #fffaf2;
}

.anta-slider-page .anta-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 247, 236, 0.22);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.12);
  color: #fff7ec;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.anta-slider-page .hero-list li:hover .anta-detail-icon {
  transform: scale(1.06);
  background: #fff7ec;
  color: #8f1b12;
}

.anta-slider-page .tag-row .tag {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.anta-slider-page .tag-row .tag:hover {
  transform: translateY(-2px);
  background: rgba(143, 27, 18, 0.1);
  color: #8f1b12;
}

.anta-slider-page .anta-links-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin-top: 86px;
  padding: 88px 0 94px;
}

.anta-slider-page .anta-links-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(38, 16, 12, 0.58), rgba(38, 16, 12, 0.76)),
    url("../img/anta/slider/tu-evento-nuestra-casa-kay-pacha-anta.jpg") center / cover fixed;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 236, 0.18),
    inset 0 -1px 0 rgba(255, 247, 236, 0.14);
}

.anta-slider-page .anta-links-section .section-heading {
  justify-content: center;
  text-align: center;
}

.anta-slider-page .anta-links-section .section-heading h2 {
  margin-top: 16px;
  color: #fff7ec;
  text-shadow: 0 10px 28px rgba(38, 16, 12, 0.4);
  font-size: clamp(40px, 4vw, 58px);
}

.anta-slider-page .anta-links-section .section-heading p {
  max-width: 64ch;
  margin: 0 auto;
  color: rgba(255, 247, 236, 0.88);
}

.anta-slider-page .anta-links-section .eyebrow {
  background: rgba(255, 247, 236, 0.16);
  color: #fff7ec;
  border: 1px solid rgba(255, 247, 236, 0.24);
}

.anta-slider-page .cluster-grid {
  counter-reset: anta-feature;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.anta-slider-page .cluster-grid .card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 32px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(143, 27, 18, 0.16);
  border-top: 4px solid rgba(143, 27, 18, 0.26);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 18px 36px rgba(63, 34, 18, 0.1);
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.anta-slider-page .cluster-grid .card::before {
  counter-increment: anta-feature;
  content: "0" counter(anta-feature);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(143, 27, 18, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.anta-slider-page .cluster-grid .card:hover {
  transform: translateY(-8px);
  border-top-color: #8f1b12;
  background: rgba(255, 251, 244, 0.97);
  box-shadow: 0 30px 54px rgba(63, 34, 18, 0.2);
}

.anta-slider-page .cluster-grid .feature-card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(143, 27, 18, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(143, 27, 18, 0.1), rgba(143, 27, 18, 0.04));
  color: #8f1b12;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.anta-slider-page .cluster-grid .card:hover .feature-card-icon {
  transform: translateY(-3px) scale(1.06);
  background: #8f1b12;
  color: #fff7ec;
  box-shadow: 0 16px 26px rgba(143, 27, 18, 0.22);
}

.anta-slider-page .cluster-grid .card h3 {
  position: relative;
  max-width: calc(100% - 64px);
  color: #8f1b12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.anta-slider-page .cluster-grid .card p,
.anta-slider-page .panel p,
.anta-slider-page .panel li {
  color: #5f4d43;
}

.anta-slider-page .cluster-grid .btn-secundario {
  background: #8f1b12;
  position: relative;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(143, 27, 18, 0.16);
  font-size: 14px;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.anta-slider-page .cluster-grid .btn-secundario:hover {
  transform: translateX(3px);
  border-color: #6f160f;
  background: #6f160f;
}

.anta-slider-page .cluster-grid .btn-secundario i {
  font-size: 12px;
  transition: transform 0.24s ease;
}

.anta-slider-page .cluster-grid .btn-secundario:hover i {
  transform: translateX(3px);
}

.anta-slider-page .anta-visit-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin-top: 0;
  min-height: 560px;
  padding: 96px 0 138px;
}

.anta-slider-page .anta-visit-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(38, 16, 12, 0.38), rgba(38, 16, 12, 0.48)),
    url("../img/anta/galerias-slider/mejor-restaurant-en-anta-kay-pacha.jpg") center / cover fixed;
}

.anta-slider-page .anta-visit-section .panel {
  border-color: rgba(143, 27, 18, 0.14);
  background: rgba(255, 251, 244, 0.92);
  backdrop-filter: none;
  box-shadow: 0 22px 44px rgba(63, 34, 18, 0.14);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  background: rgba(25, 10, 8, 0.78);
  padding: 32px;
}

.gallery-modal[hidden] {
  display: none !important;
}

.gallery-frame {
  max-width: min(1100px, calc(100vw - 220px));
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 148px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 22px;
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.96);
  color: #7d2417;
  font-size: 30px;
}

.gallery-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.96);
  color: #7d2417;
  font-size: 36px;
  line-height: 1;
}

.btn,
.btn-secundario,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.75);`r`n  box-shadow: 0 10px 22px rgba(68, 89, 26, 0.22);`r`n  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn-secundario:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

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

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

.btn-secundario {
  background: var(--accent);
  color: #fff;
}

.btn-secundario:hover {
  background: var(--accent-strong);
}

.btn-outline {
  border: 1px solid rgba(139, 94, 52, 0.22);
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.55);
}

.hero-aside,
.side-card,
.info-card,
.card,
.article-card,
.faq-card,
.panel,
.cta-panel,
.content-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.hero-aside {
  position: relative;
  z-index: 1;
  padding: 24px;
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 239, 226, 0.94));
}

.hero-aside h3,
.side-card h3 {
  font-size: 2rem;
  color: var(--primary-strong);
  margin-bottom: 12px;
}

.hero-aside p,
.side-card p,
.card p,
.article-card p,
.content-block p,
.panel p,
.faq-card p {
  color: var(--muted);
}

.hero-list,
.check-list,
.mini-list,
.faq-list,
.plain-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 16px;
}

.hero-list li,
.check-list li,
.faq-list li {
  position: relative;
  padding-left: 22px;
}

.hero-list li::before,
.check-list li::before,
.faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.hero-stats,
.stat-grid,
.quickfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.quickfacts {
  margin-top: 28px;
}

.fact,
.stat {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(139, 94, 52, 0.12);
}

.fact strong,
.stat strong {
  display: block;
  color: var(--primary-strong);
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.section {
  margin-top: 34px;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-strong);
}

.section-heading p {
  max-width: 58ch;
  color: var(--muted);
}

.grid,
.cluster-grid,
.article-grid,
.faq-grid,
.info-grid,
.split-grid {
  display: grid;
  gap: 18px;
}

.grid,
.cluster-grid,
.article-grid,
.faq-grid,
.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.card,
.article-card,
.faq-card,
.panel,
.cta-panel,
.content-block,
.side-card {
  padding: 24px;
}

.card h3,
.article-card h3,
.faq-card h3,
.content-block h2,
.content-block h3,
.panel h2,
.cta-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--primary-strong);
  margin-bottom: 10px;
}

.panel-feature {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 239, 228, 0.94));
  border: none;
  box-shadow: 0 20px 38px rgba(77, 51, 25, 0.12);
}

.panel-feature h2,
.cta-panel h2 {
  font-family: "Libre Baskerville", serif;
  color: #7d2417;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(142, 95, 48, 0.16), rgba(84, 114, 76, 0.14));
  color: #6c150e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.feature-list li:hover .feature-icon {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(180deg, rgba(125, 36, 23, 0.18), rgba(108, 21, 14, 0.12));
  color: #7d2417;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 18px rgba(108, 21, 14, 0.12);
}

.feature-list li span:last-child {
  color: #5b4437;
  font-size: 1.12rem;
  line-height: 1.58;
}

.cta-panel {
  text-align: center;
  border: none;
  box-shadow: 0 20px 38px rgba(77, 51, 25, 0.12);
}

.cta-panel p {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.14rem;
  line-height: 1.62;
}

.cta-panel .button-row {
  justify-content: center;
}

.cta-panel .btn,
.cta-panel .btn-secundario {
  background: #6c150e;
  color: #fff8f2;
}

.cta-panel .btn:hover,
.cta-panel .btn-secundario:hover {
  background: #571008;
}

.card ul,
.article-card ul,
.content-block ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(139, 94, 52, 0.09);
  color: var(--primary-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form-section {
  padding: 64px 0;
  background: #f4ede2;
}

.contact-form-grid {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.contact-form-copy h2 {
  margin-bottom: 14px;
  color: #7d2417;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-style: italic;
  line-height: 1.04;
}

.contact-form-copy p {
  color: #5f4d43;
  font-size: 1.04rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  padding: 20px;
  border: 1px solid rgba(143, 27, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.94);
  box-shadow: 0 22px 44px rgba(63, 34, 18, 0.12);
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: #7d2417;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(143, 27, 18, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #31241b;
  font: inherit;
  outline: none;
  padding: 10px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: #8f1b12;
  background: #fffdfa;
  box-shadow: 0 0 0 3px rgba(143, 27, 18, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.form-submit,
.form-whatsapp {
  border: 0;
  cursor: pointer;
}

.form-whatsapp {
  background: #2f6f3e;
  color: #fff;
}

.form-whatsapp:hover {
  background: #255b32;
}

.full-map-section {
  width: 100%;
  margin-top: 0;
  line-height: 0;
  background: #e6d8c4;
}

.full-map-section iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  border: 0;
}

.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(28, 13, 8, 0.72);
  opacity: 0;
  animation: popupBackdropIn 0.55s ease forwards;
}

.popup-modal[hidden] {
  display: none !important;
}

.popup-modal.is-closing {
  animation: popupBackdropOut 0.42s ease forwards;
}

.popup-dialog {
  position: relative;
  width: min(92vw, 620px);
  max-height: min(86vh, 820px);
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.96);
  animation: popupDialogIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.popup-modal.is-closing .popup-dialog {
  animation: popupDialogOut 0.38s ease forwards;
}

.popup-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f6eedf;
  box-shadow: 0 28px 70px rgba(18, 8, 5, 0.34);
}

.popup-slide {
  display: none;
}

.popup-slide.is-active {
  display: block;
}

.popup-slide img {
  width: 100%;
  max-height: min(82vh, 780px);
  object-fit: contain;
  background: #f6eedf;
}

.popup-close,
.popup-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.popup-close {
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7d2417;
  color: #fff7ef;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(18, 8, 5, 0.24);
}

.popup-nav {
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  background: rgba(125, 36, 23, 0.92);
  color: #fff7ef;
  font-size: 34px;
  line-height: 1;
}

.popup-nav--prev {
  left: 12px;
}

.popup-nav--next {
  right: 12px;
}

.popup-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.popup-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.58);
  cursor: pointer;
}

.popup-dot.is-active {
  width: 28px;
  background: #fff7ef;
}

@keyframes popupBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes popupBackdropOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes popupDialogIn {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes popupDialogOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -22px, 0) scale(0.98);
  }
}

.anta-slider-page .contact-form-section {
  padding-bottom: 0;
  background: transparent;
}

.anta-slider-page .contact-form-grid {
  width: 100%;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--primary-strong);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 20px;
  margin-top: 30px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.side-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.cta-panel {
  background:
    linear-gradient(160deg, rgba(139, 94, 52, 0.12), rgba(84, 114, 76, 0.1)),
    var(--surface-strong);
}

.cta-panel p {
  max-width: 56ch;
}

.info-card strong {
  color: var(--primary-strong);
}

.subpage {
  --subpage-color: #8f1b12;
  --subpage-strong: #6f160f;
  --subpage-soft: rgba(143, 27, 18, 0.1);
  --subpage-line: rgba(143, 27, 18, 0.16);
  --subpage-hero-image: url("../img/somos-kay-pacha.jpg");
  --subpage-hero-position: center;
}

.subpage-huaraz {
  --subpage-hero-image: url("../img/huaraz/slider/recreo kay pacha huaraz.jpg");
}

.subpage-anta {
  --subpage-hero-image: url("../img/anta/slider/tu-evento-nuestra-casa-kay-pacha-anta.jpg");
}

.subpage-blog {
  --subpage-hero-image: url("../img/huaraz/slider/el-mejore-restaurant-huraz-kay-pacha.jpg");
}

.subpage-main {
  --subpage-hero-image: url("../img/Recreo-kay-pacha.jpg");
}

.page-huaraz-restaurante {
  --subpage-hero-image: url("../img/huaraz/slider/recreo kay pacha huaraz.jpg");
  --subpage-hero-position: center;
}

.page-huaraz-almorzar {
  --subpage-hero-image: url("../img/huaraz/galerias-lider/arroz-con-pato.jpg");
  --subpage-hero-position: center 46%;
}

.page-huaraz-comida-andina {
  --subpage-hero-image: url("../img/huaraz/galerias-lider/lechon-al-carbon.png");
  --subpage-hero-position: center 48%;
}

.page-huaraz-carta {
  --subpage-hero-image: url("../img/huaraz/carta/humitas-de-chocolate.jpg");
  --subpage-hero-position: center 46%;
}

.page-huaraz-reservas {
  --subpage-hero-image: url("../img/huaraz/slider/visita-recreo-kay-pacha-huaraz.jpg");
  --subpage-hero-position: center;
}

.page-huaraz-ubicacion {
  --subpage-hero-image: url("../img/huaraz/slider/el-mejore-restaurant-huraz-kay-pacha.jpg");
  --subpage-hero-position: center;
}

.page-anta-recreo {
  --subpage-hero-image: url("../img/anta/galerias-slider/recreo-turistico-callejon-de-huaylas.jpg");
  --subpage-hero-position: center;
}

.page-anta-aeropuerto {
  --subpage-hero-image: url("../img/anta/slider/kaya-pacha-anta-restaurant-cerca-ala-aeropuerto.jpg");
  --subpage-hero-position: center;
}

.page-anta-almuerzo-campestre {
  --subpage-hero-image: url("../img/anta/carta/comidas-ricas-en-callejon-de-huaylas.jpg");
  --subpage-hero-position: center 48%;
}

.page-anta-eventos {
  --subpage-hero-image: url("../img/anta/slider/tu-evento-nuestra-casa-kay-pacha-anta.jpg");
  --subpage-hero-position: center;
}

.page-anta-carta {
  --subpage-hero-image: url("../img/anta/slider/Sabores-que-nos-representan.jpg");
  --subpage-hero-position: center 46%;
}

.page-anta-ubicacion {
  --subpage-hero-image: url("../img/anta/galerias-slider/recreo-turistico-callejon-de-huaylas.jpg");
  --subpage-hero-position: center;
}

.page-blog,
.page-blog-donde-comer-huaraz {
  --subpage-hero-image: url("../img/huaraz/slider/el-mejore-restaurant-huraz-kay-pacha.jpg");
}

.page-blog-anta-familia {
  --subpage-hero-image: url("../img/anta/slider/Vive-la-experiencia-Kay-Pacha-en-Anta.jpg");
}

.page-blog-aeropuerto-anta {
  --subpage-hero-image: url("../img/anta/slider/kaya-pacha-anta-restaurant-cerca-ala-aeropuerto.jpg");
}

.page-contacto {
  --subpage-hero-image: url("../img/Recreo-kay-pacha.jpg");
}

.page-reserva {
  --subpage-hero-image: url("../img/huaraz/slider/recreo-kay-pacha-lo-mejor-huaraz.jpg");
}

.subpage main.page-shell {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(244, 237, 226, 0.98), rgba(238, 228, 213, 0.96)),
    radial-gradient(circle at 50% 0, rgba(143, 27, 18, 0.08), transparent 36%);
}

body.subpage:not(.home-page) main.page-shell {
  padding-top: 0;
}

.subpage main.page-shell > .contenedor {
  position: relative;
  width: 100%;
  margin: 0;
}

.subpage .page-shell > .contenedor > .breadcrumb,
.subpage .page-shell > .contenedor > .content-layout,
.subpage .page-shell > .contenedor > .section {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.subpage .breadcrumb {
  position: absolute;
  top: 116px;
  left: max(24px, calc((100vw - 1160px) / 2));
  z-index: 2;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 247, 236, 0.38);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 247, 236, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: none;
}

.subpage .breadcrumb a {
  color: #fff7ec;
}

.subpage .hero {
  width: 100%;
  min-height: clamp(560px, 72vh, 760px);
  margin: 0 0 68px;
  padding: clamp(150px, 14vw, 220px) max(24px, calc((100vw - 1160px) / 2)) clamp(96px, 8vw, 138px);
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(42, 18, 12, 0.2), rgba(42, 18, 12, 0.42)),
    var(--subpage-hero-image) var(--subpage-hero-position) / cover fixed;
  box-shadow: none;
}

.subpage .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 247, 236, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(143, 27, 18, 0.14), rgba(143, 27, 18, 0.08) 48%, rgba(36, 18, 12, 0.08));
}

.subpage .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: 84px;
  background: #f4ede2;
  clip-path: polygon(0 42%, 50% 78%, 100% 12%, 100% 100%, 0 100%);
}

.subpage .hero > * {
  position: relative;
  z-index: 1;
}

.subpage .hero .eyebrow {
  margin-bottom: 18px;
  border: 1px solid rgba(255, 247, 236, 0.28);
  background: rgba(255, 247, 236, 0.12);
  color: #fff7ec;
  box-shadow: 0 10px 22px rgba(38, 16, 12, 0.14);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.subpage .hero h1,
.subpage .hero h2 {
  max-width: min(760px, 100%);
  margin: 0 auto 14px;
  color: #fff7ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 10px 18px rgba(26, 10, 6, 0.24);
  letter-spacing: -0.02em;
}

.subpage .hero p,
.subpage .hero-copy p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 247, 236, 0.9);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.58;
}

.subpage .hero .button-row,
.subpage .hero .hero-actions {
  justify-content: center;
}

.subpage .hero .btn,
.subpage .hero .btn-secundario {
  background: var(--subpage-color);
  color: #fff7ec;
  box-shadow: 4px 4px 0 rgba(26, 10, 6, 0.42);
  padding: 12px 18px;
  min-height: 48px;
}

.subpage .hero .btn:hover,
.subpage .hero .btn-secundario:hover {
  background: var(--subpage-strong);
}

.subpage .hero .btn-outline {
  border-color: rgba(255, 247, 236, 0.38);
  background: rgba(255, 247, 236, 0.14);
  color: #fff7ec;
  backdrop-filter: none;
  padding: 12px 18px;
  min-height: 48px;
}

.page-anta-carta .hero {
  min-height: clamp(520px, 66vh, 690px);
  padding-top: clamp(136px, 12vw, 186px);
  padding-bottom: clamp(84px, 7vw, 110px);
}

.page-anta-carta .hero h1,
.page-anta-carta .hero h2 {
  max-width: min(720px, 100%);
  font-size: clamp(24px, 2.25vw, 34px);
}

.page-anta-carta .hero .button-row {
  gap: 12px;
  margin-top: 22px;
}

.page-anta-carta .hero .btn,
.page-anta-carta .hero .btn-outline,
.page-anta-carta .hero .btn-secundario {
  font-size: 0.98rem;
}

.subpage .hero .btn-outline:hover {
  border-color: #fff7ec;
  background: rgba(255, 247, 236, 0.22);
}

.subpage .content-layout,
.subpage .section {
  margin-top: 0;
  margin-bottom: 76px;
}

.subpage .content-block,
.subpage .panel,
.subpage .card,
.subpage .article-card,
.subpage .faq-card,
.subpage .side-card,
.subpage .cta-panel {
  position: relative;
  overflow: hidden;
  border-color: var(--subpage-line);
  border-top: 4px solid rgba(143, 27, 18, 0.26);
  border-radius: 8px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: 0 22px 44px rgba(63, 34, 18, 0.12);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.subpage .content-block::before,
.subpage .panel::before,
.subpage .card::before,
.subpage .article-card::before,
.subpage .faq-card::before,
.subpage .side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 45%);
  pointer-events: none;
}

.subpage .content-block:hover,
.subpage .panel:hover,
.subpage .card:hover,
.subpage .article-card:hover,
.subpage .faq-card:hover,
.subpage .side-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--subpage-color);
  background: rgba(255, 251, 244, 0.98);
  box-shadow: 0 30px 58px rgba(63, 34, 18, 0.18);
}

.subpage .content-block > *,
.subpage .panel > *,
.subpage .card > *,
.subpage .article-card > *,
.subpage .faq-card > *,
.subpage .side-card > * {
  position: relative;
  z-index: 1;
}

.subpage .card h3,
.subpage .article-card h3,
.subpage .faq-card h3,
.subpage .content-block h2,
.subpage .content-block h3,
.subpage .panel h2,
.subpage .cta-panel h2,
.subpage .side-card h3 {
  color: var(--subpage-color);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
}

.subpage .content-block p,
.subpage .panel p,
.subpage .card p,
.subpage .article-card p,
.subpage .faq-card p,
.subpage .side-card p,
.subpage .plain-list,
.subpage .check-list,
.subpage .faq-list {
  color: #5f4d43;
  font-size: 1.02rem;
  line-height: 1.72;
}

.subpage .hero-list li::before,
.subpage .check-list li::before,
.subpage .faq-list li::before {
  background: linear-gradient(135deg, var(--subpage-color), var(--subpage-strong));
}

.subpage .tag {
  background: var(--subpage-soft);
  color: var(--subpage-color);
}

.subpage .btn,
.subpage .btn-secundario {
  background: var(--subpage-color);
  color: #fff7ec;
}

.subpage .btn:hover,
.subpage .btn-secundario:hover {
  background: var(--subpage-strong);
}

.subpage .btn-outline {
  border-color: rgba(143, 27, 18, 0.18);
  color: var(--subpage-color);
  background: rgba(255, 251, 244, 0.84);
}

.subpage .btn-outline:hover {
  border-color: var(--subpage-color);
  background: var(--subpage-soft);
}

.subpage .side-stack .side-card:first-child {
  background:
    linear-gradient(180deg, rgba(143, 27, 18, 0.98), rgba(111, 22, 15, 0.98));
  color: #fff7ec;
}

.subpage .side-stack .side-card:first-child h3,
.subpage .side-stack .side-card:first-child a,
.subpage .side-stack .side-card:first-child li,
.subpage .side-stack .side-card:first-child p {
  color: #fff7ec;
}

.page-anta-carta .anta-menu-editorial {
  display: grid;
  gap: 34px;
}

.page-anta-carta .anta-menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: center;
}

.page-anta-carta .anta-menu-copy h2 {
  margin-top: 12px;
  color: var(--subpage-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.15vw, 34px);
  font-style: italic;
  line-height: 1.12;
  max-width: 100%;
}

.page-anta-carta .anta-menu-copy p {
  margin-top: 14px;
  max-width: 100%;
  color: #5f4d43;
  font-size: 0.98rem;
  line-height: 1.66;
  text-align: justify;
  text-wrap: pretty;
}

.page-anta-carta .anta-menu-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-anta-carta .anta-menu-visual-card {
  overflow: hidden;
  min-height: 280px;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(63, 34, 18, 0.12);
}

.page-anta-carta .anta-menu-visual-card img,
.page-anta-carta .anta-menu-visual-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-anta-carta .anta-menu-visual-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(143, 27, 18, 0.18), rgba(201, 158, 104, 0.22));
  color: #7d2417;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
}

.page-anta-carta .anta-menu-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 68px 0 72px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(23, 13, 10, 0.42), rgba(23, 13, 10, 0.58)),
    linear-gradient(135deg, rgba(255, 252, 248, 0.02), rgba(255, 245, 233, 0.04)),
    url("../img/anta/galerias-slider/mejor-restaurant-en-anta-kay-pacha.jpg") center 42% / cover no-repeat;
  box-shadow: inset 0 12px 28px rgba(63, 34, 18, 0.08);
  will-change: background-position;
}

.page-anta-carta .anta-menu-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(108, 21, 14, 0.18), rgba(36, 18, 12, 0.24)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.page-anta-carta .anta-menu-showcase > * {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.page-anta-carta .anta-menu-tabs-stage {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-anta-carta .anta-menu-nav {
  position: relative;
  top: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  text-align: center;
}

.page-anta-carta .anta-menu-nav h3,
.page-anta-carta .anta-menu-sidecard h3 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.06;
}

.page-anta-carta .anta-menu-nav .eyebrow {
  margin-bottom: 0;
  background: rgba(255, 248, 236, 0.2);
  color: #fffaf4;
  border: 1px solid rgba(255, 248, 236, 0.34);
  box-shadow: 0 10px 22px rgba(25, 13, 9, 0.12);
}

.page-anta-carta .anta-menu-nav p {
  margin-top: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 240, 0.96);
  font-size: clamp(1rem, 1.32vw, 1.12rem);
  line-height: 1.42;
  text-wrap: balance;
}

.page-anta-carta .anta-menu-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.page-anta-carta .anta-menu-tab-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 0;
  padding: 7px 12px;
  border: 1px solid rgba(255, 246, 236, 0.36);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.94);
  color: #6f160f;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.15;
  min-height: 34px;
  white-space: normal;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(25, 13, 9, 0.06);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.page-anta-carta .anta-menu-tab-button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: rgba(143, 27, 18, 0.06);
  color: var(--subpage-color);
  flex: 0 0 18px;
  font-size: 0.6rem;
}

.page-anta-carta .anta-menu-tab-button:hover,
.page-anta-carta .anta-menu-tab-button.is-active {
  transform: translateY(-1px);
  color: #fff7ef;
  border-color: rgba(108, 21, 14, 0.94);
  background: rgba(108, 21, 14, 0.94);
  box-shadow: 0 8px 18px rgba(63, 34, 18, 0.08);
}

.page-anta-carta .anta-menu-tab-button[aria-selected="true"] {
  border-color: rgba(108, 21, 14, 0.94);
}

.page-anta-carta .anta-menu-tab-button:hover i,
.page-anta-carta .anta-menu-tab-button.is-active i {
  background: rgba(255, 248, 242, 0.18);
  color: #fff7ef;
}

.page-anta-carta .anta-menu-tabs-stage {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-anta-carta .anta-menu-tabs-stage.is-switching {
  opacity: 0.8;
  transform: translateY(8px) scale(0.995);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.page-anta-carta .anta-menu-panel {
  display: none;
}

.page-anta-carta .anta-menu-panel.is-active {
  display: block;
  animation: menuPanelFade 0.32s ease;
}

@keyframes menuPanelFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.page-anta-carta .anta-menu-panel-body {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-anta-carta .anta-menu-panel-body::before {
  display: none;
}

.page-anta-carta .anta-menu-panel-body::after {
  display: none;
}

.page-anta-carta .anta-menu-sidecard {
  width: var(--container);
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 12px 0 0;
}

.page-anta-carta .anta-menu-sidecard .eyebrow {
  margin-bottom: 0;
}

.page-anta-carta .anta-menu-sidecard h3 {
  margin-top: 14px;
  margin-bottom: 18px;
}

.page-anta-carta .anta-menu-panel-headline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.page-anta-carta .anta-menu-panel-titleblock {
  min-width: 0;
}

.page-anta-carta .anta-menu-panel-headline h4 {
  margin-top: 0;
  color: #fff8ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.25vw, 2.1rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.page-anta-carta .anta-menu-panel-headline p {
  max-width: 900px;
  margin-top: 10px;
  color: rgba(255, 248, 240, 0.98);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.42;
  text-wrap: balance;
}

.page-anta-carta .anta-menu-panel-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  align-self: flex-end;
  margin-top: 14px;
  padding: 8px 12px;
  min-height: 0;
  border-radius: 999px;
  background: rgba(108, 21, 14, 0.94);
  border-color: rgba(108, 21, 14, 0.94);
  color: #fff7ef;
  flex-shrink: 0;
  font-size: 0.86rem;
  box-shadow: 0 10px 18px rgba(25, 13, 9, 0.06);
}

.page-anta-carta .anta-menu-panel-pdf:hover {
  background: rgba(88, 16, 10, 0.98);
  border-color: rgba(88, 16, 10, 0.98);
  color: #fff7ef;
}

.page-anta-carta .anta-menu-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}

.page-anta-carta .anta-menu-item {
  position: relative;
  padding: 14px 14px 13px;
  border: 1px solid rgba(143, 27, 18, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.94), rgba(250, 241, 231, 0.92));
  box-shadow: 0 10px 20px rgba(25, 13, 9, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  isolation: isolate;
  overflow: hidden;
}

.page-anta-carta .anta-menu-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(250, 241, 231, 0.9)),
    var(--anta-panel-image) center center / cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.28s ease, transform 0.4s ease;
  z-index: 0;
}

.page-anta-carta .anta-menu-item > * {
  position: relative;
  z-index: 1;
}

.page-anta-carta .anta-menu-item:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 27, 18, 0.2);
  box-shadow: 0 8px 18px rgba(63, 34, 18, 0.05);
}

.page-anta-carta .anta-menu-item:hover::before {
  opacity: 0.18;
  transform: scale(1);
}

.page-anta-carta .anta-menu-item-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.page-anta-carta .anta-menu-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(191, 138, 128, 0.42);
  border-radius: 10px;
  background: rgba(255, 248, 242, 0.66);
  color: #8b2418;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 0.26s ease, background 0.26s ease, color 0.26s ease, box-shadow 0.26s ease;
}

.page-anta-carta .anta-menu-item-icon i {
  font-size: 1rem;
}

.page-anta-carta .anta-menu-item-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(183, 127, 114, 0.28);
  transition: transform 0.26s ease, color 0.26s ease;
}

.page-anta-carta .anta-menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.page-anta-carta .anta-menu-item-head h5 {
  color: #7b2417;
  font-size: 1.02rem;
  line-height: 1.28;
  transition: color 0.24s ease;
}

.page-anta-carta .anta-menu-item-head span {
  color: var(--subpage-color);
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
}

.page-anta-carta .anta-menu-item p {
  color: #5f4d43;
  font-size: 0.94rem;
  line-height: 1.66;
}

.page-anta-carta .anta-menu-item:hover .anta-menu-item-head h5 {
  color: #5d160d;
}

.page-anta-carta .anta-menu-item:hover .anta-menu-item-icon {
  transform: translateY(-1px);
  background: rgba(108, 21, 14, 0.08);
  color: #6c150e;
  box-shadow: 0 10px 18px rgba(63, 34, 18, 0.06);
}

.page-anta-carta .anta-menu-item:hover .anta-menu-item-number {
  transform: translateY(-1px);
  color: rgba(183, 127, 114, 0.42);
}

.page-anta-carta .anta-menu-item-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.page-anta-carta .anta-menu-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(143, 27, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
}

.page-anta-carta .anta-menu-qty-btn {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(108, 21, 14, 0.08);
  color: #6c150e;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-anta-carta .anta-menu-qty-btn:hover {
  background: rgba(108, 21, 14, 0.9);
  color: #fff7ef;
  transform: translateY(-1px);
}

.page-anta-carta .anta-menu-qty-value {
  min-width: 14px;
  text-align: center;
  font-weight: 800;
  color: #6c150e;
}

.page-anta-carta .anta-menu-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: #1f9d58;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(31, 157, 88, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.page-anta-carta .anta-menu-add-btn:hover {
  transform: translateY(-1px);
  background: #17854a;
  box-shadow: 0 12px 20px rgba(31, 157, 88, 0.24);
}

.page-anta-carta .anta-menu-featured-list {
  display: grid;
  gap: 16px;
  padding: 28px 30px;
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(143, 27, 18, 0.1);
  box-shadow: 0 18px 34px rgba(63, 34, 18, 0.08);
}

.page-anta-carta .anta-menu-featured-item {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(143, 27, 18, 0.12);
}

.page-anta-carta .anta-menu-featured-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-anta-carta .anta-menu-featured-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
}

.page-anta-carta .anta-menu-featured-head h4 {
  color: #2f241e;
  font-size: 1.08rem;
}

.page-anta-carta .anta-menu-featured-head span {
  color: var(--subpage-color);
  font-weight: 800;
}

.page-anta-carta .anta-menu-featured-item p {
  color: #5f4d43;
  font-size: 0.98rem;
  line-height: 1.68;
}

.page-anta-carta .anta-menu-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}

.page-anta-carta .anta-menu-ordercard {
  width: var(--container);
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 8px 0 0;
}

.page-anta-carta .anta-menu-ordercard p {
  max-width: 68ch;
  color: #5f4d43;
}

.page-anta-carta .anta-menu-cart-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(143, 27, 18, 0.1);
  box-shadow: 0 18px 34px rgba(63, 34, 18, 0.08);
}

.page-anta-carta .anta-menu-cart-empty {
  color: #7a665c;
}

.page-anta-carta .anta-menu-cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(143, 27, 18, 0.1);
}

.page-anta-carta .anta-menu-cart-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-anta-carta .anta-menu-cart-row strong {
  color: #7b2417;
}

.page-anta-carta .anta-menu-cart-meta {
  color: #6c150e;
  font-weight: 700;
  white-space: nowrap;
}

.page-anta-carta .anta-menu-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.page-anta-carta .anta-menu-cart-floating {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 18px 34px rgba(25, 13, 9, 0.16);
  border: 1px solid rgba(143, 27, 18, 0.12);
}

.page-anta-carta .anta-menu-cart-floating[hidden] {
  display: none;
}

.page-anta-carta .anta-menu-cart-floating-main,
.page-anta-carta .anta-menu-cart-floating-send {
  border: 0;
  cursor: pointer;
}

.page-anta-carta .anta-menu-cart-floating-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(108, 21, 14, 0.08);
  color: #6c150e;
  font-weight: 800;
}

.page-anta-carta .anta-menu-cart-floating-main i {
  color: #1f9d58;
  font-size: 1.05rem;
}

.page-anta-carta .anta-menu-cart-floating-send {
  padding: 10px 14px;
  border-radius: 14px;
  background: #1f9d58;
  color: #fff;
  font-weight: 800;
}

.page-anta-carta .anta-menu-cart-floating-send:hover,
.page-anta-carta .anta-menu-cart-floating-main:hover {
  transform: translateY(-1px);
}

.footer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(34px, 5vw, 68px);
  padding-top: clamp(14px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(246, 238, 223, 0.72) 0%, rgba(246, 238, 223, 0.84) 36%, rgba(246, 238, 223, 0.9) 100%),
    linear-gradient(90deg, rgba(246, 238, 223, 0.88), rgba(246, 238, 223, 0.76)),
    url("../img/huaraz/galerias-lider/arroz-con-pato.jpg") center 54% / cover no-repeat,
    #f6eedf;
  color: #5b4437;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
  padding: clamp(58px, 7vw, 86px) 0 clamp(54px, 6vw, 76px);
}

.footer-visit h2,
.footer-branding h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 0.95;
  color: #7d2417;
}

.footer-visit h2 {
  margin-bottom: 28px;
  text-align: left;
}

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

.footer-location {
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(125, 36, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 18px 36px rgba(77, 51, 25, 0.08);
}

.footer-location h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: #7d2417;
}

.footer-location p,
.footer-location a {
  display: block;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2f241b;
  text-decoration: none;
}

.footer-location a:hover {
  color: #6c150e;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 26px 24px 30px;
  border-left: 1px solid rgba(125, 36, 23, 0.12);
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 24px;
}

.footer-brand img {
  width: min(100%, 260px);
  height: auto;
}

.footer-branding h3 {
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7d2417;
  color: #fff7ef;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(90, 34, 23, 0.14);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #5f180e;
  box-shadow: 0 16px 28px rgba(90, 34, 23, 0.18);
}

.footer-social i {
  font-size: 1.32rem;
}

.footer-social-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 0 0 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(47, 36, 27, 0.74);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.floating-whatsapp,
.back-to-top {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(31, 18, 12, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 22px;
  background: linear-gradient(180deg, #28d267, #159947);
  color: #fff;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 38px rgba(21, 153, 71, 0.28);
}

.floating-whatsapp i {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
}

.floating-whatsapp-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(40, 210, 103, 0.34);
  border-radius: 50%;
  animation: whatsappPulse 1.9s ease-out infinite;
}

.back-to-top {
  position: fixed;
  right: 22px !important;
  left: auto;
  bottom: 22px;
  background: rgba(255, 249, 241, 0.18);
  color: #7d2417;
  border: 1px solid rgba(125, 36, 23, 0.18);
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(90, 34, 23, 0.22);
  background: rgba(255, 249, 241, 0.9);
  color: #5f180e;
}

.back-to-top i {
  font-size: 1.18rem;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.92);
  }

  70% {
    opacity: 0;
    transform: scale(1.24);
  }

  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (max-width: 980px) {
  .about-kay-pacha-grid,
  .locations-parallax-grid,
  .footer-grid,
  .page-anta-carta .anta-menu-intro,
  .hero-split,
  .content-layout,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-top: clamp(30px, 7vw, 58px);
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-visit h2 {
    text-align: center;
  }

  .footer-branding {
    border-left: 0;
    border-top: 1px solid rgba(125, 36, 23, 0.12);
    padding-top: 34px;
  }

  .intro-card,
  .menu-promo-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .huaraz-slider-page .intro-card,
  .huaraz-slider-page .menu-promo-grid,
  .anta-slider-page .menu-promo-grid {
    grid-template-columns: 1fr;
  }

  .huaraz-slider-page .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anta-slider-page .cluster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-anta-carta .anta-menu-visual-card {
    min-height: 240px;
  }

  .page-anta-carta .anta-menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-anta-carta .anta-menu-panel-headline {
    align-items: start;
  }

  .page-anta-carta .anta-menu-nav-links {
    gap: 8px;
  }

  .page-anta-carta .anta-menu-ordercard {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 760px) {
  .topbar .contenedor,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .header .contenedor {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .brand-logo {
    width: clamp(138px, 35vw, 176px);
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
    padding: 16px;
    border-radius: 22px;
    background: #fffaf4;
    border: 1px solid rgba(124, 76, 42, 0.12);
    box-shadow: 0 18px 40px rgba(46, 28, 16, 0.14);
    order: 3;
  }

  .header.menu-open .menu {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 10px 4px 12px;
    border-radius: 0;
  }

  .menu a::after {
    left: 0;
    right: 0;
    bottom: 2px;
  }

  .menu-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-dropdown::after {
    display: none;
  }

  .menu-dropdown-trigger {
    width: 100%;
    padding: 10px 4px 12px;
    border-radius: 0;
    justify-content: space-between;
  }

  .menu-dropdown-trigger::after {
    left: 0;
    right: 0;
    bottom: 2px;
  }

  .menu-submenu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    padding: 8px 0 0 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .menu-submenu a {
    padding: 8px 0 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .menu-submenu a::after {
    left: 0;
    right: 0;
    bottom: 2px;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
    flex-direction: row;
    align-items: center;
    border-top: none;
  }

  .lang-current {
    min-width: 92px;
    width: auto;
    justify-content: flex-start;
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 124px;
    display: block;
    margin-top: 0;
    padding: 8px;
    border: 1px solid rgba(139, 94, 52, 0.12);
    border-radius: 22px;
    background: #fffaf4;
    box-shadow: 0 18px 44px rgba(46, 28, 16, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
  }

  .lang-menu::before {
    display: block;
  }

  .lang-menu a {
    text-align: left;
    background: transparent;
  }

  .hero,
  .hero-split,
  .card,
  .article-card,
  .faq-card,
  .panel,
  .cta-panel,
  .content-block,
  .side-card,
  .hero-aside {
    padding: 20px;
  }

  .hero h1,
  .hero h2 {
    max-width: none;
  }

  .hero-slider--full {
    min-height: clamp(560px, 92svh, 820px);
  }

  .huaraz-slider-page .hero-slider--full,
  .anta-slider-page .hero-slider--full {
    min-height: clamp(560px, 92svh, 820px);
  }

  .hero-slide-copy {
    left: 24px;
    right: 24px;
    bottom: 120px;
    max-width: 100%;
  }

  .hero-slide-copy h1 {
    max-width: min(460px, 100%);
    font-size: 40px;
  }

  .hero-slide-copy p {
    max-width: 260px;
    font-size: 20px;
  }

  .subpage .breadcrumb {
    top: 108px;
    left: 18px;
    right: 18px;
    max-width: none;
    font-size: 0.82rem;
  }

  .subpage .hero {
    min-height: 620px;
    padding: 152px 22px 104px;
    background-attachment: scroll;
  }

  .subpage .hero h1,
  .subpage .hero h2 {
    font-size: 34px;
  }

  .page-anta-carta .anta-menu-copy h2 {
    font-size: 34px;
  }

  .page-anta-carta .anta-menu-copy p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .page-anta-carta .anta-menu-showcase {
    padding: 56px 0 44px;
    background-position: center 24%;
  }

  .page-anta-carta .anta-menu-nav {
    padding: 0;
    border-radius: 0;
  }

  .page-anta-carta .anta-menu-tabs-stage {
    padding: 0;
    border-radius: 0;
  }

  .page-anta-carta .anta-menu-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
  }

  .page-anta-carta .anta-menu-tab-button {
    width: 100%;
    justify-content: center;
    padding: 9px 10px;
    text-align: center;
  }

  .page-anta-carta .anta-menu-panel-headline {
    flex-direction: column;
    align-items: start;
  }

  .page-anta-carta .anta-menu-panel-body {
    padding: 0;
  }

  .page-anta-carta .anta-menu-items {
    grid-template-columns: 1fr;
  }

  .page-anta-carta .anta-menu-sidecard {
    max-width: calc(100% - 32px);
    padding: 24px 0 0;
  }

  .page-anta-carta .anta-menu-item-actions,
  .page-anta-carta .anta-menu-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-anta-carta .anta-menu-ordercard {
    max-width: calc(100% - 32px);
  }

  .page-anta-carta .anta-menu-featured-list {
    padding: 22px 18px;
  }

  .slider-arrow--prev {
    left: 16px;
  }

  .slider-arrow--next {
    right: 16px;
  }

  .intro-card {
    padding: 26px;
  }

  .huaraz-slider-page .intro-section,
  .huaraz-slider-page .cards-section {
    padding-left: 0;
    padding-right: 0;
  }

  .huaraz-slider-page .intro-card {
    padding: 30px 22px;
    gap: 30px;
  }

  .huaraz-slider-page .intro-aside {
    padding: 28px 22px;
  }

  .huaraz-slider-page .feature-card {
    min-height: auto;
  }

  .huaraz-slider-page .intro-section,
  .huaraz-slider-page .cards-section {
    background-attachment: scroll;
  }

  .huaraz-slider-page .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .anta-slider-page .anta-content {
    padding: 58px 0 72px;
    background-attachment: scroll;
  }

  .anta-slider-page .anta-links-section::before,
  .anta-slider-page .anta-visit-section::before {
    background-attachment: scroll;
  }

  .huaraz-slider-page .hero-slide-copy,
  .anta-slider-page .hero-slide-copy {
    left: 28px;
    right: 28px;
    top: auto;
    bottom: 118px;
  }

  .anta-slider-page .cluster-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .anta-slider-page .cluster-grid .card {
    min-height: auto;
  }

  .showcase-track,
  .menu-promo-visuals,
  .reviews-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 48px 0;
  }

  .contact-form-grid {
    width: min(100% - 36px, 980px);
  }

  .contact-form {
    padding: 18px;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-submit,
  .form-whatsapp {
    width: 100%;
  }

  .huaraz-slider-page .menu-promo-copy h2,
  .anta-slider-page .menu-promo-copy h2 {
    font-size: 46px;
  }

  .quote-band blockquote {
    font-size: 28px;
  }

  .showcase-carousel {
    grid-template-columns: 1fr;
  }

  .showcase-arrow,
  .gallery-nav {
    display: none;
  }

  .venue-switch-cta {
    top: auto;
    right: 22px;
    bottom: 92px;
    max-width: min(300px, calc(100% - 44px));
    min-height: 52px;
    padding: 0 18px;
    transform: translate3d(0, 18px, 0) scale(0.96);
  }

  .venue-switch-cta.is-visible,
  .venue-switch-cta:hover {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .showcase-card,
  .menu-visual-card,
  .review-card {
    min-height: 340px;
  }

  .huaraz-slider-page .showcase-card,
  .anta-slider-page .showcase-card {
    flex-basis: 100%;
  }

  .review-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 239, 0.34);
  }

  .huaraz-slider-page .review-card {
    min-height: auto;
    padding: 48px 28px;
  }

  .gallery-modal {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .gallery-frame {
    max-width: 100%;
    max-height: calc(100vh - 100px);
  }

  .header-home {
    background: linear-gradient(180deg, rgba(244, 237, 226, 0.9) 0%, rgba(244, 237, 226, 0.62) 58%, rgba(244, 237, 226, 0) 100%);
  }

  .header-home .menu,
  .header-home.is-scrolled .menu {
    background: #fffaf4;
  }

  .video-banner,
  .video-banner-content {
    min-height: 72vh;
  }

  .video-banner-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .video-banner-copy h1,
  .video-banner-copy p {
    max-width: none;
  }

  .about-kay-pacha {
    padding-top: 24px;
  }

  .about-kay-pacha-quote {
    max-width: none;
    margin-bottom: 24px;
    padding: 0 22px;
    font-size: clamp(1.8rem, 7vw, 34px);
    text-align: center;
  }

  .about-kay-pacha-grid {
    gap: 22px;
  }

  .about-kay-pacha-copy {
    max-width: none;
    padding: 0 22px 0;
    text-align: center;
  }

  .about-kay-pacha-title {
    font-size: clamp(2.7rem, 12vw, 67px);
  }

  .about-kay-pacha-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .about-kay-pacha-copy p {
    font-size: clamp(1.05rem, 4vw, 22px);
  }

  .locations-parallax {
    padding: 68px 0;
  }

  .footer-grid {
    gap: 30px;
    padding: 52px 0 74px;
  }

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

  .footer-location {
    min-height: auto;
    padding: 22px;
  }

  .footer-brand img {
    width: min(100%, 230px);
  }

  .footer-visit h2,
  .footer-branding h3,
  .footer-branding {
    text-align: center;
  }

  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }

  .floating-whatsapp,
  .back-to-top {
    width: 54px;
    height: 54px;
    pointer-events: auto;
  }

  .floating-whatsapp {
    left: 16px;
    right: auto;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px !important;
    left: auto;
    bottom: 16px;
  }
}

/* Blog index cards */
.page-blog .article-grid.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-blog .article-card.blog-card {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 40px rgba(68, 52, 31, 0.10);
  border: 1px solid rgba(140, 110, 68, 0.12);
  display: flex;
  flex-direction: column;
}

.page-blog .blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 14px 14px 0;
  border-radius: 22px;
  background: #f2eee6;
}

.page-blog .blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.page-blog .blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.page-blog .blog-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #c8ea9d;
  color: #36551d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(50, 82, 23, 0.16);
}

.page-blog .blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}

.page-blog .blog-card__body h3 {
  margin-bottom: 8px;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.22;
  color: var(--ink);
  min-height: 2.7em;
}

.page-blog .blog-card__body p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.52;
}

.page-blog .blog-card__body .tag-row {
  margin-top: 14px;
}

.page-blog .blog-card__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 18px;
}

.page-blog .blog-card__link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #7d2417, #5f1b11);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(125, 36, 23, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-blog .blog-card__link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9a2f22, #6f1f14);
  color: #fffdf7;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(125, 36, 23, 0.32);
}
.page-blog .blog-card__link i {
  font-size: 0.95rem;
}
.page-blog .blog-card__arrow {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
  color: inherit;
  transform: translateY(-1px);
}
@media (max-width: 1100px) {
  .page-blog .article-grid.blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-blog .article-grid.blog-grid {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-card__body h3 {
    min-height: 0;
  }
}
.page-blog .blog-card__link:focus-visible {
  outline: 3px solid rgba(218, 169, 62, 0.42);
  outline-offset: 3px;
}
.page-blog .hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
