@import url("https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@500;600;700&family=Outfit:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap");

/* 01. Design Tokens */
:root {
  --green: #062A25;
  --offwhite: #F6F0E4;
  --sand: #E6CFA5;
  --black: #1A1A1A;
  --blue-night: #0A1F2C;
  --bugambilia: #FF1D86;
  --lime: #B7E000;
  --yellow: #FFEA00;
  --monte: #344A2E;
  --ochre: #C79A3B;
  --barro: #8A5A2B;
  --turquoise: #00BCD4;
  --orange: #F26B2B;
  --honey: #D4A85A;
  --line: rgba(246, 240, 228, .18);
  --line-dark: rgba(26, 26, 26, .16);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
  --tour-accent: var(--lime);
  --tour-dark: var(--green);
}

/* 02. Base */
html [hidden] {
  display: none !important;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--green);
  color: var(--offwhite);
}
body.home-page {
  background: var(--green);
}
body.needs-language-choice {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* 03. Header and Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(6,42,37,.96);
  color: var(--offwhite);
  border-bottom: 1px solid rgba(246,240,228,.18);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.brand-logo {
  order: 1;
}
.brand-logo img,
.brand-logo img[style] {
  display: block;
  height: clamp(34px, 3.6vw, 48px);
  width: auto;
  max-width: min(260px, 52vw);
}
.nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-family: "Source Sans 3", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.nav > a:not(.nav-cta),
.nav-cta,
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  height: auto;
  width: auto;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--offwhite);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: nowrap;
}
.nav > a:not(.nav-cta):hover,
.nav-dropdown[open] summary,
.nav-dropdown summary:hover {
  background: rgba(246,240,228,.10);
  color: var(--yellow);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary::after {
  content: "v";
  display: inline-block;
  margin-left: 6px;
  font-size: .86em;
  transform: translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 120;
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 9px;
  border: 1px solid rgba(246,240,228,.18);
  border-radius: 18px;
  background: rgba(6,42,37,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: transparent;
  color: var(--offwhite);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(246,240,228,.10);
  color: var(--yellow);
}
.nav-cta {
  background: var(--lime);
  color: var(--green);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.16);
}
.nav .nav-cta:hover { background: var(--yellow); color: var(--green); }
.language-switch {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: auto;
  padding: 4px;
  border: 1px solid rgba(246,240,228,.22);
  border-radius: 999px;
  background: rgba(246,240,228,.08);
}
.language-switch a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  color: var(--offwhite);
  font: 900 18px/1 "Source Sans 3", Inter, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.language-switch a.is-active {
  background: var(--lime);
  color: var(--green);
}
#respuesta-formulario {
  scroll-margin-top: 110px;
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 14px;
    padding: 13px 18px 14px;
    background: rgba(6,42,37,.98);
    border-bottom: 1px solid rgba(0,188,212,.72);
  }
  .site-header .brand-logo {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
  }
  .site-header .brand-logo img,
  .site-header .brand-logo img[style] {
    width: min(182px, 48vw);
    max-width: min(182px, 48vw);
    height: auto;
  }
  .site-header > .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    height: 42px;
    padding: 4px;
  }
  .site-header > .language-switch a {
    width: 40px;
    height: 34px;
    min-height: 34px;
    font-size: 14px;
  }
  .site-header .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    justify-self: stretch;
    align-items: center;
    margin-left: 0;
    overflow: visible;
  }
  .site-header .nav > a:not(.nav-cta),
  .site-header .nav-dropdown summary {
    min-height: 42px;
    height: 42px;
    width: 100%;
    padding: 0 8px;
    border: 1px solid rgba(246,240,228,.18);
    background: rgba(246,240,228,.07);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1;
    letter-spacing: 0;
  }
  .site-header .nav-dropdown {
    width: 100%;
  }
  .site-header .nav-dropdown summary::after {
    font-size: .9em;
    transform: none;
  }
  .site-header .nav-dropdown-menu {
    top: calc(100% + 8px);
    left: 50%;
    width: min(260px, calc(100vw - 36px));
    min-width: 0;
    margin: 0;
    transform: translateX(-50%);
    gap: 0;
    padding: 12px 20px;
    border: 1px solid rgba(246,240,228,.20);
    border-radius: 18px;
    background: rgba(6,42,37,.99);
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
  }
  .site-header .nav-dropdown-menu a {
    min-height: 64px;
    justify-content: flex-start;
    padding: 14px 22px;
    border-radius: 0;
    background: transparent;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 15px;
    text-align: left;
    white-space: normal;
  }
  #respuesta-formulario {
    scroll-margin-top: 155px;
  }
}

@media (max-width: 370px) {
  .site-header .nav > a:not(.nav-cta),
  .site-header .nav-dropdown summary {
    font-size: 12px;
    padding-inline: 5px;
  }
  .site-header .brand-logo img,
  .site-header .brand-logo img[style] {
    width: min(154px, 44vw);
  }
}

/* 04. Language Gate */
.language-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: start center;
  padding: clamp(28px, 8vh, 72px) 18px 18px;
  background:
    linear-gradient(135deg, rgba(6,42,37,.72), rgba(10,31,44,.66));
  backdrop-filter: blur(6px) saturate(1.08);
}
.language-gate-card {
  width: min(360px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(246,240,228,.28);
  border-radius: 999px;
  background: rgba(6,42,37,.66);
  color: var(--offwhite);
  box-shadow: 0 34px 100px rgba(0,0,0,.30);
}
.language-gate-card img,
.language-gate-card .eyebrow {
  display: none;
}
.language-gate-card h1 {
  margin: 0;
  color: rgba(246,240,228,.72);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.language-gate-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.language-gate-actions a {
  min-width: 72px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(246,240,228,.22);
  border-radius: 999px;
  background: rgba(246,240,228,.13);
  color: var(--offwhite);
}
.language-gate-actions a:hover {
  border-color: var(--lime);
  background: rgba(170,255,0,.12);
}
.language-gate-actions .flag {
  font-size: 17px;
  line-height: 1;
}
.language-gate-actions strong {
  font-size: 0;
}
.language-gate-actions a:first-child strong::after {
  content: "Esp";
  font-size: 15px;
}
.language-gate-actions a:nth-child(2) strong::after {
  content: "Eng";
  font-size: 15px;
}
.language-gate-actions small {
  display: none;
}
@media (max-width: 420px) {
  .language-gate-card {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr auto;
    padding: 10px;
  }
  .language-gate-card h1 {
    font-size: 10px;
  }
  .language-gate-actions a {
    min-width: 64px;
    min-height: 34px;
    padding: 0 9px;
  }
}

/* 05. Shared Layout and Components */
.hero-landing {
  position: relative;
  min-height: clamp(500px, 62vh, 720px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 6vw, 86px) clamp(30px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(6,42,37,.94) 0%, rgba(6,42,37,.82) 38%, rgba(10,31,44,.44) 68%, rgba(6,42,37,.78) 100%),
    linear-gradient(180deg, rgba(6,42,37,.12), rgba(6,42,37,.78)),
    var(--hero-image) center / cover no-repeat;
}
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 26%, rgba(183,224,0,.12), transparent 21%),
    radial-gradient(circle at 35% 11%, rgba(255,29,134,.20), transparent 16%),
    radial-gradient(circle at 88% 22%, rgba(0,188,212,.16), transparent 20%);
  pointer-events: none;
}
.hero-landing::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    radial-gradient(ellipse at 8% 8%, transparent 0 36%, var(--lime) 37% 37.8%, transparent 39%),
    radial-gradient(ellipse at 80% 88%, transparent 0 40%, var(--lime) 41% 41.6%, transparent 43%),
    radial-gradient(ellipse at 55% 18%, transparent 0 34%, var(--bugambilia) 35% 35.5%, transparent 37%);
  background-size: 520px 320px, 620px 380px, 460px 300px;
  background-position: left top, right bottom, center center;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--yellow);
}
.hero h1, .page-hero h1 {
  margin: 0 0 22px;
  max-width: 920px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .9;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.hero .lead, .page-hero p, .section-heading p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: rgba(246,240,228,.82);
}
.hero .lead { max-width: 620px; font-size: clamp(19px, 2vw, 24px); }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid var(--green);
  font-weight: 950;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .7; cursor: wait; transform: none; }
.button.primary { background: var(--lime); color: var(--green); border-color: var(--lime); }
.button.primary:hover { background: var(--yellow); border-color: var(--yellow); }
.button.secondary { color: var(--offwhite); background: transparent; border-color: rgba(246,240,228,.62); }
.button.secondary:hover { color: var(--bugambilia); border-color: var(--bugambilia); }
.button.full { width: 100%; margin-top: 18px; }
.button.small { min-height: 40px; padding: 9px 15px; font-size: 14px; }
.whatsapp-action { background: transparent; color: var(--green); border-color: var(--tour-accent); }
.whatsapp-action:hover { background: var(--tour-accent); color: var(--green); }
.wa-icon-img { width: 18px; height: 18px; object-fit: contain; flex: 0 0 auto; }
.inline-wa { width: 18px; height: 18px; }
.header-wa { width: 16px; height: 16px; }

.hero-tags {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin-top: clamp(28px, 5vw, 54px);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--offwhite);
  background: rgba(6,42,37,.58);
  border: 1.5px solid var(--lime);
  backdrop-filter: blur(7px);
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 14px 40px rgba(0,0,0,.20);
}
.hero-tag:hover { transform: translateY(-1px); background: rgba(6,42,37,.74); }
.tag-1 { border-color: var(--lime); }
.tag-2 { border-color: var(--orange); }
.tag-3 { border-color: var(--turquoise); }
.tag-4 { border-color: var(--yellow); }
.tag-5 { border-color: var(--turquoise); }
.tag-6 { border-color: var(--bugambilia); }
.tag-7 { border-color: var(--orange); }
.tag-8 { border-color: var(--bugambilia); }

.section { padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 920px; margin-bottom: 30px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.section-heading p { max-width: 920px; }

/* 06. Tour Cards and Shared Zones */
.zone-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}
.zone-tab {
  min-height: 48px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid rgba(246,240,228,.24);
  background: rgba(246,240,228,.08);
  color: var(--offwhite);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  letter-spacing: -.03em;
}
.zone-tab:nth-child(1) { border-color: var(--turquoise); }
.zone-tab:nth-child(2) { border-color: var(--lime); }
.zone-tab:nth-child(3) { border-color: var(--yellow); }
.zone-tab.is-active {
  background: var(--offwhite);
  color: var(--green);
  border-color: var(--offwhite);
}
.zone-panel { display: none; }
.zone-panel.is-active { display: block; }
.zone-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards, .quick-grid { display: grid; gap: 20px; }

.tour-card {
  --tour-accent: var(--lime);
  --tour-dark: var(--green);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background: var(--offwhite);
  color: var(--black);
  border: 1px solid rgba(246,240,228,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
}
.tour-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: var(--tour-accent);
}
.tour-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 100px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--tour-accent);
  opacity: .18;
  pointer-events: none;
}
.tour-media {
  position: relative;
  margin: -24px -24px 18px;
  overflow: hidden;
  border-radius: 20px 20px 18px 18px;
  aspect-ratio: 16 / 10;
  background: var(--sand);
}
.tour-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,42,37,.52));
  pointer-events: none;
}
.tour-media img { width: 100%; height: 100%; object-fit: cover; }
.card-topline {
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 950;
  color: var(--tour-dark);
}
.card-topline::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--tour-accent);
}
.tour-card h3 { margin: 0 0 10px; font-size: 30px; line-height: 1; letter-spacing: -.055em; }
.tour-card p { margin: 0 0 16px; color: rgba(26,26,26,.72); line-height: 1.5; }
.meta-list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 7px; font-size: 15px; color: rgba(26,26,26,.76); }
.meta-language-first {
  padding: 8px 10px;
  border: 1px solid rgba(0,188,212,.22);
  border-radius: 10px;
  background: rgba(0,188,212,.12);
}
.includes, .date-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.includes span, .date-chips span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(230,207,165,.56);
  border: 1px solid rgba(26,26,26,.08);
  font-size: 13px;
  font-weight: 850;
}
.includes span:first-child, .date-chips span:first-child { background: var(--tour-accent); color: var(--green); border-color: transparent; }
.date-chips { margin-top: 14px; }

