:root {
  --ink: #1b1c1a;
  --ink-soft: #282a26;
  --bone: #f1ebdd;
  --salt: #faf8f3;
  --limestone: #cfc4b0;
  --terracotta: #a95e46;
  --agave: #7c816a;
  --line-dark: rgba(250, 248, 243, 0.2);
  --line-light: rgba(27, 28, 26, 0.2);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --gutter: clamp(1.25rem, 3.5vw, 4.5rem);
  --shadow: 0 1.5rem 4rem rgba(27, 28, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body:has(.mobile-action-bar) {
  padding-bottom: 0;
}

::selection {
  color: var(--salt);
  background: var(--terracotta);
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--salt);
  background: var(--terracotta);
  transform: translateY(-150%);
}

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

.concept-banner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.15rem;
  padding: 0.42rem var(--gutter);
  color: var(--salt);
  background: var(--terracotta);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.concept-banner__mark {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  background: var(--salt);
}

.concept-banner__detail {
  margin-left: auto;
  color: rgba(250, 248, 243, 0.82);
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  color: var(--salt);
  background: rgba(27, 28, 26, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.2rem;
  padding: 0 var(--gutter);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.14rem;
  color: var(--salt);
  text-decoration: none;
}

.wordmark__name,
.footer-lockup .wordmark__name {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.31em;
  line-height: 1;
}

.wordmark__qualifier {
  color: var(--limestone);
  font-size: 0.47rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.7vw, 3.2rem);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--salt);
  text-decoration: none;
  transition: color 180ms ease;
}

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

.nav-index {
  color: var(--agave);
  font-size: 0.56rem;
  letter-spacing: 0.04em;
}

.nav-rule {
  width: 1px;
  height: 1.2rem;
  background: var(--line-dark);
}

.language-toggle,
.menu-toggle {
  color: var(--salt);
  cursor: pointer;
  border: 0;
  background: transparent;
}

.language-toggle {
  padding: 0.4rem 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.language-toggle:hover {
  color: var(--terracotta);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: min(47rem, calc(100svh - 7.35rem));
  color: var(--salt);
  background: var(--ink);
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42rem;
  padding: clamp(3rem, 7vw, 7.4rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero__copy::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  content: "";
  border: 1px solid rgba(207, 196, 176, 0.19);
  transform: rotate(45deg);
}

.hero__grid-mark {
  position: absolute;
  top: 5.5rem;
  right: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 0.34rem);
  gap: 0.35rem;
  opacity: 0.9;
}

.hero__grid-mark span {
  display: block;
  width: 0.34rem;
  height: 0.34rem;
  background: var(--terracotta);
}

.hero__grid-mark span:nth-child(2) {
  background: var(--limestone);
}

.hero__grid-mark span:nth-child(3) {
  background: transparent;
  border: 1px solid var(--limestone);
}

.eyebrow,
.section-kicker,
.section-side-note,
.module-topline,
.location-block__label,
.image-caption,
.place-note__index,
.aside-label,
.visual-language__intro,
.scroll-cue,
.image-caption__index {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 clamp(2rem, 4vw, 3.7rem);
  color: var(--limestone);
}

.eyebrow__line,
.section-kicker__rule {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1,
.section h2,
.gate-section h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7.2vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

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

.hero__lead {
  max-width: 27rem;
  margin: 2.1rem 0 0;
  color: var(--limestone);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.guide-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 28rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.guide-note__stamp {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--salt);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.guide-note strong,
.guide-note a {
  display: block;
}

.guide-note strong {
  color: var(--salt);
  font-size: 0.75rem;
  font-weight: 600;
}

.guide-note a {
  width: fit-content;
  margin-top: 0.2rem;
  color: var(--limestone);
  font-size: 0.68rem;
  text-underline-offset: 0.25em;
}

.guide-note a:hover {
  color: var(--terracotta);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.05rem;
  padding: 0.75rem 1.05rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  border: 1px solid transparent;
}

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

.button--outline {
  color: var(--salt);
  border-color: rgba(250, 248, 243, 0.65);
  background: transparent;
}

.button--dark {
  color: var(--salt);
  background: var(--ink);
}

.button--terracotta {
  color: var(--salt);
  background: var(--terracotta);
}

.button__status {
  color: var(--agave);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.button--outline .button__status {
  color: var(--limestone);
}

.action--disabled,
button:disabled {
  cursor: not-allowed;
}

.action--disabled {
  position: relative;
  opacity: 0.64;
}

.action--disabled::after {
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--terracotta);
}

.hero__microcopy {
  max-width: 28rem;
  margin: 0.9rem 0 0;
  color: rgba(207, 196, 176, 0.78);
  font-size: 0.66rem;
  line-height: 1.5;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: clamp(2rem, 5vw, 4rem);
  color: var(--salt);
  text-decoration: none;
}

.scroll-cue__number {
  color: var(--terracotta);
}

.scroll-cue__line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--salt);
  opacity: 0.55;
}

.hero__image {
  min-height: 42rem;
}

.image-frame,
.gallery-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.image-frame img,
.gallery-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image img {
  object-position: center;
}

.image-frame__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 28, 26, 0.22), transparent 32%), linear-gradient(0deg, rgba(27, 28, 26, 0.5), transparent 34%);
  pointer-events: none;
}

