/* History Pass — design system
   Reed green + apricot heat + cool limestone (not Nile-navy / pharaoh-gold) */

:root {
  --reed: #1b3a34;
  --reed-deep: #122824;
  --reed-soft: #2a524a;
  --apricot: #e07a3d;
  --apricot-deep: #c45f28;
  --mist: #e8ede9;
  --paper: #f7f9f8;
  --ink: #1a1f1c;
  --ink-muted: #4a5550;
  --sky: #b8cdd1;
  --sky-deep: #7a9aa0;
  --line: rgba(27, 58, 52, 0.14);
  --shadow: 0 18px 50px rgba(18, 40, 36, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Literata", "Georgia", serif;
  --max: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(184, 205, 209, 0.35), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(224, 122, 61, 0.08), transparent 45%),
    linear-gradient(180deg, var(--paper), var(--mist) 140%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--reed);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--apricot-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--reed-deep);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 249, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--apricot) 0%, var(--apricot) 18%, transparent 18%);
  pointer-events: none;
}

.header-shell,
.header-main {
  height: 100%;
}

.header-shell {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.header-spine,
.header-rail {
  display: none;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--reed-deep);
  flex-shrink: 0;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand-name em {
  font-style: normal;
  color: var(--apricot);
}

.brand-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-muted);
  position: relative;
  padding: 0.45rem 0.7rem;
  transition: color 0.25s var(--ease);
}

.nav a::before {
  display: none;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--apricot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--reed-deep);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--reed) !important;
  color: var(--paper) !important;
  padding: 0.55rem 1rem !important;
  margin-left: 0.5rem;
  border-radius: var(--radius);
  text-decoration: none !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--apricot) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--reed);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 40, 36, 0.35) 0%, rgba(18, 40, 36, 0.55) 45%, rgba(18, 40, 36, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 40, 36, 0.55), transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 0.35em;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.9s var(--ease) both;
}

.hero h1,
.hero-title {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 0.6em;
  animation: fadeUp 0.9s 0.1s var(--ease) both;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.18s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s 0.26s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.page-hero .hero-media,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
  transform: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 3rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--apricot);
  margin-bottom: 0.75rem;
}

.page-hero .eyebrow {
  color: #f0c9a8;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--apricot);
  color: #fff;
}

.btn-primary:hover {
  background: var(--apricot-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-dark {
  background: var(--reed);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--reed-soft);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--reed);
  color: var(--reed);
}

.btn-outline:hover {
  background: var(--reed);
  color: #fff;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-reed {
  background: var(--reed-deep);
  color: rgba(247, 249, 248, 0.9);
}

.section-reed h2,
.section-reed h3 {
  color: #fff;
}

.section-mist {
  background: rgba(232, 237, 233, 0.7);
}

.section-sky {
  background: linear-gradient(135deg, rgba(184, 205, 209, 0.35), rgba(247, 249, 248, 0.9));
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.section-reed .section-head p {
  color: rgba(247, 249, 248, 0.75);
}

/* Destination mosaic — asymmetric, not card-grid spam */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--reed);
  text-decoration: none;
  color: #fff;
  display: block;
}

.mosaic-item:first-child {
  grid-row: span 2;
  min-height: 580px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  opacity: 0.85;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(transparent, rgba(18, 40, 36, 0.92));
}

.mosaic-caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 0.35rem;
}

.mosaic-caption strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media {
  overflow: hidden;
  min-height: 360px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.split:hover .split-media img {
  transform: scale(1.03);
}

.split-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.split-copy .lede {
  font-size: 1.15rem;
  color: var(--ink-muted);
}

/* Feature list / tips */
.tip-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.tip-list li {
  padding: 1rem 0 1rem 1.1rem;
  border-left: 3px solid var(--apricot);
  background: rgba(255, 255, 255, 0.45);
}

.tip-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--reed);
  margin-bottom: 0.2rem;
}

/* Itinerary timeline */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 0.5rem;
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--apricot);
  box-shadow: 0 0 0 4px var(--paper);
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.timeline-day {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* Region link rows */
.region-rows {
  display: grid;
  gap: 0;
}

.region-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s var(--ease);
}

.region-row:hover {
  padding-left: 0.5rem;
}

.region-row img {
  width: 140px;
  height: 90px;
  object-fit: cover;
}

.region-row h3 {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
}

