:root {
  color-scheme: light;
  --navy: #102b43;
  --blue: #176c8b;
  --cream: #f4efe4;
  --paper: #fffdf8;
  --red: #b13a2d;
  --ink: #17232d;
  --muted: #5d6870;
  --line: #d8d0c2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 17px/1.65 Georgia, "Times New Roman", serif;
}

a { color: inherit; }

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 18px max(32px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--navy);
  border-bottom: 5px solid var(--red);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  font: 700 16px/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.brand b {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #c7d9e1;
  font: 700 11px/1.2 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header nav a {
  min-width: 118px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font: 700 13px/1 Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  border-color: #7896a6;
  background: #183a54;
}

.site-header a:focus-visible,
footer a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid #f2c04d;
  outline-offset: 3px;
}

main {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  min-height: 520px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(15, 35, 49, .12);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font: 800 12px/1.3 Arial, sans-serif;
  letter-spacing: .17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}

.hero-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #b9c6c7;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-grid,
.content-grid,
.trip-notes,
.rate-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0;
}

.feature-grid article {
  padding: 30px 34px;
  background: var(--paper);
}

.feature-grid strong,
.feature-grid span { display: block; }

.feature-grid strong {
  color: var(--red);
  font-size: 34px;
  line-height: 1.15;
}

.feature-grid span {
  margin-top: 5px;
  color: var(--muted);
  font: 700 12px/1.4 Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 54px;
}

.content-grid article,
.trip-notes > div,
.rate-grid article {
  padding: clamp(32px, 4vw, 54px);
  background: var(--paper);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 3px;
  color: var(--red);
  border-bottom: 2px solid currentColor;
  font: 800 13px/1.3 Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 54px;
}

.gallery figure {
  margin: 0;
  background: var(--navy);
}

.gallery img {
  height: 260px;
  object-fit: cover;
}

.gallery figcaption,
.map-section figcaption {
  padding: 15px 18px;
  color: #edf4f6;
  font: 700 12px/1.4 Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trip-notes {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
}

.trip-notes h2 { font-size: 27px; }

.rate-grid {
  grid-template-columns: 1fr 1fr;
  margin: 54px 0;
}

.rate-grid h2 {
  color: var(--red);
  font-size: 54px;
}

.rate-grid h2 span {
  color: var(--navy);
  font: 700 14px/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.license-note {
  margin-bottom: 54px;
  padding: 38px 44px;
  color: #edf4f6;
  background: var(--navy);
}

.license-note h2 { color: #fff; }
.license-note p { margin-bottom: 0; }

.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 70px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.map-section > div { padding: clamp(34px, 5vw, 62px); }

.map-section ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.map-section li { margin-bottom: 8px; }

.map-section figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 28px;
  background: #244860;
}

.map-section img {
  max-height: 500px;
  object-fit: contain;
  background: #fff;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px max(32px, calc((100vw - 1240px) / 2));
  color: #dbe7ec;
  background: #0b2031;
  font-family: Arial, sans-serif;
}

footer b { color: #fff; }
footer p { margin: 4px 0 0; }
footer nav a { color: #fff; }
.archive-note { justify-self: end; color: #aebec7; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; gap: 20px; }
  .site-header nav { flex-wrap: wrap; justify-content: flex-end; }
  main { width: min(100% - 32px, 720px); }
  .hero { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 360px; }
  .feature-grid, .trip-notes { grid-template-columns: 1fr; }
  .content-grid, .rate-grid, .map-section { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; }
  footer nav { justify-self: start; }
  .archive-note { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header { flex-direction: column; }
  .site-header nav { width: 100%; justify-content: flex-start; }
  .site-header nav a { min-width: 0; }
  main { width: calc(100% - 24px); }
  .hero-copy { padding: 36px 28px; }
  .gallery { grid-template-columns: 1fr; }
  h1 { font-size: 43px; }
}
