:root {
  --ink: #112b3b;
  --ink-soft: #284657;
  --teal: #0e7c78;
  --teal-dark: #075b59;
  --teal-pale: #dbeae5;
  --coral: #e56b57;
  --coral-dark: #96372f;
  --parchment: #f5ebdd;
  --paper: #fffaf2;
  --white: #ffffff;
  --mist: #edf2ef;
  --line: rgba(17, 43, 59, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(17, 43, 59, 0.14);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

::selection {
  background: var(--teal);
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7.2vw, 6.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

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

.utility-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.utility-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner strong {
  color: var(--white);
  font-weight: 700;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.utility-icon {
  width: 14px;
  height: 14px;
}

.header-marker {
  position: absolute;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 242, 0.97);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(17, 43, 59, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-icon {
  width: 22px;
  height: 22px;
}

.wordmark {
  display: block;
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.wordmark-rx {
  color: var(--teal);
  font-style: italic;
}

.brand-link small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav,
.nav-links {
  display: flex;
  align-items: center;
}

.site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 34px;
}

.nav-links {
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  font-size: 0.89rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.menu-button {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.button-coral {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
}

.button-coral:hover {
  border-color: #f0826f;
  background: #f0826f;
}

.button-icon,
.text-link-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 750;
  line-height: 1.45;
  text-decoration: none;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.light-link {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  display: inline-block;
  margin-right: 10px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

.eyebrow-light {
  color: var(--parchment);
}

.home-hero {
  overflow: hidden;
  background: var(--parchment);
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(410px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 84px 42px 84px 0;
}

.hero-copy h1 {
  max-width: 700px;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.29rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-assurances {
  display: flex;
  gap: 22px 30px;
  flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 650;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.assurance-icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-width: 55vw;
  margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

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

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.timing-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: min(355px, calc(100% - 60px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.timing-card strong {
  color: var(--ink);
  font-weight: 800;
}

.timing-number {
  padding-right: 18px;
  border-right: 1px solid var(--line);
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.route-strip {
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
}

.route-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.route-strip-grid > div {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 36px;
  border-left: 1px solid var(--line-light);
}

.route-strip-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.route-strip-grid span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.route-strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.79rem;
  line-height: 1.55;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.split-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading > p:last-child {
  max-width: 560px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.service-overview {
  background: var(--paper);
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-feature {
  position: relative;
  min-height: 290px;
  padding: 44px;
  background: var(--white);
}

.service-feature-large {
  min-height: 580px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  background: var(--teal-pale);
}

.service-feature h3 {
  max-width: 430px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.service-feature-large h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.service-feature p:not(.feature-number) {
  max-width: 510px;
  color: var(--ink-soft);
}

.service-feature .text-link {
  margin-top: 15px;
  align-self: flex-start;
}

.feature-icon {
  position: absolute;
  top: 38px;
  left: 40px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--teal-dark);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.service-feature-large .feature-icon {
  top: 54px;
  left: 56px;
}

.feature-number {
  position: absolute;
  top: 42px;
  right: 42px;
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

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

.itinerary-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.itinerary-art {
  position: relative;
  min-height: 490px;
  border: 1px solid var(--line-light);
  background: #183c4d;
  overflow: hidden;
}

.map-lines,
.map-lines::before,
.map-lines::after {
  position: absolute;
  border: 1px solid rgba(245, 235, 221, 0.2);
  border-radius: 46% 54% 42% 58%;
  content: "";
}

.map-lines {
  width: 620px;
  height: 320px;
  top: 50px;
  left: -90px;
  transform: rotate(-12deg);
}

.map-lines::before {
  width: 480px;
  height: 250px;
  top: 34px;
  left: 66px;
}

.map-lines::after {
  width: 330px;
  height: 180px;
  top: 68px;
  left: 125px;
}

.route-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #183c4d;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}

.route-point-one {
  top: 110px;
  left: 22%;
}

.route-point-two {
  top: 235px;
  left: 56%;
}

.route-point-three {
  top: 92px;
  right: 11%;
}

.itinerary-ticket {
  position: absolute;
  right: -22px;
  bottom: 52px;
  left: 52px;
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  transform: rotate(-3deg);
  background: var(--parchment);
  color: var(--ink);
}

.itinerary-ticket::after {
  position: absolute;
  top: 0;
  right: 21%;
  bottom: 0;
  border-left: 1px dashed rgba(17, 43, 59, 0.25);
  content: "";
}

.itinerary-ticket span {
  position: absolute;
  top: 12px;
  left: 40px;
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.itinerary-ticket strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}

.ticket-arrow {
  width: 27px;
  height: 27px;
  color: var(--coral-dark);
}

.itinerary-copy h2 {
  color: var(--white);
}

.itinerary-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.03rem;
}

.check-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.list-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--teal);
}

.light-check-list {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.light-check-list .list-icon {
  color: var(--coral);
}

.process-section {
  background: var(--parchment);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 42px 34px 10px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
}

.process-icon svg {
  width: 22px;
  height: 22px;
}

.process-step {
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.process-list p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.location-preview {
  background: var(--paper);
}

.location-preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--line);
}

.location-card,
.location-context {
  min-height: 490px;
  padding: clamp(44px, 6vw, 80px);
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  background: var(--parchment);
}

.location-pin {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.location-pin svg {
  width: 27px;
  height: 27px;
}

.location-card address {
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-style: normal;
}

.location-actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.location-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
}

.quote-mark {
  height: 68px;
  margin: 0;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.location-context blockquote {
  margin: 10px 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.16;
}

.location-context > p:last-child {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
}

.booking-band {
  padding-block: clamp(75px, 8vw, 110px);
  background: var(--ink);
  color: var(--white);
}

.booking-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.booking-band h2 {
  max-width: 780px;
  color: var(--white);
}

.booking-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.booking-band-actions {
  min-width: 238px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.booking-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line-light);
  background: #0c2330;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1.1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  padding-block: 80px 62px;
}

.brand-link-footer {
  color: var(--white);
}

.brand-link-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.68);
}

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

.footer-lead > p {
  max-width: 330px;
  margin: 28px 0 24px;
}

.footer-heading {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.site-footer address a,
.footer-phone,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover,
.footer-phone:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.site-footer address {
  font-size: 0.88rem;
  font-style: normal;
}

.footer-phone {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-weight: 750;
}

.placeholder-note {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
}

.footer-detail {
  max-width: 250px;
  font-size: 0.75rem;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 0.71rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 12px;
}

/* Interior pages */
.breadcrumbs {
  padding-top: 25px;
}

.breadcrumbs ol {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: rgba(17, 43, 59, 0.35);
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-intro {
  padding-block: clamp(74px, 9vw, 125px);
  background: var(--parchment);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.page-intro h1 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.page-intro-copy {
  padding: 0 0 7px 35px;
  border-left: 1px solid var(--line);
}

.page-intro-copy .lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.service-detail-section {
  background: var(--paper);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 10vw, 140px);
}

.sticky-heading {
  position: sticky;
  top: 145px;
  align-self: start;
}

.sticky-heading p:last-child {
  color: var(--ink-soft);
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
}

.detail-list article svg {
  width: 23px;
  height: 23px;
}

.detail-list h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.detail-list p {
  color: var(--ink-soft);
}

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

.topic-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.topic-panel {
  min-height: 660px;
  padding: clamp(45px, 6vw, 80px);
}

.topic-panel-teal {
  background: var(--teal);
  color: var(--white);
}

.topic-panel-coral {
  background: var(--parchment);
}

.topic-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 38px;
}

.topic-panel-heading > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.topic-panel-heading svg {
  width: 24px;
  height: 24px;
}

.topic-panel h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.topic-panel-teal h2 {
  color: var(--white);
}

.topic-panel > p:not(.fine-print) {
  max-width: 560px;
  color: inherit;
  opacity: 0.82;
}

.topic-panel-teal .list-icon {
  color: var(--parchment);
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.fine-print {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  opacity: 0.62;
  font-size: 0.72rem;
}

.timing-section {
  background: var(--mist);
}

.timing-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.timing-figure {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--coral-dark);
}

.timing-figure span {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.timing-figure small {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timing-grid > div:last-child > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}

/* Fees */
.fees-section {
  background: var(--paper);
}

.fees-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.fee-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fee-card-header {
  padding: 36px 42px;
  background: var(--ink);
  color: var(--white);
}

.fee-card-header h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.6rem;
}

.fee-rows {
  padding-inline: 42px;
}

.fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.fee-row > span {
  align-self: center;
  font-weight: 700;
}

.fee-row strong {
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fee-row small {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.additional-traveller {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin: 34px 42px;
  padding: 22px;
  background: var(--teal-pale);
}

.additional-traveller > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal-dark);
  border-radius: 50%;
  color: var(--teal-dark);
}

.additional-traveller svg {
  width: 20px;
  height: 20px;
}

.additional-traveller strong {
  display: block;
}

.additional-traveller p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.fee-disclaimer {
  margin: 0;
  padding: 0 42px 38px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.cost-context {
  padding-top: 20px;
}

.cost-context > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.numbered-list {
  margin: 38px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.numbered-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-list span {
  color: var(--coral-dark);
  font-family: var(--serif);
}

.numbered-list p {
  margin: 0;
}

.bring-section {
  background: var(--parchment);
}

.bring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bring-grid article {
  min-height: 290px;
  padding: 40px;
  background: var(--paper);
}

.bring-grid article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
}

.bring-grid svg {
  width: 24px;
  height: 24px;
}

.bring-grid h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.bring-grid p {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-grid .text-link {
  margin-top: 18px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

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

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--teal-dark);
  content: "";
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-width: 650px;
  padding: 0 55px 26px 0;
  color: var(--ink-soft);
}

/* About */
.provider-section {
  background: var(--paper);
}

.provider-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(65px, 10vw, 140px);
}

.provider-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--teal-pale);
}

.portrait-lines,
.portrait-lines::before,
.portrait-lines::after {
  position: absolute;
  border: 1px solid rgba(14, 124, 120, 0.24);
  border-radius: 50%;
  content: "";
}

.portrait-lines {
  width: 80%;
  aspect-ratio: 1;
}

.portrait-lines::before {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.portrait-lines::after {
  width: 38%;
  height: 38%;
  top: 31%;
  left: 31%;
}

.portrait-monogram {
  position: relative;
  z-index: 1;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  font-style: italic;
  line-height: 1;
}

.provider-portrait p {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.provider-role {
  color: var(--teal-dark);
  font-weight: 750;
}

.provider-copy > p:not(.eyebrow, .provider-role) {
  color: var(--ink-soft);
}

.placeholder-callout {
  margin-top: 35px;
  padding: 24px;
  border-left: 3px solid var(--coral);
  background: var(--parchment);
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.placeholder-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.values-section {
  background: var(--parchment);
}

.narrow-heading {
  max-width: 880px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.values-grid article {
  min-height: 300px;
  padding: 36px;
  border-right: 1px solid var(--line);
}

.values-grid article:first-child {
  padding-left: 0;
}

.values-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.values-grid span {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.values-grid h3 {
  margin-top: 55px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
}

.values-grid p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

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

.relationship-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 100px;
}

.relationship-grid h2 {
  color: var(--white);
}

.relationship-grid > div:last-child {
  padding-top: 45px;
}

.relationship-grid > div:last-child p {
  color: rgba(255, 255, 255, 0.78);
}

.relationship-grid a:not(.text-link) {
  color: var(--white);
}

/* Location */
.visit-section {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
  border: 1px solid var(--line);
}

.visit-map {
  position: relative;
  overflow: hidden;
  background: var(--teal-pale);
}

.water-shape {
  position: absolute;
  top: 0;
  right: -35%;
  width: 65%;
  height: 100%;
  transform: skewX(-8deg);
  background: var(--teal);
}

.street-lines span {
  position: absolute;
  width: 130%;
  height: 1px;
  left: -20%;
  background: rgba(17, 43, 59, 0.22);
}

.street-lines span:nth-child(1) {
  top: 22%;
  transform: rotate(-9deg);
}

.street-lines span:nth-child(2) {
  top: 43%;
  transform: rotate(6deg);
}

.street-lines span:nth-child(3) {
  top: 67%;
  transform: rotate(-4deg);
}

.street-lines span:nth-child(4) {
  top: 10%;
  left: 32%;
  width: 1px;
  height: 110%;
  transform: rotate(12deg);
}

.map-pin-card {
  position: absolute;
  top: 44%;
  left: 17%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-pin-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
}

.map-pin-card svg {
  width: 21px;
  height: 21px;
}

.map-pin-card strong,
.map-pin-card small {
  display: block;
}

.map-pin-card small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.map-label {
  position: absolute;
  right: -27px;
  bottom: 86px;
  transform: rotate(-90deg);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.visit-details {
  padding: clamp(46px, 6vw, 78px);
  background: var(--white);
}

.visit-details h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.visit-details address {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-style: normal;
}

.visit-contact-list {
  border-top: 1px solid var(--line);
}

.visit-contact-list > a,
.visit-contact-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.visit-contact-list > * > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
}

.visit-contact-list svg {
  width: 18px;
  height: 18px;
}

.visit-contact-list small,
.visit-contact-list strong {
  display: block;
}

.visit-contact-list small {
  color: var(--ink-soft);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.visit-contact-list strong {
  font-size: 0.88rem;
}

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

.visit-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.booking-steps-section {
  background: var(--parchment);
}

.booking-steps-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
}

.booking-steps-grid ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.booking-steps-grid li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.booking-steps-grid li > span {
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.booking-steps-grid h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.booking-steps-grid li p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.location-note-section {
  background: var(--paper);
}

.location-note-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--line);
}

.location-note-grid > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.location-note-grid > span svg {
  width: 28px;
  height: 28px;
}

.location-note-grid h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.location-note-grid p {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

/* Legal */
.legal-section {
  background: var(--paper);
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(60px, 10vw, 140px);
}

.legal-grid aside {
  align-self: start;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.legal-grid aside strong {
  color: var(--ink);
}

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin: 52px 0 16px;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--ink-soft);
}

.legal-note {
  margin-top: 42px;
  padding: 24px;
  border-left: 3px solid var(--coral);
  background: var(--parchment);
  font-size: 0.8rem;
}

/* 404 */
.not-found {
  min-height: 620px;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.not-found-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 90px;
}

.not-found h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
}

.not-found p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.not-found .button {
  margin-top: 20px;
}

.not-found-art {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: rotate(-4deg);
  border: 1px solid var(--line-light);
  background: var(--parchment);
  color: var(--ink);
}

.not-found-art span,
.not-found-art strong {
  font-family: var(--serif);
  font-size: 3rem;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .header-inner {
    gap: 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    min-height: 650px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding-right: 25px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 7vw, 5rem);
  }

  .hero-assurances {
    display: grid;
  }

  .route-strip-grid > div {
    padding-inline: 24px;
  }

  .service-feature,
  .service-feature-large {
    padding: 42px;
  }

  .service-feature-large .feature-icon {
    top: 38px;
    left: 38px;
  }

  .itinerary-grid {
    gap: 55px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .page-intro-grid {
    gap: 45px;
  }

  .service-detail-grid,
  .fees-grid,
  .provider-grid {
    gap: 65px;
  }

  .topic-panel {
    padding: 50px 40px;
  }

  .two-column-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }

  .utility-inner p {
    max-width: 72%;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 800;
  }

  .menu-lines {
    width: 22px;
    display: grid;
    gap: 6px;
  }

  .menu-lines span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

  .menu-button[aria-expanded="true"] .menu-lines span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 109px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
    padding: 40px max(24px, calc((100vw - var(--shell)) / 2));
    background: var(--paper);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .nav-links a {
    padding-block: 17px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
  }

  .nav-links a::after {
    display: none;
  }

  .site-nav .button {
    align-self: flex-start;
  }

  .hero-grid {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 70px 0 55px;
  }

  .hero-visual {
    min-width: 0;
    height: 480px;
    margin: 0;
  }

  .hero-visual img {
    object-position: 62% center;
  }

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

  .route-strip-grid > div,
  .route-strip-grid > div:last-child {
    min-height: 90px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .split-heading,
  .itinerary-grid,
  .location-preview-grid,
  .booking-band-inner,
  .page-intro-grid,
  .service-detail-grid,
  .topic-grid,
  .timing-grid,
  .fees-grid,
  .faq-grid,
  .provider-grid,
  .relationship-grid,
  .visit-grid,
  .booking-steps-grid,
  .legal-grid,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .page-intro-grid,
  .service-detail-grid,
  .fees-grid,
  .faq-grid,
  .provider-grid,
  .relationship-grid,
  .booking-steps-grid,
  .legal-grid,
  .not-found-grid {
    gap: 45px;
  }

  .service-editorial-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-large {
    min-height: 480px;
    grid-row: auto;
  }

  .itinerary-grid {
    gap: 70px;
  }

  .itinerary-art {
    min-height: 440px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-card,
  .location-context {
    min-height: 430px;
  }

  .booking-band-actions {
    min-width: 0;
    align-items: flex-start;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .page-intro-copy {
    max-width: 650px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sticky-heading {
    position: static;
  }

  .topic-panel {
    min-height: auto;
  }

  .timing-figure {
    width: min(420px, 80vw);
    margin-inline: auto;
  }

  .bring-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .bring-grid article {
    min-height: 230px;
  }

  .values-grid article,
  .values-grid article:first-child,
  .values-grid article:last-child {
    min-height: auto;
    padding: 35px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid h3 {
    margin-top: 25px;
  }

  .relationship-grid > div:last-child {
    padding-top: 0;
  }

  .visit-grid {
    min-height: 0;
  }

  .visit-map {
    min-height: 480px;
  }

  .location-note-grid {
    grid-template-columns: auto 1fr;
  }

  .location-note-grid .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .section {
    padding-block: 78px;
  }

  .utility-inner {
    min-height: 38px;
  }

  .utility-inner p {
    max-width: none;
    font-size: 0.67rem;
  }

  .utility-inner p strong {
    display: none;
  }

  .utility-inner a {
    font-size: 0.68rem;
  }

  .utility-icon {
    display: none;
  }

  .site-nav {
    top: 112px;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-assurances {
    gap: 11px;
  }

  .hero-visual {
    height: 390px;
  }

  .timing-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 15px 17px;
  }

  .timing-number {
    font-size: 2rem;
  }

  .route-strip-grid > div {
    padding-inline: 16px;
  }

  .service-feature,
  .service-feature-large {
    min-height: 360px;
    padding: 32px;
  }

  .feature-icon,
  .service-feature-large .feature-icon {
    top: 30px;
    left: 28px;
  }

  .feature-number {
    top: 33px;
    right: 28px;
  }

  .itinerary-art {
    min-height: 350px;
  }

  .itinerary-ticket {
    right: -70px;
    bottom: 36px;
    left: 24px;
    min-height: 110px;
    padding: 28px;
  }

  .itinerary-ticket strong {
    font-size: 1rem;
  }

  .location-card,
  .location-context {
    min-height: 0;
    padding: 42px 28px;
  }

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

  .booking-band-actions,
  .booking-band-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 64px 50px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .breadcrumbs {
    display: none;
  }

  .page-intro {
    padding-block: 70px;
  }

  .page-intro h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .detail-list article {
    grid-template-columns: 1fr;
  }

  .topic-panel {
    padding: 42px 28px;
  }

  .topic-panel-heading {
    flex-direction: column;
  }

  .fee-card-header,
  .fee-rows {
    padding-inline: 25px;
  }

  .additional-traveller {
    margin-inline: 25px;
  }

  .fee-disclaimer {
    padding-inline: 25px;
  }

  .bring-grid article {
    padding: 30px;
  }

  .provider-portrait {
    aspect-ratio: 1 / 1.18;
  }

  .visit-map {
    min-height: 390px;
  }

  .map-pin-card {
    left: 9%;
  }

  .visit-details {
    padding: 40px 28px;
  }

  .location-note-grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .location-note-grid .button {
    grid-column: auto;
  }

  .legal-grid {
    gap: 25px;
  }

  .not-found {
    min-height: 700px;
    padding-block: 70px;
  }

  .not-found-art {
    min-height: 180px;
  }
}

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

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

@media print {
  .utility-strip,
  .site-header,
  .site-footer,
  .booking-band,
  .button,
  .text-link {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section,
  .page-intro {
    padding-block: 28px;
  }
}
