*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#666666;
  --light:#f7f7f7;
  --border:#ebebeb;
  --accent:#2a2a2a;
  --font-heading:'Helvetica Neue',Helvetica,Arial,sans-serif;
  --font-body:'Helvetica Neue',Helvetica,Arial,sans-serif;
}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);line-height:1.7;color:var(--text);background:var(--bg);font-size:16px}
img{max-width:100%;height:auto;display:block}
a{color:var(--text);text-decoration:underline;text-underline-offset:3px;transition:opacity .2s}
a:hover{opacity:.6}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:0 2rem}
.narrow{max-width:760px;margin:0 auto;padding:0 2rem}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.grid-2-asymmetric{display:grid;grid-template-columns:2fr 1fr;gap:3rem;align-items:start}

/* Header */
header{padding:1.5rem 0;border-bottom:1px solid var(--border)}
header nav{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto;padding:0 2rem}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:600;font-size:1rem;color:var(--text);text-decoration:none;letter-spacing:-.02em}
.brand svg{width:24px;height:24px}
.nav-links{display:flex;gap:2rem}
.nav-links a{color:var(--muted);font-size:.875rem;text-decoration:none;letter-spacing:.01em}
.nav-links a:hover{color:var(--text);opacity:1}

/* Hero */
.hero{padding:6rem 2rem 4rem;max-width:1200px;margin:0 auto}
.hero h1{font-family:var(--font-heading);font-size:3.5rem;font-weight:300;line-height:1.15;letter-spacing:-.03em;margin-bottom:1.5rem}
.hero p{font-size:1.2rem;color:var(--muted);max-width:560px;line-height:1.6}
.hero-image{width:100%;margin-top:3rem}
.hero-image img{width:100%;height:480px;object-fit:cover}

/* Sections */
section{padding:5rem 0}
section.light{background:var(--light)}
h2{font-family:var(--font-heading);font-size:2rem;font-weight:300;letter-spacing:-.02em;margin-bottom:1.5rem}
h3{font-size:1.1rem;font-weight:500;margin-bottom:.5rem}
p{margin-bottom:1rem}
.label{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-bottom:.5rem}

/* Portfolio Grid */
.portfolio-item{position:relative;overflow:hidden}
.portfolio-item img{width:100%;height:320px;object-fit:cover;transition:transform .4s ease}
.portfolio-item:hover img{transform:scale(1.02)}
.portfolio-item .caption{padding:1rem 0}
.portfolio-item .caption h3{font-weight:500;margin-bottom:.25rem}
.portfolio-item .caption p{color:var(--muted);font-size:.875rem;margin:0}

/* Article */
.article{max-width:700px;margin:0 auto}
.article h1{font-family:var(--font-heading);font-size:2.5rem;font-weight:300;letter-spacing:-.02em;line-height:1.2;margin-bottom:1rem}
.article .meta{color:var(--muted);font-size:.875rem;margin-bottom:2.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border)}
.article img{width:100%;margin:2.5rem 0}
.article h2{font-size:1.5rem;margin-top:3rem;font-weight:400}
.article ul,.article ol{margin:1rem 0 1.5rem 1.25rem}
.article li{margin-bottom:.5rem}
.article blockquote{border-left:2px solid var(--text);padding-left:1.5rem;margin:2rem 0;font-size:1.1rem;font-style:italic;color:var(--muted)}

/* About */
.bio-section{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:start}
.bio-section img{width:100%;height:500px;object-fit:cover}

/* CTA */
.cta-section{text-align:center;padding:4rem 2rem;background:var(--light)}
.cta-section h3{font-size:1.5rem;font-weight:300;margin-bottom:.75rem}
.cta-section p{color:var(--muted)}
.cta-section a{font-weight:500}

/* Footer */
footer{border-top:1px solid var(--border);padding:3rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:2rem;max-width:1200px;margin:0 auto;padding:0 2rem}
.footer-col h4{font-size:.75rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.75rem;font-weight:500}
.footer-col a{display:block;color:var(--text);font-size:.875rem;margin-bottom:.4rem;text-decoration:none}
.footer-col a:hover{opacity:.6}
.footer-bottom{text-align:center;color:var(--muted);font-size:.8rem;margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--border)}

/* Responsive */
@media(max-width:900px){
  .grid-2,.grid-2-asymmetric,.bio-section{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr 1fr}
  .hero h1{font-size:2.5rem}
  .hero{padding:4rem 1.5rem 3rem}
}
@media(max-width:600px){
  .grid-3{grid-template-columns:1fr}
  .hero h1{font-size:2rem}
  .nav-links{gap:1.25rem}
  .nav-links a{font-size:.8rem}
  header nav{padding:0 1.25rem}
  .container,.narrow{padding:0 1.25rem}
  .footer-inner{flex-direction:column;padding:0 1.25rem}
}
