*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --paper:     #f4f0e8;
  --paper-2:   #ede9e0;
  --ink:       #0d0d0b;
  --ink-2:     #1c1c1a;
  --sage:      #7a9e78;
  --sage-mid:  #aec4ac;
  --sage-bg:   #edf2eb;
  --dim:       #6b6760;
  --mid:       #a8a39b;
  --line:      rgba(13,13,11,0.09);
  --line-dark: rgba(13,13,11,0.18);
  --gold:      #a98a64;
  --gold-soft: #c4ad8f;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}


nav {
  position: fixed; inset: 0 0 auto;
  padding: 18px 56px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 600;
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,13,11,0.10);
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; letter-spacing: .08em;
  color: var(--ink); text-decoration: none; text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; color: var(--dim);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.hero {
  min-height: 100vh;
  padding: 150px 56px 72px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--line-dark);
  position: relative; overflow: hidden;
}
.hero-meta {
  position: absolute; top: 96px; left: 56px; right: 56px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.hero-meta-tag {
  font-size: 12px; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--dim);
}
.hero-meta-right {
  text-align: right; font-size: 13px; color: var(--dim); font-weight: 300; line-height: 1.7;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "name  photo"
    "rule  photo"
    "desc  photo"
    "cta   photo";
  align-items: start;
  column-gap: clamp(40px, 6vw, 100px);
  row-gap: 0;
}
.hero-name      { grid-area: name; }
.hero-rule      { grid-area: rule; }
.hero-foot-desc { grid-area: desc; }
.hero-cta       { grid-area: cta; justify-self: start; align-self: start; }
.hero-right     { grid-area: photo; align-self: center; }

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(76px, 9.6vw, 154px);
  line-height: .85;
  letter-spacing: -.03em;
  margin: 0;
}
.hero-name > span,
.hero-name .line-wrap { display: block; }
.hero-name .l3 {
  font-style: italic;
  background: linear-gradient(180deg, #c0aa8c 0%, #a48b6c 55%, #8c7458 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-rule {
  display: flex; align-items: center; gap: 16px;
  max-width: 420px;
  margin: 38px 0 34px;
}
.hero-rule-line { flex: 1; height: 1px; background: var(--line-dark); }
.hero-rule-dot {
  width: 6px; height: 6px; flex-shrink: 0;
  transform: rotate(45deg);
  background: var(--gold);
}

.hero-foot-desc {
  max-width: 430px; font-size: 15px; color: var(--dim);
  line-height: 1.9; font-weight: 300; margin: 0;
}
.hero-foot-desc strong { color: var(--ink); font-weight: 400; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 38px;
  border: 1px solid var(--ink);
  padding: 16px 34px; border-radius: 2px;
  font-size: 12px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  transition: background .25s, color .25s; white-space: nowrap;
}
.hero-cta:hover { background: var(--ink); color: var(--paper); }
.hero-cta svg { transition: transform .25s; }
.hero-cta:hover svg { transform: rotate(45deg); }

.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-photo {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  border: 1.5px solid var(--gold-soft);
  box-shadow: 0 34px 70px -30px rgba(13,13,11,.5);
}
.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid);
}

