@charset "UTF-8";

:root {
  --ink: #153f49;
  --ink-deep: #0d3038;
  --ink-soft: #365d64;
  --salt: #f3eee2;
  --salt-light: #fbf8f0;
  --stone: #d9d0bd;
  --stone-dark: #a99f8d;
  --terracotta: #b65038;
  --terracotta-deep: #863925;
  --line: rgba(21, 63, 73, 0.24);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --page: min(1440px, calc(100vw - 48px));
  --measure: 700px;
  --header-height: 100px;
  color-scheme: light;
  font-synthesis: none;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.72), transparent 23rem),
    linear-gradient(145deg, rgba(21, 63, 73, 0.025) 1px, transparent 1px),
    var(--salt);
  background-size: auto, 48px 48px, auto;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--terracotta-deep);
}

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

button,
summary,
select {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink-deep);
  color: #fff;
}

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

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  align-items: center;
  width: var(--page);
  min-height: var(--header-height);
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand-link {
  width: min(250px, 100%);
  padding: 20px 0;
}

.brand-link img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 56px);
  min-width: 0;
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px clamp(18px, 1.8vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav li a {
  position: relative;
  display: inline-block;
  padding: 35px 0 31px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--terracotta);
  content: "";
  transition: transform 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.language-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
}

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

.menu-button {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-lines {
  position: relative;
  width: 28px;
  height: 18px;
}

.menu-lines i {
  position: absolute;
  right: 0;
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-lines i:first-child {
  top: 4px;
}

.menu-lines i:last-child {
  top: 13px;
  width: 19px;
}

.menu-button[aria-expanded="true"] .menu-lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:last-child {
  top: 9px;
  width: 28px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--terracotta-deep);
  background: var(--terracotta-deep);
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.67rem;
}

.breadcrumbs {
  display: flex;
  width: var(--page);
  margin: 28px auto 0;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  max-width: 68vw;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: 480px;
  margin: 0 auto;
  padding: clamp(86px, 11vw, 168px) 0 clamp(72px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}

.page-hero:not(.page-hero-with-image) {
  grid-template-columns: minmax(0, 920px) 1fr;
  align-items: end;
}

.page-hero-with-image {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
  min-height: 680px;
  padding-top: clamp(70px, 8vw, 120px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--terracotta-deep);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.1vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.page-home h1 {
  font-size: clamp(3.5rem, 6.5vw, 8.2rem);
}

.lead {
  max-width: 770px;
  margin: clamp(32px, 4vw, 54px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.7;
}

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero-picture,
.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 91%, 0 100%, 0 10%);
}

.hero-picture img {
  object-fit: cover;
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 8% -18px -18px 8%;
  border: 1px solid rgba(182, 80, 56, 0.7);
  clip-path: polygon(8% 0, 100% 0, 100% 91%, 0 100%, 0 10%);
  content: "";
  pointer-events: none;
}

.route-trace {
  position: absolute;
  z-index: 3;
  right: 12%;
  bottom: 10%;
  width: 44%;
  height: 29%;
  border-top: 2px solid rgba(255, 247, 229, 0.82);
  border-radius: 50%;
  transform: rotate(-15deg);
  pointer-events: none;
}

.route-trace::before,
.route-trace::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.route-trace::before {
  top: -4px;
  left: -2px;
}

.route-trace::after {
  top: 16%;
  right: -2px;
}

.hero-coordinate {
  align-self: end;
  justify-self: end;
  margin-bottom: 12px;
  color: var(--stone-dark);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 4.4rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: right;
}

.page-sections {
  width: var(--page);
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 160px);
  padding: clamp(86px, 10vw, 158px) 0;
  border-bottom: 1px solid var(--line);
}

.section-index {
  position: relative;
  padding-top: 15px;
  color: var(--terracotta-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index::before {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--terracotta);
  content: "";
}

.section-body {
  max-width: 990px;
}

.section h2,
.form-intro h2,
.closing h2,
.prose h2 {
  margin: 0 0 32px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 5.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-body > p {
  max-width: var(--measure);
  margin: 0 0 1.3em;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ink-deep);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
  color: var(--terracotta);
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.route-section {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line) 1px),
    linear-gradient(var(--ink-deep), var(--ink-deep));
  background-size: 12.5% 100%, 100% 100%;
  color: #fff;
  margin-inline: calc((100vw - var(--page)) / -2);
  padding-inline: calc((100vw - var(--page)) / 2);
  border: 0;
}

.route-section .section-index {
  color: #e19a85;
}

.route-section h2 {
  color: #fff;
}

.route-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 34px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.route-number {
  color: #e19a85;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-style: italic;
}

.route-list h3 {
  margin: 0 0 9px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.45rem);
  font-weight: 400;
}

