:root {
  --bg: #0f0e0c;
  --bg2: #171512;
  --ink: #f3efe6;
  --muted: #a89f90;
  --accent: #c9a66b;
  --accent-ink: #1a140c;
  --line: rgba(201, 166, 107, 0.22);
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .35;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.demo-banner {
  text-align: center; font-size: 12px; letter-spacing: .05em;
  padding: 8px 12px; background: #090807; color: #7a7368;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.top {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .25s ease;
}
.top-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 22px; letter-spacing: .04em;
}
.logo-mark { width: 22px; height: 22px; color: var(--accent); }
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--accent); transition: width .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border: 0; border-radius: 2px;
  background: var(--accent); color: var(--accent-ink);
  font: inherit; font-weight: 700; cursor: pointer;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 12px 30px rgba(201,166,107,.22); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(243,239,230,.28);
}
.btn-sm { padding: 10px 14px; font-size: 13px; }

.hero {
  position: relative;
  min-height: min(100vh, 880px);
  display: grid; align-items: end;
  padding: 80px 0 88px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: -8% 0 -8% 0;
  will-change: transform;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.08);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(15,14,12,.94) 0%, rgba(15,14,12,.62) 42%, rgba(15,14,12,.2) 100%),
    linear-gradient(0deg, rgba(15,14,12,.92) 0%, transparent 48%);
}
.hero-copy { position: relative; max-width: 40rem; }
.eyebrow {
  margin: 0 0 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 700;
}
.brand-line {
  margin: 0 0 10px;
  font-family: var(--display); font-size: clamp(42px, 8vw, 72px);
  line-height: .95; letter-spacing: .02em;
}
h1 {
  margin: 0 0 18px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 4.8vw, 48px); line-height: 1.12;
}
.lead { margin: 0 0 28px; max-width: 34em; color: var(--muted); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  font-size: 13px; color: var(--muted);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust li svg { width: 14px; height: 14px; color: var(--accent); flex: 0 0 auto; }

.section { padding: 88px 0; position: relative; }
.section.band { background: var(--bg2); }
.section-head { margin-bottom: 36px; max-width: 36em; }
h2 {
  margin: 0 0 12px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.15;
}
.muted { color: var(--muted); }

.split {
  display: grid; gap: 36px; align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .split.reverse { grid-template-columns: .95fr 1.05fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4 / 3;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.split-media:hover img { transform: scale(1.04); }
.split-media::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line); pointer-events: none;
}

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 18px;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step {
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.step-num {
  display: block; margin-bottom: 14px;
  font-family: var(--display); font-size: 28px; color: var(--accent);
}
.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

.projects {
  display: grid; gap: 18px;
}
@media (min-width: 800px) { .projects { grid-template-columns: 1.2fr 1fr; } }
.project {
  position: relative; overflow: hidden; min-height: 280px;
  border: 1px solid rgba(255,255,255,.06);
}
.project img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1s ease;
}
.project:hover img { transform: scale(1.05); }
.project-veil {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,14,12,.9) 0%, rgba(15,14,12,.15) 55%);
}
.project-copy {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px;
}
.project-copy h3 {
  margin: 0 0 6px; font-family: var(--display); font-size: 28px; font-weight: 500;
}
.project-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.project.tall { min-height: 420px; }
@media (min-width: 800px) {
  .projects { grid-template-rows: 1fr 1fr; }
  .project.tall { grid-row: span 2; min-height: 100%; }
}

.quote-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,166,107,.12), transparent 50%),
    var(--bg2);
  border-block: 1px solid rgba(255,255,255,.05);
}
.quote {
  margin: 0; max-width: 34em;
  font-family: var(--display); font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.25; font-weight: 500;
}
.quote cite {
  display: block; margin-top: 18px;
  font-family: var(--font); font-style: normal;
  font-size: 14px; color: var(--muted);
}

.cta-block {
  display: grid; gap: 28px; align-items: end;
  padding: 40px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(201,166,107,.1), transparent 45%),
    var(--bg2);
}
@media (min-width: 800px) {
  .cta-block { grid-template-columns: 1.4fr auto; }
}
.cta-block h2 { margin-bottom: 8px; }
.cta-block p { margin: 0; color: var(--muted); }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta p { margin: 0; font-size: 14px; color: var(--muted); }
.sticky-cta strong { color: var(--ink); }
@media (max-width: 560px) {
  .sticky-cta p { display: none; }
}

.modal[hidden] { display: none !important; }
.modal {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center; padding: 20px;
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.62);
}
.modal-card {
  position: relative; width: min(440px, 100%);
  padding: 28px 24px;
  background: var(--bg2); border: 1px solid rgba(255,255,255,.1);
}
.modal-card h3 {
  margin: 0 0 8px; font-family: var(--display); font-size: 28px; font-weight: 500;
}
.modal-card p { margin: 0 0 18px; color: var(--muted); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 12px 12px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25); color: var(--ink); font: inherit;
}
.field textarea { min-height: 88px; resize: vertical; }
.modal-actions { display: flex; gap: 10px; margin-top: 8px; }

.reveal {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

footer {
  padding: 28px 0 96px;
  text-align: center; color: #6e675c; font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.05);
}
