:root {
  --bg: #f6efe2;
  --bg-alt: #fbf6ed;
  --surface: #fffaf2;
  --surface-strong: #fffdf8;
  --ink: #20342f;
  --ink-soft: #526862;
  --line: rgba(32, 52, 47, 0.14);
  --forest: #183a35;
  --forest-deep: #102a27;
  --petrol: #214e59;
  --copper: #c97b47;
  --copper-dark: #9f5d2f;
  --shadow-sm: 0 14px 30px rgba(18, 40, 37, 0.08);
  --shadow-lg: 0 28px 80px rgba(18, 40, 37, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top right, rgba(201, 123, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf4e8 0%, #f7f0e4 42%, #f3ecdf 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 58, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 58, 53, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section-space {
  padding: 5.5rem 0;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-top h2,
.page-copy h1,
.page-copy h2,
.route-copy h1,
.route-copy h2,
.legal-card h1,
.legal-card h2,
.contact-card h1,
.contact-card h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.section-top h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  max-width: 10ch;
}

.section-top p,
.route-copy p,
.page-copy p,
.legal-card p,
.contact-card p,
.split-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-dark);
  font-weight: 700;
}

.site-header {
  padding: 1rem 0;
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(32, 52, 47, 0.08);
  position: sticky;
  top: 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  font-family: var(--heading-font);
  font-size: 2rem;
  letter-spacing: -0.05em;
  color: var(--forest);
}

.brand-sub {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  color: var(--ink);
}

.site-nav a {
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--copper-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.button:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(24, 58, 53, 0.12);
}

.button-dark {
  background: var(--forest);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--forest-deep);
}

.button-light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(24, 58, 53, 0.18);
}

.hero {
  padding: 1.4rem 0 4.8rem;
}

.hero-shell {
  min-height: 42rem;
  border-radius: 0 0 2.6rem 2.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest);
}

.hero-shell img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 33, 31, 0.86) 0%, rgba(12, 33, 31, 0.7) 36%, rgba(12, 33, 31, 0.26) 70%, rgba(12, 33, 31, 0.08) 100%),
    radial-gradient(circle at left top, rgba(201, 123, 71, 0.16), transparent 28%);
}

.hero-shell::after,
.band-section::before,
.page-banner::before,
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.22) 1px, transparent 0),
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 44%);
  background-size: 34px 34px, auto;
  mask-image: radial-gradient(circle at left center, black 25%, transparent 85%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 37rem;
  padding: 5.7rem 4.2rem 4.2rem;
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 1.5rem 0 1.8rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 30rem;
}

.hero-aside {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-chip {
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-chip strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 0.95rem;
}

.hero-chip span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.76);
}

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

.route-card,
.meta-card,
.band-card,
.trust-card,
.guide-card,
.timeline-card,
.contact-card,
.legal-card,
.feature-box {
  background: var(--surface-strong);
  border: 1px solid rgba(24, 58, 53, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.route-card {
  overflow: hidden;
}

.route-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.route-card-copy {
  padding: 1.35rem 1.25rem 1.3rem;
}

.route-card-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--heading-font);
  font-size: 1.62rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.route-card-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(24, 58, 53, 0.1);
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.route-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 700;
}

.band-section {
  margin: 0 0 5.3rem;
}

.band-shell {
  background: linear-gradient(135deg, var(--forest) 0%, var(--petrol) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  overflow: hidden;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.band-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  padding: 1.45rem 1.25rem;
}

.band-card h3 {
  margin: 0.95rem 0 0.55rem;
  font-size: 1.12rem;
}

.band-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.line-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: #f0c5a6;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #dbe8e2;
}

.image-panel img {
  aspect-ratio: 6 / 5;
  object-fit: cover;
}

.split-copy {
  display: grid;
  gap: 1.2rem;
}

.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.check-list,
.route-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.check-list li,
.route-list li {
  margin-bottom: 0.55rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 1.6rem 1.3rem;
}

