@font-face {
  font-family: "Season Mix";
  src: url("fonts/season-mix.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #171916;
  --text: #f0eee5;
  --muted: #a8aa9f;
  --gold: #e2cd86;
  --line: #3e4238;
  font-family: "Instrument Sans", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--background); }

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }

.page {
  width: min(100% - 96px, 1080px);
  margin-inline: auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--gold);
  font-family: "Season Mix", Georgia, serif;
  font-size: 28px;
}

.wordmark span { font-size: 18px; }
.location, .eyebrow, .number { font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.location { color: var(--muted); }
.intro { padding: 66px 0 54px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); }

h1 {
  margin: 0;
  font-family: "Season Mix", Georgia, serif;
  font-size: clamp(38px, 5.7vw, 70px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.intro > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.people { display: grid; grid-template-columns: 1fr 1fr; border-block: 1px solid var(--line); }
.person { min-width: 0; padding: 34px 48px 34px 0; }
.person + .person { padding-right: 0; padding-left: 48px; border-left: 1px solid var(--line); }
.number { display: block; color: var(--muted); margin-bottom: 20px; }

h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h2 span { display: block; }
.person--jonas h2 { font-family: "Season Mix", Georgia, serif; letter-spacing: -0.02em; }
.role { min-height: 42px; margin: 17px 0 25px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.save-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 54px;
  padding: 14px 19px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--background);
  font-size: 15px;
  font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
}

.save-contact span { font-size: 22px; line-height: 1; }
.save-contact:hover { background: var(--text); border-color: var(--text); }
.contact-links { padding: 0; margin: 22px 0 0; list-style: none; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; font-size: 14px; }
.contact-links a span:first-child { overflow-wrap: anywhere; }
.contact-links a span:last-child { color: var(--muted); flex-shrink: 0; }
.contact-links a:hover { color: var(--gold); }
.save-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 44px 0 30px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.separator { margin-inline: 8px; color: var(--gold); }

@media (max-width: 640px) {
  .page { width: calc(100% - 40px); }
  .masthead { min-height: 78px; gap: 12px; }
  .location { font-size: 9px; letter-spacing: 0.08em; }
  .intro { padding: 40px 0 32px; }
  .intro > p:last-child { max-width: 270px; font-size: 14px; }
  .people { grid-template-columns: 1fr; }
  .person, .person + .person { padding: 28px 0; border-left: 0; }
  .person + .person { border-top: 1px solid var(--line); }
  .person-heading { position: relative; padding-right: 26px; }
  .number { position: absolute; top: 7px; right: 0; margin: 0; }
  h2 { font-size: 40px; }
  h2 span { display: inline; }
  .role { min-height: 0; margin: 12px 0 22px; }
  .contact-links { margin-top: 16px; }
  footer { padding-top: 32px; }
  .footer-signoff { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .save-contact { transition: none; }
}
