:root {
  color-scheme: light;
  --paper: #f7f4ee;
  --ink: #202a35;
  --muted: #52606c;
  --navy: #173e63;
  --line: #d5d6d3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  border-top: 6px solid var(--navy);
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.page {
  width: min(100% - 3rem, 68rem);
  margin-inline: auto;
}

.site-header { padding-block: 2.5rem 1rem; }

.site-logo {
  display: block;
  width: auto;
  max-width: min(100%, 18.5rem);
  height: auto;
  max-height: 5.375rem;
  /* Blend the interim JPEG's white background into the warm page colour. */
  mix-blend-mode: multiply;
}

.welcome { padding-block: 2rem; }

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro {
  max-width: 39rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}

.booking { margin-top: 2rem; }

.booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  min-height: 52px;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--navy);
  border-radius: 0.5rem;
  background: var(--navy);
  color: #ffffff;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
}

.booking-link:hover { text-decoration: underline; text-underline-offset: 0.2em; }

.booking-link:focus {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact a:focus {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.booking-link span { flex-shrink: 0; }

.contact {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}

.contact h2 { margin: 0 0 0.75rem; font-size: 1.25rem; }
.contact address { font-style: normal; }
.contact-details { margin: 0; }
.contact-details > div + div { margin-top: 1rem; }
.contact-details dt { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
.contact-details dd { margin: 0.25rem 0 0 2rem; }
.contact-details svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact a {
  display: inline-block;
  max-width: 100%;
  min-height: 44px;
  padding-block: 0.5rem;
  color: var(--navy);
  text-underline-offset: 0.2em;
}

.site-footer {
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

.site-footer p { margin: 0; }

@media (max-width: 40rem) {
  .site-header { padding-block: 1.75rem; }
  .desktop-break { display: none; }
}

@media (max-width: 23rem) {
  .page { width: calc(100% - 2rem); }
  .booking-link { width: 100%; gap: 0.5rem; padding-inline: 0.75rem; }
}
