*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --white:#ffffff;
  --off-white:#f8f8f8;
  --black:#111111;
  --grey:#666666;
  --light-grey:#e0e0e0;
  --font-heading:'Playfair Display',Georgia,serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
}
body{font-family:var(--font-body);line-height:1.7;color:var(--black);background:var(--white)}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* Layout */
.container{max-width:1200px;margin:0 auto;padding:0 2rem}
.narrow{max-width:800px;margin:0 auto;padding:0 2rem}

/* Navigation */
header{position:sticky;top:0;background:rgba(255,255,255,0.97);border-bottom:1px solid var(--light-grey);z-index:100;backdrop-filter:blur(8px)}
header nav{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 2rem;max-width:1200px;margin:0 auto}
.brand{display: inline-flex;align-items:center;gap:0.6rem;font-family:var(--font-heading);font-size:1.2rem;font-weight:700;letter-spacing:-0.02em}
.brand svg{width:32px;height:32px}
.nav-links{display:flex;gap:2rem}
.nav-links a{font-size:0.9rem;color:var(--grey);transition:color 0.2s}
.nav-links a:hover{color:var(--black)}

/* Hero */
.hero{padding:6rem 2rem;text-align:center;background:var(--off-white)}
.hero h1{font-family:var(--font-heading);font-size:3.5rem;font-weight:700;letter-spacing:-0.03em;margin-bottom:1rem}
.hero p{font-size:1.15rem;color:var(--grey);max-width:560px;margin:0 auto}

/* Sections */
section{padding:5rem 0}
section h2{font-family:var(--font-heading);font-size:2.2rem;margin-bottom:1.5rem;letter-spacing:-0.02em}
section p{color:var(--grey);font-size:1.05rem;margin-bottom:1.2rem}

/* Gallery Grid */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:1.5rem;margin-top:2rem}
.gallery-grid img{width:100%;height:300px;object-fit:cover;border-radius:2px;transition:transform 0.3s}
.gallery-grid img:hover{transform:scale(1.02)}

/* Two Column */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.two-col img{width:100%;height:400px;object-fit:cover}

/* Process Steps */
.process-steps{counter-reset:step;margin-top:3rem}
.process-step{display:flex;gap:2rem;margin-bottom:3rem;align-items:flex-start}
.process-step::before{counter-increment:step;content:counter(step,decimal-leading-zero);font-family:var(--font-heading);font-size:3rem;font-weight:700;color:var(--light-grey);line-height:1}
.process-step-content h3{font-family:var(--font-heading);font-size:1.3rem;margin-bottom:0.5rem}
.process-step-content p{color:var(--grey);font-size:0.95rem}

/* Footer */
footer{border-top:1px solid var(--light-grey);padding:3rem 0;margin-top:2rem}
footer .footer-inner{display:flex;justify-content:space-between;align-items:flex-start;max-width:1200px;margin:0 auto;padding:0 2rem;flex-wrap:wrap;gap:2rem}
footer .footer-col h4{font-family:var(--font-heading);font-size:1rem;margin-bottom:0.8rem}
footer .footer-col a{display:block;color:var(--grey);font-size:0.9rem;margin-bottom:0.4rem;transition:color 0.2s}
footer .footer-col a:hover{color:var(--black)}
footer .footer-bottom{text-align:center;margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--light-grey);color:var(--grey);font-size:0.85rem}

/* Article */
.article-content{max-width:720px;margin:0 auto}
.article-content h1{font-family:var(--font-heading);font-size:2.5rem;margin-bottom:0.5rem;letter-spacing:-0.02em}
.article-content .subtitle{font-size:1.1rem;color:var(--grey);margin-bottom:2rem}
.article-content h2{font-family:var(--font-heading);font-size:1.6rem;margin-top:2.5rem;margin-bottom:1rem}
.article-content p{font-size:1.05rem;color:#333;margin-bottom:1.5rem}
.article-content img{margin:2rem 0;width:100%;height:auto;border-radius:2px}

/* Responsive */
@media(max-width:768px){
  .hero h1{font-size:2.2rem}
  .hero{padding:4rem 1.5rem}
  .two-col{grid-template-columns:1fr;gap:2rem}
  .gallery-grid{grid-template-columns:1fr}
  .nav-links{gap:1rem}
  .nav-links a{font-size:0.8rem}
  header nav{padding:1rem 1.5rem}
  footer .footer-inner{flex-direction:column}
  .process-step{flex-direction:column;gap:0.5rem}
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