#centro-historico { --tour-accent: var(--turquoise); --tour-dark: var(--blue-night); }
#tlatelolco-lagunilla { --tour-accent: var(--bugambilia); --tour-dark: var(--green); }
#water-freetour-xochimilco { --tour-accent: var(--lime); --tour-dark: var(--monte); }
#coyoacan-pulque-tacos { --tour-accent: var(--orange); --tour-dark: var(--barro); }
#revolucion { --tour-accent: var(--yellow); --tour-dark: var(--blue-night); }
#revolucion-santa-maria-la-ribera { --tour-accent: var(--yellow); --tour-dark: var(--blue-night); }
#xochimilco-amanecer { --tour-accent: var(--turquoise); --tour-dark: var(--blue-night); }
#xochimilco-matutino-desayuno { --tour-accent: var(--lime); --tour-dark: var(--monte); }
#xochimilco-vespertino { --tour-accent: var(--orange); --tour-dark: var(--barro); }
#xochimilco-temazcal { --tour-accent: var(--bugambilia); --tour-dark: var(--barro); }
#renta-trajineras-grupos { --tour-accent: var(--turquoise); --tour-dark: var(--monte); }
#teotihuacan-grupo,
#tres-culturas-teotihuacan-basilica { --tour-accent: var(--yellow); --tour-dark: var(--blue-night); }

.booking-steps {
  background:
    radial-gradient(circle at 8% 18%, rgba(255,234,0,.18), transparent 20%),
    linear-gradient(135deg, var(--monte), var(--green));
  color: var(--offwhite);
  border-top: 6px solid var(--bugambilia);
}
.quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quick-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  background: rgba(246,240,228,.08);
  border: 1px solid rgba(246,240,228,.16);
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
}
.quick-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background: var(--lime);
}
.quick-grid article:nth-child(2)::before { background: var(--turquoise); }
.quick-grid article:nth-child(3)::before { background: var(--bugambilia); }
.quick-grid strong { display: block; font-size: 25px; letter-spacing: -.04em; }
.quick-grid p { color: rgba(246,240,228,.76); line-height: 1.5; }

/* 07. Reservation and Checkout */
.page-hero {
  padding: clamp(46px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(28px, 6vw, 66px);
  background:
    radial-gradient(circle at 86% 18%, rgba(255,29,134,.24), transparent 20%),
    radial-gradient(circle at 18% 4%, rgba(183,224,0,.22), transparent 18%),
    linear-gradient(135deg, var(--blue-night), var(--green));
  color: var(--offwhite);
  border-bottom: 6px solid var(--turquoise);
}
.page-hero h1 { color: var(--offwhite); }
.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,234,0,.22), transparent 18%),
    var(--green);
}
.reservation-form, .reserve-aside, .success-card {
  background: var(--offwhite);
  color: var(--black);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(26,26,26,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.reserve-aside { background: var(--blue-night); color: var(--offwhite); border-color: rgba(246,240,228,.18); }
.field { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 900; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid rgba(26,26,26,.18);
  border-radius: 18px;
  padding: 14px 15px;
  font: inherit;
  background: #fffaf0;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(0,188,212,.22); border-color: var(--turquoise); }
.time-picker-field {
  position: relative;
  align-content: start;
  gap: 8px;
}
.time-picker-field label {
  display: grid;
  gap: 8px;
  margin: 0;
}
.time-picker-control {
  position: relative;
  display: block;
}
.time-picker-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(10,66,49,.56);
  border-bottom: 2px solid rgba(10,66,49,.56);
  rotate: 45deg;
  pointer-events: none;
}
.time-picker-field .time-picker-control input {
  min-height: 52px;
  width: 100%;
  padding-right: 44px;
  border-radius: 8px;
  border-color: rgba(10,66,49,.18);
  background: #fffdf7;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}
.time-picker-field .time-picker-control input::placeholder {
  color: rgba(10,66,49,.36);
  opacity: 1;
}
.time-select-control {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(64px, .9fr) auto minmax(64px, .9fr) minmax(70px, .8fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(10,66,49,.18);
  border-radius: 8px;
  background: #fffdf7;
}
.time-select-control select {
  width: 100%;
  min-height: 50px;
  padding: 0 28px 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}
.time-select-control select + select {
  border-left: 1px solid rgba(10,66,49,.1);
}
.time-select-control select:focus {
  outline: 3px solid rgba(0,188,212,.18);
  outline-offset: -3px;
}
.time-select-colon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 100%;
  color: rgba(10,66,49,.72);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
}
.time-picker-mobile {
  display: none;
}
.time-picker-popover {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  display: none;
  padding: 10px;
  border: 1px solid rgba(10,66,49,.16);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.time-picker-field.is-open .time-picker-popover {
  display: block;
}
.time-picker-popover-title {
  margin: 0 0 8px;
  color: rgba(10,66,49,.62);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.time-picker-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}
.time-picker-options button {
  appearance: none;
  -webkit-appearance: none;
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(10,66,49,.12);
  border-radius: 8px;
  background: rgba(10,66,49,.04);
  color: rgba(10,66,49,.84);
  box-shadow: none;
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}
.time-picker-options button:hover,
.time-picker-options button:focus-visible {
  border-color: rgba(0,188,212,.62);
  background: rgba(0,188,212,.12);
  outline: 2px solid rgba(0,188,212,.18);
  outline-offset: 1px;
}
.time-picker-options button.is-selected {
  border-color: rgba(10,66,49,.86);
  background: var(--green);
  color: var(--offwhite);
}
.time-picker-note {
  color: #8c210a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}
.time-picker-note[hidden] {
  display: none;
}
@media (max-width: 720px) {
  .time-picker-field:not([data-time-freeform-picker]) .time-picker-desktop,
  .time-picker-field:not([data-time-freeform-picker]) .time-picker-popover {
    display: none !important;
  }
  .time-picker-field:not([data-time-freeform-picker]) .time-picker-mobile {
    display: block;
  }
  .time-picker-field:not([data-time-freeform-picker]) .time-picker-control::after {
    content: none;
  }
  .time-picker-field[data-time-freeform-picker] .time-picker-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .time-select-control {
    grid-template-columns: minmax(54px, .9fr) auto minmax(54px, .9fr) minmax(62px, .8fr);
    min-height: 54px;
  }
  .time-select-control select {
    min-height: 52px;
    padding-left: 8px;
    padding-right: 22px;
    font-size: 15px;
  }
}
.payment-inline-total {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,188,212,.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hp-field { position: absolute; left: -9999px; }
.form-note { color: rgba(26,26,26,.65); font-size: 14px; }
.error-box { background: #fff1ee; color: #8c210a; padding: 14px 16px; border-radius: 18px; margin-bottom: 18px; border: 1px solid rgba(242,107,43,.35); }
.error-box p { margin: 0 0 6px; }
.reservation-loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6,42,37,.62);
  backdrop-filter: blur(8px);
}
.reservation-loading[hidden] { display: none; }
.reservation-loading-box {
  width: min(430px, 100%);
  text-align: center;
  background: var(--offwhite);
  color: var(--black);
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.reservation-loading-box h2 {
  margin: 14px 0 8px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.03em;
}
.reservation-loading-box p {
  margin: 0;
  color: rgba(26,26,26,.72);
  line-height: 1.45;
}
.reservation-spinner {
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 999px;
  border: 4px solid rgba(10,66,49,.18);
  border-top-color: var(--green);
  animation: reservation-spin .8s linear infinite;
}
.is-reservation-loading { overflow: hidden; }
@keyframes reservation-spin { to { transform: rotate(360deg); } }
.reserve-aside h2 { margin-top: 0; font-size: 30px; letter-spacing: -.04em; }
.reserve-aside li { margin-bottom: 12px; line-height: 1.4; }
.reserve-aside .button.secondary { color: var(--offwhite); border-color: var(--turquoise); }
.reserve-aside .button.secondary:hover { background: var(--turquoise); color: var(--blue-night); }
.policy-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246,240,228,.18);
}
.policy-note h3 {
  margin: 0 0 8px;
  color: var(--offwhite);
  font-size: 18px;
}
.policy-note p {
  margin: 0;
  color: rgba(246,240,228,.76);
  line-height: 1.45;
}
.policy-note a {
  display: inline-block;
  margin-top: 10px;
  color: var(--turquoise);
  font-weight: 800;
}
.terms-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(10,66,49,.18);
  border-radius: 12px;
  background: rgba(10,66,49,.05);
  color: rgba(26,26,26,.78);
  font-size: 14px;
  line-height: 1.45;
}
.terms-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}
.terms-check a {
  color: var(--green);
  font-weight: 800;
}
.refund-notice {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(10,66,49,.18);
  border-radius: 12px;
  background: rgba(170,255,0,.12);
}
.refund-notice h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 20px;
  letter-spacing: 0;
}
.refund-notice p {
  margin: 0;
  color: rgba(26,26,26,.78);
  line-height: 1.5;
}
.required-mark { color: var(--bugambilia); font-style: normal; font-weight: 1000; }
.required-legend {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 29, 134, .09);
  border: 1px solid rgba(255, 29, 134, .22);
  color: rgba(26, 26, 26, .78);
  font-size: 14px;
  line-height: 1.4;
}
code { background: var(--sand); padding: 2px 6px; border-radius: 6px; }
.success-card { max-width: 780px; margin: 0 auto; }
.success-message {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--green);
  font-weight: 850;
}
.success-message p { margin: 0 0 12px; }
.success-message p:last-child { margin-bottom: 0; }
.confirmation-box { display: grid; place-items: center; padding: 28px; border-radius: 26px; background: var(--green); color: var(--offwhite); margin-bottom: 20px; }
.confirmation-box span { text-transform: uppercase; letter-spacing: .12em; font-weight: 950; color: var(--lime); }
.confirmation-box strong { font-size: clamp(40px, 8vw, 72px); letter-spacing: -.05em; }
.summary-list { display: grid; gap: 10px; }
.summary-list div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(26,26,26,.12); }
.summary-list dt { font-weight: 950; }
.summary-list dd { margin: 0; text-align: right; }