.image-caption,
.gallery-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  color: var(--salt);
  background: linear-gradient(0deg, rgba(27, 28, 26, 0.82), transparent);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.image-caption__index,
.gallery-figure figcaption span:first-child {
  color: var(--terracotta);
}

.route-table-place {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem var(--gutter);
  color: var(--ink);
  background: var(--limestone);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.route-table-place__connector {
  width: 2.5rem;
  height: 1px;
  background: rgba(27, 28, 26, 0.55);
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) var(--gutter);
}

.section__intro {
  max-width: 60rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.section-kicker > span:first-child {
  color: var(--terracotta);
}

.section-kicker__rule {
  width: 2rem;
}

.section h2,
.gate-section h2 {
  font-size: clamp(2.9rem, 6vw, 6.4rem);
  line-height: 0.94;
}

.section__intro p,
.table-section__heading p,
.place-section__intro > p,
.gate-section__content > p {
  max-width: 32rem;
  margin: 2rem 0 0;
  font-size: 1.05rem;
}

.section__intro--dark p {
  color: var(--limestone);
}

.route-section {
  display: grid;
  grid-template-columns: minmax(15rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--salt);
  background: var(--ink);
}

.route-section__utility {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.location-block {
  grid-column: 1 / -1;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.location-block__label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--agave);
}

.location-block strong {
  display: block;
  color: var(--salt);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.location-block__region {
  display: block;
  margin-top: 1.1rem;
  color: var(--limestone);
  font-size: 0.77rem;
}

.route-cards {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.status-card {
  min-height: 13rem;
  padding: 1.2rem;
  background: var(--ink);
}

.status-card__number,
.module-index,
.module-state {
  color: var(--agave);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-card h3,
.table-grid h3 {
  margin: 3rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.status-card p {
  max-width: 15rem;
  margin: 0;
  color: var(--limestone);
  font-size: 0.8rem;
}

.status-card__state {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--terracotta);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--terracotta);
}

.route-button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.3rem;
}

.table-section {
  background: var(--bone);
}

.table-section__topline,
.place-section__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.table-section__topline .section-kicker,
.place-section__topline .section-kicker {
  margin-bottom: 1rem;
}

.section-side-note {
  color: var(--agave);
  font-weight: 600;
  text-align: right;
}

.table-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: 4rem;
  align-items: end;
  padding: 4rem 0 clamp(3rem, 6vw, 5.5rem);
}

.table-section__heading h2 {
  max-width: 10ch;
}

.table-section__heading p {
  margin-bottom: 0.45rem;
  color: #53534b;
}

.table-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.menu-placeholder,
.service-placeholder,
.table-callout {
  min-height: 22rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line-light);
}