.ticker {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  padding: 13px 0; overflow: hidden;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 11px; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--paper); padding: 0 28px; opacity: .75;
}
.ticker-track span.sep { opacity: .2; padding: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.about-section {
  display: grid; grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.about-sidebar {
  padding: 72px 48px 72px 56px;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 48px;
}
.sidebar-label {
  font-size: 10px; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 10px; display: block;
}
.sidebar-val {
  font-size: 13px; color: var(--ink); font-weight: 300; line-height: 1.7;
}
.sidebar-val a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color .2s, color .2s;
}
.sidebar-val a:hover { border-color: var(--sage); color: var(--sage); }
.about-body { padding: 72px 72px 72px 64px; }
.about-intro {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 1.05; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 52px;
}
.about-intro em { font-style: normal; color: var(--dim); }
.about-body p {
  font-size: 15px; color: var(--dim); line-height: 1.9;
  font-weight: 300; max-width: 540px; margin-bottom: 20px;
}
.about-body p strong { color: var(--ink); font-weight: 400; }
.about-body p:last-child { margin-bottom: 0; }

.exp-section { border-bottom: 1px solid var(--line-dark); }
.exp-head {
  padding: 40px 56px 32px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.section-label-sm {
  font-size: 10px; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mid);
}
.exp-row {
  display: grid;
  grid-template-columns: 80px 160px 1fr 140px;
  align-items: start;
  padding: 0 56px;
  border-bottom: 1px solid var(--line);
  transition: background .18s;
  cursor: pointer;
}
.exp-row:last-child { border-bottom: none; }
.exp-row:hover { background: var(--sage-bg); }
.exp-row > div { padding: 32px 0; }
.exp-n {
  display: flex; align-items: flex-start; padding-top: 34px;
}
.exp-logo {
  height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-start;
}
.exp-logo img { display: block; }
.exp-period {
  font-size: 12px; color: var(--mid); font-weight: 300;
  line-height: 1.65; padding-top: 36px; padding-right: 32px;
}
.exp-body { padding-right: 40px; }
.exp-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 4px;
}
.exp-co {
  font-size: 12px; color: var(--mid); font-weight: 300;
  letter-spacing: .03em; margin-bottom: 12px;
}
.exp-desc { font-size: 13px; color: var(--dim); line-height: 1.8; font-weight: 300; max-width: 480px; }
.exp-right { padding-top: 34px; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.status-dot {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mid);
}
.status-dot::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--mid); display: block;
}
.status-dot.live { color: var(--sage); }
.status-dot.live::before { background: var(--sage); }
.view-more {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.view-more svg { transition: transform .2s; }
.exp-row:hover .view-more { color: var(--ink); }
.exp-row:hover .view-more svg { transform: translateX(3px); }

.ach-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.ach-left {
  background: var(--ink-2); color: var(--paper);
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: background .2s;
}
.ach-left:hover { background: #252520; }
.ach-eyebrow {
  font-size: 10px; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage-mid);
  margin-bottom: 64px; display: block;
}
.ach-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(100px, 13vw, 170px);
  line-height: .85; letter-spacing: -.04em;
  color: var(--paper); margin-bottom: 40px;
}
.ach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 34px); font-weight: 400;
  line-height: 1.2; letter-spacing: -.02em;
  color: var(--paper); margin-bottom: 12px;
}
.ach-sub { font-size: 13px; color: rgba(244,240,232,.4); font-weight: 300; line-height: 1.65; }
.ach-open-hint {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-mid);
}
.ach-open-hint svg { transition: transform .2s; }
.ach-left:hover .ach-open-hint svg { transform: translateX(4px); }

.ach-right { display: flex; flex-direction: column; min-height: 0; }
.ach-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-dark);
  overflow: hidden;
}
.gallery-img {
  overflow: hidden; position: relative;
  background: var(--paper-2);
}
.gallery-img.span-row { grid-row: span 2; }
.gallery-img picture,
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.gallery-img:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
}
.gallery-signal {
  background: var(--paper-2);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}
.gallery-signal span,
.dps-signal span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
}
.gallery-signal strong,
.dps-signal strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ink);
  margin: 18px 0 10px;
}
.gallery-signal em,
.dps-signal em {
  font-style: normal;
  font-size: 12px;
  color: var(--dim);
  line-height: 1.55;
}
.ach-caption {
  padding: 24px 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px; color: var(--dim); line-height: 1.6;
}
.ach-caption strong { color: var(--ink); font-weight: 400; }