/* 08. Floating WhatsApp and Cookies */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-weight: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
  border: 2px solid rgba(6,42,37,.28);
}
.floating-whatsapp:hover { background: var(--yellow); }

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--green);
  color: var(--offwhite);
  box-shadow: 0 -6px 24px rgba(0,0,0,.24);
}
.cookie-notice p { margin: 0; max-width: 720px; font-size: 14px; line-height: 1.5; }
.cookie-notice a { color: var(--lime); text-decoration: underline; }
.cookie-notice .button { white-space: nowrap; }
body:has(#cookieNotice) .floating-whatsapp { bottom: 92px; }

@media (max-width: 640px) {
  .cookie-notice { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-notice .button { width: 100%; }
  body:has(#cookieNotice) .floating-whatsapp { bottom: 132px; }
}

@media (max-width: 1160px) {
  .zone-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .zone-cards, .quick-grid, .reserve-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  .hero-landing { min-height: auto; }
}
@media (max-width: 540px) {
  .hero h1, .page-hero h1 { font-size: 46px; }
  .section, .page-hero, .hero-landing { padding-left: 16px; padding-right: 16px; }
  .hero-tag { min-height: 38px; padding: 8px 14px; }
  .floating-whatsapp { left: 18px; right: 18px; }
}


/* 09. Home Hero and Public Typography */
body {
  font-family: "Source Sans 3", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3, .zone-tab, .brand-logo, .tour-card h3, .section-heading h2 {
  font-family: "Outfit", Inter, system-ui, sans-serif;
}
.eyebrow, .button, .card-topline, .meta-list, .includes span, .date-chips span, .tour-card .price, .footer-actions {
  font-family: "Chivo Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.brand-hero {
  position: relative;
  min-height: min(68svh, 39vw);
  height: min(68svh, 39vw);
  max-height: 748px;
  display: block;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(170px, 12vw, 226px) clamp(28px, 5vw, 108px) clamp(34px, 3vw, 52px);
  background: var(--green);
}
.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slideshow {
  z-index: 0;
  overflow: hidden;
  background: var(--green);
}
.hero-slide {
  opacity: 0;
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
  animation: heroSlideFade 42s infinite;
  transform: scale(1.02);
}
.hero-slide-1 { background-image: url("../img/hero-banner-original-desktop.webp"); animation-delay: 0s; }
.hero-slide-2 { background-image: url("../img/ajolote_y_chinampa.webp"); animation-delay: 6s; }
.hero-slide-3 { background-image: url("../img/tour-coyoacan.webp"); animation-delay: 12s; }
.hero-slide-4 { background-image: url("../img/tour-temazcal.webp"); animation-delay: 18s; }
.hero-slide-5 { background-image: url("../img/chinampa_agro_3.webp"); animation-delay: 24s; }
.hero-slide-6 { background-image: url("../img/tour_revolucion_2.webp"); animation-delay: 30s; }
.hero-slide-7 { background-image: url("../img/teo_2.webp"); animation-delay: 36s; }
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(6,42,37,1) 0%,
    rgba(6,42,37,1) 23%,
    rgba(6,42,37,.92) 35%,
    rgba(6,42,37,.68) 47%,
    rgba(6,42,37,.28) 62%,
    rgba(6,42,37,.06) 78%,
    rgba(6,42,37,0) 88%
  );
}
.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("../img/hero-lines-desktop.svg");
  background-position: center 52%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .24;
  filter: brightness(1.02) saturate(.92);
  mix-blend-mode: screen;
}
.brand-hero-copy {
  position: relative;
  z-index: 3;
  width: min(680px, 45vw);
  margin-top: 0;
  pointer-events: none;
}
.brand-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Outfit", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 4.5vw, 80px);
  line-height: .9;
  letter-spacing: 0;
  color: var(--offwhite);
  text-wrap: balance;
  text-shadow: 0 10px 38px rgba(0,0,0,.26);
}
.brand-hero .title-mobile { display: none; }
.brand-hero .lead {
  max-width: 640px;
  margin: clamp(18px, 1.7vw, 26px) 0 0;
  font-family: "Source Sans 3", Inter, system-ui, sans-serif;
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.28;
  color: rgba(246,240,228,.96);
  text-shadow: 0 6px 28px rgba(0,0,0,.32);
}
.brand-hero .lead::after {
  content: "";
  display: block;
  width: clamp(86px, 8vw, 132px);
  height: 4px;
  margin-top: clamp(18px, 2vw, 30px);
  border-radius: 999px;
  background: var(--bugambilia);
  box-shadow: 0 0 18px rgba(255,29,134,.22);
}
.brand-hero-copy h1,
.brand-hero-copy .lead {
  opacity: 0;
  animation: heroCopyIn .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.brand-hero-copy .lead {
  animation-delay: .14s;
}
@keyframes heroSlideFade {
  0% { opacity: 0; transform: scale(1.035); }
  4% { opacity: 1; transform: scale(1.024); }
  13% { opacity: 1; transform: scale(1.006); }
  17% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .brand-hero {
    min-height: 72svh;
    height: auto;
    padding: clamp(74px, 14vh, 118px) 24px 56px;
  }
  .brand-hero-copy {
    width: min(560px, 88vw);
  }
  .brand-hero .title-desktop { display: none; }
  .brand-hero .title-mobile { display: inline; }
  .brand-hero h1 {
    max-width: 88vw;
    font-size: clamp(42px, 10.5vw, 60px);
  }
  .brand-hero .lead {
    max-width: 86vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .brand-hero-copy h1,
  .brand-hero-copy .lead {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-slide-1 {
    opacity: 1;
  }
}
/* 10. Footer */
.footer {
  display: block;
  padding: clamp(26px, 3.4vw, 40px) clamp(18px, 5vw, 72px) 18px;
  background: #063B31;
  color: var(--offwhite);
  border-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.05fr) minmax(240px, .95fr) minmax(190px, .65fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(246,240,228,.15);
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
.footer-logo img,
.footer-logo img[style] {
  width: min(240px, 62vw);
  height: auto;
}
.footer p,
.footer a {
  font-family: "Source Sans 3", Inter, system-ui, sans-serif;
}
.footer-brand-block p {
  margin: 0;
  color: rgba(246,240,228,.78);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.4;
  font-weight: 600;
}
.footer h2 {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: "Outfit", Inter, system-ui, sans-serif;
  font-size: clamp(17px, 1.2vw, 21px);
  letter-spacing: -.02em;
}
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
}
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: rgba(246,240,228,.82);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 600;
  line-height: 1.2;
}
.footer-contact a:hover {
  color: var(--lime);
}
.footer-contact svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--turquoise);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(246,240,228,.10);
  color: var(--offwhite);
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.social-links a:hover {
  transform: translateY(-1px);
  background: var(--lime);
  color: var(--green);
}
.social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:nth-child(2) svg,
.social-links .social-tiktok svg {
  fill: currentColor;
  stroke: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  color: rgba(246,240,228,.58);
  font-weight: 600;
}
.footer-bottom p {
  margin: 0;
  font-size: clamp(13px, .92vw, 15px);
}
.footer-legal {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(246,240,228,.58);
  font-weight: 700;
}
.footer-legal a:hover {
  color: var(--lime);
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .zone-tabs {
    gap: 10px;
  }
  .zone-tab {
    min-height: 44px;
    padding: 9px 16px;
  }
  .footer-logo img,
  .footer-logo img[style] {
    width: min(220px, 72vw);
  }
  .social-links a {
    width: 44px;
    height: 44px;
  }
}

/* 11. Tour Detail Pages */
.tour-detail-page {
  background: var(--green);
}
.tour-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(6,42,37,.98), rgba(10,31,44,.94)),
    var(--green);
  border-bottom: 6px solid var(--turquoise);
}
.tour-detail-copy h1 {
  margin: 0 0 18px;
  max-width: 850px;
  color: var(--offwhite);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
}
.tour-detail-copy p {
  max-width: 740px;
  margin: 0;
  color: rgba(246,240,228,.82);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.45;
}
.tour-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.tour-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(246,240,228,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.30);
}
.tour-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.tour-media-badge,
.tour-language-alert,
.language-priority-note {
  border: 1px solid rgba(246,240,228,.78);
  background: rgba(246,240,228,.12);
  color: var(--offwhite);
}
.tour-media-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.tour-language-alert {
  display: inline-block;
  width: fit-content;
  margin: 0 0 18px;
  padding: 10px 13px;
  border-radius: 10px;
  line-height: 1.35;
}
.tour-detail-copy .tour-language-alert {
  color: var(--offwhite);
  font-size: 16px;
}
.language-priority-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(10,66,49,.08);
  border-color: rgba(10,66,49,.18);
  color: var(--green);
}
.tour-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(22px, 3.5vw, 46px);
  align-items: start;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,188,212,.13), transparent 19%),
    linear-gradient(135deg, var(--blue-night), var(--green));
}
.tour-detail-main {
  display: grid;
  gap: 18px;
}
.tour-detail-block,
.tour-detail-aside {
  background: var(--offwhite);
  color: var(--black);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.tour-detail-block h2,
.tour-detail-aside h2 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}
.tour-itinerary,
.tour-detail-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
  color: rgba(26,26,26,.78);
  font-size: 18px;
  line-height: 1.42;
}
.tour-itinerary li::marker {
  color: var(--bugambilia);
  font-weight: 900;
}
.tour-detail-list li::marker {
  color: var(--turquoise);
}
.tour-info-list {
  margin: 0;
  display: grid;
  gap: 14px;
}
.tour-info-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(26,26,26,.12);
}
.tour-info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.tour-info-list dt {
  color: var(--green);
  font-weight: 950;
}
.tour-info-list dd {
  margin: 0;
  color: rgba(26,26,26,.78);
  line-height: 1.4;
}
.tour-price-table-wrap {
  overflow-x: auto;
}
.tour-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  font-size: 15px;
}
.tour-price-table th,
.tour-price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(26,26,26,.12);
  text-align: left;
}
.tour-price-table th {
  color: var(--green);
  font-weight: 950;
}
.tour-package-table {
  min-width: 760px;
}
.tour-package-table th:first-child,
.tour-package-table td:first-child {
  min-width: 220px;
}
.tour-package-table th:nth-child(2),
.tour-package-table td:nth-child(2),
.tour-package-table th:nth-child(3),
.tour-package-table td:nth-child(3),
.tour-package-table th:nth-child(4),
.tour-package-table td:nth-child(4) {
  min-width: 130px;
}
.tour-package-table th:last-child,
.tour-package-table td:last-child {
  min-width: 170px;
  white-space: pre-line;
}
.tour-package-table td {
  vertical-align: top;
  line-height: 1.35;
}
.private-price-calculator {
  display: grid;
  gap: 16px;
}
.private-price-control {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}
.private-price-step {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--offwhite);
  font: 950 26px/1 var(--font-display);
  cursor: pointer;
}
.private-price-step:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.private-price-people {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(26,26,26,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.62);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 7px;
  font-weight: 950;
  color: var(--green);
}
.private-price-number {
  font-size: 28px;
  line-height: 1;
}
.private-price-summary {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.private-price-summary div {
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.58);
}
.private-price-summary dt {
  margin-bottom: 5px;
  color: rgba(26,26,26,.62);
  font-size: 13px;
  font-weight: 900;
}
.private-price-summary dd {
  margin: 0;
  color: var(--green);
  font-weight: 950;
}
.private-price-note {
  margin: 0;
  color: rgba(26,26,26,.72);
  line-height: 1.35;
}
@media (max-width: 620px) {
  .private-price-summary {
    grid-template-columns: 1fr;
  }
}
.tour-map-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.tour-map-link:hover {
  color: var(--bugambilia);
}
.tour-detail-aside {
  position: sticky;
  top: 92px;
}
.tour-detail-aside .summary-list {
  margin-bottom: 18px;
}
.tour-detail-tags,
.tour-detail-dates {
  margin-top: 16px;
}
.tour-detail-note {
  margin: 14px 0 0;
  color: rgba(26,26,26,.68);
  line-height: 1.35;
}
.tour-detail-note a {
  color: var(--green);
  font-weight: 800;
}
.legal-page {
  background: var(--offwhite);
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  margin: 30px 0 10px;
  color: var(--green);
  font-size: 26px;
  letter-spacing: 0;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  color: rgba(26,26,26,.76);
  font-size: 17px;
  line-height: 1.65;
}
.legal-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}
.legal-content a {
  color: var(--green);
  font-weight: 800;
}
@media (max-width: 960px) {
  .tour-detail-hero,
  .tour-detail-section {
    grid-template-columns: 1fr;
  }
  .tour-detail-aside {
    position: static;
  }
}
@media (max-width: 540px) {
  .tour-detail-actions .button {
    width: 100%;
  }
  .tour-detail-media {
    border-radius: 14px;
  }
}

