:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6763;
  --paper: #f5f1e9;
  --surface: #fffaf0;
  --line: rgba(23, 23, 23, 0.14);
  --accent: #386f5a;
  --accent-strong: #1e5140;
  --clay: #be785a;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(90deg, rgba(56, 111, 90, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 100%);
  background-size: 3.75rem 3.75rem, auto;
  color: var(--ink);
}

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

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 4.5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(18rem, 1fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  width: min(100%, 72rem);
  margin: auto;
}

.hero-media {
  position: relative;
  display: grid;
  min-height: clamp(20rem, 58vw, 42rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 28% 24%, rgba(190, 120, 90, 0.28), transparent 0 28%),
    linear-gradient(150deg, #f9f2e4 0%, #d7e0d4 46%, #24493d 100%);
  place-items: center;
}

.hero-media::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.35rem;
  content: "";
}

.portrait-mark {
  position: relative;
  display: grid;
  width: min(64%, 19rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.16)),
    rgba(255, 250, 240, 0.12);
  box-shadow: 0 2rem 4rem rgba(23, 23, 23, 0.18);
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 400;
  place-items: center;
  text-shadow: 0 0.25rem 1rem rgba(23, 23, 23, 0.2);
}

.hero-copy {
  padding: clamp(2rem, 7vw, 5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.9;
}

.lede {
  max-width: 28rem;
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  margin-top: clamp(1.75rem, 4vw, 3rem);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 620;
  line-height: 1.35;
  text-decoration-color: rgba(190, 120, 90, 0.55);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

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

.email-link:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(56, 111, 90, 0.24);
  outline-offset: 0.35rem;
}

.decoy {
  display: none;
}

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

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

  .hero-media {
    min-height: 15rem;
  }

  .hero-copy {
    padding: 2rem 0 0;
    border-bottom: 0;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: clamp(3.5rem, 21vw, 4.4rem);
  }

  .email-link {
    overflow-wrap: anywhere;
  }
}
