:root {
  --ink: #f3f0fb;
  --muted: #9b97ad;
  --line: rgba(139, 108, 255, 0.22);
  --blue: #5b8cff;
  --violet: #8b6cff;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}
.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.wash-a {
  width: 55vw; height: 55vw;
  top: -18vw; right: -12vw;
  background: radial-gradient(circle, rgba(91,140,255,.34), transparent 68%);
}
.wash-b {
  width: 50vw; height: 50vw;
  bottom: -8vw; left: -16vw;
  background: radial-gradient(circle, rgba(139,108,255,.32), transparent 70%);
}

.nav, main, .footer { position: relative; z-index: 1; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 7vw;
  background: linear-gradient(to bottom, #000 40%, transparent);
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-text em { color: var(--muted); font-size: 0.72rem; font-style: italic; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
}
.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 16px; height: 1px; margin: 5px auto; background: #fff;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem 7vw 3rem;
}
.hero-mark {
  width: min(220px, 42vw);
  margin: 0 auto 1.4rem;
  object-fit: contain;
}
.hero .lede {
  margin: 1rem auto 0;
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #c4b5fd;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.lede { color: var(--muted); font-weight: 300; font-size: 1.06rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--violet));
  color: #000;
  font-weight: 600;
}
.btn-primary:hover { filter: brightness(1.12); }
.btn-ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { border-color: rgba(196,181,253,.65); }

.section { padding: 5.2rem 7vw; }
.section-head { max-width: 40rem; margin-bottom: 2.2rem; }

.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.4rem;
}
.prose { color: var(--muted); font-weight: 300; font-size: 1.04rem; }
.panel, .card {
  background: linear-gradient(180deg, rgba(91,140,255,.07), rgba(139,108,255,.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.panel { padding: 1.4rem; }
.panel h3 { margin-bottom: .8rem; }
.panel ul { list-style: none; margin: 0; padding: 0; }
.panel li {
  display: flex; gap: .75rem;
  padding: .7rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.panel li span { color: var(--blue); font-size: .72rem; letter-spacing: .1em; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.card { grid-column: span 2; padding: 1.35rem; min-height: 12.5rem; }
.card.featured {
  background: linear-gradient(160deg, rgba(91,140,255,.16), rgba(139,108,255,.08));
}
.card span {
  display: block; margin-bottom: 1.1rem;
  color: var(--blue); letter-spacing: .16em; font-size: .72rem;
}
.card p { color: var(--muted); font-weight: 300; margin: .6rem 0 0; }

.form { display: grid; gap: .85rem; }
.form label {
  display: grid; gap: .35rem;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #000;
  color: var(--ink);
  padding: .75rem .8rem;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.hint { margin: 0; color: var(--muted); font-size: .8rem; text-transform: none; letter-spacing: 0; }
.details { display: grid; gap: 1.4rem; align-content: start; }
.details h3 {
  font-family: Outfit, sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1.6rem 7vw 2.6rem;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer img { width: 28px; height: 28px; object-fit: contain; border: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 7vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #000;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .nav.open .nav-links { display: flex; }
  .about-grid, .contact-grid, .work-grid { grid-template-columns: 1fr; }
  .card, .card.featured { grid-column: auto; }
}

@media (max-width: 600px) {
  .nav { padding-inline: 1.25rem; }
  .nav-links { right: 1.25rem; }
  .hero, .section { padding-inline: 1.25rem; }
  .hero { min-height: 92svh; }
  .section { padding-block: 4rem; }
  .footer { padding-inline: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