.ach-section-secondary .ach-left {
  background: #8f1d1d;
  grid-column: 2;
  grid-row: 1;
}
.ach-section-secondary .ach-right {
  grid-column: 1;
  grid-row: 1;
}
.ach-section-secondary .ach-left:hover { background: #a92323; }
.ach-section-secondary .ach-eyebrow,
.ach-section-secondary .ach-open-hint {
  color: #f2c4bd;
}
.ach-section-secondary .gallery-signal strong {
  color: #8f1d1d;
}

.skills-section {
  display: grid; grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.skills-intro {
  padding: 72px 48px 72px 56px;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; justify-content: space-between;
}
.skills-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 400; letter-spacing: -.02em;
  line-height: 1.1; color: var(--ink); margin-bottom: 20px;
}
.skills-intro p { font-size: 13px; color: var(--dim); line-height: 1.85; font-weight: 300; }
.skills-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line-dark);
}
.skill-cell {
  padding: 36px 40px 36px 56px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background .18s;
  display: flex; flex-direction: column; gap: 10px;
}
.skill-cell:nth-child(3n) { border-right: none; }
.skill-cell:nth-child(7),
.skill-cell:nth-child(8),
.skill-cell:nth-child(9) { border-bottom: none; }
.skill-cell:hover { background: var(--sage-bg); }
.skill-cell-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; color: var(--sage); font-weight: 300; letter-spacing: .1em;
}
.skill-cell-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--ink);
  line-height: 1.15; letter-spacing: -.01em;
}
.skill-cell-sub { font-size: 11px; color: var(--mid); font-weight: 300; letter-spacing: .03em; }

.edu-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
}
.edu-block { padding: 72px 56px; border-right: 1px solid var(--line-dark); }
.edu-block:last-child { border-right: none; }
.edu-school {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 6px;
}
.edu-degree { font-size: 13px; color: var(--dim); font-weight: 300; line-height: 1.65; margin-bottom: 8px; }
.edu-year { font-size: 11px; color: var(--mid); letter-spacing: .08em; }
.cert-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.cert-row:first-of-type { padding-top: 0; }
.cert-row:last-child { border-bottom: none; padding-bottom: 0; }
.cert-initial {
  width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 2px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--dim);
}
.cert-name-text { font-size: 13px; font-weight: 400; color: var(--ink); margin-bottom: 3px; transition: color .2s; }
.cert-from { font-size: 11px; color: var(--mid); font-weight: 300; }
.cert-link { cursor: pointer; }
.cert-arrow {
  margin-left: auto; align-self: center;
  color: var(--dim); font-size: 15px; line-height: 1;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s, transform .25s cubic-bezier(.16,1,.3,1), color .2s;
}
.cert-link:hover .cert-arrow { opacity: 1; transform: translateX(0); color: var(--ink); }
.cert-link:hover .cert-initial { border-color: var(--sage-mid); color: var(--ink); }
.cert-link:hover .cert-name-text { color: var(--ink); }

.lang-strip {
  display: grid; grid-template-columns: repeat(5,1fr);
  border-bottom: 1px solid var(--line-dark);
}
.lang-cell { padding: 40px 56px; border-right: 1px solid var(--line-dark); }
.lang-cell:last-child { border-right: none; }
.lang-name-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 4px;
}
.lang-level { font-size: 12px; color: var(--dim); font-weight: 300; }

.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: 88px 64px 88px 56px;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px); font-weight: 300;
  letter-spacing: -.03em; line-height: .95;
  color: var(--ink); margin-bottom: 36px;
}
.contact-headline em { font-style: italic; }
.contact-desc { font-size: 14px; color: var(--dim); line-height: 1.85; font-weight: 300; max-width: 360px; margin-bottom: 48px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.c-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark); border-radius: 2px;
  font-size: 13px; font-weight: 300; color: var(--ink);
  text-decoration: none; letter-spacing: .02em;
  transition: background .2s, border-color .2s;
}
.c-link:hover { background: var(--sage-bg); border-color: var(--sage-mid); }
.c-link-icon {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line-dark); margin-right: 4px; flex-shrink: 0;
}
.c-link-icon svg { opacity: .5; }
.contact-right {
  background: var(--ink-2); padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.commonr-label {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-mid); margin-bottom: 36px; display: block; font-weight: 400;
}
.commonr-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  letter-spacing: -.03em; line-height: .95;
  color: var(--paper); margin-bottom: 28px;
}
.commonr-desc {
  font-size: 14px; color: rgba(244,240,232,.45);
  font-weight: 300; line-height: 1.85; max-width: 340px; margin-bottom: 48px;
}
.commonr-cta {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(244,240,232,.2);
  padding: 14px 28px; border-radius: 2px;
  font-size: 11px; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paper); text-decoration: none;
  transition: border-color .2s, background .2s; width: fit-content;
}
.commonr-cta:hover { border-color: var(--sage-mid); background: rgba(122,158,120,.1); }