.route-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.media-break {
  position: relative;
  width: min(1180px, 86vw);
  margin: clamp(80px, 10vw, 150px) 0 clamp(80px, 10vw, 150px) auto;
}

.media-picture,
.media-picture img {
  width: 100%;
}

.media-picture {
  overflow: hidden;
  background: var(--stone);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 94%);
}

.media-picture img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-break figcaption {
  max-width: 600px;
  margin: 20px 5% 0 auto;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: right;
}

.media-break::before {
  position: absolute;
  z-index: -1;
  right: 3%;
  bottom: -20px;
  width: 78%;
  height: 60%;
  border: 1px solid var(--terracotta);
  content: "";
}

.journal-list {
  margin-top: 48px;
}

.journal-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 58px;
  align-items: start;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.journal-number {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.journal-row h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.journal-row h3 a {
  text-decoration: none;
}

.journal-row p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.journal-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--terracotta-deep);
  font-size: 1.4rem;
  text-decoration: none;
}

.journal-arrow:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
}

.fact-list {
  margin: 48px 0 0;
}

.fact-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--terracotta-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.35;
}

.faq-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 145px) 0;
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.2;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 11px;
  left: 2px;
  width: 20px;
  height: 1px;
  background: var(--terracotta);
  content: "";
}

.faq-plus::after {
  transform: rotate(90deg);
  transition: transform 140ms ease;
}

details[open] .faq-plus::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 740px;
  padding: 0 0 32px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

.prose {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 145px) 0;
}

.prose-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.prose-block:first-child {
  border-top: 0;
}

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

.prose-block > p,
.prose-block > ul {
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
}

.prose-block > p + p,
.prose-block > p + ul {
  margin-top: 18px;
}

.prose-block ul {
  padding-left: 1.2em;
}

.prose-block li {
  padding: 6px 0 6px 8px;
}

.prose-block li::marker {
  color: var(--terracotta);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 150px);
  padding: clamp(84px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line);
}

.form-intro {
  align-self: start;
}

.form-intro h2 {
  font-size: clamp(2.45rem, 4vw, 5.1rem);
}

.form-intro > p:last-child {
  max-width: 450px;
  color: var(--ink-soft);
}

.membership-form {
  position: relative;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.check-field > label {
  display: block;
  margin: 0 0 9px;
  color: var(--ink-deep);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--ink-soft);
  border-radius: 0;
  background: transparent;
  appearance: none;
}

.field select {
  padding-right: 28px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 8px) 52%,
    calc(100% - 2px) 52%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--terracotta);
  outline: 0;
  box-shadow: 0 2px 0 var(--terracotta);
}

.field [aria-invalid="true"] {
  border-color: #9d281b;
}

.field-error {
  min-height: 1.3em;
  margin: 6px 0 0;
  color: #8b2418;
  font-size: 0.74rem;
  line-height: 1.3;
}

.check-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  margin: 34px 0;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--terracotta);
}

.check-field > label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: none;
}

.check-field .field-error {
  grid-column: 2;
}

.form-submit {
  min-width: 220px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.6em;
  margin-top: 22px;
}

.form-status.is-success {
  padding: 18px;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-deep);
}

.form-status.is-error {
  color: #8b2418;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-map-list {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 145px) 0;
}

.site-map-list > a {
  display: grid;
  grid-template-columns: 60px minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.site-map-list > a:last-child {
  border-bottom: 1px solid var(--line);
}

.site-map-list span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.site-map-list strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.site-map-list small {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 180px) max(24px, calc((100vw - var(--page)) / 2));
  background: var(--terracotta-deep);
  color: #fff;
}

.closing::after {
  position: absolute;
  right: -9vw;
  bottom: -18vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.closing .kicker {
  color: #f6baa8;
}

.closing h2 {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin-bottom: 28px;
  color: #fff;
}

.closing > p:not(.kicker) {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.75);
}

.button-light {
  position: relative;
  z-index: 2;
  border-color: #fff;
  background: #fff;
  color: var(--terracotta-deep);
}

.button-light:hover {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.6fr;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(78px, 8vw, 128px) max(24px, calc((100vw - var(--page)) / 2)) 30px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.75);
}

.footer-mark img {
  width: min(260px, 100%);
  margin-bottom: 28px;
}

.footer-mark p {
  max-width: 380px;
  margin: 0;
}

