:root {
  --bg: #0c0b0a;
  --bg-2: #141210;
  --ink: #f4efe6;
  --mute: #8a8478;
  --line: rgba(244, 239, 230, 0.12);
  --copper: #c45c26;
  --copper-2: #e8a36a;
  --clay: #6b3a24;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
  position: fixed;
  width: 14px;
  height: 14px;
  border: 1px solid var(--copper-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
  mix-blend-mode: difference;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body:hover .cursor.grow { width: 56px; height: 56px; background: rgba(196, 92, 38, 0.15); }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: linear-gradient(to bottom, rgba(12, 11, 10, 0.92), rgba(12, 11, 10, 0));
  backdrop-filter: blur(8px);
}
.nav-mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--ink);
}
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 24px; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(12, 11, 10, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  padding: var(--pad);
}
.drawer[hidden] { display: none !important; }
.drawer a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 500;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 1rem;
}
.section-title, h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--pad) 3.5rem;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(196, 92, 38, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 80%, rgba(107, 58, 36, 0.28), transparent 48%),
    var(--bg);
}
.wordmark {
  display: flex;
  gap: clamp(0.15em, 2vw, 0.35em);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.6rem, 22vw, 15rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
}
.wordmark span {
  display: inline-block;
  animation: rise 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wordmark span:nth-child(2) { animation-delay: 0.08s; }
.wordmark span:nth-child(3) { animation-delay: 0.16s; }
.wordmark span:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(28%); }
  to { opacity: 1; transform: none; }
}
.hero-lead {
  max-width: 34rem;
  margin-top: 1.8rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-family: var(--serif);
  font-style: italic;
  color: #d8d1c6;
}
.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-hint {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  width: fit-content;
  padding-bottom: 0.35rem;
}

.atelier, .pillars, .work, .process, .cta, .page {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
}
.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
}
.split-sticky { position: sticky; top: 6rem; align-self: start; }
.split-copy p { margin-bottom: 1.15rem; color: #d2cbc0; font-size: 1.05rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stats dt { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.stats dd { font-family: var(--serif); font-size: 1.6rem; margin-top: 0.3rem; }

.pillars { background: var(--bg-2); }
.pillars .section-title { max-width: 16ch; margin-bottom: 3rem; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.pillar {
  padding: 1.6rem 1.3rem 1.8rem;
  border: 1px solid var(--line);
  min-height: 22rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.glyph {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--copper);
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin: 2.2rem 0 0.7rem;
}
.pillar p { color: var(--mute); font-size: 0.95rem; }

.work-head { max-width: var(--max); margin: 0 auto 3rem; }
.work-list { max-width: var(--max); margin: 0 auto; display: grid; gap: 5rem; }
.study {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: center;
}
.study.reverse { grid-template-columns: 0.85fr 1.15fr; }
.study.reverse .study-visual { order: 2; }
.study-visual {
  min-height: 26rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.study-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(12,11,10,0.28));
}
.v1 { background:
  radial-gradient(circle at 30% 30%, #e8a36a, transparent 36%),
  linear-gradient(135deg, #2a1c14, #0c0b0a 70%); }
.v2 { background:
  repeating-linear-gradient(115deg, rgba(196,92,38,0.18) 0 14px, transparent 14px 28px),
  linear-gradient(160deg, #3d2218, #15110e); }
.v3 { background:
  radial-gradient(ellipse at 70% 40%, rgba(90,70,140,0.45), transparent 50%),
  linear-gradient(180deg, #120f16, #1a1210); }
.v4 { background:
  linear-gradient(90deg, rgba(244,239,230,0.08) 1px, transparent 1px) 0 0 / 48px 48px,
  linear-gradient(rgba(244,239,230,0.08) 1px, transparent 1px) 0 0 / 48px 48px,
  #161412; }
.study-index { color: var(--copper); letter-spacing: 0.2em; font-size: 0.75rem; }
.study-body h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0.4rem 0 0.8rem;
}
.study-body p { color: #d2cbc0; }
.study-body ul {
  display: flex;
  gap: 0.8rem;
  list-style: none;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}
.study-body li {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line);
  padding: 0.28rem 0.6rem;
}

.process { background: var(--bg-2); }
.process h2 { max-width: 14ch; margin-bottom: 3rem; }
.steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  color: var(--copper);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 1.2rem;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.steps p { color: var(--mute); }

.cta {
  text-align: left;
  max-width: var(--max);
  margin: 0 auto;
}
.cta h2 { max-width: 16ch; margin-bottom: 1rem; }
.cta p { max-width: 36rem; color: #d2cbc0; margin-bottom: 2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  background: var(--copper);
  color: #fff8f1;
  border: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: #d46a2e; }

.foot {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem var(--pad) 2.8rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.9rem;
}
.foot strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.page { padding-top: 9rem; max-width: var(--max); margin: 0 auto; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-lead { max-width: 36rem; color: #d2cbc0; margin-bottom: 3rem; font-size: 1.15rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}
.brief { display: grid; gap: 1.1rem; }
.brief label { display: grid; gap: 0.4rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.brief input, .brief textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 0.85rem 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  color: var(--ink);
}
.brief input:focus, .brief textarea:focus { outline: 1px solid var(--copper); }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { min-height: 1.4em; color: var(--copper-2); }
.contact-aside { border-left: 1px solid var(--line); padding-left: 2rem; }
.contact-aside h2 {
  font-size: 1.15rem;
  margin: 1.6rem 0 0.4rem;
}
.contact-aside h2:first-child { margin-top: 0; }
.contact-aside p { color: var(--mute); }

.reveal { opacity: 0; transform: translateY(16px); animation: fade 0.9s 0.35s ease both; }
@keyframes fade { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .split, .pillar-grid, .steps, .contact-grid, .study, .study.reverse { grid-template-columns: 1fr; }
  .study.reverse .study-visual { order: 0; }
  .split-sticky { position: static; }
  .stats { grid-template-columns: 1fr; }
  .study-visual { min-height: 18rem; }
  .pillar { min-height: 0; }
  .foot { flex-direction: column; }
  .contact-aside { border: 0; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wordmark span, .reveal { animation: none; opacity: 1; transform: none; }
}
