@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --charcoal: #171717;
  --ivory: #f2eee7;
  --muted: #a9a49d;
  --line: rgba(242, 238, 231, .15);
  --line-strong: rgba(242, 238, 231, .35);
  --accent: #8f8a83;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  background: var(--black);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--ivory); color: var(--black); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 102px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 78px;
  background: rgba(5,5,5,.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; width: 180px; height: 58px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); }
.nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(242,238,231,.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ivory);
  transition: right .3s ease;
}
.nav a:hover, .nav a.active { color: var(--ivory); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; color: var(--ivory); padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s ease, opacity .25s ease; }

main { overflow: hidden; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 132px 0 56px;
  isolation: isolate;
}
.hero-inner {
  width: min(calc(100% - 64px), var(--max));
  min-height: calc(100svh - 188px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(20px, 4vw, 90px);
}
.hero-copy { position: relative; z-index: 3; padding-left: clamp(0px, 2vw, 30px); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--line-strong); }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(68px, 7vw, 118px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.035em;
}
.hero h1 em { font-weight: 400; color: var(--muted); }
.hero-lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(242,238,231,.70);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 27px;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .28s ease, background .28s ease, border-color .28s ease;
}
.button::after { content: '↗'; font-size: 15px; transition: transform .28s ease; }
.button:hover { color: var(--black); background: var(--ivory); border-color: var(--ivory); }
.button:hover::after { transform: translate(3px,-3px); }
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(242,238,231,.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.text-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 7px; height: 1px; background: var(--line-strong); transition: background .25s ease; }
.text-link:hover::after { background: var(--ivory); }

.hero-visual {
  position: relative;
  z-index: 1;
  height: min(74vh, 770px);
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-video-wrap {
  position: absolute;
  inset: -8% -10% -8% -2%;
  overflow: hidden;
  background: #000;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 12%, #000 27%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.72) 12%, #000 27%, #000 100%);
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) brightness(.88);
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 28%, transparent 70%, rgba(0,0,0,.45));
  pointer-events: none;
}
.sound-toggle {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: rgba(5,5,5,.52);
  color: rgba(242,238,231,.72);
  padding: 10px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.sound-toggle .sound-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 4px rgba(169,164,157,.08); }