.region-row p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.region-row .arrow {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--apricot);
  font-size: 1.4rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-grid figure {
  margin: 0;
  grid-column: span 4;
  overflow: hidden;
  position: relative;
  background: var(--reed);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(7) {
  grid-column: span 6;
  min-height: 360px;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(10) {
  grid-column: span 8;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.55s var(--ease), opacity 0.35s;
  opacity: 0.95;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(18, 40, 36, 0.85));
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  padding: 0.25rem 1.15rem;
  transition: border-color 0.25s;
}

.faq details[open] {
  border-color: var(--apricot);
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  padding: 1rem 0;
  list-style: none;
  color: var(--reed-deep);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--apricot);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--ink-muted);
  padding-bottom: 0.85rem;
}

/* Stats strip — subtle, not pill cluster */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--apricot);
  letter-spacing: -0.03em;
}

.stat-strip span {
  font-size: 0.95rem;
  color: rgba(247, 249, 248, 0.75);
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--reed);
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--reed);
  box-shadow: 0 0 0 3px rgba(27, 58, 52, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1.25rem 1.4rem;
  background: rgba(27, 58, 52, 0.08);
  border-left: 3px solid var(--reed);
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.45s var(--ease);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-details dt {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--apricot-deep);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-details dd {
  margin: 0;
  font-size: 1.05rem;
}

.contact-details a {
  text-decoration: none;
  font-weight: 600;
}

/* Legal prose */
.prose h2 {
  margin-top: 2.2rem;
  font-size: 1.45rem;
}

.prose ul {
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.prose li {
  margin-bottom: 0.45rem;
}

/* Footer: map-legend + marquee + giant mark */
.site-footer {
  position: relative;
  background:
    linear-gradient(160deg, #16332e 0%, var(--reed-deep) 45%, #0c1c19 100%);
  color: rgba(247, 249, 248, 0.78);
  padding: 0 0 1.75rem;
  margin-top: 4rem;
  overflow: hidden;
  border-top: 3px solid var(--apricot);
}

.site-footer::before {
  content: "HISTORY PASS";
  position: absolute;
  left: -2%;
  bottom: -0.35em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 18vw, 12rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.footer-marquee {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 0.7rem 0;
  margin-bottom: 2.5rem;
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 249, 248, 0.55);
}

.footer-marquee-track span {
  padding: 0 1.25rem;
  white-space: nowrap;
}

.footer-marquee-track span::before {
  content: "◆";
  color: var(--apricot);
  margin-right: 1.25rem;
  font-size: 0.55rem;
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr;
  gap: 2rem 2.25rem;
  margin-bottom: 2.25rem;
  align-items: start;
}

.footer-brand-block {
  padding: 1.35rem 1.4rem;
  border: 1px dashed rgba(224, 122, 61, 0.45);
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(-0.6deg);
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-brand .footer-domain {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-top: 0.2rem;
}

.footer-tagline {
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.footer-stamp {
  margin-top: 1.1rem;
  display: inline-block;
  padding: 0.45rem 0.7rem;
  border: 2px solid var(--apricot);
  color: var(--apricot);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.site-footer h4 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.site-footer h4::before {
  content: attr(data-num);
  color: var(--apricot);
  font-size: 0.65rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.site-footer li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer ul a {
  color: rgba(247, 249, 248, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  transition: color 0.25s, padding-left 0.25s var(--ease);
}

.site-footer ul a::after {
  content: "→";
  color: var(--apricot);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

.site-footer ul a:hover {
  color: #fff;
  padding-left: 0.35rem;
}

.site-footer ul a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(247, 249, 248, 0.65);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--apricot);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: var(--reed-deep);
  color: rgba(247, 249, 248, 0.9);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 122, 61, 0.35);
  display: none;
  animation: fadeUp 0.45s var(--ease);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: rgba(247, 249, 248, 0.8);
}

.cookie-banner a {
  color: var(--apricot);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.cookie-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Content helpers */
.lead {
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 48ch;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.chip-meta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-deep);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-note {
  padding: 1.5rem;
  background: var(--reed);
  color: rgba(247, 249, 248, 0.9);
}

.map-note h3 {
  color: #fff;
}

.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--reed-deep);
  border-left: 4px solid var(--apricot);
  padding-left: 1.35rem;
  margin: 2rem 0;
  max-width: 36ch;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    gap: 0;
    display: none;
    max-height: min(70vh, 520px);
    overflow: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin: 0.85rem 0 0;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item:first-child {
    grid-row: auto;
    min-height: 320px;
  }

  .split,
  .split.reverse .split-copy,
  .contact-panel,
  .two-col,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .footer-brand-block {
    transform: none;
  }

  .region-row {
    grid-template-columns: 100px 1fr;
  }

  .region-row .arrow {
    display: none;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(10) {
    grid-column: span 12;
  }

  .hero-brand {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .footer-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