/* 12. Internal Admin and Payment Pages */
.internal-page .site-header {
  display: none;
}
.internal-page main {
  --internal-page-x: clamp(18px, 3vw, 34px);
  --internal-page-y: 22px;
  min-height: 100vh;
  background: var(--green);
}
.internal-hero {
  min-height: 260px;
}
.internal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 26px;
  align-items: start;
}
.internal-form,
.internal-aside {
  min-width: 0;
}
.success-box {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(10,66,49,.22);
  border-radius: 8px;
  background: rgba(170,255,0,.12);
  color: var(--green);
}
.success-box p:last-child { margin-bottom: 0; }
.custom-payment-created {
  border-color: rgba(170,255,0,.42);
  background: #F6F5F4;
  color: var(--green);
}
.custom-payment-created h2 { margin: 0 0 8px; color: var(--green); font-size: 24px; }
.custom-payment-created .field span { color: var(--green); }
.custom-payment-created input[readonly] {
  border-radius: 8px;
  border-color: rgba(10,66,49,.16);
  background: #fffdf7;
  color: var(--green);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-weight: 850;
}
.custom-payment-created .hero-actions { margin-top: 14px; }
.custom-payment-created .hero-actions .button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
}
.custom-payment-created .hero-actions .button.primary {
  color: var(--green);
  border-color: var(--lime);
  background: var(--lime);
}
.custom-payment-created .button.secondary {
  color: var(--green);
  border-color: rgba(10,66,49,.42);
  background: transparent;
}
.custom-payment-created .button.secondary:hover {
  color: var(--green);
  border-color: var(--turquoise);
  background: rgba(0,188,212,.12);
}
.custom-payment-context {
  display: grid;
  gap: 14px;
}
.custom-payment-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.custom-payment-context-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(10,66,49,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.custom-payment-context-grid span {
  display: block;
  margin-bottom: 5px;
  color: rgba(10,66,49,.66);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.custom-payment-context-grid strong {
  display: block;
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.custom-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.custom-payment-actions .button {
  min-width: 220px;
}
.custom-payment-history { min-width: 0; }
.custom-payment-history > h2 { margin-top: 0; color: var(--green); }
.custom-payment-link-list { display: grid; gap: 10px; }
.custom-payment-link-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.custom-payment-link-item strong,
.custom-payment-link-item span,
.custom-payment-link-item small { display: block; }
.custom-payment-link-item span,
.custom-payment-link-item small { margin-top: 4px; color: rgba(26,26,26,.66); }
.custom-payment-link-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 8px; }
.custom-payment-link-actions form { margin: 0; }
.reservation-payment-links {
  display: grid;
  gap: 10px;
}
.reservation-payment-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(10,66,49,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.68);
}
.reservation-payment-link strong,
.reservation-payment-link span {
  display: block;
}
.reservation-payment-link span {
  margin-top: 4px;
  color: rgba(26,26,26,.66);
}
.reservation-payment-link-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}
.reservation-payment-link-actions form {
  margin: 0;
}
.inline-payment-link-form {
  display: inline-flex;
  margin: 0;
}
.custom-payment-summary {
  min-width: 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(26,26,26,.14);
  border-radius: 8px;
  background: var(--offwhite);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.custom-payment-summary h2 { margin-top: 0; color: var(--green); }
.custom-payment-description { margin-bottom: 18px; line-height: 1.65; color: rgba(26,26,26,.78); }
.custom-payment-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); }
.custom-payment-layout .reservation-form { width: 100%; }
@media (max-width: 860px) {
  .custom-payment-layout,
  .custom-payment-admin { grid-template-columns: 1fr; }
  .custom-payment-context-grid { grid-template-columns: 1fr; }
  .custom-payment-link-item,
  .reservation-payment-link { grid-template-columns: 1fr; }
  .custom-payment-link-actions,
  .reservation-payment-link-actions { justify-content: flex-start; }
}
.internal-success {
  margin-bottom: 18px;
}
.quote-builder-page {
  background: var(--green);
}
.quote-builder-hero h1 {
  max-width: 980px;
}
.quote-builder-shell {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background:
    radial-gradient(circle at 92% 0%, rgba(0,188,212,.14), transparent 24%),
    linear-gradient(135deg, var(--green), var(--blue-night));
}
.quote-builder-form,
.quote-preview-panel {
  min-width: 0;
}
.quote-builder-form {
  position: sticky;
  top: 96px;
  max-height: calc(100svh - 116px);
  overflow: auto;
  border-radius: 8px;
}
.quote-builder-form fieldset {
  margin: 0 0 20px;
  padding: 18px;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
}
.quote-builder-form legend {
  padding: 0 8px;
  color: var(--green);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 21px;
  font-weight: 900;
}
.quote-form-heading,
.quote-preview-toolbar,
.quote-option-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.quote-form-heading {
  margin-bottom: 18px;
}
.quote-form-heading h2,
.quote-preview-toolbar h2 {
  margin: 0;
  color: var(--green);
  font-size: 30px;
  line-height: 1.05;
}
.quote-form-heading .eyebrow,
.quote-preview-toolbar .eyebrow {
  margin-bottom: 4px;
  color: var(--bugambilia);
}
.quote-three-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quote-price-fields {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.quote-flight-leg-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.quote-option-editor {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(10,66,49,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.66);
}
.quote-flight-leg {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(10,66,49,.14);
  border-radius: 8px;
  background: rgba(0,188,212,.06);
}
.quote-option-editor-head {
  margin-bottom: 14px;
}
.quote-option-editor-head h3 {
  margin: 0;
  color: var(--green);
  font-size: 22px;
}
.quote-preview-panel {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246,240,228,.14);
  border-radius: 8px;
  background: rgba(246,240,228,.08);
  color: var(--offwhite);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.quote-preview-toolbar {
  margin-bottom: 18px;
}
.quote-preview-toolbar h2 {
  color: var(--offwhite);
}
.quote-document {
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: #fffaf0;
  color: var(--black);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.quote-doc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(105deg, rgba(6,42,37,.98), rgba(6,42,37,.76)),
    url("/assets/img/hoteles.webp") center/cover;
  color: var(--offwhite);
  border-bottom: 7px solid var(--lime);
}
.quote-doc-logo {
  width: min(230px, 66vw);
  margin-bottom: 34px;
}
.quote-doc-kicker {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-doc-hero h2 {
  margin: 0;
  max-width: 720px;
  color: var(--offwhite);
  font-size: 56px;
  line-height: .95;
}
.quote-doc-date {
  justify-self: end;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid rgba(246,240,228,.34);
  border-radius: 8px;
  background: rgba(6,42,37,.55);
  text-align: right;
  font-weight: 900;
}
.quote-doc-section {
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.quote-doc-section h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 28px;
  line-height: 1.05;
}
.quote-doc-section p {
  margin: 0;
  color: rgba(26,26,26,.72);
  line-height: 1.55;
  white-space: pre-line;
}
.quote-doc-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.quote-doc-fact {
  padding: 13px;
  border: 1px solid rgba(10,66,49,.14);
  border-radius: 8px;
  background: rgba(10,66,49,.05);
}
.quote-doc-fact span,
.quote-price-row span,
.quote-option-meta span {
  display: block;
  color: rgba(26,26,26,.56);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-doc-fact strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.15;
}
.quote-doc-options {
  display: grid;
  gap: 20px;
}
.quote-doc-option {
  overflow: hidden;
  border: 1px solid rgba(10,66,49,.16);
  border-radius: 8px;
  background: #fff;
}
.quote-option-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  min-height: 210px;
  background: rgba(10,66,49,.08);
}
.quote-option-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.quote-option-media img:first-child {
  grid-row: span 2;
}
.quote-option-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(10,66,49,.88), rgba(10,66,49,.62)),
    url("/assets/img/hotel_1.webp") center/cover;
  color: var(--offwhite);
  font-weight: 900;
  text-align: center;
}
.quote-option-body {
  padding: clamp(18px, 3vw, 28px);
}
.quote-option-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.quote-option-number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
}
.quote-option-body h4 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 31px;
  line-height: 1.02;
}
.quote-option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.quote-option-meta div {
  flex: 1 1 150px;
  padding: 11px;
  border-radius: 8px;
  background: rgba(10,66,49,.05);
}
.quote-option-meta strong {
  display: block;
  margin-top: 3px;
  color: rgba(26,26,26,.82);
}
.quote-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.quote-price-row {
  padding: 14px;
  border-radius: 8px;
  background: rgba(0,188,212,.08);
}
.quote-price-row strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}
.quote-price-row.is-featured {
  background: var(--green);
}
.quote-price-row.is-featured span,
.quote-price-row.is-featured strong {
  color: var(--offwhite);
}
.quote-hotel-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-weight: 900;
}
.quote-doc-flight-wrap {
  display: grid;
  gap: 16px;
}
.quote-flight-price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.quote-flight-table-wrap {
  overflow-x: auto;
}
.quote-flight-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
.quote-flight-table th,
.quote-flight-table td {
  padding: 10px;
  border: 1px solid rgba(10,66,49,.16);
  text-align: left;
  vertical-align: top;
}
.quote-flight-table th {
  background: rgba(10,66,49,.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-flight-table td {
  color: rgba(26,26,26,.76);
}
.quote-doc-commercial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.quote-doc-commercial div {
  min-width: 0;
}
.quote-doc-footer {
  display: grid;
  gap: 4px;
  padding: 20px clamp(22px, 3vw, 34px);
  background: var(--green);
  color: var(--offwhite);
}
.quote-doc-footer strong {
  color: var(--lime);
  font-size: 20px;
}
.quote-doc-footer span {
  color: rgba(246,240,228,.76);
}
.capacity-dashboard {
  display: grid;
  gap: 24px;
}
.internal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.capacity-block {
  display: grid;
  gap: 14px;
}
.admin-filters {
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(140px, 1fr)) auto;
  align-items: end;
}
.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.admin-summary article {
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  padding: 14px;
}
.admin-summary span {
  display: block;
  color: rgba(26,26,26,.62);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
}
.admin-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(26,26,26,.10);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  color: var(--green);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-table strong,
.admin-table span,
.admin-table small,
.admin-table a {
  display: block;
}
.admin-table strong {
  color: var(--black);
}
.admin-table span,
.admin-table small {
  margin-top: 4px;
  color: rgba(26,26,26,.66);
}
.admin-table a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.admin-status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.admin-status.is-active {
  background: rgba(170,255,0,.28);
  color: var(--green);
}
.admin-status.is-paid {
  background: rgba(0,188,212,.18);
  color: #075985;
}
.admin-status.is-canceled {
  background: rgba(255,43,128,.14);
  color: #9f1239;
}
.capacity-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 4vw, 48px);
}
.capacity-heading p {
  margin: 4px 0 0;
  color: rgba(26,26,26,.68);
}
.capacity-accordion {
  display: grid;
  gap: 12px;
}
.capacity-details {
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.6);
  overflow: hidden;
}
.capacity-details summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--green);
  font-weight: 950;
}
.day-details {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}
.day-details summary {
  background: rgba(10,66,49,.05);
}
.capacity-list {
  display: grid;
  gap: 9px;
  padding: 12px;
}
.capacity-day-summary {
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.54);
  overflow: hidden;
}
.capacity-day-summary h3 {
  margin: 0;
  padding: 13px 16px;
  color: var(--green);
  font-size: 22px;
  background: rgba(10,66,49,.06);
}
.capacity-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) minmax(130px, .8fr) minmax(100px, .45fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(26,26,26,.1);
  border-left: 8px solid #d8392b;
  border-radius: 8px;
  background: #fff;
}
.capacity-row.is-medium {
  border-left-color: #f0bc2d;
}
.capacity-row.is-high {
  border-left-color: #159447;
}
.capacity-main {
  display: grid;
  gap: 3px;
}
.capacity-main strong {
  color: var(--green);
}
.capacity-main span,
.capacity-numbers span,
.capacity-numbers small {
  color: rgba(26,26,26,.68);
}
.capacity-meter {
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26,26,26,.1);
}
.capacity-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #d8392b;
}
.is-medium .capacity-meter span {
  background: #f0bc2d;
}
.is-high .capacity-meter span {
  background: #159447;
}
.capacity-numbers {
  display: grid;
  gap: 2px;
}
.capacity-numbers strong {
  color: var(--green);
}
.capacity-state {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216,57,43,.14);
  color: #9a1f15;
  font-weight: 950;
  white-space: nowrap;
}
.is-medium .capacity-state {
  background: rgba(240,188,45,.18);
  color: #7b5900;
}
.is-high .capacity-state {
  background: rgba(21,148,71,.12);
  color: #116535;
}
@media (max-width: 960px) {
  .quote-builder-shell {
    grid-template-columns: 1fr;
  }
  .quote-builder-form {
    position: relative;
    top: auto;
    max-height: none;
  }
  .internal-layout {
    grid-template-columns: 1fr;
  }
  .capacity-row {
    grid-template-columns: 1fr;
  }
  .capacity-state {
    justify-self: start;
  }
}
@media (max-width: 720px) {
  .quote-three-fields,
  .quote-price-fields,
  .quote-flight-leg-grid,
  .quote-doc-facts,
  .quote-price-grid,
  .quote-flight-price-strip,
  .quote-doc-commercial {
    grid-template-columns: 1fr;
  }
  .quote-doc-hero {
    grid-template-columns: 1fr;
    min-height: 220px;
  }
  .quote-doc-hero h2 {
    font-size: 40px;
  }
  .quote-doc-date {
    justify-self: start;
    text-align: left;
  }
  .quote-option-media {
    grid-template-columns: 1fr;
  }
  .quote-option-media img:first-child {
    grid-row: auto;
  }
}

/* 13. Tour Detail Price States */
.meta-price {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0,188,212,.10);
  border: 1px solid rgba(0,188,212,.22);
  color: rgba(26,26,26,.88);
  font-family: "Outfit", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 850;
}
.meta-price strong {
  color: var(--green);
}
.meta-price-note {
  font-family: "Source Sans 3", Inter, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.34;
  color: rgba(26,26,26,.66);
}
.summary-note {
  display: block;
  max-width: 360px;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(26,26,26,.62);
}
@media (max-width: 760px) {
  .summary-list dd {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .floating-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 11px 14px;
    font-size: 15px;
    box-shadow: 0 14px 34px rgba(0,0,0,.30);
  }
}
@media (max-width: 900px) {
  .admin-filters,
  .admin-summary {
    grid-template-columns: 1fr;
  }
}

