:root {
  --paper: #fff;
  --ink: #17211d;
  --muted: #65716a;
  --line: rgba(23, 33, 29, 0.18);
  --accent: #98bb23;
  --accent-dark: #9cbf26;
  --container: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.page-shell {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(calc(100% - 80px), var(--container));
  min-height: 100svh;
  margin: 0 auto;
  padding: 34px 0 30px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.brand { display: inline-flex; align-items: center; justify-content:center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-name { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }

.intro { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: end; gap: 10%; padding: 8vh 0 7vh; }
.intro-copy { max-width: 700px; }
.eyebrow { margin: 0 0 24px; }
.intro h1 { margin: 0; font-size: clamp(4.4rem, 12vw, 10.5rem); font-weight: 800; line-height: 0.87; letter-spacing: -0.08em; }
.intro h1 em { color: var(--accent); font-style: normal; }
.bio { max-width: 510px; margin: 38px 0 28px; color: var(--muted); font-size: clamp(0.9rem, 1.4vw, 1.08rem); line-height: 1.7; }
.email-link { color: var(--ink); font: 500 0.83rem "DM Mono", monospace; text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.email-link span, .social-links span { color: var(--accent); }

.profile-note { position: relative; padding: 22px 0 25px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.note-line { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.note-line span { color: var(--muted); font: 500 0.62rem "DM Mono", monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.note-line strong { font-size: 0.85rem; font-weight: 600; }
.note-stamp { position: absolute; right: 0; bottom: -2px; color: var(--accent); font: 500 2.2rem "DM Mono", monospace; line-height: 0.3; text-align: right; transform: rotate(-12deg); }
.note-stamp small { font-size: 0.45rem; letter-spacing: 0.08em; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-label, .copyright { margin: 0; }
.social-links { display: flex; gap: clamp(16px, 3vw, 38px); }
.social-links a { color: var(--ink); font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.social-links a:hover, .email-link:hover { color: var(--accent-dark); }
.copyright { text-align: right; }

@media (max-width: 700px) {
  .page-shell { width: min(calc(100% - 40px), var(--container)); padding: 20px 0 18px; }
  .availability { font-size: 0.55rem; text-align: right; }
  .intro { display: block; padding: 4vh 0 3vh; }
  .intro h1 { font-size: clamp(4rem, 20vw, 7rem); }
  .bio { margin: 22px 0 20px; font-size: 0.86rem; line-height: 1.55; }
  .profile-note { margin-top: 26px; padding: 16px 0 18px; }
  .note-line { margin-bottom: 12px; }
  .note-line:last-of-type { margin-bottom: 0; }
  .note-stamp { font-size: 1.8rem; }
  .site-footer { display: block; }
  .social-links { flex-wrap: wrap; gap: 10px 20px; margin: 14px 0 16px; }
  .copyright { text-align: left; }
}
