@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("../fonts/source-serif-4-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #182321;
  --ink-soft: #34413e;
  --paper: #f3eee3;
  --surface: #fbf8f1;
  --lapis: #24516a;
  --lapis-deep: #173a4c;
  --oxide: #ad583f;
  --verdigris: #617c70;
  --sand-line: #d7cdbc;
  --gold-wash: #d8b66b;
  --white: #fffefa;
  --max: 1180px;
  --reading: 740px;
  --header-h: 78px;
  --shadow: 0 22px 60px rgba(24, 35, 33, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(24, 35, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 35, 33, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

a {
  color: var(--lapis);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--oxide);
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-wash);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.reading {
  width: min(calc(100% - 3rem), var(--reading));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(24, 35, 33, 0.12);
  backdrop-filter: blur(14px);
}

.header-row {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 48%, var(--oxide) 48% 52%, transparent 52%),
    var(--surface);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border: 1px solid var(--ink);
}

.brand-mark::before {
  inset: 7px 12px;
}

.brand-mark::after {
  inset: 12px 7px;
  border-color: var(--lapis);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav a {
  position: relative;
  padding: 0.62rem 0.72rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.36rem;
  left: 0.72rem;
  height: 2px;
  content: "";
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav .nav-cta {
  margin-left: 0.35rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--lapis-deep);
}

.nav .nav-cta::after {
  display: none;
}

.nav .nav-cta:hover {
  color: var(--white);
  background: var(--oxide);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--sand-line);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: 0.25s var(--ease);
}

.menu-toggle::before { top: 14px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 28px; }
.menu-toggle[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::after { top: 21px; transform: rotate(-45deg); }

.independent-strip {
  color: #e4eee9;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.independent-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.055em;
}

.hero {
  position: relative;
  min-height: min(810px, calc(100vh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(4.5rem, 9vw, 8rem) max(2rem, calc((100vw - var(--max)) / 2));
  padding-right: clamp(2rem, 5vw, 5rem);
}

.hero-copy::before {
  position: absolute;
  top: 2rem;
  left: max(2rem, calc((100vw - var(--max)) / 2));
  width: 82px;
  height: 82px;
  content: "";
  border: 1px solid rgba(216, 182, 107, 0.55);
  transform: rotate(45deg);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--oxide);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e3c987;
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: rgba(255, 254, 250, 0.78);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(24, 35, 33, 0.62), transparent 28%),
    linear-gradient(180deg, transparent 60%, rgba(24, 35, 33, 0.55));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  max-width: 25rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  color: rgba(255,255,255,0.82);
  background: rgba(24, 35, 33, 0.78);
  font-size: 0.68rem;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid currentColor;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
}

.btn:hover {
  color: var(--ink);
  background: var(--gold-wash);
  border-color: var(--gold-wash);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--sand-line);
}

.btn-light:hover {
  color: var(--white);
  background: var(--oxide);
  border-color: var(--oxide);
}

.btn-lapis {
  color: var(--white);
  background: var(--lapis-deep);
  border-color: var(--lapis-deep);
}

.btn-lapis:hover {
  color: var(--white);
  background: var(--oxide);
  border-color: var(--oxide);
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.section-compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-surface {
  background: var(--surface);
  border-block: 1px solid var(--sand-line);
}

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

.section-lapis {
  color: var(--white);
  background: var(--lapis-deep);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-head p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-ink .section-head p:last-child,
.section-lapis .section-head p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
}

.museum-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.museum-card {
  grid-column: span 4;
  min-width: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--sand-line);
  text-decoration: none;
  transition: 0.35s var(--ease);
}

.museum-card:nth-child(1),
.museum-card:nth-child(5) {
  grid-column: span 8;
}

.museum-card:hover {
  color: var(--ink);
  border-color: var(--oxide);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.museum-card-media {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--sand-line);
}

.museum-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.museum-card:hover .museum-card-media img {
  transform: scale(1.035);
}

.museum-card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.museum-card-index,
.index-label {
  color: var(--oxide);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.museum-card h3 {
  margin-bottom: 0.45rem;
}

.museum-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: stretch;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--sand-line);
}

.feature-media {
  min-height: 520px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.feature-copy h2 {
  margin-bottom: 1.25rem;
}

.number-list {
  display: grid;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sand-line);
}

.number-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand-line);
}

.number-list span {
  color: var(--oxide);
  font-size: 0.72rem;
  font-weight: 700;
}

.route-grid,
.planning-grid,
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-card,
.planning-card,
.fact-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: inherit;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.planning-card,
.fact-card {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--sand-line);
}

.route-card:hover {
  color: var(--white);
  border-color: var(--gold-wash);
}

.planning-card:hover {
  color: var(--ink);
  border-color: var(--oxide);
}

.route-card h3,
.planning-card h3,
.fact-card h3 {
  margin-top: 1.2rem;
}

.route-card p,
.planning-card p,
.fact-card p {
  margin-bottom: 0;
  opacity: 0.78;
}

.quote {
  margin: 0;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid var(--gold-wash);
}

.quote p {
  max-width: 26ch;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.13;
}

.quote cite {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 182, 107, 0.2), transparent 32%),
    linear-gradient(135deg, var(--ink), var(--lapis-deep));
}

.page-hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

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

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
}

.page-hero p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.65rem;
  content: "/";
  opacity: 0.5;
}

.breadcrumbs a {
  color: inherit;
}

.dossier-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  min-height: 640px;
  color: var(--white);
  background: var(--ink);
}

.dossier-media {
  position: relative;
  min-height: 560px;
}

.dossier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dossier-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(24,35,33,0.75));
}

.dossier-caption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.7rem;
}

