:root {
  --ink: #0b0b0a;
  --ink-2: #141412;
  --paper: #f3f0ea;
  --paper-2: #faf8f3;
  --text-dark: #161513;
  --text-light: #f5f1e8;
  --muted-dark: #766f65;
  --muted-light: #b5ada0;
  --line-dark: rgba(22, 21, 19, 0.12);
  --line-light: rgba(245, 241, 232, 0.15);
  --gold: #c9a45c;
  --gold-hover: #a9823e;
  --steel: #8b98a5;
  --max: 1200px;
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.dark-page {
  background: var(--ink);
  color: var(--text-light);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.nav {
  position: sticky;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line-light);
  background: rgba(11, 11, 10, 0.82);
  color: var(--text-light);
  backdrop-filter: blur(18px);
}

.nav.light {
  border-bottom: 1px solid rgba(22, 21, 19, 0.1);
  background: rgba(243, 240, 234, 0.86);
  color: var(--text-dark);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
}

.brand span {
  font-size: 12px;
  color: var(--muted-light);
}

.nav.light .brand span {
  color: var(--muted-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted-light);
}

.nav.light .nav-links {
  color: var(--muted-dark);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--text-light);
}

.nav.light .nav-cta {
  color: var(--text-dark);
}

.section {
  padding: 96px 24px;
}

.section.dark {
  background: var(--ink);
  color: var(--text-light);
}

.section.paper {
  background: var(--paper);
  color: var(--text-dark);
}

.section.soft {
  background: var(--paper-2);
  color: var(--text-dark);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted-light);
  font-size: 14px;
}

.paper .kicker,
.soft .kicker,
.brand-hero .kicker {
  color: var(--muted-dark);
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 4.05vw, 52px);
  line-height: 0.98;
  max-width: 900px;
}

h2 {
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.03;
  max-width: 860px;
}

h3 {
  font-size: 28px;
  line-height: 1.15;
}

.lead {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted-light);
  font-size: clamp(17px, 1.45vw, 18px);
  line-height: 1.5;
}

.paper .lead,
.soft .lead,
.brand-hero .lead {
  color: var(--muted-dark);
}

.hero {
  min-height: 88vh;
  padding: 48px 24px 32px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--text-light);
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.actions.compact {
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--gold-hover);
}

.button.secondary {
  border-color: rgba(245, 241, 232, 0.32);
  color: var(--text-light);
}

.paper .button.secondary,
.soft .button.secondary,
.brand-hero .button.secondary {
  border-color: rgba(22, 21, 19, 0.18);
  color: var(--text-dark);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-note {
  margin-top: 22px;
  max-width: 620px;
  color: var(--muted-light);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 164, 92, 0.18);
  pointer-events: none;
}

.brand-hero {
  min-height: 88vh;
  padding: 48px 24px 32px;
  display: flex;
  align-items: center;
  background: var(--paper);
  color: var(--text-dark);
}

.brand-hero .hero-visual {
  border-color: var(--line-dark);
  background: var(--paper-2);
}

.brand-hero .hero-visual::after {
  border-color: rgba(22, 21, 19, 0.1);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  margin-top: 50px;
}

.brand-hero .proof-strip {
  border-color: var(--line-dark);
}

.proof-item {
  padding: 18px 16px;
  border-right: 1px solid var(--line-light);
}

.brand-hero .proof-item {
  border-color: var(--line-dark);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
}

.proof-item span {
  color: var(--muted-light);
  font-size: 13px;
}

.brand-hero .proof-item span {
  color: var(--muted-dark);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head p {
  margin: 0;
  color: inherit;
  opacity: 0.68;
}

.recognition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.recognition-list li {
  list-style: none;
  margin: 0;
  padding: 24px;
  background: var(--paper-2);
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.recognition-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.result-grid,
.avatar-grid,
.review-grid,
.format-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.avatar-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.78);
}

