:root {
  --bg: #090909;
  --bg-soft: #0e0e0e;
  --text: #f1eee8;
  --muted: #a7a39d;
  --dim: #6f6c67;
  --line: rgba(241, 238, 232, 0.14);
  --accent: #d8b77a;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 92px;
  max-width: var(--max);
  margin: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 92px;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(9,9,9,.92), rgba(9,9,9,0));
  pointer-events: none;
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 14px;
  letter-spacing: .55em;
  padding-left: 3px;
}
.brand i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-left: -4px;
}
.nav { display: flex; gap: 42px; }
.nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color .25s ease;
}
.nav a:hover, .nav a.active { color: var(--text); }
.menu { display: none; background: none; border: 0; color: var(--text); }

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-top: 92px;
}
.hero-copy { position: relative; z-index: 3; width: 70%; }
.eyebrow, .section-label, .hero-kicker {
  font-size: 11px;
  letter-spacing: .36em;
  color: var(--muted);
}
.eyebrow { margin: 0 0 20px; }
.hero h1 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(56px, 8.5vw, 122px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .94;
  white-space: nowrap;
}
.hero-kicker {
  margin: 30px 0 0;
  color: #c3bfb8;
}
.hero-kicker b { color: var(--accent); font-weight: 400; padding: 0 9px; }
.hero-intro {
  max-width: 530px;
  margin: 34px 0 0;
  color: #aaa6a0;
  font-size: 16px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 36px;
}
.button {
  border: 1px solid var(--accent);
  padding: 15px 28px;
  font-size: 13px;
  transition: background .25s, color .25s;
}
.button:hover { background: var(--accent); color: #111; }
.button span { margin-left: 25px; }
.text-link {
  font-size: 13px;
  color: #c4c0ba;
  padding-bottom: 8px;
  border-bottom: 1px solid #5c5954;
}
.text-link span { margin-left: 13px; }

.orb-wrap {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  pointer-events: none;
}
.orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(255,255,255,.045), transparent 25%),
    radial-gradient(circle at 65% 75%, #050505 0 58%, #0b0b0b 75%, #15130f 100%);
  box-shadow:
    -35px -15px 75px rgba(255,255,255,.018),
    0 0 90px rgba(216,183,122,.035);
  overflow: hidden;
}
.orb::before {
  content: "";
  position: absolute;
  inset: -2%;
  border-radius: 50%;
  border: 1px solid rgba(220, 189, 132, .55);
  clip-path: polygon(0 0, 100% 0, 100% 27%, 65% 13%, 34% 16%, 0 32%);
  filter: blur(.25px);
}
.orb-glow {
  position: absolute;
  width: 55%;
  height: 18%;
  right: 7%;
  top: 7%;
  border-radius: 50%;
  transform: rotate(17deg);
  background: rgba(218, 184, 123, .16);
  filter: blur(28px);
}
.orb-labels {
  position: absolute;
  right: -1%;
  top: 42%;
  display: grid;
  gap: 20px;
  color: #8e8a84;
  font-size: 10px;
  letter-spacing: .34em;
}
.scroll-cue {
  position: absolute;
  right: 1%;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}
.scroll-line { width: 1px; height: 58px; background: #4c4a46; position: relative; }
.scroll-line::after {
  content: "";
  position: absolute; bottom: -1px; left: -3px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--text);
}
.scroll-cue small { font-size: 9px; letter-spacing: .35em; color: #817d77; }

.content-section {
  padding: 115px 0 125px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.section-number {
  display: inline-block;
  color: var(--dim);
  font-size: 12px;
  width: 72px;
}
.section-rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: #77736d;
  vertical-align: middle;
}
.section-label {
  display: inline-block;
  margin: 0 0 0 28px;
  vertical-align: middle;
}
.two-col {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 110px;
  margin-top: 62px;
  padding-left: 72px;
}
.two-col h2, .work-placeholder h2, .contact-inner h2 {
  font-family: Manrope, sans-serif;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 0;
}
.body-copy {
  border-left: 1px solid var(--line);
  padding-left: 38px;
  color: #aaa6a0;
  font-size: 15px;
  line-height: 1.9;
  max-width: 500px;
}
.body-copy p { margin: 0 0 25px; }

.skill-list { border-top: 1px solid var(--line); }
.skill-list > div {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.skill-list span { color: var(--dim); font-size: 11px; }
.skill-list strong { font-size: 15px; font-weight: 500; }
.skill-list em { font-style: normal; color: var(--dim); font-size: 12px; }

.work-placeholder {
  margin-top: 62px;
  padding: 58px 72px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 110px;
  background: linear-gradient(135deg, rgba(255,255,255,.02), transparent);
}
.work-placeholder .body-copy { align-self: center; }

.contact-section { padding: 115px 0 100px; }
.contact-inner { padding: 75px 72px 20px; }
.contact-inner h2 { font-size: clamp(55px, 8vw, 112px); }
.contact-email {
  display: inline-block;
  margin-top: 45px;
  padding-bottom: 11px;
  border-bottom: 1px solid #65615b;
  font-size: clamp(17px, 2vw, 25px);
}
.contact-email span { margin-left: 30px; color: var(--accent); }
.socials { display: flex; gap: 28px; margin-top: 55px; }
.socials a { color: var(--muted); font-size: 13px; }
.socials a:hover { color: var(--text); }

.footer {
  width: min(var(--max), calc(100% - 64px));
  margin: auto;
  padding: 27px 0 35px;
  display: flex;
  justify-content: space-between;
  color: #6f6c67;
  font-size: 11px;
  letter-spacing: .08em;
}
.footer a:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(20px); animation: rise .9s .1s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 850px) {
  .site-header { height: 76px; padding: 0 22px; }
  .site-header::before { height: 76px; }
  .nav {
    display: none;
    position: absolute;
    top: 70px; right: 18px;
    flex-direction: column;
    gap: 0;
    background: #111;
    border: 1px solid var(--line);
    padding: 8px;
    width: 190px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .menu { display: grid; gap: 6px; padding: 8px; }
  .menu span { width: 24px; height: 1px; background: var(--text); display: block; }

  .section { width: min(var(--max), calc(100% - 44px)); }
  .hero { min-height: 820px; padding-top: 100px; align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 110px; }
  .hero h1 { font-size: clamp(48px, 14vw, 86px); white-space: normal; max-width: 680px; }
  .hero-kicker { line-height: 2; }
  .orb-wrap { width: 100vw; height: 100vw; right: -40%; top: 60%; opacity: .7; }
  .orb-labels { display: none; }
  .scroll-cue { display: none; }

  .content-section, .contact-section { padding: 85px 0; }
  .two-col, .work-placeholder { grid-template-columns: 1fr; gap: 45px; padding-left: 0; }
  .two-col { margin-top: 45px; }
  .body-copy { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  .work-placeholder { margin-top: 45px; padding: 35px 25px; }
  .contact-inner { padding: 55px 0 10px; }
  .footer { width: min(var(--max), calc(100% - 44px)); gap: 20px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
}
