:root {
  --navy: #082E54;
  --ice: #B6ECFE;
  --blue: #BFDCF2;
  --paper: #F4F1EA;
  --muted: #C9D2DE;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body { font-family: var(--sans); background: var(--navy); color: var(--paper); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
a:focus-visible { outline: 2px solid var(--ice); outline-offset: 4px; border-radius: 2px; }
.side a:focus-visible { outline-color: var(--navy); }

.split { display: flex; min-height: 100vh; min-height: 100dvh; }

/* Navy panel */
.panel {
  flex: 0 0 58%;
  background: var(--navy);
  color: var(--paper);
  padding: 56px 80px 56px 96px;
  display: flex;
  flex-direction: column;
}
.top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 40px; width: auto; display: block; }
.brand span { font-size: 15px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
nav { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
nav a { text-decoration: none; padding: 12px 0; }
nav a:hover { text-decoration: underline; text-underline-offset: 6px; }
nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }

main { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 48px 0; }
.label { font-size: 14px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ice); margin: 0; }
h1 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.5px; line-height: 1.02; font-size: clamp(44px, 5.6vw, 80px); }
h1.big { font-size: clamp(60px, 7.8vw, 112px); line-height: 1; }
h1 em { font-style: italic; color: var(--ice); }
.lede { margin: 0; font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 520px; }
.story { margin: 0; font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 600px; text-align: justify; hyphens: auto; }
.panel footer { font-size: 14px; color: var(--muted); }

/* Blue side */
.side {
  flex: 1 1 auto;
  background: var(--blue);
  color: var(--navy);
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.side .logo { width: 320px; max-width: 100%; height: auto; display: block; }
.contact { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 30px; }
.button {
  display: inline-block;
  padding: 16px 28px;
  background: var(--navy);
  color: var(--ice);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.button:hover { opacity: 0.88; }
.side footer { display: none; font-size: 13px; line-height: 1.6; }

/* Phones and narrow tablets: stack */
@media (max-width: 900px) {
  .split { flex-direction: column; }
  .panel { flex: 0 0 auto; padding: 24px 24px 64px; }
  .top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .brand img { height: 32px; }
  .brand span { font-size: 13px; letter-spacing: 1.8px; }
  nav { gap: 24px; }
  main { padding: 40px 0 0; gap: 16px; }
  .label { font-size: 12px; letter-spacing: 2px; }
  .lede, .story { font-size: 17px; }
  .panel footer { display: none; }
  .side { padding: 56px 24px 40px; gap: 36px; justify-content: flex-start; }
  .side .logo { width: 200px; }
  .contact { width: 100%; }
  .contact p { font-size: 28px; }
  .contact .button { align-self: stretch; }
  .side footer { display: block; margin-top: 24px; }
}
