:root {
  --ink: #f4f1ea;
  --paper: #0e0e0e;
  --muted: #b7b2a8;
  --line: rgba(244, 241, 234, 0.16);
  --hot: #ff2a1a;
  --panel: #171717;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 5;
}
.skip:focus { top: 1rem; }

.site-header, .hero, .work, .contact, footer {
  width: min(1080px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--hot);
}
.brand {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.brand span { color: var(--hot); }
.nav { display: flex; gap: 1.2rem; }
.nav a { text-decoration: none; }
.nav a[aria-current="page"] { color: var(--hot); }

.hero { padding: 8vh 0 10vh; }
.kicker {
  margin: 0 0 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hot);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.03em; }
h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.88;
  font-weight: 680;
  letter-spacing: -0.04em;
}
.lede {
  max-width: 36rem;
  font-size: 1.25rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hot);
  color: #111;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: #111; }
.btn:disabled { opacity: 0.55; cursor: wait; }

.work {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0;
}
.work-head { max-width: 28rem; }
.owner-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}
.portrait {
  width: 320px;
  height: 210px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 14px;
  flex: none;
}
.biz-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  gap: 1.5rem;
  align-items: end;
}
.biz-photos {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 0.55rem;
}
.biz-photos img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
}
.biz-photos img:first-child {
  object-fit: contain;
  background: #111;
}
h2 { margin: 0; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.95; }
.cards {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cards a { color: inherit; }
.cards li {
  border-top: 2px solid var(--hot);
  padding-top: 1rem;
}
.cards span {
  font-variant-numeric: tabular-nums;
  color: var(--hot);
  font-weight: 600;
}
.cards h3 { margin: 0.8rem 0 0.4rem; font-size: 1.8rem; }
.cards p { margin: 0; color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  width: min(1080px, calc(100% - 2.4rem));
  border-radius: 28px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.contact a { color: var(--ink); }
.contact .kicker { color: var(--hot); }
.contact h2 { margin: 0 0 0.6rem; font-size: clamp(2.4rem, 5vw, 3.8rem); }
.form { display: grid; gap: 0.85rem; }
label { display: grid; gap: 0.35rem; font-size: 0.92rem; color: var(--muted); }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0e0e0e;
  color: var(--ink);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  font: inherit;
}
input:focus, textarea:focus { outline: 2px solid var(--hot); border-color: transparent; }
textarea { resize: vertical; }
.contact .btn { background: var(--hot); color: #111; }
.contact .btn:hover { background: var(--ink); color: #111; }
.contact-hero { padding-bottom: 2rem; }
.map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
  margin-top: 0.4rem;
}
.fine, .form-status { margin: 0; color: var(--muted); font-size: 0.92rem; }
.form-status { grid-column: 1 / -1; }
.form-status.is-success { color: #d7f5e1; }
.form-status.is-error { color: #ffd0c8; }
.honeypot { position: absolute; left: -9999px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .cards, .contact, .biz-top { grid-template-columns: 1fr; }
  .owner-top { flex-direction: column; align-items: stretch; }
  .portrait { width: 100%; height: 240px; }
  .biz-photos img { height: 140px; }
  h1 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .hero { padding-top: 6vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