.dossier-copy {
  align-self: center;
  padding: clamp(2.2rem, 5vw, 5rem);
}

.dossier-copy h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.dossier-copy .lead {
  color: rgba(255,255,255,0.72);
}

.visit-brief {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--sand-line);
  background: var(--surface);
}

.visit-brief > div {
  padding: 1.4rem;
  border-right: 1px solid var(--sand-line);
}

.visit-brief > div:last-child {
  border-right: 0;
}

.visit-brief dt {
  margin-bottom: 0.45rem;
  color: var(--oxide);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-brief dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
}

.prose {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.75;
}

.prose h2,
.prose h3 {
  color: var(--ink);
}

.prose h2 {
  margin: 3.6rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.prose h3 {
  margin: 2.2rem 0 0.6rem;
  font-size: 1.55rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li {
  margin-bottom: 0.65rem;
}

.prose strong {
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.side-index {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--sand-line);
}

.side-index h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.side-index ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-index a {
  font-size: 0.84rem;
  font-weight: 650;
}

.official-card,
.accuracy-card {
  margin-top: 2rem;
  padding: 1.5rem;
  color: var(--ink);
  background: #ece3cb;
  border-left: 4px solid var(--gold-wash);
}

.official-card h2,
.official-card h3,
.accuracy-card h2,
.accuracy-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.official-card p:last-child,
.accuracy-card p:last-child {
  margin-bottom: 0;
}

.link-note {
  display: block;
  margin-top: 0.35rem;
  color: #59635f;
  font-size: 0.76rem;
}

.source-note {
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-line);
  color: #59635f;
  font-size: 0.78rem;
}

.timeline {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0 1.4rem 2rem;
  border-left: 1px solid var(--oxide);
  counter-increment: route;
}

.timeline li::before {
  position: absolute;
  top: 1.75rem;
  left: -0.55rem;
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  background: var(--paper);
  border: 3px solid var(--oxide);
  border-radius: 50%;
}

.timeline time,
.timeline .time-label {
  color: var(--oxide);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 0.35rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--sand-line);
}

.comparison {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
}

.comparison th,
.comparison td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--sand-line);
}

.comparison th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.glossary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--sand-line);
  border: 1px solid var(--sand-line);
}

.glossary > div {
  padding: 1.5rem;
  background: var(--surface);
}

.glossary dt {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 650;
}

.glossary dd {
  margin: 0;
  color: var(--ink-soft);
}

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq details {
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--sand-line);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
}

.faq details p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  background: var(--lapis-deep);
}

.cta-band::after {
  position: absolute;
  right: -4rem;
  bottom: -8rem;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255,255,255,0.18);
  transform: rotate(45deg);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.cta-band p {
  max-width: 42rem;
  color: rgba(255,255,255,0.72);
}

.site-footer {
  color: rgba(255,255,255,0.7);
  background: #101816;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4.5rem 0;
}

.footer-brand .brand {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(255,255,255,0.55);
}

.footer-brand p {
  max-width: 25rem;
  font-size: 0.85rem;
}

.footer-main h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-main ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--gold-wash);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.7rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s !important; }
.reveal-delay-2 { transition-delay: 0.16s !important; }

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.not-found .code {
  margin: 0;
  color: var(--oxide);
  font-family: var(--font-display);
  font-size: clamp(7rem, 24vw, 18rem);
  line-height: 0.8;
}

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

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    padding: 1rem max(1.5rem, calc((100vw - var(--max)) / 2));
    background: var(--surface);
    border-bottom: 1px solid var(--sand-line);
    box-shadow: 0 24px 40px rgba(24,35,33,0.12);
  }

  .js .nav {
    display: none;
  }

  .js .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 0.8rem 0;
  }

  .nav a::after {
    right: 0;
    bottom: 0.5rem;
    left: 0;
    transform-origin: center;
  }

  .nav .nav-cta {
    margin: 0.5rem 0 0;
    padding: 0.8rem 1rem;
    text-align: center;
  }

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

  .hero-copy {
    min-height: 540px;
    display: grid;
    align-content: center;
    padding-inline: max(1.5rem, calc((100vw - var(--max)) / 2));
  }

  .hero-copy::before {
    left: max(1.5rem, calc((100vw - var(--max)) / 2));
  }

  .hero-media {
    min-height: 500px;
  }

  .museum-card,
  .museum-card:nth-child(1),
  .museum-card:nth-child(5) {
    grid-column: span 6;
  }

  .dossier-hero {
    grid-template-columns: 1fr;
  }

  .dossier-media {
    min-height: 520px;
  }

  .visit-brief {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-brief > div:nth-child(2) {
    border-right: 0;
  }

  .visit-brief > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--sand-line);
  }
}

@media (max-width: 800px) {
  .wrap,
  .reading {
    width: min(calc(100% - 2rem), var(--max));
  }

  .section-head,
  .feature-split,
  .two-col {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 420px;
  }

  .route-grid,
  .planning-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .side-index {
    position: static;
    order: -1;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root { --header-h: 70px; }

  .brand-sub { display: none; }
  .independent-strip .wrap { min-height: 42px; }
  .hero-copy { min-height: 500px; }
  .hero-media { min-height: 360px; }
  .hero-caption { right: 0.7rem; bottom: 0.7rem; left: 0.7rem; }

  .museum-card,
  .museum-card:nth-child(1),
  .museum-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .museum-card-body {
    grid-template-columns: 1fr;
  }

  .dossier-media { min-height: 380px; }
  .dossier-copy { padding: 2.3rem 1.25rem 3rem; }

  .visit-brief {
    grid-template-columns: 1fr;
  }

  .visit-brief > div,
  .visit-brief > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--sand-line);
  }

  .visit-brief > div:last-child { border-bottom: 0; }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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