.footer-label {
  margin: 0 0 18px;
  color: #dc907c;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact address {
  max-width: 400px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact a {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
}

.visit-note {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links .footer-label {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-preferences {
  margin: 6px 0 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-preferences:hover {
  border-color: #dc907c;
  color: #dc907c;
}

.footer-end {
  grid-column: 1 / -1;
  margin: 54px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--ink);
  background: var(--salt-light);
  box-shadow: 0 24px 70px rgba(13, 48, 56, 0.22);
}

.consent-copy {
  max-width: 710px;
}

.consent-copy .kicker {
  margin-bottom: 10px;
}

.consent-copy h2,
.consent-dialog h2 {
  margin: 0 0 12px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.consent-copy p:last-child,
.consent-dialog-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 8px;
}

.consent-actions button {
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-actions button:hover {
  background: var(--ink);
  color: #fff;
}

.consent-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--ink);
  background: var(--salt-light);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(13, 48, 56, 0.35);
}

.consent-dialog::backdrop {
  background: rgba(8, 28, 33, 0.66);
}

.consent-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}

.consent-close:hover {
  border-color: var(--terracotta);
  color: var(--terracotta-deep);
}

.consent-categories {
  margin: 32px 0;
  border-bottom: 1px solid var(--line);
}

.consent-categories label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.consent-categories span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.consent-categories strong {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.consent-categories small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.consent-categories input {
  width: 21px;
  height: 21px;
  accent-color: var(--terracotta);
}

.consent-save {
  width: 100%;
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .site-header {
    grid-template-columns: 220px 1fr;
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav ul {
    gap: 3px 16px;
  }

  .primary-nav li a {
    font-size: 0.68rem;
  }

  .page-hero-with-image {
    gap: 56px;
  }

  .route-section {
    margin-inline: -20px;
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    grid-template-columns: 210px 1fr;
  }

  .brand-link {
    z-index: 2;
    padding: 18px 0;
  }

  .menu-button {
    z-index: 2;
    display: flex;
    justify-self: end;
  }

  .site-header[data-menu-ready] .primary-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
    overflow-y: auto;
    padding: 124px 24px 42px;
    background: var(--salt-light);
  }

  .site-header[data-menu-ready] .primary-nav.is-open {
    display: flex;
  }

  .site-header[data-menu-ready] .primary-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .site-header[data-menu-ready] .primary-nav li {
    width: 100%;
    border-top: 1px solid var(--line);
  }

  .site-header[data-menu-ready] .primary-nav li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .site-header[data-menu-ready] .primary-nav li a {
    width: 100%;
    padding: 16px 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 4vw, 2.1rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-header[data-menu-ready] .primary-nav li a::after {
    display: none;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    flex: 1;
  }

  .page-hero-with-image {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
    min-height: 0;
  }

  .hero-image-wrap {
    min-height: min(66vw, 620px);
  }

  .section {
    grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
    gap: 48px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .form-intro {
    max-width: 680px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: calc(100vw - 32px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: minmax(150px, 190px) 1fr;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  .breadcrumbs {
    margin-top: 20px;
  }

  .page-hero,
  .page-hero:not(.page-hero-with-image) {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 70px 0 74px;
  }

  .page-hero-with-image {
    padding-top: 64px;
  }

  h1,
  .page-home h1 {
    font-size: clamp(3rem, 14vw, 5.15rem);
    line-height: 0.96;
  }

  .lead {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-coordinate {
    display: none;
  }

  .hero-image-wrap {
    min-height: 90vw;
  }

  .hero-image-wrap::before {
    right: -9px;
    bottom: -10px;
  }

  .page-sections {
    width: var(--page);
  }

  .section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 76px 0;
  }

  .section-index {
    padding-top: 0;
  }

  .section h2,
  .form-intro h2,
  .closing h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .route-section {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .route-list {
    margin-top: 32px;
  }

  .route-list li {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 0;
  }

  .route-number {
    font-size: 1.65rem;
  }

  .media-break {
    width: calc(100% + 16px);
    margin: 72px -16px 72px 0;
  }

  .media-break figcaption {
    margin-right: 16px;
    padding-left: 20px;
  }

  .journal-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .journal-arrow {
    grid-column: 2;
    width: 44px;
    height: 44px;
  }

  .fact-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-section,
  .prose,
  .site-map-list {
    padding: 72px 0;
  }

  .faq-section summary {
    gap: 18px;
  }

  .prose-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0;
  }

  .prose-block > p,
  .prose-block > ul {
    grid-column: 1;
  }

  .contact-section {
    padding: 74px 0;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .site-map-list > a {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .site-map-list small {
    grid-column: 2;
  }

  .closing {
    padding-inline: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-inline: 16px;
  }

  .footer-links {
    grid-column: 1;
  }

  .footer-end {
    margin-top: 16px;
  }

  .consent-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-height: calc(100vh - 16px);
    overflow-y: auto;
    padding: 22px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

  .consent-dialog {
    max-height: calc(100vh - 16px);
    padding: 48px 22px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .closing,
  .menu-button,
  .button,
  .journal-arrow {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .page-hero,
  .section,
  .prose,
  .faq-section {
    width: 100%;
    padding: 24px 0;
  }
}
