:root {
  color-scheme: dark;
  --bg: #080808;
  --surface: #111;
  --surface-2: #171717;
  --line: #2a2a2a;
  --text: #f3f3f3;
  --muted: #a3a3a3;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 9px 12px; background: white; color: black; }
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 800; letter-spacing: .11em; }
.brand img { width: 36px; height: 36px; object-fit: cover; border-radius: 7px; }
.site-nav { display: flex; gap: 28px; font-size: 13px; color: #d3d3d3; }
.site-nav a:hover { color: white; }
.menu-button { display: none; border: 1px solid var(--line); background: transparent; padding: 8px 12px; }
.hero {
  min-height: calc(100vh - 72px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: black;
}
.hero-copy { max-width: 650px; }
.eyebrow { margin: 0 0 14px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.hero h1, .section-heading h2, .contact h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 760;
}
.hero h1 { font-size: clamp(46px, 6.3vw, 82px); }
.hero-copy > p:not(.eyebrow) { max-width: 610px; margin: 24px 0 30px; color: var(--muted); font-size: 17px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #424242;
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.button:hover { border-color: #777; background: #171717; }
.button.primary { background: white; color: black; border-color: white; }
.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.section-heading { display: grid; grid-template-columns: 200px 1fr; gap: 32px; margin-bottom: 48px; }
.section-heading h2, .contact h2 { font-size: clamp(36px, 5vw, 60px); }
.project { margin-bottom: 110px; }
.project:last-child { margin-bottom: 0; }
.project-gallery { display: grid; gap: 14px; }
.project-gallery.two-images { grid-template-columns: 1.55fr 1fr; }
.project-gallery.single-image { grid-template-columns: 1fr; }
.project-gallery a { overflow: hidden; background: #111; border: 1px solid var(--line); }
.project-gallery img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .25s ease; }
.project-gallery a:hover img { transform: scale(1.015); }
.project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding-top: 26px;
}
.project-meta { margin: 0 0 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.project h3 { margin: 0; font-size: clamp(32px, 4vw, 50px); letter-spacing: -.04em; }
.project-info p:last-child { max-width: 720px; margin: 12px 0 0; color: var(--muted); }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.about .section-heading { display: block; margin: 0; }
.about-copy { font-size: 19px; color: #c8c8c8; }
.about-copy p { margin: 0 0 22px; }
.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.contact p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); }
.contact-email { font-size: clamp(22px, 3vw, 34px); border-bottom: 1px solid #555; }
.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
}
.privacy-page { max-width: 860px; }
.privacy-page > h1 { margin: 0 0 50px; font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: -.05em; }
.privacy-page section { color: #c8c8c8; }
.privacy-page h2 { margin: 36px 0 8px; color: white; font-size: 20px; }
.privacy-page p { margin: 0; }
@media (max-width: 850px) {
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    padding: 18px 24px;
    flex-direction: column;
    gap: 16px;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 42px; min-height: auto; }
  .hero-logo { width: min(100%, 420px); }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .project-gallery.two-images { grid-template-columns: 1fr; }
  .project-gallery img { min-height: 0; aspect-ratio: 16 / 9; }
  .project-info { grid-template-columns: 1fr; gap: 24px; }
  .project-info .button { justify-self: start; }
  .about, .contact { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .site-header { padding-inline: 18px; }
  .brand span { display: none; }
  .hero, .section, .site-footer { width: min(calc(100% - 32px), var(--max)); }
  .hero { padding: 48px 0 70px; }
  .section { padding: 78px 0; }
  .project { margin-bottom: 76px; }
  .contact-email { font-size: 20px; overflow-wrap: anywhere; }
}