.menu-placeholder {
  display: flex;
  flex-direction: column;
  color: var(--salt);
  background: var(--ink);
}

.module-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.module-state {
  color: var(--terracotta);
}

.table-grid h3 {
  margin-top: 3.9rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.menu-placeholder p {
  max-width: 27rem;
  margin: 0;
  color: var(--limestone);
  font-size: 0.9rem;
}

.menu-lines {
  display: grid;
  gap: 0.7rem;
  margin: auto 0 1.3rem;
  opacity: 0.62;
}

.menu-lines span {
  display: block;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--limestone) 0 38%, transparent 38% 43%, var(--limestone) 43% 64%, transparent 64% 68%, var(--limestone) 68% 79%, transparent 79%);
}

.menu-lines span:nth-child(2) {
  width: 88%;
}

.menu-lines span:nth-child(3) {
  width: 72%;
}

.menu-lines span:nth-child(4) {
  width: 94%;
}

.service-placeholder {
  background: rgba(207, 196, 176, 0.25);
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.85rem;
}

.service-row span {
  color: #55564f;
}

.service-row strong {
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-note {
  max-width: 17rem;
  margin: 2rem 0 0;
  color: #55564f;
  font-size: 0.78rem;
}

.table-callout {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: auto;
  color: var(--salt);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.table-callout__mark {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(250, 248, 243, 0.6);
  font-size: 1.3rem;
}

.table-callout p {
  max-width: 28rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.1;
}

.text-button {
  min-width: max-content;
  color: var(--salt);
  border: 1px solid rgba(250, 248, 243, 0.7);
  background: transparent;
}

.text-button__arrow {
  font-size: 1.1rem;
}

.place-section {
  color: var(--salt);
  background: var(--ink);
}

.place-section__topline {
  border-color: var(--line-dark);
}

.place-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.55fr);
  gap: 4rem;
  align-items: end;
  padding: 4rem 0 clamp(3.5rem, 7vw, 6rem);
}

.place-section__intro h2 {
  max-width: 11ch;
}

.place-section__intro > p {
  margin: 0 0 0.4rem;
  color: var(--limestone);
}

.place-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
  gap: 1rem;
}

.gallery-figure--wide {
  min-height: 34rem;
}

.gallery-figure--wide img {
  object-position: center;
}

.place-gallery__side {
  display: grid;
  grid-template-rows: minmax(14rem, 1fr) auto;
  gap: 1rem;
}

.gallery-figure--small {
  min-height: 19rem;
}

.gallery-figure--small img {
  object-position: center;
  filter: saturate(0.78);
}

.place-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 14rem;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--salt);
}

.place-note__index {
  margin-bottom: 2.2rem;
  color: var(--terracotta);
}

.place-note strong {
  max-width: 13rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
}

.place-note a {
  width: fit-content;
  margin-top: 1.2rem;
  color: var(--agave);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-underline-offset: 0.25em;
}

.place-note a:hover {
  color: var(--terracotta);
}

.visual-language {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1.2fr) minmax(12rem, 0.9fr);
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.visual-language__intro {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--limestone);
}

.visual-language__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.visual-language__items span {
  padding: 0.45rem 0.65rem;
  color: var(--salt);
  border: 1px solid var(--line-dark);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.palette {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
}

.swatch {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(250, 248, 243, 0.22);
}

.swatch--ink { background: var(--ink); }
.swatch--bone { background: var(--bone); }
.swatch--limestone { background: var(--limestone); }
.swatch--terracotta { background: var(--terracotta); }
.swatch--agave { background: var(--agave); }

.palette__label {
  max-width: 6.5rem;
  margin-left: 0.5rem;
  color: var(--limestone);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gate-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.35fr);
  gap: 3rem;
  min-height: 30rem;
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
  color: var(--ink);
  background: var(--limestone);
  overflow: hidden;
}

