*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white: #ffffff;
    --off-white: #f8f7f5;
    --light: #efefed;
    --mid: #c8c5bf;
    --dark: #1a1a18;
    --accent: #1a1a18;
    --serif: 'Syne', sans-serif;
    --sans: 'Outfit', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light);
  }
  .nav-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--dark);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { opacity: 1; }

  /* ── SECTIONS ── */
  section { min-height: 100vh; }

  /* ── HERO / ABOUT ── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 72px;
  }
  .hero-image-col {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
  }
  .hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    opacity: 0;
    animation: fadeIn 1.2s 0.3s ease forwards;
  }
  .hero-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px 80px 72px;
    opacity: 0;
    animation: slideUp 1s 0.5s ease forwards;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 28px;
    font-weight: 400;
  }
  .hero-name {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .hero-title {
    font-family: var(--serif);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--mid);
    margin-bottom: 48px;
    letter-spacing: 0.02em;
  }
  .hero-divider {
    width: 40px;
    height: 1px;
    background: var(--dark);
    margin-bottom: 32px;
  }
  .hero-bio {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #444;
    font-weight: 300;
    max-width: 460px;
  }
  .hero-bio p + p { margin-top: 16px; }
  .hero-cta {
    margin-top: 52px;
    display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  }
  .btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.25s, color 0.25s;
  }
  .btn-primary:hover { background: #333; }
  .btn-ghost {
    display: inline-block;
    padding: 13px 32px;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.25s, color 0.25s;
  }
  .btn-ghost:hover { background: var(--dark); color: var(--white); }

  /* ── EXPERTISE STRIP ── */
  .expertise-strip {
    background: var(--off-white);
    padding: 80px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
  }
  .expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .expertise-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 48px;
  }
  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .expertise-item h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .expertise-item p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── PARTNERSHIPS ── */
  .partnerships-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-header {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 64px;
  }
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    white-space: nowrap;
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
  }
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--light);
    border: 1px solid var(--light);
  }
  .partner-card {
    background: var(--white);
    padding: 36px 40px;
    transition: background 0.2s;
  }
  .partner-card:hover { background: var(--off-white); }
  .partner-card h4 {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 14px;
    font-weight: 400;
  }
  .partner-card ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .partner-card ul li {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--off-white);
    padding: 4px 10px;
    border: 1px solid var(--light);
  }

  /* ── RESUME SECTION ── */
  #resume {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--light);
  }
  .resume-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .resume-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    margin-top: 64px;
  }

  /* Experience */
  .exp-list { display: flex; flex-direction: column; gap: 0; }
  .exp-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--light);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .exp-item.visible { opacity: 1; transform: translateY(0); }
  .exp-item:first-child { padding-top: 0; }
  .exp-meta { padding-top: 4px; }
  .exp-dates {
    font-size: 0.72rem;
    color: var(--mid);
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 6px;
  }
  .exp-company-tag {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
  }
  .exp-role {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .exp-company-name {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    color: #555;
  }
  .exp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .exp-bullets li {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
    padding-left: 16px;
    position: relative;
  }
  .exp-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 5px; height: 1px;
    background: var(--mid);
  }

  /* Sidebar */
  .resume-sidebar { display: flex; flex-direction: column; gap: 48px; }
  .sidebar-block h3 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .skill-list li {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .skill-list li::before {
    content: '';
    display: block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--mid);
    flex-shrink: 0;
  }
  .edu-block {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--light);
  }
  .edu-degree {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 4px;
  }
  .edu-school {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
  }
  .edu-location {
    font-size: 0.73rem;
    color: var(--mid);
    margin-top: 4px;
  }

  /* ── CONTACT FOOTER ── */
  footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 60px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .footer-name {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
  }
  .footer-contacts { display: flex; flex-direction: column; gap: 16px; }
  .contact-row {
    display: flex; align-items: center; gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    width: 70px;
    flex-shrink: 0;
  }
  .contact-value {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-value:hover { color: #fff; }
  .footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #about { grid-template-columns: 1fr; }
    .hero-image-col { height: 60vw; min-height: 320px; }
    .hero-content-col { padding: 60px 32px; }
    nav { padding: 0 32px; }
    .resume-grid { grid-template-columns: 1fr; gap: 60px; }
    .exp-item { grid-template-columns: 1fr; gap: 8px; }
    .expertise-grid { grid-template-columns: 1fr 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 48px; }
    .partnerships-section, .resume-inner { padding: 60px 32px; }
    footer { padding: 60px 32px; }
  }
  @media (max-width: 600px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 24px; }
  }