/* ---------- tokens ---------- */
:root {
  --bg: #0b0b0c;
  --bg-raise: #131316;
  --bg-card: #17171b;
  --line: #262629;
  --text: #f4f2ec;
  --text-dim: #a3a099;
  --text-faint: #6f6c66;
  --accent: #cda349;
  --accent-soft: rgba(205, 163, 73, 0.14);
  --radius: 14px;
  --wrap: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

img { max-width: 100%; display: block; }

h1, h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #1a1400;
  padding: 10px 16px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: var(--text-dim);
  max-width: 46ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #1a1400;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: #d9b45e; }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-small { padding: 10px 16px; font-size: 0.85rem; }
.btn-mini { display: none; }

.link-quiet {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--text-faint);
  padding-bottom: 2px;
  transition: border-color 0.15s var(--ease);
}
.link-quiet:hover { border-color: var(--accent); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  min-width: 0;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.wordmark-mark {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.wordmark-text { font-size: 0.98rem; }
.header-inner { gap: 20px; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  flex-wrap: nowrap;
}
.header-nav a { text-decoration: none; color: var(--text-dim); transition: color 0.15s var(--ease); white-space: nowrap; }
.header-nav a:hover { color: var(--text); }
.header-nav .btn-small { color: #1a1400; }
.wordmark-text { white-space: nowrap; }

/* ---------- hero ---------- */
.hero { padding: clamp(24px, 4vw, 52px) 0 clamp(48px, 7vw, 88px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 34px 0 0;
  flex-wrap: wrap;
}
.pipeline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 40px 0 0;
}
.pipeline li {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

.hero-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-rail figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.hero-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hero-rail figure:hover img { transform: scale(1.05); }
.hero-rail figure:nth-child(2) { transform: translateY(26px); }
.hero-rail figure:nth-child(4) { transform: translateY(26px); }
.hero-rail figure:nth-child(6) { transform: translateY(26px); }

/* ---------- sections ---------- */
section { border-top: 1px solid var(--line); }
.hero { border-top: 0; }
.process, .about, .request { padding: clamp(64px, 9vw, 118px) 0; }

.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 18px; }

/* ---------- process ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: var(--bg-card);
}
.step-n {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.steps h3 {
  margin: 14px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.steps p { margin: 0; color: var(--text-dim); font-size: 0.98rem; }
.process-cta { margin-top: 4px; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
}
.about-body p { margin: 0 0 20px; color: var(--text-dim); font-size: 1.08rem; }
.about-body .about-punch {
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.4;
  margin-top: 28px;
}
.about .section-head { margin-bottom: 0; }

/* ---------- request form ---------- */
.request { background: var(--bg-raise); }
.request-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.request .section-head { margin-bottom: 0; }
.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }
.field .opt { color: var(--text-faint); font-weight: 400; }
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  padding: 12px 14px;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field input:user-invalid { border-color: #c9564b; }
.field textarea { resize: vertical; }
.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-status { margin: 0; font-size: 0.9rem; color: var(--text-dim); }
.form-status.is-ok { color: var(--accent); }
.form-status.is-err { color: #e0796d; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-faint);
}
.footer-mail { color: var(--text-dim); text-decoration: none; }
.footer-mail:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .request-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding-top: clamp(20px, 4vw, 40px); }
  .hero-rail { max-width: min(460px, 100%); }
  .hero-rail figure:nth-child(2),
  .hero-rail figure:nth-child(4),
  .hero-rail figure:nth-child(6) { transform: none; }
  .request-form { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .header-nav { gap: 14px; }
  .header-nav a:not(.btn) { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .request-form { padding: 22px; }
  .hero-actions { gap: 16px; }
  .header-nav .btn-small { padding: 9px 14px; font-size: 0.8rem; }
  .btn-full { display: none; }
  .btn-mini { display: inline; }
}

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