.gate-section__shape {
  position: absolute;
  top: -8rem;
  right: 18%;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(27, 28, 26, 0.28);
  transform: rotate(45deg);
}

.gate-section__content,
.gate-section__aside {
  position: relative;
  z-index: 1;
}

.gate-section h2 {
  max-width: 11ch;
}

.gate-section__content > p {
  max-width: 35rem;
  color: #4f5049;
}

.gate-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.8rem 2.5rem;
  margin-top: 2.4rem;
}

.gate-list div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.gate-list__box {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--terracotta);
}

.gate-section__aside {
  display: flex;
  flex-direction: column;
  align-self: end;
  justify-self: end;
  max-width: 18rem;
  padding: 1.4rem;
  color: var(--salt);
  background: var(--ink);
}

.aside-label {
  color: var(--agave);
}

.gate-section__aside strong {
  margin: 3rem 0 0.8rem;
  color: var(--terracotta);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.gate-section__aside > span:last-child {
  color: var(--limestone);
  font-size: 0.72rem;
}

.site-footer {
  color: var(--salt);
  background: var(--ink);
}

.site-footer__top,
.site-footer__bottom {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-lockup .wordmark__qualifier {
  color: var(--terracotta);
}

.site-footer__top p {
  max-width: 18rem;
  margin: 0;
  color: var(--limestone);
  font-size: 0.8rem;
}

.footer-back {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--salt);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-back:hover {
  color: var(--terracotta);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  color: var(--limestone);
  font-size: 0.65rem;
}

.credits-details {
  max-width: 32rem;
  color: var(--limestone);
}

.credits-details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--salt);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credits-details p {
  margin: 1rem 0 0;
  line-height: 1.5;
}

.credits-details a {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--terracotta);
  text-underline-offset: 0.25em;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7.5vw, 6rem);
  }

  .route-section {
    gap: 4rem;
  }

  .table-section__heading,
  .place-section__intro {
    gap: 2.5rem;
  }

  .visual-language {
    grid-template-columns: 1fr 1fr;
  }

  .palette {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4.25rem;
  }

  .concept-banner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    min-height: 2.7rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    font-size: 0.56rem;
  }

  .concept-banner__detail {
    width: 100%;
    margin-left: 1.05rem;
  }

  .site-header__inner {
    min-height: 4.65rem;
  }

  .wordmark__name,
  .footer-lockup .wordmark__name {
    font-size: 1.05rem;
  }

  .wordmark__qualifier {
    font-size: 0.4rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: inline-flex;
    flex-direction: column;
    gap: 0.28rem;
  }

  .menu-toggle__lines span {
    display: block;
    width: 1.15rem;
    height: 1px;
    background: var(--salt);
    transition: transform 180ms ease;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a,
  .language-toggle {
    padding: 0.8rem 0;
  }

  .nav-rule {
    width: 100%;
    height: 1px;
    margin: 0.4rem 0;
  }

  .language-toggle {
    width: fit-content;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero__image {
    order: -1;
  }

  .hero__copy {
    min-height: 33rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__grid-mark {
    top: 3.1rem;
    right: var(--gutter);
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .hero__lead {
    max-width: 17rem;
    margin-top: 1.5rem;
  }

  .guide-note {
    margin-top: 1.5rem;
  }

  .hero__actions {
    margin-top: 1.6rem;
  }

  .hero__actions .button {
    flex: 1 1 10rem;
  }

  .hero__microcopy {
    max-width: 21rem;
  }

  .scroll-cue {
    margin-top: 2rem;
  }

  .hero__image {
    min-height: 19rem;
    max-height: 25rem;
  }

  .hero__image img {
    object-position: 56% center;
  }

  .route-table-place {
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.5rem;
  }

  .route-table-place__connector {
    width: 1rem;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section h2,
  .gate-section h2 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .section__intro p,
  .table-section__heading p,
  .place-section__intro > p,
  .gate-section__content > p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  .route-section,
  .table-section__heading,
  .place-section__intro,
  .table-grid,
  .place-gallery,
  .gate-section {
    display: flex;
    flex-direction: column;
  }

  .route-section {
    gap: 3rem;
  }

  .route-section__utility {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .location-block {
    padding-bottom: 1.5rem;
  }

  .location-block strong {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .route-cards {
    width: 100%;
  }

  .status-card {
    min-height: 14.5rem;
    padding: 1rem;
  }

  .status-card h3 {
    margin-top: 2.4rem;
    font-size: 1.45rem;
  }

  .table-section__heading,
  .place-section__intro {
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .table-section__heading h2,
  .place-section__intro h2 {
    max-width: 9ch;
  }

  .menu-placeholder,
  .service-placeholder {
    min-height: 21rem;
  }

  .table-callout {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .table-callout p {
    flex-basis: calc(100% - 5rem);
  }

  .place-gallery {
    gap: 1rem;
  }

  .gallery-figure--wide {
    min-height: 22rem;
  }

  .place-gallery__side {
    display: flex;
    flex-direction: column;
  }

  .gallery-figure--small {
    min-height: 16rem;
  }

  .place-note {
    min-height: 13rem;
  }

  .visual-language {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .palette {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .gate-section {
    gap: 3rem;
    min-height: auto;
  }

  .gate-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gate-section__aside {
    align-self: stretch;
    justify-self: stretch;
    max-width: none;
  }

  .site-footer__top,
  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top {
    gap: 2rem;
  }

  .site-footer__bottom {
    gap: 1.5rem;
  }

  .credits-details {
    max-width: none;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 9;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 4.25rem;
    color: var(--salt);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
  }

  .mobile-action-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: var(--salt);
    border: 0;
    border-right: 1px solid var(--line-dark);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-action-bar button:last-child {
    border-right: 0;
  }

  .mobile-action-bar small {
    color: var(--terracotta);
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 460px) {
  .hero__copy {
    min-height: 35rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .route-cards {
    grid-template-columns: 1fr;
  }

  .status-card {
    min-height: auto;
  }

  .status-card + .status-card {
    border-top: 1px solid var(--line-dark);
  }

  .table-callout p {
    flex-basis: 100%;
  }

  .table-callout__mark {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 390px) {
  .hero__image {
    min-height: 16rem;
    max-height: 16rem;
  }

  .hero__copy {
    min-height: auto;
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero__actions .button {
    min-height: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── Evidence / fuentes section (concept QA build) ─────────────── */

.evidence-section {
  background: var(--bone);
}

.evidence-section__topline,
.evidence-section__intro {
  max-width: 60rem;
}

.evidence-section__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  margin-top: 3rem;
}

.evidence-panel,
.evidence-links {
  min-height: 18rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line-light);
}

.evidence-panel {
  color: var(--salt);
  background: var(--ink);
}

.evidence-links {
  background: rgba(207, 196, 176, 0.25);
}

.evidence-grid h3 {
  margin: 3.9rem 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}

.evidence-rows {
  display: grid;
  margin-top: 1.5rem;
}

.evidence-row {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) minmax(0, 2fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
}

.evidence-row span {
  color: var(--agave);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evidence-row strong {
  color: var(--salt);
  font-weight: 400;
}

.evidence-row--alert strong {
  color: var(--terracotta);
  font-weight: 700;
}

.evidence-links ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.evidence-links a {
  color: var(--ink);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-light);
}

.evidence-links a:hover,
.evidence-links a:focus-visible {
  border-bottom-color: var(--terracotta);
}

.evidence-links p {
  margin: 1.5rem 0 0;
  color: #55564f;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .evidence-grid {
    grid-template-columns: 1fr;
  }
}
