@font-face {
  font-family: "SK Modernist";
  src: url("fonts/sk-modernist-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "SK Modernist";
  src: url("fonts/sk-modernist-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "SK Modernist Mono";
  src: url("fonts/sk-modernist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --plum: #38001e;
  --deep: #38001e;
  --plum-soft: #38001e;
  --orange: #ff6021;
  --paper: #fcf9ed;
  --white: #ffffff;
  --ink: #38001e;
  --brand-gradient: linear-gradient(115deg, var(--plum) 0%, var(--plum) 72%, var(--orange) 180%);
  --muted: var(--plum);
  --line: rgba(56, 0, 30, .12);
  --radius-lg: 42px;
  --radius-md: 30px;
  --radius-sm: 20px;
  --font-display: "SK Modernist", "Avenir Next", Avenir, "Century Gothic", Arial, sans-serif;
  --font-body: "SK Modernist", "Avenir Next", Avenir, "Century Gothic", Arial, sans-serif;
  --font-mono: "SK Modernist Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.page-width { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

.site-header { background: var(--brand-gradient); color: var(--white); }
.header-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand > img { width: 154px; height: auto; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 44px; }
.site-header .brand { color: var(--white); }
.primary-nav a { position: relative; padding: 14px 0; color: rgba(255,255,255,.72); font-weight: 700; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 3px; border-radius: 3px; background: var(--orange); }
.header-button { justify-self: end; }

.button {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255,96,33,.38); outline-offset: 3px; }
.button-primary { background: var(--orange); color: var(--deep); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button-light { color: var(--plum); background: var(--white); }

.hero {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  border-radius: 0;
  background: var(--brand-gradient);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 35px;
  width: 94px;
  height: 82px;
  border-top: 11px solid var(--orange);
  border-right: 11px solid var(--orange);
  border-radius: 0 18px 0 0;
  opacity: .12;
}
.hero-home, .hero-about {
  width: 100%;
  min-height: 696px;
  padding: 44px max(6.5vw, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 82px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1, h2, h3 { font-family: var(--font-display); font-weight: 700; }
.hero h1 {
  margin: 0;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -.052em;
}
.hero-intro { max-width: 560px; margin: 48px 0 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.65; }
.button-row { margin-top: 43px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; align-self: center; width: 100%; min-height: 0; aspect-ratio: 3 / 2; margin: 0; border-radius: 28px; overflow: hidden; background: var(--white); box-shadow: 0 28px 60px rgba(56,0,30,.28); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-home .hero-media img { object-position: center center; }
.hero-media figcaption { position: absolute; right: 24px; bottom: 24px; min-width: 220px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(56,0,30,.9); backdrop-filter: blur(8px); display: flex; flex-direction: column; }
.hero-media figcaption strong { color: var(--orange); font-family: var(--font-mono); font-weight: 400; }
.hero-media figcaption span { margin-top: 5px; color: rgba(255,255,255,.82); font-size: 13px; }
.hero-portrait { min-height: 510px; align-self: center; }
.hero-portrait img { object-position: right center; }

.proof-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.proof-grid { min-height: 116px; display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); align-items: center; }
.proof-grid > strong { padding-right: 34px; font-size: 16px; }
.proof-grid > div { min-height: 56px; padding-left: 30px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.proof-grid b { color: var(--orange); font-family: var(--font-mono); font-size: 15px; font-weight: 400; }
.proof-grid span { margin-top: 8px; color: var(--muted); font-size: 13px; }

.section { padding-block: 100px 72px; }
.section-heading { margin-bottom: 62px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 70px; }
.split-heading h2, .personal-copy h2, .about-intro h2, .values-panel h2, .form-card h2, .after-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.split-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 270px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.step-card-featured { background: var(--plum); color: var(--white); border-color: var(--plum); }
.step-number { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 13px; background: var(--paper); color: var(--orange); font-family: var(--font-mono); font-size: 12px; font-weight: 400; }
.step-card .step-number { width: auto; height: auto; display: inline; border-radius: 0; background: transparent; color: var(--orange); font-family: var(--font-mono); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.step-card-featured .step-number { color: var(--orange); }
.step-card h3 { max-width: 280px; margin: 48px 0 22px; font-size: 25px; line-height: 1.15; letter-spacing: -.03em; }
.step-card p { max-width: 270px; margin: 0; color: var(--muted); line-height: 1.55; }
.step-card-featured p { color: rgba(255,255,255,.72); }

.personal-card { margin-top: 16px; display: grid; grid-template-columns: .92fr 1.08fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.personal-photo { position: relative; width: 100%; min-height: 0; aspect-ratio: 3 / 2; }
.personal-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.personal-copy { padding: 54px 66px; align-self: center; }
.personal-copy h2 { max-width: 530px; }
.personal-copy > p { max-width: 520px; margin: 26px 0 32px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.text-link { color: var(--plum); font-weight: 700; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.cta { min-height: 220px; margin-top: 34px; margin-bottom: 70px; padding: 42px 52px; border-radius: 24px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 20px 44px rgba(56,0,30,.1); }
.cta h2 { margin: 0; font-size: 42px; line-height: 1.06; letter-spacing: -.045em; }

.site-footer { padding-top: 62px; background: var(--deep); color: var(--white); }
.site-footer .brand { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .85fr; gap: 80px; padding-bottom: 55px; }
.footer-brand p { max-width: 360px; margin: 32px 0 0; color: rgba(255,255,255,.65); line-height: 1.6; }
.site-footer h2 { margin: 8px 0 28px; color: var(--orange); font-family: var(--font-mono); font-size: 12px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.site-footer nav, .site-footer address { display: flex; flex-direction: column; gap: 15px; color: rgba(255,255,255,.76); font-style: normal; }
.site-footer address strong { color: var(--white); }
.site-footer nav a:hover, .site-footer address a:hover { color: var(--white); }
.footer-bottom { min-height: 76px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.48); font-size: 13px; }

.text-hero { min-height: 555px; grid-template-columns: 1.25fr .75fr; }
.text-hero .hero-copy { align-self: center; }
.hero-sidecopy { max-width: 430px; margin: 0; align-self: center; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.65; }
.about-intro { padding-block: 88px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.about-photo { position: relative; width: 100%; min-height: 0; aspect-ratio: 2 / 3; margin: 0; border-radius: 26px; overflow: hidden; background: var(--white); box-shadow: 0 24px 55px rgba(56,0,30,.13); }
.about-photo::after { content: ""; position: absolute; top: -1px; right: -1px; width: 82px; height: 74px; border-top: 10px solid var(--orange); border-right: 10px solid var(--orange); border-radius: 0 15px 0 0; }
.about-photo img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; }
.about-copy { color: var(--muted); font-size: 16px; line-height: 1.7; }
.about-copy h2 { max-width: 620px; margin-bottom: 34px; }
.about-copy > p { margin: 0 0 23px; }
.about-copy .about-lead { color: var(--plum); font-size: 20px; line-height: 1.55; }
.signature-line { margin-top: 38px; display: flex; align-items: center; gap: 16px; color: var(--plum); }
.signature-line > span { width: 38px; height: 3px; background: var(--orange); border-radius: 3px; }
.signature-line p { margin: 0; display: flex; flex-direction: column; }
.signature-line small { margin-top: 6px; color: var(--muted); }
.services-section { padding: 94px 0 100px; background: var(--white); }
.services-heading { margin-bottom: 58px; }
.services-heading h2 { max-width: 680px; }
.services-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 65px; }
.service-list { display: flex; flex-direction: column; }
.service-list article { flex: 1; padding: 27px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 58px 1fr; gap: 20px; }
.service-list article:last-child { border-bottom: 1px solid var(--line); }
.service-list article > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--paper); color: var(--orange); font-family: var(--font-mono); font-size: 12px; font-weight: 400; }
.service-list h3 { margin: 2px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.service-list p { margin: 0; color: var(--muted); line-height: 1.6; }
.services-photo { position: relative; width: 100%; min-height: 0; aspect-ratio: 3 / 2; margin: 0; border-radius: 26px; overflow: hidden; background: var(--paper); }
.services-photo img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.services-photo figcaption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(56,0,30,.9); color: var(--white); backdrop-filter: blur(8px); font-size: 14px; }
.values-band { padding: 86px 0 78px; background: var(--brand-gradient); color: var(--white); }
.values-heading { margin-bottom: 48px; }
.values-heading > p { color: rgba(255,255,255,.72); }
.values-heading h2 { margin: 0; font-size: 42px; line-height: 1.05; letter-spacing: -.045em; }
.values-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid article { min-height: 150px; padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.06); display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; }
.values-grid h3 { margin: 0; font-size: 20px; }
.values-grid p { grid-column: 1 / -1; margin: 18px 0 0; color: rgba(255,255,255,.72); line-height: 1.5; }
.quote-section { min-height: 330px; padding: 55px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--white); }
.quote-mark { height: 46px; color: var(--orange); font-family: var(--font-mono); font-size: 82px; line-height: .85; }
.quote-section blockquote { margin: 18px 0 30px; color: var(--plum); font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1.08; letter-spacing: -.04em; }
.quote-section p { margin: 0; color: var(--orange); font-family: var(--font-mono); font-size: 12px; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; }

.contact-hero { width: 100%; min-height: 525px; padding: 70px max(6.5vw, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 80px; }
.contact-hero .hero-copy { align-self: center; }
.contact-hero-copy { margin: 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.65; }
.contact-layout { margin-top: 78px; margin-bottom: 84px; display: grid; grid-template-columns: minmax(300px, 380px) 1fr; gap: 64px; align-items: start; }
.contact-card { padding: 30px; border-radius: 24px; background: var(--plum); color: var(--white); box-shadow: 0 24px 55px rgba(56,0,30,.13); }
.contact-card > img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; object-position: center; border-radius: 18px; }
.contact-card h2 { margin: 30px 0 8px; font-size: 29px; letter-spacing: -.04em; }
.contact-card > p { max-width: 320px; margin: 0 0 4px; color: rgba(255,255,255,.72); line-height: 1.55; }
.form-card { padding: 28px 24px 24px; border: 0; border-radius: 0; background: transparent; }
.form-intro { max-width: 640px; margin: 18px 0 35px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: flex; flex-direction: column; gap: 10px; color: var(--plum); font-size: 14px; font-weight: 700; }
.form-grid input, .form-grid textarea { width: 100%; border: 1px solid rgba(56,0,30,.16); border-radius: 13px; background: var(--white); color: var(--ink); padding: 16px 17px; resize: vertical; box-shadow: 0 8px 20px rgba(56,0,30,.025); }
.form-grid input { min-height: 58px; }
.form-grid textarea { min-height: 128px; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(56,0,30,.48); }
.form-wide { grid-column: 1 / -1; }
.form-actions { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.form-actions p { max-width: 330px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.form-actions .button { border: 0; }
.after-contact { padding: 70px 0 75px; background: var(--white); }
.after-grid { display: grid; grid-template-columns: 1.18fr repeat(3, 1fr); }
.after-grid > div { padding-right: 45px; }
.after-grid > div > p { margin-top: 35px; color: var(--muted); }
.after-grid article { min-height: 190px; padding: 10px 36px; border-left: 1px solid var(--line); }
.after-grid article > span { color: var(--orange); font-family: var(--font-mono); font-size: 12px; font-weight: 400; letter-spacing: .09em; text-transform: uppercase; }
.after-grid article h3 { margin: 46px 0 17px; font-size: 20px; letter-spacing: -.03em; }
.after-grid article p { margin: 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { grid-row: 2; grid-column: 1 / -1; justify-content: center; padding-bottom: 10px; }
  .header-inner { padding-top: 18px; padding-bottom: 8px; }
  .hero-home, .hero-about { grid-template-columns: 1fr 1fr; padding: 52px 44px; gap: 34px; }
  .hero-media { min-height: 0; }
  .proof-grid { grid-template-columns: 1.25fr repeat(3, 1fr); }
  .proof-grid > div { padding-left: 20px; }
  .contact-layout { grid-template-columns: 340px 1fr; gap: 42px; }
  .form-card { padding: 40px 34px; }
  .footer-grid { grid-template-columns: 1.25fr .65fr 1fr; gap: 45px; }
  .about-intro { gap: 55px; }
  .services-layout { gap: 38px; }
}

@media (max-width: 820px) {
  .page-width { width: min(100% - 32px, 680px); }
  .header-button { display: none; }
  .header-inner { grid-template-columns: 1fr; justify-items: center; }
  .primary-nav { grid-row: auto; grid-column: auto; gap: 36px; }
  .hero-home, .hero-about { min-height: auto; padding: 50px 28px 28px; grid-template-columns: 1fr; }
  .hero-media { min-height: 0; grid-row: 2; }
  .hero-intro { margin-top: 35px; }
  .proof-grid { padding-block: 25px; grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .proof-grid > strong { grid-column: 1 / -1; padding: 0 0 18px; }
  .proof-grid > div { padding-left: 18px; }
  .proof-grid > div:nth-of-type(odd) { border-left: 0; padding-left: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 210px; }
  .personal-card { grid-template-columns: 1fr; }
  .personal-photo { min-height: 0; }
  .cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .text-hero { grid-template-columns: 1fr; gap: 42px; }
  .hero-sidecopy { max-width: 560px; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; padding: 62px 0; }
  .about-photo, .about-photo img { min-height: 0; }
  .services-layout { grid-template-columns: 1fr; }
  .services-photo, .services-photo img { min-height: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-hero { min-height: auto; padding: 55px 32px; grid-template-columns: 1fr; gap: 38px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { order: 2; }
  .form-card { order: 1; }
  .after-grid { grid-template-columns: 1fr; gap: 12px; }
  .after-grid > div { margin-bottom: 25px; }
  .after-grid article { min-height: 150px; padding: 25px 0; border-left: 0; border-top: 1px solid var(--line); }
  .after-grid article h3 { margin-top: 26px; }
}

@media (max-width: 540px) {
  .page-width { width: calc(100% - 24px); }
  .brand > img { width: 138px; }
  .primary-nav { width: 100%; justify-content: space-around; gap: 10px; }
  .hero { border-radius: 0; }
  .hero-home, .hero-about { padding: 42px 22px 22px; }
  .hero h1 { font-size: 46px; }
  .button { width: 100%; }
  .button-row { align-items: stretch; }
  .hero-media { min-height: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div, .proof-grid > div:nth-of-type(odd) { min-height: 48px; padding: 14px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section { padding-top: 82px; }
  .personal-copy { padding: 42px 26px; }
  .cta { padding: 36px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { min-height: 100px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; }
  .about-intro { padding: 52px 0; }
  .about-photo, .about-photo img { min-height: 0; }
  .services-section { padding-block: 70px; }
  .services-photo, .services-photo img { min-height: 0; }
  .values-band { padding-block: 68px; }
  .form-card { padding: 38px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .contact-card { padding: 22px; }
}

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