:root {
  --paper: #f7f4ed;
  --paper-warm: #fffaf1;
  --ink: #211711;
  --muted: #67564c;
  --line: rgba(33, 23, 17, 0.14);
  --rust: #c7622c;
  --rust-deep: #8f3d18;
  --sage: #6f8a61;
  --charcoal: #172027;
  --shadow: 0 22px 70px rgba(33, 23, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    linear-gradient(140deg, rgba(199, 98, 44, 0.1), transparent 34%),
    linear-gradient(300deg, rgba(111, 138, 97, 0.13), transparent 48%),
    var(--paper);
}

body::after {
  width: min(960px, 150vw);
  height: min(960px, 150vw);
  right: -22vw;
  top: -18vw;
  opacity: 0.42;
  background:
    linear-gradient(36deg, transparent 0 18%, rgba(111, 138, 97, 0.18) 18% 33%, transparent 33% 100%),
    linear-gradient(120deg, transparent 0 28%, rgba(199, 98, 44, 0.12) 28% 42%, transparent 42% 100%),
    linear-gradient(198deg, transparent 0 18%, rgba(23, 32, 39, 0.09) 18% 28%, transparent 28% 100%);
  clip-path: polygon(50% 0, 61% 32%, 98% 21%, 72% 50%, 100% 79%, 62% 68%, 50% 100%, 38% 68%, 0 79%, 28% 50%, 2% 21%, 39% 32%);
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 450px);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 72px) 0;
}

.intro {
  max-width: 680px;
}

.site-mark {
  margin: 0 0 clamp(34px, 8vw, 86px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.portrait {
  width: clamp(96px, 16vw, 140px);
  height: clamp(96px, 16vw, 140px);
  border: 7px solid var(--paper-warm);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--rust-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 6.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span:first-of-type {
  color: var(--rust);
}

h1 span:last-of-type {
  color: var(--sage);
}

.role {
  max-width: 40rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

.contact-panel {
  display: grid;
  gap: 13px;
}

.action {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.action:hover,
.action:focus-visible,
.mini-link:hover,
.mini-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(199, 98, 44, 0.42);
  box-shadow: 0 16px 36px rgba(33, 23, 17, 0.1);
}

.action-primary {
  min-height: 86px;
  border-color: rgba(23, 32, 39, 0.84);
  background: var(--charcoal);
  color: var(--paper-warm);
  box-shadow: 0 18px 44px rgba(23, 32, 39, 0.22);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(199, 98, 44, 0.12);
  color: var(--rust-deep);
}

.action-primary .icon {
  background: rgba(255, 250, 241, 0.1);
  color: #efad74;
}

.action strong,
.action small {
  display: block;
}

.action strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.action small {
  margin-top: 5px;
  color: rgba(33, 23, 17, 0.64);
  font-size: 0.88rem;
  line-height: 1.35;
}

.action-primary small {
  color: rgba(255, 250, 241, 0.72);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 4px;
}

.mini-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 15px 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.54);
  color: var(--ink);
  font-weight: 780;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-link svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
}

.notes {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.notes p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.45;
}

.notes span {
  color: var(--rust-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

@media (max-width: 840px) {
  .page-shell {
    grid-template-columns: 1fr;
    align-items: start;
    width: min(100% - 28px, 620px);
    padding: 24px 0 34px;
  }

  .intro {
    display: grid;
    justify-items: center;
    max-width: none;
    text-align: center;
  }

  .site-mark {
    justify-self: start;
    margin-bottom: 46px;
  }

  .eyebrow {
    margin-top: 22px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12vw, 4.8rem);
  }

  .role {
    max-width: 34rem;
    margin-top: 18px;
    font-size: 1.02rem;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 22px, 520px);
  }

  .site-mark {
    margin-bottom: 34px;
    font-size: 1.34rem;
  }

  .portrait {
    width: 94px;
    height: 94px;
    border-width: 6px;
  }

  .eyebrow {
    margin-top: 19px;
    margin-bottom: 9px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 3.25rem);
  }

  .role {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .action {
    grid-template-columns: 42px 1fr;
    min-height: 68px;
    padding: 12px 13px;
  }

  .action-primary {
    min-height: 78px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .mini-link {
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
