:root {
  color-scheme: light;
  --cream: #f7f4ef;
  --paper: #fffdf9;
  --ink: #171718;
  --muted: #635f61;
  --platinum: #c8d0de;
  --taupe: #8f8383;
  --burgundy: #6a1f3a;
  --teal: #3b6f78;
  --line: rgba(77, 67, 70, 0.13);
  --shadow: 0 28px 80px rgba(58, 48, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(200, 208, 222, 0.48), transparent 29rem),
    radial-gradient(circle at 91% 88%, rgba(106, 31, 58, 0.08), transparent 26rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 24px;
}

.welcome-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.brand-row {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 48px 22px;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: 255px;
  height: auto;
  mix-blend-mode: multiply;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(59, 111, 120, 0.11);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
  min-height: 570px;
}

.portrait-wrap {
  display: grid;
  place-items: center;
  padding: 60px 35px;
  background:
    linear-gradient(145deg, rgba(200, 208, 222, 0.72), rgba(255, 253, 249, 0.5)),
    var(--platinum);
}

.portrait-ring {
  position: relative;
  width: min(340px, 86%);
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 50px rgba(47, 57, 67, 0.2);
}

.portrait-ring::after {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(143, 131, 131, 0.5);
  border-radius: 50%;
  content: "";
}

.portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.intro {
  align-self: center;
  max-width: 630px;
  padding: 66px 68px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 5.4vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.role {
  margin: 17px 0 28px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.description,
.construction {
  max-width: 590px;
  margin: 0;
  color: #423e40;
  font-size: 1.08rem;
  line-height: 1.7;
}

.construction {
  margin-top: 17px;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 33px;
}

.primary-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-link:hover {
  transform: translateY(-2px);
  background: var(--burgundy);
  box-shadow: 0 10px 25px rgba(106, 31, 58, 0.18);
}

.primary-link:focus-visible,
.email-list a:focus-visible {
  outline: 3px solid rgba(59, 111, 120, 0.45);
  outline-offset: 4px;
}

.email-list {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
}

.email-list a {
  color: var(--muted);
  text-decoration-color: rgba(99, 95, 97, 0.35);
  text-underline-offset: 3px;
}

.email-list a:hover {
  color: var(--burgundy);
  text-decoration-color: currentColor;
}

footer {
  padding: 18px 0 0;
  color: #7c7678;
  font-size: 0.78rem;
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 850px) {
  .page-shell {
    padding-top: 24px;
  }

  .brand-row {
    min-height: 105px;
    padding: 18px 28px;
  }

  .brand-logo {
    width: 210px;
  }

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

  .portrait-wrap {
    padding: 48px 25px;
  }

  .portrait-ring {
    width: min(300px, 76vw);
  }

  .intro {
    max-width: 680px;
    padding: 50px 40px 58px;
  }
}

@media (max-width: 570px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 10px;
  }

  .welcome-card {
    display: flex;
    flex-direction: column;
    border-radius: 21px;
  }

  .brand-row {
    display: grid;
    order: 2;
    gap: 14px;
    justify-items: center;
    padding: 20px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .brand-logo {
    width: 220px;
  }

  .status {
    font-size: 0.67rem;
  }

  .portrait-wrap {
    padding: 34px 20px;
  }

  .portrait-ring {
    width: min(235px, 64vw);
  }

  .content-grid {
    order: 1;
  }

  .intro {
    padding: 42px 25px 48px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.85rem);
  }

  .description,
  .construction {
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact-block {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-link {
    width: 100%;
  }

  .email-list {
    justify-items: center;
  }
}

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