:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #626a73;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: rgba(22, 22, 22, 0.13);
  --sage: #6f8c76;
  --blue: #2f5d8c;
  --plum: #7a526c;
  --gold: #c29a47;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(47, 93, 140, 0.08) 0 25%, transparent 25% 50%, rgba(111, 140, 118, 0.11) 50% 75%, transparent 75%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  background-size: 2.1rem 2.1rem, auto;
  color: var(--ink);
  font-family:
    Avenir, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 4rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(17rem, 0.95fr) minmax(18rem, 0.65fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(100%, 76rem);
  margin: auto;
  align-items: stretch;
}

.nameplate,
.contact-panel {
  min-width: 0;
}

.nameplate {
  display: grid;
  align-content: end;
  min-height: clamp(24rem, 58vw, 40rem);
  padding: clamp(1.25rem, 4vw, 3.75rem);
  border-left: 0.55rem solid var(--gold);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.3)),
    repeating-linear-gradient(0deg, transparent 0 1.45rem, rgba(22, 22, 22, 0.08) 1.45rem 1.5rem);
}

.kicker {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 11vw, 9.75rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.86;
}

.contact-panel {
  display: grid;
  align-content: end;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1.4rem 4rem rgba(22, 22, 22, 0.08);
}

.signal {
  position: relative;
  display: grid;
  width: min(100%, 21rem);
  aspect-ratio: 1 / 1.05;
  margin: 0 0 clamp(1.5rem, 5vw, 3.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(122, 82, 108, 0.34), transparent 58%),
    linear-gradient(145deg, #f8f3ec 0%, #d7e2d4 48%, #2f5d8c 100%);
  place-items: center;
}

.signal::before,
.signal::after {
  position: absolute;
  content: "";
}

.signal::before {
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.signal::after {
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.signal-letter {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 8.5rem);
  line-height: 1;
  text-shadow: 0 0.4rem 1.6rem rgba(22, 22, 22, 0.28);
}

.lede {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 720;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(122, 82, 108, 0.45);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.25em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.email-link:focus-visible {
  outline: 3px solid rgba(47, 93, 140, 0.24);
  outline-offset: 0.35rem;
}

.decoy {
  display: none;
}

@media (max-width: 760px) {
  .page {
    min-height: auto;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
  }

  .nameplate {
    min-height: 18rem;
  }

  .contact-panel {
    box-shadow: none;
  }

  .signal {
    width: min(100%, 15rem);
  }
}

@media (max-width: 440px) {
  .nameplate,
  .contact-panel {
    padding: 1rem;
  }

  h1 {
    font-size: clamp(3.4rem, 20vw, 4.35rem);
  }
}
