:root {
  --bg: #0b0b0c;
  --bg-2: #121214;
  --ink: #f4f1ea;
  --muted: #9a9488;
  --line: rgba(244, 241, 234, 0.12);
  --gold: #c4a574;
  --gold-2: #e0c89a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 16px; top: 16px; background: var(--gold); color: var(--bg); padding: 8px 12px; z-index: 20; }
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 7vw;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 500; letter-spacing: 0.28em; font-size: 13px; }
.brand img { width: 22px; height: auto; }
nav { display: flex; gap: 28px; }
nav a { color: var(--muted); text-decoration: none; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
nav a:hover { color: var(--ink); }
.hero { min-height: calc(100vh - 72px); display: flex; flex-direction: column; justify-content: center; padding: 12vh 7vw 16vh; max-width: 1100px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.28em; font-size: 12px; font-weight: 500; margin-bottom: 22px; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(46px, 8vw, 92px); }
.lede { max-width: 520px; margin: 28px 0 40px; color: var(--muted); font-size: 18px; }
.cta { display: inline-block; width: fit-content; color: var(--bg); background: var(--gold); text-decoration: none; padding: 14px 22px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.cta:hover { background: var(--gold-2); }
.work, .contact { padding: 12vh 7vw; border-top: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid article { padding: 32px 0; border-top: 1px solid var(--line); }
.index { display: block; color: var(--gold); font-size: 12px; letter-spacing: 0.18em; margin-bottom: 18px; }
h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; font-weight: 500; margin-bottom: 14px; }
.grid p, .studio p, .section-head p:last-child { color: var(--muted); }
.studio { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; padding: 12vh 7vw; background: var(--bg-2); border-top: 1px solid var(--line); }
.studio-copy h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 24px; }
.studio-copy p + p { margin-top: 16px; }
.mark { display: grid; place-items: center; }
.mark img { width: min(280px, 100%); height: auto; opacity: 0.92; }
.contact a { color: var(--gold); }
form { max-width: 720px; display: grid; gap: 22px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
label { display: grid; gap: 8px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.optional { text-transform: none; letter-spacing: 0; opacity: 0.7; }
input, textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); font: inherit; font-size: 16px; letter-spacing: 0; text-transform: none; padding: 12px 0; outline: none; resize: vertical; }
input:focus, textarea:focus { border-bottom-color: var(--gold); }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
button { justify-self: start; background: var(--gold); color: var(--bg); border: 0; padding: 14px 24px; font: inherit; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; cursor: pointer; }
button:hover { background: var(--gold-2); }
button:disabled { opacity: 0.55; cursor: wait; }
.form-status { min-height: 1.4em; color: var(--gold); font-size: 14px; letter-spacing: 0; text-transform: none; }
.form-status.error { color: #d27b6a; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 40px 7vw 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer strong { display: block; color: var(--ink); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 6px; }
@media (max-width: 860px) {
  .grid, .row, .studio, footer { grid-template-columns: 1fr; display: grid; }
  nav { gap: 16px; }
  .hero { min-height: auto; padding-top: 18vh; }
}