.dark .card {
  border-color: var(--line-light);
  background: rgba(245, 241, 232, 0.04);
}

.card .num {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted-dark);
}

.dark .card p {
  color: var(--muted-light);
}

.avatar-card {
  display: grid;
  gap: 22px;
}

.avatar-card .label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.avatar-card blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.22;
}

.dark .avatar-card blockquote {
  color: var(--text-light);
}

.mini-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

.split-statement {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.statement-panel {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}

.statement-panel p {
  margin: 0 0 18px;
  color: var(--muted-light);
}

.paper .statement-panel p,
.soft .statement-panel p {
  color: var(--muted-dark);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-light);
}

.process-step {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-top: 34px;
  font-size: 24px;
}

.process-step p {
  margin: 12px 0 0;
  color: var(--muted-light);
  font-size: 15px;
}

.deliverables {
  columns: 2;
  column-gap: 56px;
  padding: 0;
  margin: 36px 0 0;
}

.deliverables li {
  break-inside: avoid;
  list-style: none;
  padding: 0 0 18px 28px;
  position: relative;
}

.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.quote-note {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.28;
}

.review-card strong {
  color: var(--gold);
  font-size: 14px;
}

.review-card p {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.28;
}

.muted {
  color: var(--muted-dark);
}

.dark .muted {
  color: var(--muted-light);
}

.price {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.45fr);
  gap: 44px;
  align-items: stretch;
}

.price-box {
  padding: 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.04);
}

.price-value {
  margin: 12px 0 22px;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.faq-item {
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}

.faq-item h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 0.85fr);
  gap: 48px;
  align-items: start;
}

#payment,
#prebrief,
#client-quotes {
  scroll-margin-top: 92px;
}

.entry-wrap {
  display: grid;
  gap: 28px;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.entry-card {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.78);
}

.entry-card h3 {
  margin-top: 14px;
}

.entry-card p {
  margin: 14px 0 0;
  color: var(--muted-dark);
}

.entry-tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.brief-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.brief-details summary::-webkit-details-marker {
  display: none;
}

.brief-details summary::after {
  content: "+";
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.brief-details[open] summary {
  border-bottom: 1px solid var(--line-dark);
}

.brief-details[open] summary::after {
  content: "−";
}

.brief-content {
  padding: 30px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.client-quote {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.quote-meta {
  display: grid;
  gap: 6px;
}

.quote-meta strong {
  color: var(--gold);
  font-size: 14px;
}

.quote-meta span {
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.35;
}

.client-quote blockquote {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  color: var(--muted-dark);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 21, 19, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-dark);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted-dark);
  font-size: 13px;
}

.final {
  min-height: 66vh;
  display: flex;
  align-items: center;
}

.index-page {
  background: var(--ink);
  color: var(--text-light);
}

.index-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.index-card {
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.index-card p {
  color: var(--muted-light);
}

.reveal {
  animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .two-col,
  .two-col.reverse,
  .section-head,
  .split-statement,
  .price,
  .form-wrap,
  .entry-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .brand-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .brand-hero .hero-copy {
    order: -1;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }

  .result-grid,
  .avatar-grid,
  .review-grid,
  .format-grid,
  .faq-grid,
  .index-choices {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .deliverables {
    columns: 1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav-inner {
    padding: 14px 16px;
  }

  .brand span {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .hero,
  .brand-hero {
    padding: 42px 18px 32px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .lead {
    font-size: 16px;
  }

  .brand-hero h1 {
    font-size: clamp(34px, 9vw, 40px);
  }

  .brand-hero .lead {
    font-size: 15px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 250px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .recognition-list {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .card {
    padding: 22px;
  }

  .quote-note,
  .review-card p,
  .client-quote blockquote {
    font-size: 22px;
  }

  .price-value {
    font-size: 44px;
  }

  .entry-card,
  .brief-content,
  .client-quote {
    padding: 22px;
  }
}
