:root {
  --paper: #f4f0e8;
  --paper-soft: #faf8f3;
  --white: #fffdf9;
  --ink: #191715;
  --ink-soft: #34302c;
  --muted: #716b64;
  --line: rgba(35, 30, 24, .12);
  --line-dark: rgba(255, 255, 255, .1);
  --gold: #a98245;
  --gold-light: #d9bc82;
  --graphite: #161618;
  --graphite-soft: #222225;
  --success: #227a5b;
  --danger: #a5453c;
  --shadow-sm: 0 12px 34px rgba(42, 34, 24, .08);
  --shadow-lg: 0 28px 80px rgba(32, 25, 18, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header { position: sticky; z-index: 40; top: 0; height: 64px; padding: 0 max(20px, env(safe-area-inset-left)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(35, 30, 24, .08); background: rgba(244, 240, 232, .82); backdrop-filter: blur(22px) saturate(1.25); -webkit-backdrop-filter: blur(22px) saturate(1.25); }
.brand { color: var(--ink); font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: -.055em; text-decoration: none; }
.header-note { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(169, 130, 69, .1); }

.kicker { margin: 0 0 18px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.personal-landing { width: min(100%, 1040px); min-height: calc(100svh - 64px); margin: 0 auto; padding: 58px 28px 76px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr); grid-template-rows: auto 1fr; column-gap: clamp(42px, 7vw, 88px); align-items: center; }
.personal-intro { align-self: end; padding-bottom: 28px; }
.personal-eyebrow { margin: 0 0 19px; display: flex; align-items: center; gap: 9px; color: var(--gold); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.personal-wave { width: 8px; height: 8px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); font-size: 7px; box-shadow: 0 0 0 6px rgba(169,130,69,.1); }
.personal-intro h1 { max-width: 470px; margin: 0; font-family: var(--serif); font-size: clamp(52px, 7vw, 80px); font-weight: 500; letter-spacing: -.06em; line-height: .93; }
.personal-lead { max-width: 460px; margin: 25px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(20px, 2.25vw, 26px); line-height: 1.42; }
.personal-lead strong { color: var(--ink); font-weight: 600; }
.personal-photo { grid-column: 2; grid-row: 1 / span 2; margin: 0; position: relative; }
.personal-photo::before { content: ""; position: absolute; inset: 8% -6% -7% 18%; z-index: -1; border-radius: 42% 58% 44% 56%; background: rgba(169,130,69,.13); filter: blur(38px); }
.personal-photo img { width: 100%; height: auto; aspect-ratio: 1200 / 867; border-radius: 30px; object-fit: contain; object-position: center; box-shadow: 0 30px 90px rgba(35,27,18,.18); }
.personal-action { align-self: start; max-width: 460px; }
.personal-action > p { margin: 0 0 19px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.primary-button { width: 100%; min-height: 58px; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; border-radius: 17px; background: var(--graphite); color: #fff; box-shadow: 0 16px 32px rgba(22, 22, 24, .16); cursor: pointer; font-size: 15px; font-weight: 650; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(22, 22, 24, .2); }
.primary-button:active { transform: scale(.992); }
.primary-button:focus-visible { outline: 3px solid rgba(169, 130, 69, .38); outline-offset: 3px; }

.site-footer { width: min(100%, 760px); margin: 0 auto; padding: 24px 28px 40px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.site-footer nav { display: flex; gap: 16px; }
.site-footer a { text-underline-offset: 3px; }
.reveal { animation: rise-in 580ms cubic-bezier(.2,.78,.2,1) both; }
.delay-1 { animation-delay: 90ms; }
.delay-2 { animation-delay: 160ms; }
@keyframes rise-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 620px) {
  .site-header { height: 58px; }
  .header-note { font-size: 9px; }
  .personal-landing { min-height: auto; padding: 34px 18px 58px; display: flex; flex-direction: column; align-items: stretch; }
  .personal-intro { padding-bottom: 24px; }
  .personal-eyebrow { margin-bottom: 15px; }
  .personal-intro h1 { max-width: 340px; font-size: clamp(48px, 14.6vw, 62px); }
  .personal-lead { margin-top: 19px; font-size: clamp(19px, 5.8vw, 23px); }
  .personal-photo { margin-inline: -3px; }
  .personal-photo img { border-radius: 23px; box-shadow: 0 22px 58px rgba(35,27,18,.17); }
  .personal-action { margin-top: 24px; max-width: none; }
  .personal-action > p { margin-bottom: 16px; font-size: 13px; }
  .site-footer { padding-inline: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