/* 14. Public Service Pages */
.home-service-paths,
.home-about,
.catalog-hero,
.catalog-browse,
.catalog-preview-banner,
.catalog-review-panel,
.catalog-pilot-access,
.hotel-hero,
.hotel-quote-section,
.hotel-trust-strip,
.custom-trip-hero,
.custom-trip-process,
.custom-trip-form-section,
.custom-trip-success {
  position: relative;
}

.home-service-paths {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 0%, rgba(0,188,212,.16), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255,29,134,.14), transparent 22%),
    linear-gradient(135deg, #082f35 0%, var(--green) 56%, #0a1f2c 100%);
  border-top: 5px solid var(--turquoise);
}
.home-service-heading {
  max-width: 900px;
  margin: 0 0 28px;
}
.home-service-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -.055em;
}
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.home-service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(6,42,37,.16), rgba(6,42,37,.84)),
    var(--service-image, linear-gradient(135deg, rgba(246,240,228,.1), rgba(0,188,212,.12)));
  background-size: 108%;
  background-position: center;
  color: var(--offwhite);
  box-shadow: 0 22px 58px rgba(0,0,0,.22), inset 0 0 0 1px rgba(246,240,228,.14);
}
.home-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,42,37,.92), rgba(6,42,37,.24) 55%, rgba(10,31,44,.92));
  pointer-events: none;
}
.home-service-card > * {
  position: relative;
  z-index: 1;
}
.service-tours { --service-image: url("../img/tours_cdmx.webp"); }
.service-trips { --service-image: url("../img/viajes.webp"); }
.service-hotels { --service-image: url("../img/hoteles.webp"); }
.home-service-number {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
}
.home-service-card p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .92;
  letter-spacing: -.055em;
}
.home-service-card span:not(.home-service-number) {
  color: rgba(246,240,228,.78);
  font-size: 18px;
  line-height: 1.45;
}
.home-service-card strong {
  width: fit-content;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(246,240,228,.12);
  color: var(--offwhite);
  border: 1px solid rgba(246,240,228,.18);
}
.home-about {
  display: grid;
  grid-template-columns: minmax(160px, 320px) minmax(0, 780px);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 86px);
  background: var(--offwhite);
  color: var(--black);
}
.home-about .eyebrow { color: var(--bugambilia); }
.home-about-kicker {
  position: sticky;
  top: 120px;
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: 24px;
  background: var(--green);
}
.home-about-kicker img {
  width: min(140px, 40vw);
  opacity: .9;
}
.home-about-copy h2 {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
  letter-spacing: -.052em;
}
.home-about-copy p {
  margin: 0 0 18px;
  color: rgba(26,26,26,.74);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}

/* Catalog Pages */
.catalog-page {
  background: #062a25;
}
.catalog-preview-banner,
.catalog-review-panel,
.catalog-pilot-access {
  margin: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 72px) 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246,240,228,.16);
  border-radius: 18px;
  background: rgba(246,240,228,.08);
  color: var(--offwhite);
}
.catalog-preview-banner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-color: rgba(255,234,0,.35);
  background: rgba(255,234,0,.09);
}
.catalog-preview-banner strong,
.catalog-preview-stats strong { color: var(--yellow); }
.catalog-preview-stats,
.catalog-review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.catalog-preview-stats span,
.catalog-review-list article {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(6,42,37,.42);
}
.catalog-review-list article {
  display: grid;
  gap: 6px;
  min-width: min(100%, 260px);
}
.catalog-pilot-access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: end;
}
.catalog-pilot-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 900;
}
.catalog-pilot-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(246,240,228,.2);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(246,240,228,.96);
  color: var(--green);
  font: inherit;
}
.catalog-pilot-warning {
  color: var(--yellow);
  font-weight: 900;
}
.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 6vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(183,224,0,.16), transparent 24%),
    radial-gradient(circle at 8% 78%, rgba(255,29,134,.16), transparent 22%),
    linear-gradient(135deg, #0a1f2c, #062a25 58%, #082f35);
  color: var(--offwhite);
}
.catalog-hero-copy {
  max-width: 980px;
}
.catalog-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.06em;
}
.catalog-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(246,240,228,.78);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.48;
}
.catalog-search {
  position: relative;
  max-width: 760px;
  margin-top: 28px;
}
.catalog-search label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}
.catalog-search-control {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(246,240,228,.22);
  border-radius: 999px;
  background: var(--offwhite);
  color: var(--green);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.catalog-search-control svg {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.catalog-search-control input {
  min-width: 0;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  outline: 0;
}
.catalog-search-control button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.catalog-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  background: var(--offwhite);
  color: var(--green);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
}
.catalog-suggestions [role="option"],
.catalog-suggestions a {
  display: grid;
  gap: 3px;
  padding: 11px 13px;
  border-radius: 12px;
}
.catalog-suggestions [role="option"]:hover,
.catalog-suggestions a:hover {
  background: rgba(6,42,37,.08);
}
.catalog-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 16px;
}
.catalog-popular span {
  color: rgba(246,240,228,.7);
  font-weight: 900;
}
.catalog-popular a,
.catalog-category-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(246,240,228,.18);
  border-radius: 999px;
  background: rgba(246,240,228,.08);
  color: var(--offwhite);
  font-weight: 900;
}
.catalog-browse {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 86px);
  background: var(--offwhite);
  color: var(--black);
}
.catalog-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.catalog-section-heading .eyebrow { color: var(--bugambilia); }
.catalog-section-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .98;
  letter-spacing: -.052em;
}
.catalog-section-heading > p {
  margin: 0;
  color: var(--green);
  font-weight: 950;
}
.catalog-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.catalog-category-chips a {
  border-color: rgba(6,42,37,.15);
  background: rgba(6,42,37,.06);
  color: var(--green);
}
.catalog-category-chips a.is-active,
.catalog-category-chips a:hover {
  background: var(--green);
  color: var(--offwhite);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(26,26,26,.12);
  border-radius: 20px;
  background: #fffaf0;
  box-shadow: 0 18px 46px rgba(6,42,37,.12);
}
.catalog-card-visual {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,234,0,.3), transparent 24%),
    linear-gradient(135deg, var(--green), #0a1f2c);
  color: var(--offwhite);
}
.catalog-card-visual.visual-2 {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,29,134,.28), transparent 24%),
    linear-gradient(135deg, #0a1f2c, #082f35);
}
.catalog-card-visual.visual-3 {
  background:
    radial-gradient(circle at 78% 24%, rgba(0,188,212,.3), transparent 24%),
    linear-gradient(135deg, #344a2e, var(--green));
}
.catalog-card-visual span,
.catalog-card-visual small {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246,240,228,.12);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-card-visual strong {
  font-size: 78px;
  line-height: .8;
  letter-spacing: -.07em;
}
.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.catalog-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(26,26,26,.62);
  font-size: 13px;
  font-weight: 900;
}
.catalog-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.045em;
}
.catalog-card p {
  margin: 0 0 14px;
  color: rgba(26,26,26,.72);
  line-height: 1.5;
}
.catalog-card-cities {
  margin: 0 0 14px;
  color: rgba(26,26,26,.68);
  font-weight: 850;
}
.catalog-price {
  margin-top: auto;
  padding: 13px;
  border-radius: 14px;
  background: rgba(6,42,37,.06);
  color: var(--green);
}
.catalog-price span,
.catalog-price small {
  display: block;
  color: rgba(6,42,37,.62);
  font-size: 13px;
  font-weight: 900;
}
.catalog-price strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}
.catalog-price-review {
  background: rgba(255,234,0,.18);
}
.catalog-price-note,
.catalog-commercial-notice {
  color: rgba(26,26,26,.58);
  font-size: 13px;
  line-height: 1.42;
}
.catalog-draft-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.catalog-empty,
.custom-trip-success {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(6,42,37,.12);
  border-radius: 22px;
  background: #fffaf0;
  text-align: center;
}
.catalog-empty-mark {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-size: 28px;
}

/* Hotels */
.hotel-page {
  background: var(--green);
}
.hotel-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(520px, 72svh, 760px);
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) clamp(18px, 6vw, 86px);
  color: var(--offwhite);
}
.hotel-hero-slideshow,
.hotel-hero-slide {
  position: absolute;
  inset: 0;
}
.hotel-hero-slideshow {
  background: var(--green);
}
.hotel-hero-slide {
  opacity: 0;
  background-image: var(--hotel-image);
  background-size: cover;
  background-position: center;
  animation: hotelHeroFade 36s infinite;
}
.hotel-hero-slide-1 { animation-delay: 0s; }
.hotel-hero-slide-2 { animation-delay: 6s; }
.hotel-hero-slide-3 { animation-delay: 12s; }
.hotel-hero-slide-4 { animation-delay: 18s; }
.hotel-hero-slide-5 { animation-delay: 24s; }
.hotel-hero-slide-6 { animation-delay: 30s; }
.hotel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6,42,37,.96), rgba(6,42,37,.72) 46%, rgba(6,42,37,.22));
}
.hotel-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hotel-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .86;
  letter-spacing: -.07em;
}
.hotel-hero .lead {
  max-width: 620px;
  color: rgba(246,240,228,.82);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.42;
}
@keyframes hotelHeroFade {
  0% { opacity: 0; transform: scale(1.035); }
  7% { opacity: 1; transform: scale(1.02); }
  22% { opacity: 1; transform: scale(1.005); }
  29% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}
.hotel-quote-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 86px);
  background: var(--offwhite);
  color: var(--black);
}
.hotel-section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}
.hotel-section-heading .eyebrow { color: var(--bugambilia); }
.hotel-section-heading h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(36px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.055em;
}
.hotel-section-heading p {
  color: rgba(26,26,26,.7);
  font-size: 20px;
}
.hotel-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.hotel-path-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(6,42,37,.16);
  border-radius: 18px;
  background: #fffaf0;
  color: var(--black);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.hotel-path-card:hover,
.hotel-path-card[aria-expanded="true"] {
  border-color: var(--lime);
  box-shadow: 0 16px 44px rgba(6,42,37,.14);
}
.hotel-path-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green);
  color: var(--lime);
}
.hotel-path-icon-alt {
  background: var(--bugambilia);
  color: var(--offwhite);
}
.hotel-path-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.hotel-path-card strong,
.hotel-path-card small {
  display: block;
}
.hotel-path-card strong {
  color: var(--green);
  font-size: 22px;
  line-height: 1.08;
}
.hotel-path-card small {
  margin-top: 5px;
  color: rgba(26,26,26,.66);
  line-height: 1.35;
}
.hotel-path-arrow {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}
.hotel-panel {
  margin-top: 20px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(6,42,37,.14);
  border-radius: 22px;
  background: #fffaf0;
}
.hotel-panel[hidden] { display: none !important; }
.hotel-panel h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.045em;
}
.hotel-panel p {
  color: rgba(26,26,26,.72);
  line-height: 1.55;
}
.hotel-improve-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 24px;
}
.hotel-step-number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-weight: 900;
}
.hotel-time-note {
  padding: 14px;
  border-radius: 14px;
  background: rgba(0,188,212,.1);
}
.hotel-whatsapp-button {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
}
.hotel-privacy-note,
.hotel-submit-note {
  display: block;
  margin-top: 10px;
  color: rgba(26,26,26,.58);
  line-height: 1.4;
}
.hotel-mini-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hotel-mini-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(6,42,37,.06);
  font-weight: 850;
}
.hotel-mini-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--green);
  color: var(--offwhite);
}
.hotel-form-intro {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}
.hotel-panel-copy {
  min-width: 0;
}
.hotel-new-panel {
  display: block;
}
.hotel-field-wide {
  grid-column: span 2;
}
.hotel-form fieldset,
.custom-trip-form fieldset {
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid rgba(6,42,37,.12);
  border-radius: 18px;
}
.hotel-form legend,
.custom-trip-form legend {
  padding: 0 8px;
  color: var(--green);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
}
.hotel-traveler-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hotel-field-label {
  margin: 10px 0;
  color: var(--green);
  font-weight: 900;
}
.hotel-amenities,
.custom-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hotel-check,
.custom-option-grid label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(6,42,37,.12);
  border-radius: 14px;
  background: rgba(6,42,37,.04);
  color: rgba(26,26,26,.78);
  font-weight: 800;
}
.hotel-check input,
.custom-option-grid input,
.custom-trip-accept input {
  accent-color: var(--green);
}
.hotel-form-error,
.custom-trip-errors {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 14px;
  background: #fff1ee;
  color: #8c210a;
  border: 1px solid rgba(242,107,43,.3);
}
.hotel-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(246,240,228,.18);
  border-top: 1px solid rgba(246,240,228,.18);
}
.hotel-trust-strip div {
  padding: clamp(20px, 3vw, 34px);
  background: var(--green);
}
.hotel-trust-strip strong,
.hotel-trust-strip span {
  display: block;
}
.hotel-trust-strip strong {
  color: var(--lime);
  font-size: 22px;
}
.hotel-trust-strip span {
  margin-top: 6px;
  color: rgba(246,240,228,.72);
}