.sound-toggle.is-on .sound-dot { background: var(--ivory); animation: pulse 1.3s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(242,238,231,.02); } }
.hero-index {
  position: absolute;
  left: max(32px, calc((100vw - var(--max))/2));
  bottom: 28px;
  z-index: 4;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.home-intro {
  border-top: 1px solid var(--line);
  background: var(--black-soft);
  padding: 120px 0;
}
.section-inner { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; }
.statement-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 150px); align-items: start; }
.statement-grid h2, .page-hero h1, .contact-hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}
.statement-grid h2 { font-size: clamp(46px, 5vw, 78px); line-height: .98; max-width: 600px; }
.statement-copy { max-width: 760px; }
.statement-copy p { color: rgba(242,238,231,.66); font-size: clamp(17px,1.5vw,21px); line-height: 1.8; }
.statement-meta { margin-top: 54px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.statement-meta a { padding: 28px 24px 28px 0; border-right: 1px solid var(--line); color: rgba(242,238,231,.62); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; transition: color .25s ease; }
.statement-meta a:last-child { border-right: 0; padding-left: 24px; }
.statement-meta a:nth-child(2) { padding-left: 24px; }
.statement-meta a:hover { color: var(--ivory); }

.page-hero {
  min-height: 64svh;
  display: flex;
  align-items: end;
  padding: 170px 0 82px;
  border-bottom: 1px solid var(--line);
}
.page-hero .section-inner { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(40px,8vw,150px); align-items: end; }
.page-number { color: var(--muted); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.page-hero h1, .contact-hero h1 { font-size: clamp(64px, 8vw, 124px); line-height: .92; margin: 0; max-width: 1000px; }
.page-hero .page-intro { max-width: 700px; margin: 34px 0 0 auto; color: rgba(242,238,231,.62); font-size: 18px; line-height: 1.8; }

.services { padding: 40px 0 120px; }
.service-row {
  display: grid;
  grid-template-columns: 90px .95fr 1.15fr;
  gap: clamp(24px,5vw,90px);
  align-items: start;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}
.service-no { color: var(--muted); font-size: 11px; letter-spacing: .22em; }
.service-row h2 { margin: 0; font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(38px,4vw,64px); font-weight: 400; line-height: 1; }
.service-row p { margin: 0; color: rgba(242,238,231,.62); font-size: 16px; line-height: 1.85; }
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.service-tags span { border: 1px solid var(--line); padding: 8px 10px; color: rgba(242,238,231,.58); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }

.launch-process { padding: 100px 0 130px; }
.process-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 8vw, 140px); margin-bottom: 90px; }
.process-intro h2 { margin: 0; font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(48px,5vw,82px); font-weight: 400; line-height: .98; }
.process-intro p { color: rgba(242,238,231,.62); font-size: 18px; line-height: 1.8; max-width: 700px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { min-height: 310px; padding: 28px 26px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.process-step:last-child { border-right: 0; }
.process-step .no { color: var(--muted); font-size: 10px; letter-spacing: .2em; }
.process-step h3 { margin: auto 0 18px; font-family: 'Instrument Serif', Georgia, serif; font-size: 38px; font-weight: 400; }
.process-step p { color: rgba(242,238,231,.58); font-size: 14px; line-height: 1.75; }
.launch-cta { margin-top: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.launch-cta h2 { margin: 0; font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(42px,5vw,78px); font-weight: 400; }

.contact-hero { min-height: 100svh; padding: 170px 0 80px; display: grid; align-items: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px,9vw,160px); align-items: start; }
.contact-copy p { max-width: 620px; color: rgba(242,238,231,.62); font-size: 18px; line-height: 1.8; margin: 32px 0 54px; }
.contact-links { display: grid; gap: 12px; }
.contact-link { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding: 22px 0; color: rgba(242,238,231,.78); }
.contact-link:last-child { border-bottom: 1px solid var(--line); }
.contact-link small { color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.contact-link strong { font-weight: 400; font-size: 16px; }
.contact-form { border-top: 1px solid var(--line); }
.field { position: relative; padding: 26px 0 16px; border-bottom: 1px solid var(--line); }
.field label { display: block; margin-bottom: 12px; color: var(--muted); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 0; outline: 0; color: var(--ivory); background: transparent; font-size: 16px; font-weight: 300; resize: vertical; }
.field textarea { min-height: 96px; }
.field select { appearance: none; }
.form-submit { margin-top: 34px; width: 100%; }
.form-note { margin-top: 16px; color: var(--muted); font-size: 11px; line-height: 1.6; }

.site-footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-inner { width: min(calc(100% - 64px), var(--max)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--ivory); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header-inner, .section-inner, .footer-inner, .hero-inner { width: min(calc(100% - 40px), var(--max)); }
  .nav { display: none; position: fixed; inset: 0; background: rgba(5,5,5,.98); flex-direction: column; justify-content: center; gap: 32px; }
  .nav.open { display: flex; }
  .nav a { font-family: 'Instrument Serif', Georgia, serif; font-size: 34px; letter-spacing: 0; text-transform: none; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 110px; }
  .hero-inner { grid-template-columns: 1fr; align-items: start; min-height: auto; gap: 8px; }
  .hero-copy { padding-top: 34px; padding-left: 0; }
  .hero h1 { font-size: clamp(60px, 12vw, 96px); max-width: 760px; }
  .hero-visual { height: 48vh; min-height: 380px; margin-top: -10px; }
  .hero-video-wrap { inset: -5% -18% -4% -18%; mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%); -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
  .sound-toggle { right: 0; bottom: 5px; }
  .hero-index { display: none; }
  .statement-grid, .page-hero .section-inner, .process-intro, .contact-grid { grid-template-columns: 1fr; }
  .statement-meta { grid-template-columns: 1fr; }
  .statement-meta a, .statement-meta a:nth-child(2), .statement-meta a:last-child { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row > div:last-child { grid-column: 2; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .launch-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { height: 78px; }
  .header-inner, .section-inner, .footer-inner, .hero-inner { width: min(calc(100% - 28px), var(--max)); }
  .brand { width: 142px; height: 46px; }
  .hero { min-height: 100svh; padding-top: 86px; padding-bottom: 24px; }
  .hero-copy { padding-top: 28px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; letter-spacing: .22em; }
  .eyebrow::before { width: 28px; }
  .hero h1 { font-size: clamp(55px, 17vw, 78px); line-height: .9; }
  .hero-lead { font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
  .hero-actions { gap: 14px 20px; }
  .button { min-height: 52px; padding: 0 19px; font-size: 10px; }
  .text-link { font-size: 10px; }
  .hero-visual { height: 38vh; min-height: 280px; }
  .sound-toggle { font-size: 8px; }
  .home-intro { padding: 82px 0; }
  .statement-grid h2 { font-size: 50px; }
  .page-hero { min-height: 57svh; padding: 120px 0 56px; }
  .page-hero h1, .contact-hero h1 { font-size: clamp(55px, 17vw, 82px); }
  .page-hero .page-intro { font-size: 16px; margin-left: 0; }
  .services { padding-bottom: 80px; }
  .service-row { grid-template-columns: 34px 1fr; gap: 14px; padding: 38px 0; }
  .service-row h2 { font-size: 42px; }
  .service-row p { font-size: 15px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(3) { border-bottom: 1px solid var(--line); }
  .contact-hero { padding: 120px 0 64px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

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