.trust-card h3,
.guide-card h3,
.timeline-card h3,
.meta-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.trust-card p,
.guide-card p,
.timeline-card p,
.meta-card p,
.feature-box p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-slab {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #fffaf3 0%, #f7ecdb 100%);
  border: 1px solid rgba(24, 58, 53, 0.08);
  box-shadow: var(--shadow-sm);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.cta-grid img {
  height: 100%;
  object-fit: cover;
}

.cta-copy {
  padding: 2.35rem 2.2rem;
}

.cta-copy h2 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.95rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-copy p {
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
}

.cookie-center-zone {
  padding: 0;
}

#cookie-script-anchor {
  width: min(100%, 840px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#cookie-script-anchor:not(:empty) {
  min-height: 190px;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid rgba(24, 58, 53, 0.1);
  box-shadow: var(--shadow-sm);
}

.page-banner {
  padding: 1.2rem 0 4rem;
}

.page-banner-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(19, 58, 53, 0.96), rgba(33, 78, 89, 0.96));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.page-banner-shell img {
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
}

.page-copy {
  padding: 3rem 2.5rem;
}

.page-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.page-copy p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.meta-grid,
.guide-grid,
.timeline-grid,
.contact-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.meta-card,
.guide-card,
.timeline-card,
.feature-box {
  padding: 1.45rem 1.35rem;
}

.meta-card strong,
.feature-box strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
  color: var(--forest);
}

.note-box {
  margin-top: 2rem;
  padding: 1.55rem 1.45rem;
  border-radius: var(--radius-md);
  background: rgba(201, 123, 71, 0.12);
  border: 1px solid rgba(201, 123, 71, 0.22);
}

.note-box h3 {
  margin: 0 0 0.55rem;
}

.note-box p {
  margin: 0;
  color: var(--ink);
}

.prose-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
}

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

.side-panel {
  padding: 1.7rem 1.45rem;
  background: linear-gradient(180deg, #fff9f0 0%, #fbf0df 100%);
  border: 1px solid rgba(24, 58, 53, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.side-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.side-panel p,
.side-panel li {
  color: var(--ink-soft);
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
  padding: 1.8rem 1.5rem;
}

.contact-card h2,
.legal-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-list,
.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.contact-list li,
.legal-list li {
  margin-bottom: 0.45rem;
}

.legal-shell {
  padding: 1.6rem 0 4rem;
}

.legal-card {
  padding: 2.2rem;
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.85rem;
}

.legal-card h3 {
  margin: 1.35rem 0 0.6rem;
  font-size: 1.08rem;
}

.legal-card p + p {
  margin-top: 0.9rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-shell {
  margin-top: 4.5rem;
  padding: 3.2rem 0 1.3rem;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  color: #fff;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  gap: 1.8rem;
}

.footer-card h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0c5a6;
}

.footer-card p,
.footer-card li,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
}

.muted {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .route-grid,
  .trust-grid,
  .band-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-aside,
  .meta-grid,
  .guide-grid,
  .timeline-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .prose-grid,
  .page-banner-shell,
  .cta-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-row {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
    gap: 0.55rem 1rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero-shell {
    min-height: 36rem;
    border-radius: 0 0 2rem 2rem;
  }

  .hero-copy {
    padding: 3.2rem 1.5rem 2.2rem;
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.6vw, 3rem);
    max-width: 8ch;
  }

  .hero-copy p {
    font-size: 1rem;
    max-width: 17rem;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  button,
  input[type="submit"] {
    width: 100%;
  }

  .hero-chip span {
    font-size: 0.84rem;
  }

  .hero-aside {
    display: none;
  }

  .hero-aside,
  .route-grid,
  .trust-grid,
  .band-grid,
  .footer-grid,
  .meta-grid,
  .guide-grid,
  .timeline-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-space {
    padding: 4.3rem 0;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-top h2 {
    max-width: none;
  }

  .page-copy,
  .cta-copy,
  .legal-card,
  .contact-card {
    padding: 1.6rem;
  }

  .page-banner-shell img {
    min-height: 18rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