/* Custom Trips */
.custom-trip-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(255,29,134,.14), transparent 24%),
    radial-gradient(circle at 12% 26%, rgba(0,188,212,.16), transparent 26%),
    radial-gradient(circle at 72% 82%, rgba(183,224,0,.12), transparent 24%),
    linear-gradient(135deg, #0a1f2c 0%, var(--green) 54%, #083832 100%);
}
.custom-trip-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(68px, 9vw, 120px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,29,134,.16), transparent 24%),
    radial-gradient(circle at 9% 24%, rgba(0,188,212,.16), transparent 26%),
    radial-gradient(circle at 66% 84%, rgba(183,224,0,.11), transparent 24%),
    linear-gradient(135deg, #0a1f2c 0%, var(--green) 56%, #083832 100%);
  color: var(--offwhite);
}
.custom-trip-hero h1 {
  margin: 0 0 20px;
  max-width: 860px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: .85;
  letter-spacing: -.07em;
}
.custom-trip-hero .lead {
  max-width: 760px;
  color: rgba(246,240,228,.78);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
}
.custom-trip-price-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(246,240,228,.18);
  border-radius: 22px;
  background: rgba(246,240,228,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.custom-trip-price-card span {
  color: var(--yellow);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.custom-trip-price-card strong {
  display: block;
  margin: 12px 0;
  color: var(--lime);
  font-size: clamp(38px, 5vw, 60px);
  line-height: .95;
  letter-spacing: -.05em;
}
.custom-trip-price-card p {
  margin: 0;
  color: rgba(246,240,228,.72);
  line-height: 1.5;
}
.custom-trip-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 6vw, 86px) clamp(54px, 7vw, 86px);
}
.custom-trip-process article {
  padding: 20px;
  border: 1px solid rgba(246,240,228,.16);
  border-radius: 18px;
  background: rgba(246,240,228,.08);
}
.custom-trip-process strong {
  color: var(--lime);
  font-family: "Chivo Mono", ui-monospace, monospace;
}
.custom-trip-process span {
  display: block;
  margin: 12px 0 8px;
  color: var(--offwhite);
  font-size: 22px;
  font-weight: 900;
}
.custom-trip-process p {
  margin: 0;
  color: rgba(246,240,228,.72);
  line-height: 1.45;
}
.custom-trip-form-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 6vw, 86px);
  background: var(--offwhite);
  color: var(--black);
}
.custom-trip-form-heading {
  max-width: 900px;
  margin: 0 auto 28px;
}
.custom-trip-form-heading .eyebrow { color: var(--bugambilia); }
.custom-trip-form-heading h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(36px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.055em;
}
.custom-trip-form-heading p {
  color: rgba(26,26,26,.72);
  font-size: 20px;
  line-height: 1.5;
}
.custom-trip-form {
  width: min(980px, 100%);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(6,42,37,.12);
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 18px 50px rgba(6,42,37,.12);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
}
.required-star {
  color: var(--bugambilia);
}
.custom-flight-details[hidden],
.custom-flight-note[hidden] {
  display: none !important;
}
.custom-trip-note {
  color: rgba(26,26,26,.62);
  font-size: 14px;
  line-height: 1.45;
}
.custom-trip-scope {
  margin: 22px 0;
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(183,224,0,.13), transparent 28%),
    linear-gradient(135deg, var(--green), #0a1f2c);
  border: 1px solid rgba(246,240,228,.16);
  color: var(--offwhite);
}
.custom-trip-scope h3 {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 26px;
}
.custom-trip-scope p {
  color: rgba(246,240,228,.78);
  line-height: 1.55;
}
.custom-trip-accept {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: rgba(26,26,26,.72);
  font-weight: 800;
}
.custom-trip-success {
  margin-top: clamp(42px, 7vw, 86px);
  margin-bottom: clamp(42px, 7vw, 86px);
}
.custom-trip-success-first {
  scroll-margin-top: 130px;
}
.custom-trip-success h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
}

@media (max-width: 1100px) {
  .home-service-grid,
  .catalog-grid,
  .custom-trip-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-hero,
  .custom-trip-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-service-paths,
  .home-about,
  .catalog-hero,
  .catalog-browse,
  .hotel-quote-section,
  .custom-trip-hero,
  .custom-trip-form-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .home-service-grid,
  .home-about,
  .catalog-grid,
  .catalog-pilot-access,
  .hotel-paths,
  .hotel-improve-panel,
  .hotel-traveler-grid,
  .hotel-amenities,
  .hotel-trust-strip,
  .custom-trip-process,
  .custom-option-grid {
    grid-template-columns: 1fr;
  }
  .hotel-field-wide {
    grid-column: auto;
  }
  .home-service-card {
    min-height: 300px;
    border-radius: 18px;
    background-size: 116%;
  }
  .home-about-kicker {
    position: relative;
    top: auto;
    min-height: 150px;
  }
  .catalog-preview-banner,
  .catalog-section-heading,
  .hotel-form-intro {
    display: grid;
    align-items: start;
  }
  .catalog-search-control {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 22px;
  }
  .catalog-search-control button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .catalog-card-visual {
    min-height: 160px;
  }
  .hotel-hero {
    min-height: 68svh;
    padding: 70px 18px 56px;
  }
  .hotel-hero::before {
    background: linear-gradient(180deg, rgba(6,42,37,.95), rgba(6,42,37,.54));
  }
  .custom-trip-form {
    padding: 18px;
  }
}

@media print {
  .site-header,
  .footer,
  .cookie-notice,
  .floating-whatsapp,
  .quote-builder-hero,
  .quote-builder-form,
  .quote-preview-toolbar {
    display: none !important;
  }
  body,
  .quote-builder-page,
  .quote-builder-shell,
  .quote-preview-panel {
    background: #fff !important;
    color: #000 !important;
  }
  main,
  .quote-builder-shell,
  .quote-preview-panel {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .quote-document {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .quote-doc-option {
    break-inside: avoid;
  }
}

/* Tours CDMX */
.tours-page {
  background: var(--green);
}
.tours-home-hero {
  border-bottom: 5px solid var(--turquoise);
}
.tours-catalog {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 0%, rgba(255,29,134,.13), transparent 24%),
    radial-gradient(circle at 8% 18%, rgba(0,188,212,.15), transparent 24%),
    linear-gradient(135deg, #082f35 0%, var(--green) 58%, #0a1f2c 100%);
  color: var(--offwhite);
}
.tours-tabs-title {
  margin: 0 auto 22px;
  max-width: 780px;
  text-align: center;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.055em;
}
.tours-zone-tabs {
  justify-content: center;
  margin: 0 0 30px;
}
.tours-zone-tabs .zone-tab {
  border-color: rgba(246,240,228,.34);
  background: rgba(246,240,228,.08);
}
.tours-zone-tabs .zone-tab.is-active {
  background: var(--offwhite);
  color: var(--green);
}
.tours-zone-panels {
  max-width: 1280px;
  margin: 0 auto;
}
.zone-panels {
  min-width: 0;
}
.tours-zone-panels .zone-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.tours-next-step {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 6vw, 86px);
  background: var(--offwhite);
  color: var(--black);
  text-align: center;
}
.tours-next-step .eyebrow {
  color: var(--bugambilia);
}
.tours-next-step h2 {
  max-width: 880px;
  margin: 0 auto 22px;
  color: var(--green);
  font-size: clamp(36px, 5vw, 70px);
  line-height: .96;
  letter-spacing: -.055em;
}
.reserve-hero {
  border-bottom-color: var(--lime);
}
.admin-reservations {
  min-width: 0;
}

@media (max-width: 1100px) {
  .tours-zone-panels .zone-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tours-catalog,
  .tours-next-step {
    padding-left: 18px;
    padding-right: 18px;
  }
  .tours-zone-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .tours-zone-tabs .zone-tab {
    width: 100%;
  }
  .tours-zone-panels .zone-cards {
    grid-template-columns: 1fr;
  }
}


/* Hola Link Page */
.linktree-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(0,188,212,.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255,29,134,.14), transparent 26%),
    radial-gradient(circle at 50% 92%, rgba(183,224,0,.18), transparent 30%),
    var(--green);
}
.linktree-page .site-header,
.linktree-page .footer,
.linktree-page .floating-whatsapp,
.linktree-page .cookie-notice {
  display: none !important;
}
.linktree-page main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}
.linktree {
  width: min(100%, 430px);
  display: grid;
  justify-items: center;
  gap: 26px;
}
.linktree-logo {
  width: min(292px, 78vw);
  height: auto;
}
.linktree-links {
  width: 100%;
  display: grid;
  gap: 14px;
}
.linktree-btn,
.linktree-icon-btn {
  border: 2px solid var(--linktree-accent, var(--lime));
  background: rgba(246,240,228,.06);
  color: var(--offwhite);
  box-shadow: 0 14px 34px rgba(0,0,0,.18), inset 0 0 0 1px rgba(246,240,228,.08);
}
.linktree-btn {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}
.linktree-btn-primary {
  --linktree-accent: var(--lime);
  background: var(--lime);
  color: var(--green);
}
.linktree-social-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.linktree-icon-btn {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 22px;
}
.linktree-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.linktree-icon-fill {
  fill: currentColor;
  stroke: none;
}
.linktree-icon-btn-instagram { --linktree-accent: var(--bugambilia); }
.linktree-icon-btn-facebook { --linktree-accent: var(--turquoise); }
.linktree-icon-btn-tiktok { --linktree-accent: var(--yellow); }
.linktree-icon-btn-whatsapp { --linktree-accent: var(--lime); }
.linktree-btn-tours { --linktree-accent: var(--turquoise); }
.linktree-btn-custom { --linktree-accent: var(--bugambilia); }
.linktree-btn-groups { --linktree-accent: var(--yellow); }
.linktree-btn-hotel {
  --linktree-accent: var(--orange);
  background: rgba(242,107,43,.14);
}
.linktree-btn:hover,
.linktree-icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(246,240,228,.10);
}
.linktree-btn-primary:hover {
  background: var(--yellow);
}

@media (max-width: 420px) {
  .linktree-page main {
    padding: 24px 16px;
  }
  .linktree {
    gap: 22px;
  }
  .linktree-logo {
    width: min(270px, 82vw);
  }
  .linktree-btn {
    min-height: 56px;
    font-size: 18px;
  }
  .linktree-icon-btn {
    border-radius: 18px;
  }
}