footer {
  padding: 24px 56px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.foot-text { font-size: 12px; color: var(--mid); font-weight: 300; letter-spacing: .03em; }
.foot-text a { color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--line-dark); }

.overlay {
  position: fixed; inset: 0;
  background: rgba(13,13,11,.55);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  backdrop-filter: blur(4px);
}
.overlay.show { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(640px, 92vw);
  background: var(--paper);
  z-index: 900;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 36px 48px 32px;
  border-bottom: 1px solid var(--line-dark);
  position: sticky; top: 0;
  background: var(--paper);
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 10;
}
.drawer-close {
  width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 2px;
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
  color: var(--ink);
}
.drawer-close:hover { background: var(--paper-2); }
.drawer-label {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mid);
  margin-bottom: 8px; display: block;
}
.drawer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 400;
  letter-spacing: -.02em; color: var(--ink); line-height: 1.1;
}
.drawer-body { padding: 48px; flex: 1; }
.drawer-body p {
  font-size: 14px; color: var(--dim); line-height: 1.9; font-weight: 300;
  margin-bottom: 20px;
}
.drawer-body p strong { color: var(--ink); font-weight: 400; }
.drawer-body p:last-child { margin-bottom: 0; }
.drawer-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; letter-spacing: -.01em;
  color: var(--ink); margin: 36px 0 16px;
}
.drawer-section-title:first-child { margin-top: 0; }
.drawer-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.drawer-tag {
  font-size: 11px; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; color: var(--dim);
  padding: 6px 14px; border: 1px solid var(--line-dark); border-radius: 2px;
}
.drawer-tag.green { color: var(--sage); border-color: var(--sage-mid); }
.phase-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.phase-item {
  display: grid; grid-template-columns: 48px 1fr;
  border: 1px solid var(--line-dark); border-radius: 2px; overflow: hidden;
}
.phase-num {
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300;
}
.phase-content { padding: 16px 20px; }
.phase-name { font-size: 13px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.phase-desc { font-size: 12px; color: var(--dim); line-height: 1.7; font-weight: 300; }
.metric-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--line-dark); border-radius: 2px; overflow: hidden;
  margin: 20px 0;
}
.metric-cell {
  background: var(--paper); padding: 20px 24px;
}
.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 4px;
}
.metric-label { font-size: 11px; color: var(--mid); font-weight: 300; }
.bullet-list {
  list-style: none; padding: 0; margin: 12px 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.bullet-list li {
  font-size: 13px; color: var(--dim); line-height: 1.7; font-weight: 300;
  display: flex; gap: 12px; align-items: flex-start;
}
.bullet-list li::before {
  content: '–'; color: var(--sage); flex-shrink: 0; margin-top: 0;
}
.drawer-divider { height: 1px; background: var(--line-dark); margin: 32px 0; }
.highlight-box {
  background: var(--sage-bg); border: 1px solid rgba(122,158,120,.3);
  border-radius: 2px; padding: 20px 24px; margin: 20px 0;
}
.highlight-box p { font-size: 13px; color: var(--ink); line-height: 1.75; margin: 0; }
.highlight-box p strong { font-weight: 500; }
.drawer-photo-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--line-dark);
  margin: 24px -48px;
}
.drawer-photo-strip .dps-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--paper-2);
}
.drawer-photo-strip .dps-img.tall { aspect-ratio: 3/4; }
.drawer-photo-strip .dps-img picture,
.drawer-photo-strip .dps-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(10%);
}
.drawer-photo-strip .dps-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
}
.drawer-photo-strip .dps-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.dps-signal {
  background: var(--paper-2);
  padding: 22px 24px;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dps-signal strong { font-size: 54px; }
.drawer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.drawer-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 10px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.drawer-link:hover {
  background: var(--sage-bg);
  border-color: var(--sage-mid);
  color: var(--sage);
}
.drawer-seneca .drawer-tag.green {
  color: #9f1d20;
  border-color: rgba(159,29,32,.35);
}
.drawer-seneca .highlight-box {
  background: #f8e8e8;
  border-color: rgba(159,29,32,.24);
}
.drawer-seneca .dps-signal strong,
.drawer-seneca .metric-val {
  color: #8f1d1d;
}
.drawer-seneca .drawer-link:hover {
  background: #f8e8e8;
  border-color: rgba(159,29,32,.35);
  color: #9f1d20;
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .32s; }
.reveal-d4 { transition-delay: .42s; }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: var(--sage);
  pointer-events: none;
  transition: width .08s linear;
}

