:root {
  --bg: #070909;
  --panel: #090b0b;
  --text: #f0ede8;
  --muted: #cbc8c1;
  --line: rgba(255,255,255,.18);
  --max: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(81, 65, 48, .11), transparent 38rem),
    #111;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-shell {
  width: min(calc(100% - 28px), var(--max));
  margin: 18px auto;
  background: var(--bg);
  box-shadow: 0 18px 70px rgba(0,0,0,.56);
  overflow: hidden;
}

.topbar {
  position: absolute;
  z-index: 20;
  width: min(calc(100% - 28px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  color: #fff;
  pointer-events: none;
}
.topbar a, .menu-toggle { pointer-events: auto; }
.brand {
  text-decoration: none;
  font: 800 13px/1.1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: .02em;
}
.nav { display: flex; gap: 34px; }
.nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .08em;
}
.menu-toggle {
  display: none;
  appearance: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: 820px;
  background: url("assets/hero.jpg") center 15% / cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.02) 0 31%, rgba(0,0,0,.2) 44%, rgba(0,0,0,.90) 72%, #050707 100%),
    linear-gradient(to right, rgba(0,0,0,.24), transparent 50%, rgba(0,0,0,.12));
}
.hero-shade { position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(0,0,0,.38); }
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 76px 62px;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 {
  margin: 0 0 20px;
  font-size: clamp(56px, 8vw, 92px);
  line-height: .88;
  letter-spacing: -.045em;
}
.lead {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}
.intro {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.9);
  padding: 16px 18px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
  transition: background .2s ease, color .2s ease;
}
.button:hover { background: #fff; color: #080909; }

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
}
.service { min-height: 365px; }
.service-image { overflow: hidden; }
.service-image img {
  width: 100%; height: 100%; min-height: 365px;
  display: block; object-fit: cover;
  filter: saturate(.78) contrast(1.05) brightness(.78);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.service-image:hover img { transform: scale(1.025); }
.service-copy {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.service-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: .94;
  letter-spacing: -.025em;
}
.service-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 36ch;
}
.text-link {
  width: fit-content;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
}
.text-link span { margin-left: 10px; }
.service-copy-bottom { border-top: 1px solid var(--line); }

.footer {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: center;
  min-height: 165px;
  padding: 34px 76px;
  border-top: 1px solid var(--line);
  background: #070909;
}
.footer h3 { margin: 0 0 12px; font-size: 21px; }
.footer p, .footer a { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.footer a { text-decoration: none; display: flex; justify-content: space-between; gap: 24px; }
.footer-divider { height: 76px; background: var(--line); }

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 20px), var(--max)); margin: 10px auto; }
  .topbar { width: min(calc(100% - 20px), var(--max)); padding: 24px 22px; }
  .menu-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    right: 18px;
    flex-direction: column;
    gap: 0;
    min-width: 150px;
    background: rgba(5,7,7,.96);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .hero { min-height: 735px; background-position: 53% top; }
  .hero-copy { padding: 0 30px 46px; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: auto; }
  .service-image img { min-height: 290px; }
  .service-copy { padding: 44px 36px 48px; min-height: 320px; }
  .service-copy-bottom { order: 4; }
  #studio { order: 3; }
  .footer { grid-template-columns: 1fr; gap: 24px; padding: 34px 36px 42px; }
  .footer-divider { width: 100%; height: 1px; }
}