/* 16. Internal Reservations Panel */
.internal-page {
  background: var(--green);
  color: var(--offwhite);
  overflow-x: clip;
}
.internal-page main {
  min-width: 0;
  overflow-x: clip;
}
.internal-page .floating-whatsapp {
  display: none;
}
.internal-page .page-hero.internal-hero {
  min-height: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 12px;
}
.internal-page .internal-hero .eyebrow {
  color: var(--lime);
}
.internal-page .internal-hero h1 {
  max-width: none;
  margin: 0 0 8px;
  color: var(--offwhite);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
}
.internal-page .internal-hero p {
  max-width: 720px;
  color: rgba(246,245,244,.78);
}
.internal-page .section.internal-layout,
.internal-page .section.capacity-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 1120px);
  max-width: 1120px;
  min-width: 0;
  margin: 0 auto;
  padding: var(--internal-page-y) var(--internal-page-x) 56px;
  gap: 18px;
  overflow-x: clip;
}
.internal-page .internal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.internal-page .button {
  min-height: 48px;
  border-radius: 999px;
  white-space: normal;
  text-align: center;
}
.internal-page .button.primary {
  color: var(--green);
}
.internal-page .button.secondary {
  color: var(--offwhite);
  border-color: rgba(246,245,244,.68);
}
.internal-page .button.secondary:hover {
  color: var(--green);
  background: var(--offwhite);
}
.internal-page .capacity-block .button.secondary,
.internal-page .capacity-details .button.secondary,
.internal-page .custom-payment-summary .button.secondary,
.internal-page .reservation-search-panel .button.secondary {
  color: var(--green);
  border-color: rgba(10,66,49,.38);
  background: rgba(255,255,255,.58);
}
.internal-page .capacity-block .button.secondary:hover,
.internal-page .capacity-details .button.secondary:hover,
.internal-page .custom-payment-summary .button.secondary:hover,
.internal-page .reservation-search-panel .button.secondary:hover {
  color: var(--green);
  border-color: var(--turquoise);
  background: rgba(0,188,212,.12);
}
.internal-nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: calc(-1 * var(--internal-page-y)) calc(-1 * var(--internal-page-x)) 22px;
  padding: 14px var(--internal-page-x);
  background: var(--green);
}
.internal-home-mark {
  position: absolute;
  left: var(--internal-page-x);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  opacity: .96;
  transition: background .18s ease, opacity .18s ease;
}
.internal-home-mark:hover {
  background: rgba(246,245,244,.08);
  opacity: 1;
}
.internal-home-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.internal-home-mark-logo {
  display: none;
}
.internal-main-nav {
  display: grid;
  grid-template-columns: repeat(4, 172px);
  justify-content: center;
  gap: 10px;
  width: min(100%, 780px);
  margin: 0 auto;
  align-items: center;
}
.internal-main-nav-link {
  width: 172px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 2px solid rgba(246,245,244,.68);
  border-radius: 999px;
  color: var(--offwhite);
  background: rgba(255,255,255,.04);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-weight: 950;
  font-size: 13px;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.internal-main-nav-link[data-nav-key="nueva-reserva"] {
  --internal-nav-accent: var(--turquoise);
}
.internal-main-nav-link[data-nav-key="reservaciones"] {
  --internal-nav-accent: var(--lime);
}
.internal-main-nav-link[data-nav-key="crm"] {
  --internal-nav-accent: var(--bugambilia);
}
.internal-main-nav-link[data-nav-key="cotizaciones"] {
  --internal-nav-accent: var(--orange);
}
.internal-main-nav-link:hover {
  color: var(--green);
  border-color: var(--offwhite);
  background: var(--offwhite);
}
.internal-main-nav-link.is-active {
  color: var(--green);
  border-color: var(--lime);
  background: var(--lime);
}
.internal-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  gap: 6px;
  justify-content: center;
  padding: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
}
.internal-filter-tabs a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid rgba(0,188,212,.28);
  border-radius: 8px;
  color: rgba(246,245,244,.78);
  background: rgba(0,188,212,.05);
  font-family: "Outfit", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.internal-filter-tabs a:hover {
  color: var(--turquoise);
  border-color: rgba(0,188,212,.48);
  background: rgba(0,188,212,.09);
}
.internal-filter-tabs a.is-active {
  color: var(--turquoise);
  border-color: rgba(0,188,212,.58);
  background: rgba(0,188,212,.12);
}
.internal-page .reservation-form.internal-form {
  display: grid;
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 18px;
}
.internal-page .capacity-block,
.internal-page .success-box,
.internal-page .error-box,
.internal-page .capacity-details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 8px;
}
.internal-page .reservation-card,
.internal-page .admin-table-wrap,
.internal-page .reservation-payment-link,
.internal-page .reservation-payment-links,
.internal-page .cancellation-form,
.internal-page .cancellation-hero,
.internal-page .cancellation-results {
  max-width: 100%;
  min-width: 0;
}
.internal-page .capacity-block {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246,245,244,.12);
  background: var(--offwhite);
  color: var(--green);
}
.internal-page .capacity-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 2px;
}
.internal-page .capacity-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}
.internal-page .capacity-heading p,
.internal-page .form-note {
  margin: 0;
  color: rgba(10,66,49,.72);
}
.internal-page .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.internal-page .field {
  min-width: 0;
}
.internal-page .capacity-subsection {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(10,66,49,.14);
}
.internal-page .capacity-subsection h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}
.internal-page .internal-check-group {
  margin: 0;
  padding: 0;
  border: 0;
}
.internal-page .internal-check-group legend {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}
.internal-page .internal-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.internal-page .internal-check-option {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(10,66,49,.16);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--green);
  font-weight: 850;
}
.internal-page .internal-check-option input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--lime);
}
.internal-page .field span {
  color: var(--green);
  font-weight: 900;
}
.internal-page input,
.internal-page select,
.internal-page textarea {
  width: 100%;
  min-width: 0;
  color: var(--black);
  background: #fffaf2;
}
.internal-page input[readonly] {
  color: var(--green);
  background: rgba(10,66,49,.08);
  font-weight: 900;
}
.internal-page .admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.internal-page .admin-summary article {
  min-width: 0;
  min-height: 96px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(10,66,49,.14);
  background: rgba(255,255,255,.64);
}
.internal-page .admin-summary span {
  color: rgba(10,66,49,.68);
}
.internal-page .admin-summary strong {
  overflow-wrap: anywhere;
  color: var(--green);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}
.internal-page .capacity-details {
  overflow: hidden;
  border: 1px solid rgba(10,66,49,.16);
  background: rgba(255,255,255,.66);
  color: var(--green);
}
.internal-page .capacity-details summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--green);
  font-family: "Outfit", Inter, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.25;
}
.internal-page .capacity-details > :not(summary) {
  margin: 0 16px 16px;
}
.internal-page .capacity-details > .reservation-form.internal-form {
  width: auto;
}
.internal-page .capacity-details > .reservation-form.internal-form.cancellation-form {
  margin: 0;
}
.internal-page .admin-reservations > .internal-filter-tabs,
.internal-page .admin-reservations > .reservation-period-filter,
.internal-page .admin-reservations > .reservation-search-panel,
.internal-page .admin-reservations > .reservation-type-strip {
  display: none;
}
.internal-page .reservation-control-panel {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 2px 0 14px;
}
.internal-page .reservation-direct-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: end;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(0,188,212,.22);
  border-radius: 8px;
  background: rgba(246,240,228,.94);
}
.internal-page .reservation-direct-search .field,
.internal-page .reservation-quick-filters .field {
  margin: 0;
}
.internal-page .reservation-direct-search .field span {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}
.internal-page .reservation-direct-search input {
  height: 56px;
  min-height: 56px;
  padding: 10px 18px;
  border-radius: 999px;
}
.internal-page .reservation-direct-search .button {
  width: 100%;
  height: 56px;
  min-height: 56px;
  margin: 0;
}
.internal-page .reservation-quick-filters {
  display: grid;
  grid-template-columns: minmax(130px, 170px) minmax(130px, 170px) minmax(120px, 160px) minmax(110px, 140px) auto auto;
  align-items: end;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.internal-page .reservation-quick-filters .field span {
  margin-bottom: 5px;
  color: rgba(246,245,244,.84);
  font-size: 12px;
  line-height: 1.25;
}
.internal-page .reservation-quick-filters select,
.internal-page .reservation-quick-filters .button {
  height: 42px;
  min-height: 42px;
  border-radius: 999px;
}
.internal-page .reservation-quick-filters select {
  padding: 7px 34px 7px 14px;
  background-color: rgba(246,245,244,.98);
}
.internal-page .reservation-quick-filters .button {
  width: auto;
  min-width: 132px;
  margin: 0;
  padding: 7px 16px;
}
.internal-page .reservation-search-panel {
  background: rgba(246,240,228,.92);
  box-shadow: none;
}
.internal-page .reservation-period-filter {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(110px, 150px) auto auto;
  align-items: end;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: -4px 0 10px;
}
.internal-page .reservation-period-filter .field {
  margin: 0;
}
.internal-page .reservation-period-filter .field span {
  margin-bottom: 5px;
  color: rgba(246,245,244,.82);
  font-size: 12px;
  line-height: 1.25;
}
.internal-page .reservation-period-filter select,
.internal-page .reservation-period-filter .button {
  height: 42px;
  min-height: 42px;
  border-radius: 999px;
}
.internal-page .reservation-period-filter select {
  padding: 7px 34px 7px 14px;
  background-color: rgba(246,245,244,.98);
}
.internal-page .reservation-period-filter .button {
  width: auto;
  min-width: 136px;
  padding: 7px 16px;
  margin: 0;
  color: #F6F5F4;
  border-color: rgba(246,245,244,.42);
  background: rgba(246,245,244,.08);
}
.internal-page .reservation-period-filter .button:hover {
  color: var(--turquoise);
  border-color: rgba(0,188,212,.58);
  background: rgba(0,188,212,.12);
}
.internal-page .reservation-search-panel summary {
  padding: 10px 14px;
  font-size: 15px;
}
.internal-page .reservation-search-panel[open] summary {
  border-bottom: 1px solid rgba(10,66,49,.12);
}
.internal-page .reservation-search-panel > .admin-filters {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 150px;
  align-items: end;
  gap: 10px;
  margin: 0;
  padding: 12px 14px 14px;
}
.internal-page .reservation-search-panel .field span {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.25;
}
.internal-page .reservation-search-panel .field {
  margin: 0;
}
.internal-page .reservation-search-panel input {
  height: 52px;
  min-height: 52px;
  padding: 9px 14px;
  border-radius: 999px;
}
.internal-page .reservation-search-panel .button {
  align-self: end;
  width: 150px;
  height: 52px;
  min-height: 52px;
  padding: 8px 18px;
  margin: 0;
}
.internal-page .reservation-type-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: -4px 0 2px;
}
.internal-page .reservation-type-strip a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(0,188,212,.28);
  border-radius: 8px;
  background: rgba(0,188,212,.06);
  color: rgba(246,245,244,.84);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.internal-page .reservation-type-strip a:hover,
