
  :root{
    --bg: #ffffff;
    --bg-raised: #ffffff;
    --cream: #000000;
    --muted: rgba(0,0,0,0.6);
    --line: rgba(0,0,0,0.14);
  }

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

  html{scroll-behavior:smooth;}

  body{
    background:var(--bg);
    color:var(--cream);
    font-family:Arial, Helvetica, sans-serif;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.02em;
  }

  a{color:inherit;text-decoration:none;}
  img{display:block;max-width:100%;}

  /* ---------- NAV ---------- */
  header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    max-width:1400px;
    margin:0 auto;
    padding:22px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    font-size:18px;
    letter-spacing:0.12em;
  }
  nav ul{
    display:flex;
    gap:36px;
    list-style:none;
  }
  nav a{
    font-size:13px;
    letter-spacing:0.14em;
    color:var(--muted);
    transition:color 0.2s ease;
  }
  nav a:hover{color:var(--cream);}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    height:92vh;
    min-height:560px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
  }
  .hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 30%;
    filter:brightness(0.55);
  }
  .hero-content{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:0 auto;
    padding:0 32px 64px;
    width:100%;
  }
  .hero-eyebrow{
    font-size:12px;
    letter-spacing:0.2em;
    color:rgba(255,255,255,0.75);
    margin-bottom:14px;
  }
  .hero h1{
    font-size:clamp(38px, 7vw, 96px);
    line-height:0.98;
    letter-spacing:0.01em;
    color:#ffffff;
  }

  /* ---------- SECTION HEADER (works) ---------- */
  .works-header{
    max-width:1400px;
    margin:0 auto;
    padding:90px 32px 40px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:24px;
    border-bottom:1px solid var(--line);
  }
  .works-header h2{
    font-size:clamp(28px, 4vw, 48px);
    letter-spacing:0.02em;
  }
  .works-header .years{
    color:var(--muted);
    font-size:14px;
    letter-spacing:0.16em;
    font-weight:400;
  }

  /* ---------- GRID ---------- */
  .grid{
    max-width:1400px;
    margin:0 auto;
    padding:40px 32px 100px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:36px 28px;
  }
  @media (max-width:900px){
    .grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:560px){
    .grid{grid-template-columns:1fr;}
  }

  .piece{
    cursor:pointer;
  }
  .piece-frame{
    position:relative;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f4f4f4;
  }
  .piece-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
  }
  .piece:hover .piece-frame img{
    transform:scale(1.045);
  }
  .piece-frame::after{
    content:"";
    position:absolute;
    inset:0;
    border:1px solid var(--line);
    pointer-events:none;
  }
  .piece-caption{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    margin-top:14px;
    font-size:13px;
    letter-spacing:0.08em;
  }
  .piece-caption .title{color:var(--cream);}
  .piece-caption .meta{color:var(--muted);font-weight:400;text-transform:none;font-size:12px;letter-spacing:0.02em;}
  .piece-price{
    margin-top:4px;
    font-size:13px;
    letter-spacing:0.06em;
  }

  /* ---------- LIGHTBOX ---------- */
  .lightbox{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,0.97);
    z-index:200;
    display:none;
    align-items:center;
    justify-content:center;
    padding:40px;
  }
  .lightbox.active{display:flex;}
  .lightbox img{
    max-width:100%;
    max-height:88vh;
    width:auto;
    object-fit:contain;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
  }
  .lightbox-caption{
    position:absolute;
    bottom:32px;
    left:0;
    right:0;
    text-align:center;
    font-size:13px;
    letter-spacing:0.1em;
  }
  .lightbox-caption .meta{
    display:block;
    margin-top:6px;
    font-size:11px;
    font-weight:400;
    text-transform:none;
    color:var(--muted);
  }
  .lightbox-close{
    position:absolute;
    top:28px;
    right:32px;
    font-size:14px;
    letter-spacing:0.1em;
    cursor:pointer;
    padding:8px 14px;
    border:1px solid var(--line);
  }
  .lightbox-close:hover{background:#000;color:#fff;}

  /* ---------- ABOUT ---------- */
  #about{
    border-top:1px solid var(--line);
  }
  .about-inner{
    max-width:1100px;
    margin:0 auto;
    padding:120px 32px;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:80px;
  }
  @media (max-width:800px){
    .about-inner{grid-template-columns:1fr;gap:48px;padding:80px 24px;}
  }
  .about-inner h2{
    font-size:clamp(26px,3.4vw,40px);
    line-height:1.15;
  }
  .about-block + .about-block{margin-top:44px;}
  .about-label{
    font-size:12px;
    letter-spacing:0.18em;
    color:var(--muted);
    margin-bottom:14px;
  }
  .about-body{
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    line-height:1.7;
    font-size:15px;
    color:var(--cream);
    opacity:0.92;
  }

  /* ---------- CONTACT / FOOTER ---------- */
  footer{
    border-top:1px solid var(--line);
  }
  .footer-inner{
    max-width:1400px;
    margin:0 auto;
    padding:80px 32px 40px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:32px;
  }
  .footer-cta h2{
    font-size:clamp(26px,4vw,52px);
    margin-bottom:24px;
  }
  .footer-email{
    display:inline-block;
    font-size:14px;
    letter-spacing:0.08em;
    border-bottom:1px solid var(--cream);
    padding-bottom:4px;
  }
  .footer-meta{
    display:flex;
    flex-direction:column;
    gap:10px;
    font-size:12px;
    letter-spacing:0.1em;
    color:var(--muted);
    text-align:right;
  }
  .footer-bottom{
    max-width:1400px;
    margin:0 auto;
    padding:24px 32px 40px;
    font-size:11px;
    letter-spacing:0.1em;
    color:var(--muted);
    font-weight:400;
  }

  /* ---------- HOME INTRO ---------- */
  .home-hero{
    position:relative;
    height:92vh;
    min-height:560px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    border-bottom:1px solid var(--line);
  }
  .home-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:brightness(0.5);
  }
  .home-hero-content{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:0 auto;
    padding:0 32px 64px;
    width:100%;
  }
  .home-hero .hero-eyebrow{
    font-size:12px;
    letter-spacing:0.2em;
    color:rgba(255,255,255,0.75);
    margin-bottom:14px;
  }
  .home-hero h1{
    font-size:clamp(38px, 7vw, 96px);
    line-height:0.98;
    letter-spacing:0.01em;
    margin-bottom:28px;
    color:#ffffff;
  }
  .home-hero p{
    max-width:560px;
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    line-height:1.7;
    font-size:16px;
    color:#ffffff;
    opacity:0.9;
  }

  .home-cards{
    max-width:1400px;
    margin:0 auto;
    padding:0;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
  }
  @media (max-width:800px){
    .home-cards{grid-template-columns:1fr;}
  }
  .home-card{
    padding:64px 32px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:260px;
    transition:background 0.2s ease;
  }
  .home-card:last-child{border-right:none;}
  .home-card:hover{background:#fafafa;}
  .home-card h3{
    font-size:clamp(22px,2.6vw,28px);
    margin-bottom:16px;
  }
  .home-card p{
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    line-height:1.6;
    font-size:14px;
    opacity:0.75;
    margin-bottom:28px;
  }
  .home-card .link-arrow{
    font-size:13px;
    letter-spacing:0.1em;
    border-bottom:1px solid var(--cream);
    padding-bottom:3px;
    align-self:flex-start;
  }

  /* ---------- PAGE HEADER (generic, used on About/Commissions) ---------- */
  .page-header{
    max-width:1100px;
    margin:0 auto;
    padding:140px 32px 60px;
  }
  .page-header h1{
    font-size:clamp(32px,5vw,56px);
  }

  /* ---------- COMMISSIONS ---------- */
  .commissions-body{
    max-width:1100px;
    margin:0 auto;
    padding:0 32px 140px;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:80px;
  }
  @media (max-width:800px){
    .commissions-body{grid-template-columns:1fr;gap:48px;}
  }
  .commissions-note{
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    line-height:1.7;
    font-size:15px;
    opacity:0.9;
    border:1px solid var(--line);
    padding:28px;
  }

  .price-table{
    width:100%;
    border-collapse:collapse;
    margin:8px 0 32px;
  }
  .price-table th{
    text-align:left;
    font-size:11px;
    letter-spacing:0.12em;
    color:var(--muted);
    font-weight:700;
    padding-bottom:12px;
    border-bottom:1px solid var(--line);
  }
  .price-table td{
    padding:16px 0;
    border-bottom:1px solid var(--line);
    font-size:15px;
  }
  .price-table td:last-child{text-align:right;}
  .price-note{
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    font-size:12px;
    color:var(--muted);
    margin-top:-16px;
    margin-bottom:32px;
  }
  .steps-list{
    list-style:none;
    counter-reset:step;
  }
  .steps-list li{
    counter-increment:step;
    padding:0 0 20px 40px;
    position:relative;
    font-weight:400;
    text-transform:none;
    letter-spacing:0.005em;
    line-height:1.6;
    font-size:15px;
  }
  .steps-list li::before{
    content:counter(step);
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
    text-transform:uppercase;
    font-size:13px;
  }
