@font-face {
  font-family: 'DM Sans';
  src: url('/assets/dm-sans-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --cream: #fff;
  --paper: #fff;
  --ink: #192d3b;
  --text: #53636e;
  --blue: #245b86;
  --blue-dark: #194366;
  --line: #e3e8ec;
  --surface: #f7f9fb;
  --heading: 'DM Sans', Arial, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.7 var(--body);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.16;
}
h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.1rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--text);
}
em {
  color: var(--blue);
  font-style: normal;
}
::selection {
  color: var(--ink);
  background: #dce7ff;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.eyebrow {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  transition:
    background 160ms,
    border-color 160ms;
  cursor: pointer;
}
.button > span {
  font-size: 1.3rem;
  line-height: 1;
}
.button-blue {
  color: white;
  background: var(--blue);
}
.button-blue:hover {
  background: var(--blue-dark);
}
.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: #c9d2d9;
}
.button-outline:hover {
  background: var(--surface);
  border-color: var(--text);
}
.button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.text-link:hover {
  color: var(--blue);
}
.text-link > span {
  font-size: 1.3rem;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 16px;
  background: var(--blue);
  color: white;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  color: white;
  border-bottom: 1px solid #425665;
}
.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}
.wordmark img {
  width: 165px;
  height: auto;
}
#primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
#primary-nav > a {
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
#primary-nav > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
#primary-nav > a:not(.button):hover,
#primary-nav [aria-current='page'] {
  color: #90c6ea;
}
.nav-cta {
  background: white;
  color: var(--ink);
  min-height: 46px;
  padding: 12px 18px;
}
.nav-cta:hover {
  background: #e7eff6;
}
.menu-toggle {
  display: none;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.section-heading > p {
  max-width: 340px;
  font-size: 0.95rem;
}
.section-copy > p:not(.eyebrow) {
  margin-top: 22px;
}
.section-copy .text-link {
  margin-top: 22px;
}
.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-block: 12px;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  font-size: 0.85rem;
  color: var(--blue);
}
.center-heading {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}
.contact-section {
  padding-block: 70px;
  background: #f1f5fc;
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.contact-section p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 20px;
}
.contact-action {
  max-width: 320px;
  flex-shrink: 0;
}
.contact-action > span,
.contact-action > small {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 0.8rem;
}
.contact-action > small {
  margin-top: 6px;
}
.site-footer {
  padding-top: 64px;
  background: var(--ink);
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-top p {
  color: #c8d3da;
  margin-top: 22px;
  font-size: 0.9rem;
}
.footer-top h2 {
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}
.footer-top > div > a:not(.wordmark) {
  display: block;
  padding-block: 7px;
  font-size: 0.9rem;
}
.footer-top a:hover {
  color: #90c6ea;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid #425665;
}
.footer-bottom p {
  color: #c8d3da;
  font-size: 0.75rem;
}
.mobile-booking {
  display: none;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  color: var(--text);
  font-size: 0.8rem;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