.internal-page .reservation-type-strip a.is-active {
  color: var(--turquoise);
  border-color: rgba(0,188,212,.58);
  background: rgba(0,188,212,.12);
}
.internal-page .reservation-type-strip strong {
  color: var(--turquoise);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 12px;
}
.internal-page .admin-table-wrap {
  background: rgba(255,255,255,.72);
}
.internal-page .admin-table {
  min-width: 0;
}
.internal-page .admin-table th {
  color: rgba(10,66,49,.78);
}
.internal-page .admin-table td {
  color: var(--green);
}
.internal-page .admin-table a {
  color: var(--green);
}
.internal-page .reservation-payments-summary {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  font-size: 14px;
}
.internal-page .reservation-payments-summary th,
.internal-page .reservation-payments-summary td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(10,66,49,.1);
  text-align: left;
  vertical-align: middle;
}
.internal-page .reservation-payments-summary th:last-child,
.internal-page .reservation-payments-summary td:last-child {
  text-align: center;
}
.internal-page .reservation-payments-summary th {
  color: rgba(10,66,49,.68);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.internal-page .reservation-payments-summary .button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 8px 16px;
  border-color: transparent;
  background: var(--lime);
  color: var(--green);
  font-size: 13px;
  white-space: nowrap;
  opacity: 1;
  box-shadow: 0 8px 18px rgba(170,255,0,.18);
}
.internal-page .payment-no-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  color: rgba(10,66,49,.7);
  font-weight: 850;
}
.internal-page .cancellation-form {
  display: grid;
  gap: 16px;
  padding: 0 clamp(18px, 2.2vw, 28px) clamp(18px, 2.2vw, 28px);
}
.internal-page .cancellation-form .form-row {
  grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(220px, 1fr));
  align-items: end;
  gap: 16px;
}
.internal-page .cancellation-hero,
.internal-page .cancellation-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.internal-page .cancellation-hero > div,
.internal-page .cancellation-results > div {
  border: 1px solid rgba(10,66,49,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.68);
  padding: 14px 16px;
}
.internal-page .cancellation-hero span,
.internal-page .cancellation-results span {
  display: block;
  color: rgba(10,66,49,.72);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.internal-page .cancellation-hero strong,
.internal-page .cancellation-results strong {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.05;
}
.internal-page .cancellation-hero em {
  display: block;
  margin-top: 8px;
  color: rgba(10,66,49,.62);
  font-style: normal;
  font-size: 13px;
}
.internal-page .cancellation-check {
  min-height: 58px;
  align-self: end;
  border-color: rgba(0,188,212,.28);
  background: rgba(0,188,212,.1);
}
.internal-page .cancellation-results {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.internal-page .cancellation-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.internal-page .cancellation-results .is-final {
  border-color: rgba(170,255,0,.48);
  background: rgba(170,255,0,.17);
}
@media (max-width: 900px) {
  .internal-page .cancellation-hero,
  .internal-page .cancellation-results {
    grid-template-columns: 1fr;
  }
  .internal-page .cancellation-form .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .internal-page .capacity-details {
    overflow: visible;
  }
  .internal-page .capacity-details summary {
    padding: 12px;
    overflow-wrap: anywhere;
  }
  .internal-page .capacity-details > :not(summary) {
    margin-left: 10px;
    margin-right: 10px;
  }
  .internal-page .admin-table-wrap {
    overflow: visible;
    background: transparent;
  }
  .internal-page .admin-table,
  .internal-page .admin-table tbody,
  .internal-page .admin-table tr,
  .internal-page .admin-table th,
  .internal-page .admin-table td {
    display: block;
    width: 100%;
  }
  .internal-page .admin-table tr {
    border-bottom: 1px solid rgba(10,66,49,.12);
    background: rgba(255,255,255,.68);
  }
  .internal-page .admin-table th,
  .internal-page .admin-table td {
    padding: 10px 16px;
    border: 0;
  }
  .internal-page .admin-table th {
    padding-bottom: 2px;
  }
  .internal-page .admin-table td {
    padding-top: 4px;
    overflow-wrap: anywhere;
  }
  .internal-page .reservation-payments-summary,
  .internal-page .reservation-payments-summary thead,
  .internal-page .reservation-payments-summary tbody,
  .internal-page .reservation-payments-summary tr,
  .internal-page .reservation-payments-summary th,
  .internal-page .reservation-payments-summary td {
    display: block;
    width: 100%;
  }
  .internal-page .reservation-payments-summary {
    margin-top: 6px;
  }
  .internal-page .reservation-payments-summary thead {
    display: none;
  }
  .internal-page .reservation-payments-summary tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(10,66,49,.12);
    background: transparent;
  }
  .internal-page .reservation-payments-summary tr:last-child {
    border-bottom: 0;
  }
  .internal-page .reservation-payments-summary td {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
    padding: 6px 0;
    border: 0;
    text-align: left !important;
  }
  .internal-page .reservation-payments-summary td::before {
    color: rgba(10,66,49,.62);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .internal-page .reservation-payments-summary td:nth-child(1)::before { content: "Concepto"; }
  .internal-page .reservation-payments-summary td:nth-child(2)::before { content: "Monto"; }
  .internal-page .reservation-payments-summary td:nth-child(3)::before { content: "Estado"; }
  .internal-page .reservation-payments-summary td:nth-child(4)::before { content: "Metodo"; }
  .internal-page .reservation-payments-summary td:nth-child(5)::before { content: "Accion"; }
  .internal-page .reservation-payment-link {
    grid-template-columns: 1fr;
  }
  .internal-page .reservation-payment-link-actions {
    justify-content: flex-start;
  }
  .internal-page .cancellation-form {
    padding: 0 10px 14px;
  }
  .internal-page .cancellation-hero strong,
  .internal-page .cancellation-results strong {
    font-size: 26px;
  }
  .internal-page .cancellation-form .button {
    width: 100%;
  }
}
.internal-page .reservation-edit-payments {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(10,66,49,.12);
}
.internal-page .reservation-edit-payments h3 {
  margin: 0;
  color: var(--green);
  font-size: 17px;
}
.internal-page .compact-payment-form {
  padding: 12px;
  border: 1px solid rgba(10,66,49,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.45);
}
.internal-page .reservation-card > .capacity-list {
  display: none;
}
.internal-page .success-box {
  border-color: rgba(170,255,0,.34);
  background: rgba(170,255,0,.16);
  color: var(--offwhite);
}
.internal-page .custom-payment-created {
  border-color: rgba(170,255,0,.42);
  background: #F6F5F4;
  color: var(--green);
}
.internal-page .custom-payment-created p,
.internal-page .custom-payment-created .form-note {
  color: rgba(10,66,49,.76);
}
.internal-page .custom-payment-context .form-note {
  margin: 0;
  color: rgba(10,66,49,.82);
  font-size: 14px;
  font-weight: 850;
}
.internal-page .custom-payment-actions .button.secondary {
  color: var(--offwhite);
  border-color: rgba(246,245,244,.62);
}
.internal-page .custom-payment-actions .button.secondary:hover {
  color: var(--green);
  border-color: var(--offwhite);
  background: var(--offwhite);
}
.internal-page .custom-payment-created .hero-actions .button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}
.internal-page .custom-payment-created .hero-actions .button.primary {
  color: var(--green);
  border-color: var(--lime);
  background: var(--lime);
}
.internal-page .custom-payment-created .hero-actions .button.secondary {
  color: var(--green);
  border-color: rgba(10,66,49,.42);
  background: transparent;
}
.internal-page .custom-payment-created .hero-actions .button.secondary:hover {
  color: var(--green);
  border-color: var(--turquoise);
  background: rgba(0,188,212,.12);
}
.internal-page .reservation-payment-link-actions .button {
  min-height: 38px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
}
.internal-page .reservation-payment-link-actions .button.primary {
  color: var(--green);
  border-color: var(--lime);
  background: var(--lime);
}
.internal-page .reservation-payment-link-actions .button.secondary {
  color: var(--green);
  border-color: rgba(10,66,49,.34);
  background: #fffdf7;
}
.internal-page .reservation-payment-link-actions .button.secondary:hover {
  color: var(--green);
  border-color: var(--turquoise);
  background: rgba(0,188,212,.12);
}
.internal-page .reservation-payment-link-actions .admin-status {
  min-height: 38px;
  align-items: center;
}
.internal-page .reservation-payment-link-actions form {
  display: inline-flex;
}
.internal-page .error-box {
  background: #fff1ee;
  color: #8c210a;
}
.internal-page .site-footer {
  margin-top: 0;
}
.crm-sheet-page main {
  background: var(--green);
}
body.crm-sheet-page .section.capacity-dashboard.crm-sheet-layout {
  width: min(100vw, 1760px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--internal-page-y);
  padding-left: clamp(14px, 2vw, 32px);
  padding-right: clamp(14px, 2vw, 32px);
  gap: 10px;
}
.crm-sheet-page .internal-main-nav {
  gap: 10px;
}
.crm-sheet-page .internal-main-nav-link {
  min-height: 42px;
  padding: 8px 12px;
}
.crm-sheet-topbar {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 2px;
}
.crm-sheet-page .internal-filter-tabs {
  width: auto;
  min-width: min(360px, 100%);
  padding-top: 0;
}
.crm-sheet-page .internal-filter-tabs a {
  min-height: 28px;
  padding: 5px 10px;
  font-size: 12px;
}
.crm-sheet-totals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--offwhite);
  font-size: 12px;
}
.crm-sheet-totals span,
.crm-sheet-totals a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid rgba(0,188,212,.28);
  border-radius: 8px;
  background: rgba(0,188,212,.06);
  color: rgba(246,245,244,.86);
  text-decoration: none;
}
.crm-sheet-totals strong {
  color: var(--turquoise);
}
.crm-sheet-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(10,66,49,.14);
  border-radius: 8px;
  background: #fffaf2;
}
.crm-sheet-filters {
  display: none;
}
.crm-sheet-scroll {
  width: 100%;
  max-height: calc(100vh - 180px);
  overflow: auto;
}
.crm-sheet-table {
  width: max-content;
  min-width: 3000px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--green);
  font-size: 12px;
  line-height: 1.35;
}
.crm-sheet-table th,
.crm-sheet-table td {
  width: 118px;
  max-width: 220px;
  padding: 7px 8px;
  border-right: 1px solid rgba(10,66,49,.10);
  border-bottom: 1px solid rgba(10,66,49,.10);
  vertical-align: top;
  background: #fffdf8;
}
.crm-sheet-table th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f3f6ef;
  color: rgba(10,66,49,.78);
  font-family: "Chivo Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.crm-sheet-table .crm-filter-row th {
  top: 31px;
  padding: 4px;
  background: #e9efe7;
}
.crm-sheet-table tbody tr:hover td {
  background: #f7fbef;
}
.crm-sheet-table td small {
  display: block;
  margin-top: 4px;
  color: rgba(10,66,49,.62);
  font-size: 11px;
}
.crm-sheet-table td strong {
  color: var(--green);
}
.crm-sheet-table a {
  color: var(--green);
  font-weight: 800;
}
.crm-sort-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.crm-sort-link b {
  color: rgba(10,66,49,.42);
  font-family: "Chivo", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1;
}
.crm-sort-link.is-active b {
  color: #00BCD4;
}
.crm-sheet-table th:nth-child(1),
.crm-sheet-table td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 4;
  width: 92px;
  background: #fffdf8;
}
.crm-sheet-table thead th:nth-child(1) {
  z-index: 7;
  background: #f3f6ef;
}
.crm-sheet-table .crm-filter-row th:nth-child(1) {
  z-index: 7;
  background: #e9efe7;
}
.crm-filter-cell {
  display: grid;
  gap: 3px;
}
.crm-filter-cell span {
  overflow: hidden;
  color: rgba(10,66,49,.55);
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.crm-filter-cell select,
.crm-filter-cell input,
.crm-cell-control {
  width: 100%;
  min-height: 28px;
  padding: 5px 7px;
  border: 1px solid rgba(10,66,49,.18);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--green);
  font: inherit;
}
.crm-filter-date {
  display: grid;
  grid-template-columns: minmax(44px, 1fr) minmax(42px, .9fr) minmax(34px, .7fr);
  gap: 3px;
}
.crm-filter-date label {
  display: grid;
  gap: 3px;
}
.crm-filter-date span {
  overflow: hidden;
  color: rgba(10,66,49,.55);
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.crm-filter-date select,
.crm-filter-date input {
  width: 100%;
  min-height: 28px;
  padding: 5px 4px;
  border: 1px solid rgba(10,66,49,.18);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--green);
  font: inherit;
}
.crm-filter-cell input::-webkit-outer-spin-button,
.crm-filter-cell input::-webkit-inner-spin-button,
.crm-filter-date input::-webkit-outer-spin-button,
.crm-filter-date input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.crm-cell-control.is-money {
  width: 94px;
}
.crm-cell-control.is-wide {
  width: 180px;
}
.crm-cell-control.is-saving {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(170,255,0,.16);
}
.crm-type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(10,66,49,.10);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}
.crm-type-pill.is-viaje {
  background: rgba(0,188,212,.16);
}
.crm-type-pill.is-tour {
  background: rgba(170,255,0,.24);
}
.crm-long-cell {
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.crm-empty-cell {
  height: 90px;
  text-align: center;
  color: rgba(10,66,49,.66);
}
@media (max-width: 720px) {
  .internal-page .page-hero.internal-hero {
    padding: 26px 16px 10px;
  }
  .internal-page .section.internal-layout,
  .internal-page .section.capacity-dashboard {
    padding-bottom: 36px;
  }
  .internal-page .internal-actions .button {
    width: 100%;
  }
  .internal-page .reservation-direct-search {
    grid-template-columns: 1fr;
  }
  .internal-page .reservation-direct-search .button {
    width: 100%;
  }
  .internal-page .reservation-quick-filters {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }
  .internal-page .reservation-quick-filters .button {
    width: 100%;
  }
  .internal-page .reservation-search-panel > .admin-filters {
    grid-template-columns: 1fr;
  }
  .internal-page .reservation-period-filter {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }
  .internal-page .reservation-period-filter .button {
    width: 100%;
  }
  .internal-page .reservation-search-panel .button {
    width: 100%;
  }
  .internal-main-nav,
  .internal-filter-tabs {
    width: min(100%, 354px);
  }
  .internal-nav-bar {
    padding-top: 84px;
  }
  .internal-home-mark {
    left: 50%;
    top: 16px;
    width: min(230px, 58vw);
    height: 46px;
    transform: translateX(-50%);
  }
  .internal-home-mark-iso {
    display: none;
  }
  .internal-home-mark-logo {
    display: block;
  }
  .internal-home-mark img.internal-home-mark-logo {
    width: 100%;
    height: 46px;
  }
  .internal-main-nav {
    grid-template-columns: repeat(2, 172px);
  }
  .internal-filter-tabs a {
    width: 100%;
  }
  .internal-page .capacity-block {
    padding: 16px;
  }
  .crm-sheet-topbar {
    align-items: stretch;
    flex-direction: column;
  }
  .crm-sheet-totals {
    justify-content: flex-start;
  }
  .crm-sheet-scroll {
    max-height: calc(100vh - 230px);
  }
}
@media (max-width: 390px) {
  .internal-main-nav {
    grid-template-columns: 172px;
  }
}