.line-wrap { overflow: hidden; display: block; padding-bottom: 0.15em; margin-bottom: -0.15em; padding-left: 0.04em; margin-left: -0.04em; }
.line-inner {
  display: block;
  transform: translateY(108%);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), opacity .55s ease;
}
.hero-revealed .line-inner { transform: translateY(0); opacity: 1; }

.view-more { transition: color .2s, transform .3s cubic-bezier(.16,1,.3,1); }

@media (max-width: 960px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { display: block; padding: 92px 20px 56px; }
  .hero-meta { position: static; margin-bottom: 30px; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .hero-meta-right { text-align: center; }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "name" "photo" "rule" "desc" "cta";
    column-gap: 0;
    justify-items: center;
    text-align: center;
  }
  .hero-right { width: 100%; justify-self: center; align-self: start; justify-content: center; margin: 6px 0 4px; }
  .hero-photo { max-width: 320px; }
  .hero-name { font-size: clamp(72px, 18vw, 128px); line-height: .88; }
  .hero-rule { width: min(100%, 360px); max-width: none; margin: 30px 0 28px; }
  .hero-foot-desc { max-width: 430px; font-size: 15px; line-height: 1.85; }
  .hero-cta { justify-self: center; margin-top: 30px; }
  .about-section,
  .ach-section,
  .skills-section,
  .edu-section,
  .contact-section { grid-template-columns: 1fr; }
  .about-sidebar,
  .skills-intro { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 56px 24px; }
  .about-body { padding: 56px 24px; }
  .ach-left { padding: 64px 24px; }
  .ach-section-secondary .ach-left,
  .ach-section-secondary .ach-right {
    grid-column: auto;
    grid-row: auto;
  }
  .ach-gallery { grid-template-rows: repeat(2, 200px); }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .skill-cell { padding: 28px 24px; }
  .skill-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .skill-cell:nth-child(2n) { border-right: none; }
  .skill-cell:nth-child(7), .skill-cell:nth-child(8), .skill-cell:nth-child(9) { border-bottom: 1px solid var(--line); }
  .skill-cell:nth-child(8), .skill-cell:nth-child(9) { border-bottom: none; }
  .edu-block { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 56px 24px; }
  .edu-block:last-child { border-bottom: none; }
  .lang-strip { grid-template-columns: 1fr; }
  .lang-cell { border-bottom: 1px solid var(--line-dark); border-right: none; padding: 28px 24px; }
  .lang-cell:last-child { border-bottom: none; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 64px 24px; }
  .contact-right { padding: 64px 24px; }
  .exp-row { grid-template-columns: 1fr; padding: 28px 24px; }
  .exp-n, .exp-period { display: none; }
  .exp-right { padding-top: 12px; text-align: left; align-items: flex-start; }
  .exp-head { padding: 32px 24px; }
  footer { padding: 20px 24px; flex-direction: column; gap: 6px; }
  .drawer { width: 100%; }
  .drawer-body { padding: 32px 24px; }
  .drawer-header { padding: 28px 24px; }
  .drawer-photo-strip { margin: 24px -24px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 84px; }
  .hero-meta { margin-bottom: 24px; }
  .hero-photo { max-width: 260px; }
  .hero-name { font-size: clamp(62px, 17vw, 98px); }
  .hero-foot-desc { font-size: 14px; line-height: 1.8; }
}
