:root {
  --bg:           #0D0D0D;
  --fg:           #EDE9E0;
  --card:         #161616;
  --primary:      #C41E0A;
  --muted-fg:     #6B6760;
  --border:       rgba(237, 233, 224, 0.1);
  --font-display: 'Orpheus Pro', 'Orpheus', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { font-size: 16px; scroll-behavior: smooth; }
body   { background: var(--bg); color: var(--fg); font-family: var(--font-body); min-height: 100vh; }
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul     { list-style: none; }

.wrap  { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .2em;
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(8px);
}
.site-header .wrap { height: 3.5rem; display: flex; align-items: center; justify-content: space-between; }
.site-logo { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; letter-spacing: .15em; }
.site-nav ul  { display: flex; gap: 3rem; }
.site-nav a   { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted-fg); transition: color .2s; }
.site-nav a:hover { color: var(--fg); }

.hero { border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.hero-left { display: flex; flex-direction: column; justify-content: space-between; padding: 3.5rem 3.5rem 3.5rem 0; border-right: 1px solid var(--border); }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 8.5rem); line-height: .88; letter-spacing: -.025em; font-weight: 700; margin-bottom: 3.5rem; }
.hero-tagline { color: var(--muted-fg); font-size: .9375rem; max-width: 18rem; line-height: 1.6; }
.hero-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.hero-location { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); line-height: 2; }
.hero-location .accent { color: var(--primary); }
.hero-contact { text-align: right; font-family: var(--font-mono); }
.hero-contact p { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted-fg); margin-bottom: .25rem; }
.hero-contact a { font-size: 11px; color: var(--primary); transition: color .2s; }
.hero-contact a:hover { color: var(--fg); }
.hero-right { position: relative; background: var(--card); overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.hero-caption { position: absolute; bottom: 1.5rem; right: 1.5rem; font-family: var(--font-mono); font-size: 10px; color: rgba(237,233,224,.5); background: rgba(13,13,13,.3); padding: .25rem .5rem; }

.section-pad  { padding: 6rem 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 5rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.section-aside { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); letter-spacing: .1em; }

.work-section { border-bottom: 1px solid var(--border); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.project-card { background: var(--bg); cursor: zoom-in; }
.project-card.large { grid-column: span 2; }
.project-thumb { overflow: hidden; background: var(--card); }
.project-thumb.r43 { aspect-ratio: 4 / 3; }
.project-thumb.r11 { aspect-ratio: 1; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover .project-thumb img { transform: scale(1.04); }
.project-info { padding: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; }
.project-cat  { font-family: var(--font-mono); font-size: 10px; color: var(--primary); text-transform: uppercase; letter-spacing: .15em; margin-bottom: .5rem; }
.project-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.project-year { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); flex-shrink: 0; margin-left: 1rem; margin-top: .2rem; }

.about-section { border-bottom: 1px solid var(--border); }
.about-inner { max-width: 1280px; margin: 0 auto; padding: 6rem 2.5rem; display: flex; align-items: center; justify-content: center; gap: 3rem; }
.about-text { width: 42%; }
.about-text .label { display: block; margin-bottom: 2rem; }
.about-heading { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.05; margin-bottom: 2rem; }
.about-bio { color: var(--muted-fg); font-size: .9375rem; line-height: 1.7; margin-bottom: 1.25rem; }
.about-clients { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.about-clients-lbl { font-family: var(--font-mono); font-size: 10px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; }
.about-clients-list { font-family: var(--font-mono); font-size: 11px; color: rgba(237,233,224,.7); line-height: 2; }
.about-photo { width: 50%; }
.about-photo-wrap { background: var(--card); overflow: hidden; min-height: 440px; }
.about-photo-wrap img { width: 100%; min-height: 440px; object-fit: cover; object-position: top; }

.services-section { border-bottom: 1px solid var(--border); }
.services-head { display: flex; align-items: center; gap: 2rem; margin-bottom: 5rem; }
.services-rule { flex: 1; height: 1px; background: var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.service-card { background: var(--bg); padding: 2rem; transition: background .3s; }
.service-card:hover { background: var(--card); }
.service-num { font-family: var(--font-mono); font-size: 10px; color: var(--primary); letter-spacing: .15em; display: block; margin-bottom: 1.5rem; }
.service-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.service-desc  { font-size: .875rem; color: var(--muted-fg); line-height: 1.6; }

.footer-inner { max-width: 1280px; margin: 0 auto; padding: 5rem 2.5rem; }
.footer-top   { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 4rem; }
.footer-cta-title { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.02em; font-weight: 700; margin-bottom: 1.5rem; }
.footer-email { font-family: var(--font-mono); font-size: 11px; color: var(--primary); transition: color .2s; }
.footer-email:hover { color: var(--fg); }
.footer-social { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; }
.footer-social p { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); line-height: 2; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: var(--muted-fg); letter-spacing: .05em; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .5s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-bar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.lb-cat  { font-family: var(--font-mono); font-size: 10px; color: var(--primary); text-transform: uppercase; letter-spacing: .2em; margin-bottom: .25rem; }
.lb-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.lb-close { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .15em; display: flex; align-items: center; gap: .75rem; transition: color .2s; }
.lb-close:hover { color: var(--fg); }
.lb-close .x { font-size: 1rem; line-height: 1; }
.lb-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 2.5rem 4.5rem; min-height: 0; cursor: zoom-out; }
.lb-img { max-width: 100%; max-height: 100%; object-fit: contain; user-select: none; transition: opacity .2s ease; }
.lb-img.fade { opacity: 0; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: rgba(13,13,13,.7); transition: background .2s; }
.lb-nav:hover { background: var(--bg); }
.lb-nav.prev { left:  1rem; }
.lb-nav.next { right: 1rem; }
.lb-nav svg { width: 14px; height: 14px; stroke: var(--fg); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lb-foot { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2.5rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.lb-hint    { font-family: var(--font-mono); font-size: 10px; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .15em; }
.lb-counter { font-family: var(--font-mono); font-size: 11px; color: var(--muted-fg); font-variant-numeric: tabular-nums; }

.btt { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 2.25rem; height: 2.25rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: rgba(13,13,13,.8); color: var(--muted-fg); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .5s ease, color .2s, background .2s; }
.btt.show  { opacity: 1; pointer-events: all; }
.btt:hover { color: var(--fg); background: var(--bg); }
.btt svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 768px) {
  .wrap { padding: 0 1.5rem; }
  .site-nav ul { gap: 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 0; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-meta { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero-contact { text-align: left; }
  .hero-right { min-height: 50vw; }
  .section-pad { padding: 4rem 0; }
  .section-head { margin-bottom: 3rem; }
  .section-aside { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; }
  .about-inner { flex-direction: column; padding: 4rem 1.5rem; }
  .about-text  { width: 100%; }
  .about-photo { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { padding: 4rem 1.5rem; }
  .footer-top   { grid-template-columns: 1fr; }
  .footer-social { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: .75rem; }
  .lb-bar   { padding: 1rem 1.5rem; }
  .lb-stage { padding: 1.5rem 3rem; }
  .lb-foot  { padding: 1rem 1.5rem; }
  .lb-hint  { display: none; }
}
