@font-face {
  font-family: Barlow Condensed;
  src: url("fonts/barlow-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #121010;
  --crimson: #3d060c;
  --accent: #e52c36;
  --text: #eee9e2;
  --muted: #bcb6b1;
  --line: #35302f;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(22px, 5.6vw, 100px);
  --max: 1600px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.028;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 180 180" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency=".8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Cpath fill="%23fff" filter="url(%23n)" opacity=".45" d="M0 0h180v180H0z"/%3E%3C/svg%3E');
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 5px;
}
button {
  border-radius: 0;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  overflow-wrap: anywhere;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(3.5rem, 7.5vw, 8rem);
}
h3 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}
p + p {
  margin-top: 1.1em;
}
::selection {
  background: var(--accent);
  color: var(--text);
}
[hidden] {
  display: none !important;
}
.accent {
  color: var(--accent);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 101;
  background: var(--text);
  color: var(--bg);
  padding: 12px 22px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.scene {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 76px;
  background: var(--section-bg, var(--bg));
  color: var(--section-text, var(--text));
  --accent: var(--section-accent, #e52c36);
  --duration: 800ms;
  --stagger: 90ms;
}
.scene:not(:first-child) {
  border-top: 1px solid var(--line);
}
.scene-pad {
  padding-block: clamp(80px, 9vw, 145px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font:
    12px/1.5 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 25px;
}
.eyebrow span {
  color: var(--text);
}
.eyebrow i {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-left: 7px;
}
.section-intro {
  max-width: 740px;
}
.section-intro > p:last-child:not(.eyebrow) {
  max-width: 510px;
  margin-top: 25px;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--muted);
  background: rgba(9, 9, 9, 0.68);
  padding: 13px 24px;
  min-height: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  position: relative;
}
.button span[aria-hidden] {
  font-size: 21px;
  line-height: 1;
}
.button:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.button-red {
  background: var(--accent);
  border-color: var(--accent);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--accent);
  font-size: 14px;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.meta {
  font:
    12px/1.7 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.6;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 0.25s,
    border-color 0.25s;
  border-bottom: 1px solid transparent;
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.wordmark span {
  color: var(--accent);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 52px);
}
.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg);
  min-height: 44px;
  padding: 8px 16px;
  font-size: 14px;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(9, 9, 9, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled .header-inner {
  height: 68px;
}
.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  background: var(--accent);
  z-index: 100;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  pointer-events: none;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-ready {
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal-visible {
  opacity: 1;
  transform: none;
}
.scene-counter {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  font:
    12px ui-monospace,
    monospace;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.hairline {
  width: 100%;
  height: 1px;
  background: var(--line);
}
:root {
  --global-accent: var(--accent);
}
.scene {
  --accent: var(--section-accent, var(--global-accent));
}
@media (min-width: 1600px) {
  .header-inner {
    height: 96px;
  }
}
@media (max-width: 760px) {
  .header-inner {
    height: 72px;
  }
  .site-nav {
    gap: 16px;
  }
  .site-nav a {
    font-size: 12px;
  }
  .wordmark {
    font-size: 31px;
  }
  .scene-pad {
    padding-block: 80px;
  }
  .eyebrow {
    letter-spacing: 0.12em;
  }
  .nav-enhanced .menu-toggle {
    display: block;
  }
  .nav-enhanced .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--bg);
    padding: 20px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .nav-enhanced .site-nav a {
    font-size: 18px;
    min-height: 50px;
  }
  .site-header.is-scrolled .site-nav {
    top: 68px;
  }
  .nav-enhanced .site-nav:not(.is-open) {
    display: none;
  }
  .site-nav a::after {
    width: 36px;
  }
  .scene-counter {
    display: none;
  }
}
@media (max-width: 430px) {
  body {
    font-size: 16px;
  }
  .site-nav {
    gap: 8px;
  }
  .site-nav a {
    font-size: 12px;
  }
  .header-inner {
    gap: 12px;
  }
  .eyebrow i {
    width: 34px;
  }
  .button {
    padding-inline: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}

.opening {
  min-height: 800px;
  height: min(100svh, 1080px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 30%, #310b0c 0, transparent 54%), var(--section-bg, var(--bg));
}
.hero-layout {
  position: relative;
  height: 100%;
  min-height: inherit;
  z-index: 3;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 70%;
  padding-block: 140px 100px;
  position: relative;
  z-index: 2;
}
.hero-name {
  font:
    clamp(0.9rem, 1.35vw, 1.15rem)/1.5 ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.hero-name span {
  height: 1px;
  background: var(--accent);
  width: 58px;
}
.opening h1 {
  font-size: clamp(6rem, 10.8vw, 10.8rem);
  letter-spacing: -0.024em;
  line-height: 0.86;
  max-width: 920px;
}
.headline-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.11em;
  margin-bottom: -0.06em;
}
.headline-mask > span {
  display: block;
}
.headline-mask b {
  font-weight: 700;
}
.hero-roles {
  font-size: clamp(1.125rem, 1.65vw, 1.6rem);
  font-weight: 700;
  margin-top: 24px;
}
.hero-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  margin-top: 3px;
}
.hero-cta {
  margin-top: 32px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px;
}
.hero-location svg {
  color: var(--text);
}
.hero-portrait {
  position: absolute;
  width: 59%;
  max-width: 890px;
  height: 116%;
  right: 4%;
  bottom: -14%;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(var(--pointer-x, 0px), var(--portrait-y, 0px), 0);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 98%);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 14%,
    #000 91%,
    transparent 100%
  );
}
.hero-beam {
  position: absolute;
  width: 130%;
  height: 2px;
  left: -10%;
  top: 30%;
  background: linear-gradient(
    90deg,
    transparent 5%,
    #fa303a 20%,
    #ffb8a0 40%,
    #ee2532 70%,
    transparent
  );
  box-shadow:
    0 0 7px 2px #f0263bb3,
    0 0 40px 10px #f0263b33;
  transform: rotate(28deg);
  transform-origin: center;
  z-index: 1;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 38% 90%, #2b020477, transparent 35%),
    radial-gradient(ellipse at 75% 35%, #68202566, transparent 60%);
  opacity: 0.7;
}
.hero-note {
  position: absolute;
  right: var(--gutter);
  top: 25%;
  font-size: 12px;
  line-height: 2.4;
  letter-spacing: 0.28em;
}
.hero-note span {
  display: block;
  margin-top: 26px;
  width: 32px;
  height: 1px;
  background: var(--muted);
}
.hero-bottom-note {
  position: absolute;
  right: var(--gutter);
  bottom: 20%;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid #ffffff22;
  z-index: 5;
}
.hero-bottom .meta {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.hero-scroll {
  font-size: 22px;
}
.skip-intro {
  position: absolute;
  right: var(--gutter);
  bottom: 84px;
  z-index: 9;
  background: #090909c9;
  border: 1px solid var(--line);
  padding: 9px 15px;
  min-height: 44px;
  font-size: 12px;
}
.skip-intro span {
  margin-left: 12px;
}
@media (min-width: 1700px) {
  .hero-copy {
    width: 66%;
  }
  .hero-portrait {
    right: 8%;
  }
  .opening h1 {
    font-size: 11.5rem;
  }
}
@media (max-width: 1100px) {
  .opening {
    min-height: 760px;
  }
  .hero-note,
  .hero-bottom-note {
    display: none;
  }
  .hero-portrait {
    right: -6%;
    width: 69%;
    height: 104%;
    bottom: -8%;
  }
  .hero-copy {
    width: 74%;
  }
  .opening h1 {
    font-size: clamp(5.5rem, 11.5vw, 8rem);
  }
}
@media (max-width: 760px) {
  .opening {
    height: auto;
    min-height: 900px;
  }
  .hero-layout {
    display: block;
    min-height: 900px;
  }
  .hero-copy {
    width: 100%;
    padding-top: 112px;
    padding-bottom: 410px;
  }
  .opening h1 {
    font-size: clamp(4.45rem, 15.5vw, 7.8rem);
    max-width: 100%;
    line-height: 0.88;
  }
  .hero-name {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero-roles {
    margin-top: 20px;
    font-size: 17px;
  }
  .hero-intro {
    font-size: 16px;
    max-width: 270px;
  }
  .hero-cta {
    margin-top: 20px;
  }
  .hero-location {
    position: absolute;
    bottom: 98px;
    left: 0;
    max-width: 120px;
    font-size: 12px;
    line-height: 1.8;
    z-index: 4;
  }
  .hero-portrait {
    width: 90%;
    height: 580px;
    right: -12%;
    bottom: 22px;
    mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  }
  .hero-portrait img {
    object-position: bottom;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 22%,
      #000 94%,
      transparent
    );
  }
  .hero-beam {
    top: 62%;
    width: 160%;
    left: -22%;
  }
  .hero-bottom {
    padding-block: 13px;
  }
  .hero-bottom .meta {
    font-size: 12px;
  }
  .hero-bottom > span:first-child {
    max-width: 150px;
  }
  .skip-intro {
    bottom: 75px;
  }
  .hero-copy {
    pointer-events: none;
  }
  .hero-copy a {
    pointer-events: auto;
  }
}
@media (max-width: 380px) {
  .opening,
  .hero-layout {
    min-height: 880px;
  }
  .hero-copy {
    padding-bottom: 450px;
  }
  .hero-portrait {
    height: 520px;
    right: -17%;
    width: 100%;
  }
  .hero-roles {
    font-size: 16px;
  }
  .hero-intro {
    max-width: 260px;
  }
  .hero-location {
    bottom: 82px;
  }
  .opening h1 {
    font-size: 15vw;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}
.about-visual {
  position: relative;
  max-width: 540px;
}
.about-portrait {
  height: 560px;
  background:
    radial-gradient(ellipse at 68% 30%, #62101977, transparent 66%), #131011;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.about-portrait img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: 50% 15%;
  transform: translateY(var(--about-y, 0));
  mask-image: linear-gradient(#000 75%, transparent 99%);
}
.about-visual::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  width: 55px;
  height: 55px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.about-photo-index {
  position: absolute;
  left: 20px;
  top: 22px;
  font-size: 12px;
  writing-mode: vertical-rl;
}
.about-caption {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  line-height: 1.2;
  margin-top: 22px;
  max-width: 330px;
}
.about-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6.9rem);
}
.about-copy .lead {
  margin-top: 32px;
  max-width: 600px;
}
.about-paragraph {
  color: var(--muted);
  max-width: 600px;
  margin-top: 20px;
  line-height: 1.9;
}
.signature {
  font-family: cursive;
  font-style: italic;
  font-size: 30px;
  transform: rotate(-7deg);
  display: inline-block;
  margin-top: 30px;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 70px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  gap: 25px;
}
.about-facts dd {
  margin: 7px 0 0;
  font-size: 16px;
}
.about-facts dt {
  font-size: 12px;
}
@media (max-width: 900px) {
  .about-grid {
    gap: 44px;
  }
  .about-portrait {
    height: 480px;
  }
  .about-copy h2 {
    font-size: 4rem;
  }
  .about-photo-index {
    display: none;
  }
}
@media (max-width: 700px) {
  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 52px;
    align-items: stretch;
  }
  .about-copy h2 {
    font-size: clamp(3.2rem, 11vw, 5rem);
  }
  .about-visual {
    width: 100%;
    max-width: 460px;
  }
  .about-portrait {
    height: 460px;
  }
  .about-facts {
    grid-template-columns: 1fr;
    margin-top: 45px;
    gap: 22px;
  }
  .about-facts > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
  }
  .about-facts dd {
    margin: 0;
  }
  .about-caption {
    max-width: none;
    font-size: 27px;
  }
}

.person {
  background: linear-gradient(
    115deg,
    #160e0f,
    var(--section-bg, var(--bg)) 60%
  );
}
.person-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.person-top > .eyebrow {
  align-self: start;
  margin-top: 9px;
}
.person-intro {
  max-width: 560px;
  color: var(--muted);
  margin-top: 28px;
}
.person-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 75px;
}
.person-principles article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.person-principles h3 {
  font-size: clamp(3.5rem, 6.8vw, 7rem);
  margin-block: 20px;
}
.person-principles article:nth-child(2) h3 {
  color: var(--accent);
}
.person-principles p {
  color: var(--muted);
  max-width: 330px;
}
.person-quote {
  position: relative;
  max-width: 790px;
  margin: 90px 0 0 auto;
  padding-left: 55px;
}
.person-quote > span {
  position: absolute;
  left: 0;
  top: -20px;
  font-family: var(--display);
  font-size: 95px;
  color: var(--accent);
}
.person-quote blockquote {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.025em;
}
.person-quote .meta {
  margin-top: 24px;
}
@media (max-width: 800px) {
  .person-top {
    display: block;
  }
  .person-principles {
    gap: 30px;
  }
  .person-principles h3 {
    font-size: 3.5rem;
  }
  .person-quote {
    margin-top: 65px;
  }
}
@media (max-width: 600px) {
  .person-principles {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 45px;
  }
  .person-principles article {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 16px;
  }
  .person-principles h3 {
    font-size: 3.6rem;
    margin: 0;
  }
  .person-principles p {
    grid-column: 2;
  }
  .person-principles .meta {
    padding-top: 7px;
  }
  .person-quote {
    padding-left: 33px;
  }
  .person-quote > span {
    font-size: 70px;
  }
  .person-quote blockquote {
    font-size: 1.4rem;
  }
}

.skills {
  background:
    radial-gradient(ellipse at 74% 63%, #31101055, transparent 55%),
    var(--section-bg, var(--bg));
}
.skills-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.skills-heading h2 {
  font-size: clamp(3.5rem, 7.5vw, 8.2rem);
}
.skills-heading > p {
  max-width: 250px;
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 7px;
}
.skill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 32px 52px;
}
.skill-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 14px;
  padding: 9px 17px;
  border: 1px solid #655759;
  background: #090909;
  transition:
    background 0.2s,
    border-color 0.2s;
  line-height: 1.6;
}
.skill-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.skill-tab:hover {
  border-color: var(--accent);
}
.skill-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 95px);
  align-items: center;
  padding-bottom: 50px;
}
.skill-panel > * {
  min-width: 0;
}
.skill-panel + .skill-panel {
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.skills-enhanced .skill-panel {
  border: 0;
  padding-top: 0;
}
.skill-thinking > .eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  gap: 8px;
}
.skill-thinking > .eyebrow i {
  width: 35px;
  flex-shrink: 0;
}
.skill-thinking h3 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}
.skill-description {
  color: var(--muted);
  font-size: 16px;
  margin-top: 20px;
  max-width: 460px;
}
.code-study {
  margin: 30px 0 0;
  max-width: 100%;
  overflow-x: auto;
  font:
    clamp(12px, 1vw, 14px)/1.9 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  color: #c9b4a9;
  min-height: 220px;
}
.code-study code {
  display: block;
}
.code-study code > span {
  display: block;
  white-space: pre;
}
.code-study i {
  font-style: normal;
  color: #877b78;
  margin-right: 20px;
  user-select: none;
}
.code-study code > span:nth-child(3n) {
  color: #db746d;
}
.tool-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  margin: 25px 0 0;
  gap: 9px 16px;
}
.tool-list li {
  font:
    12px/1.6 ui-monospace,
    monospace;
  color: var(--muted);
}
.tool-list li:not(:last-child)::after {
  content: "·";
  padding-left: 16px;
  color: var(--accent);
}
.skill-result {
  margin: 0;
  position: relative;
  padding-left: 20px;
  perspective: 1000px;
}
.skill-result::before {
  content: "";
  position: absolute;
  top: -25px;
  bottom: 20px;
  left: 2px;
  width: 2px;
  background: linear-gradient(
    transparent,
    #f65258 25%,
    #ec2833 80%,
    transparent
  );
  box-shadow: 0 0 20px 4px #e52c3666;
  transform: rotate(10deg);
}
.result-browser {
  border: 1px solid #857d77;
  border-radius: 5px;
  background: #080808;
  padding: 9px;
  transform: rotateY(-8deg) rotateZ(-3deg);
  transform-origin: center;
  box-shadow: 20px 25px 60px #0008;
}
.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--text);
  color: #181212;
  padding: 11px 18px;
  min-height: 55px;
}
.result-top b {
  font-family: var(--display);
  font-size: 25px;
}
.result-top > span {
  font:
    12px ui-monospace,
    monospace;
}
.result-main {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}
.result-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #09090977, #09090922),
    url("images/crimson-landscape.webp") center/cover;
  filter: grayscale(1) brightness(0.48);
}
.result-copy {
  position: relative;
  z-index: 1;
  padding: 35px 25px;
  max-width: 80%;
}
.result-copy > p {
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.1vw, 4.4rem);
  line-height: 0.93;
}
.result-copy > span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 230px;
}
.result-side {
  position: absolute;
  right: 20px;
  top: 45px;
  z-index: 1;
  font:
    12px/2 ui-monospace,
    monospace;
  letter-spacing: 0.18em;
}
.result-features {
  background: var(--text);
  color: #1b1615;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px 12px;
  gap: 10px;
}
.result-features span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.4;
  padding: 0 12px;
  border-right: 1px solid #bfb8b2;
}
@media (max-width: 420px) {
  .result-features {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 16px;
  }
  .result-features span {
    border-right: 0;
    border-bottom: 1px solid #bfb8b2;
    padding: 9px 0;
  }
}
.result-features span:last-child {
  border: 0;
}
.skill-result figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}
.skill-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.skill-arrows {
  display: flex;
  gap: 12px;
}
.skill-arrows button {
  height: 44px;
  width: 44px;
  border: 1px solid var(--muted);
  background: transparent;
  font-size: 20px;
  transition: background 0.2s;
}
.skill-arrows button:hover {
  background: var(--accent);
}
@media (max-width: 1050px) {
  .skills-heading {
    display: block;
  }
  .skills-heading > p {
    max-width: none;
    margin-top: 20px;
  }
  .skill-panel {
    gap: 35px;
  }
  .result-copy {
    padding: 28px 18px;
  }
  .result-main {
    min-height: 290px;
  }
  .result-side {
    display: none;
  }
  .result-features {
    padding: 18px 4px;
  }
  .result-features span {
    font-size: 12px;
    padding-inline: 8px;
  }
  .result-copy > p {
    font-size: 3.2rem;
  }
  .skill-thinking > .eyebrow {
    display: block;
  }
  .skill-thinking > .eyebrow i {
    display: none;
  }
}
@media (max-width: 760px) {
  .skill-tabs {
    margin-bottom: 36px;
    gap: 8px;
  }
  .skill-tab {
    padding: 8px 12px;
    font-size: 14px;
  }
  .skill-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .skill-description {
    max-width: none;
  }
  .code-study {
    min-height: 0;
    max-height: none;
    font-size: 12px;
  }
  .skill-result {
    padding-inline: 8px 15px;
  }
  .result-browser {
    transform: rotateZ(-2deg);
  }
  .result-main {
    min-height: 300px;
  }
  .result-copy > p {
    font-size: 3.8rem;
  }
  .result-features span {
    font-size: 14px;
  }
  .skill-result figcaption {
    font-size: 12px;
  }
  .skill-thinking h3 {
    font-size: 2.7rem;
  }
  .skill-bottom > .meta {
    max-width: 200px;
  }
  .skill-result::before {
    left: 0;
  }
  .skill-panel {
    padding-bottom: 36px;
  }
}

.technology {
  background: linear-gradient(
    135deg,
    #120c0d,
    var(--section-bg, var(--bg)) 55%
  );
}
.technology-sticky {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px 80px;
}
.technology-header h2 {
  font-size: clamp(3.5rem, 6.8vw, 7rem);
}
.technology-header > p:last-child {
  color: var(--muted);
  max-width: 350px;
  margin-top: 24px;
}
.technology-index {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.technology-index a {
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  min-height: 50px;
  font-size: 16px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.technology-index a > span:last-child {
  opacity: 0;
  transition: opacity 0.2s;
}
.technology-index a:hover,
.technology-index a[aria-current="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.technology-index a:hover > span:last-child,
.technology-index a[aria-current="true"] > span:last-child {
  opacity: 1;
}
.technology-scenes {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
}
.technology-panel {
  padding-block: 30px 45px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.technology-mark {
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 13rem);
  color: transparent;
  -webkit-text-stroke: 1px #e52c36aa;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 26px;
  user-select: none;
}
.technology-panel-copy h3 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  max-width: 520px;
  line-height: 1.02;
  margin-top: 20px;
}
.technology-panel-copy > p:not(.meta) {
  color: var(--muted);
  max-width: 500px;
  margin-top: 24px;
}
.technology-tokens {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
}
.technology-tokens li {
  font-size: 14px;
  border: 1px solid #655759;
  padding: 7px 13px;
  line-height: 1.6;
}
.technology-foot {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.technology-track {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.technology-track > span {
  display: block;
  height: 1px;
  background: var(--accent);
  width: 100%;
  transform: scaleX(var(--tech-progress, 0.1667));
  transform-origin: left;
}
.technology-count {
  color: var(--text);
}
.technology.is-sticky {
  height: calc(100svh + var(--travel, 220vh));
}
.is-sticky .technology-sticky {
  position: sticky;
  top: 68px;
  min-height: calc(100svh - 68px);
  height: auto;
  padding-block: 45px 30px;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto 1fr auto;
  gap: 22px 8vw;
  align-content: center;
}
.is-sticky .technology-header h2 {
  font-size: clamp(3.5rem, 5.2vw, 6.1rem);
}
.is-sticky .technology-header > .eyebrow {
  margin-bottom: 18px;
}
.is-sticky .technology-header > p:last-child {
  margin-top: 18px;
}
.is-sticky .technology-index a {
  padding-block: 8px;
  min-height: 45px;
  font-size: 14px;
}
.is-sticky .technology-scenes {
  display: grid;
  align-self: center;
}
.is-sticky .technology-panel {
  border: 0;
  grid-area: 1/1;
  align-self: center;
  padding: 0;
  min-height: 450px;
}
.is-sticky .technology-panel:not(.is-current) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.is-sticky .technology-mark {
  font-size: clamp(7rem, 10vw, 10rem);
  margin-bottom: 20px;
}
.is-sticky .technology-panel-copy h3 {
  font-size: clamp(2.5rem, 3.8vw, 4rem);
}
.is-sticky .technology-panel-copy > p:not(.meta) {
  margin-top: 18px;
}
.is-sticky .technology-tokens {
  margin-top: 24px;
}
.is-sticky .technology-header {
  grid-column: 1;
  grid-row: 1;
}
.is-sticky .technology-index {
  grid-row: 2;
}
.is-sticky .technology-scenes {
  grid-row: 1 / span 2;
}
.is-sticky .technology-foot {
  grid-row: 3;
}
@media (max-width: 899px) {
  .technology-sticky {
    display: block;
  }
  .technology-header {
    max-width: 680px;
  }
  .technology-index {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 35px;
  }
  .technology-index a {
    display: flex;
    gap: 10px;
    font-size: 14px;
    border: 1px solid var(--line);
    padding: 9px 12px;
  }
  .technology-index a > span:last-child {
    display: none;
  }
  .technology-scenes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
  }
  .technology-mark {
    font-size: 7rem;
  }
  .technology-panel-copy h3 {
    font-size: 2.5rem;
  }
  .technology-panel-copy > p:not(.meta) {
    font-size: 16px;
  }
  .technology-foot {
    margin-top: 40px;
  }
  .technology-foot > .meta:first-child {
    max-width: 140px;
  }
}
@media (max-width: 570px) {
  .technology-scenes {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .technology-panel {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 20px;
    padding-block: 32px;
  }
  .technology-panel-copy {
    min-width: 0;
  }
  .technology-mark {
    font-size: 3.5rem;
    margin-top: 35px;
  }
  .technology-panel-copy h3 {
    font-size: 2.25rem;
  }
  .technology-panel-copy > p:not(.meta) {
    margin-top: 18px;
  }
  .technology-tokens {
    margin-top: 20px;
  }
  .technology-tokens li {
    font-size: 14px;
    padding: 6px 10px;
  }
  .technology-foot {
    gap: 15px;
  }
  .technology-header h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
}
.technology-all {
  list-style: none;
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.technology-all li {
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.is-sticky .technology-all {
  grid-row: 3;
}
.is-sticky .technology-foot {
  grid-row: 4;
  padding-top: 16px;
}
.is-sticky .technology-sticky {
  grid-template-rows: auto 1fr auto auto;
  gap: 16px 8vw;
  padding-block: 30px 22px;
}
.is-sticky .technology-index a {
  min-height: 44px;
}
.is-sticky .technology-header h2 {
  font-size: clamp(3.2rem, 4.8vw, 5.5rem);
}
@media (max-width: 899px) {
  .technology-all {
    margin-top: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .technology.is-sticky {
    height: auto;
  }
  .is-sticky .technology-sticky {
    position: static;
    display: block;
    height: auto;
  }
  .is-sticky .technology-panel {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    min-height: 0;
    margin-top: 45px;
  }
  .is-sticky .technology-scenes {
    display: block;
  }
  .is-sticky .technology-panel[inert] {
    display: block;
  }
  .technology-foot {
    margin-top: 30px;
  }
}

.studio {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 76% 55%, #41131755, transparent 60%),
    var(--section-bg, var(--bg));
}
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 135px);
  align-items: center;
}
.studio-layout > * {
  min-width: 0;
}
.studio-copy h2 {
  font-size: clamp(3.5rem, 6.9vw, 7.2rem);
}
.studio-intro {
  color: var(--muted);
  max-width: 420px;
  margin-top: 30px;
}
.studio-layers {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}
.studio-layers li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.studio-layers .meta {
  padding-top: 5px;
  color: var(--accent);
}
.studio-layers h3 {
  font-family: var(--body);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 600;
}
.studio-layers p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 6px;
  max-width: 370px;
}
.studio-composition {
  position: relative;
  padding: 45px 5% 50px;
  max-width: 650px;
  width: 100%;
  isolation: isolate;
}
.studio-note {
  font-family: cursive;
  font-style: italic;
  position: absolute;
  right: -1%;
  top: 0;
  max-width: 200px;
  font-size: 21px;
  line-height: 1.4;
  transform: rotate(-9deg);
  z-index: 4;
}
.studio-sheet {
  position: absolute;
  inset: 56px 20px 60px 30px;
  border: 1px solid #74605c;
  background: #171112;
  transform: rotate(7deg);
  z-index: -1;
}
.studio-sheet span {
  position: absolute;
  right: 13px;
  top: 22px;
  writing-mode: vertical-rl;
  font:
    12px ui-monospace,
    monospace;
  letter-spacing: 0.15em;
}
.studio-poster {
  position: relative;
  background: #e3353e;
  color: #110b0c;
  padding: 22px 28px 20px;
  transform: rotate(-5deg) translateY(var(--studio-y, 0px));
  box-shadow: 15px 25px 60px #0005;
  will-change: auto;
}
.poster-top,
.poster-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font:
    12px/1.5 ui-monospace,
    monospace;
  letter-spacing: 0.02em;
}
.poster-top {
  border-bottom: 1px solid #270c0e66;
  padding-bottom: 17px;
}
.studio-poster > p {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  margin: 32px 0;
}
.studio-poster > p > span {
  display: block;
}
.poster-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #170b0c;
}
.poster-bottom {
  border-top: 1px solid #270c0e66;
  padding-top: 14px;
}
.poster-bottom > span:last-child {
  font-family: var(--body);
  font-size: 42px;
}
.studio-caption {
  position: relative;
  max-width: 340px;
  margin-top: 40px;
  letter-spacing: 0.07em;
}
@media (max-width: 1000px) {
  .studio-layout {
    gap: 50px;
  }
  .studio-poster {
    padding-inline: 20px;
  }
  .poster-top {
    font-size: 12px;
    display: block;
  }
  .poster-top > span {
    display: block;
  }
  .studio-poster > p {
    font-size: 7vw;
  }
  .studio-note {
    right: -10px;
  }
  .studio-copy h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 730px) {
  .studio-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .studio-composition {
    max-width: 500px;
    margin-inline: auto;
  }
  .studio-poster > p {
    font-size: clamp(3.5rem, 15vw, 6.8rem);
  }
  .studio-copy h2 {
    font-size: clamp(3rem, 12vw, 5.5rem);
  }
  .studio-caption {
    margin-top: 35px;
  }
  .studio-note {
    right: 5%;
    font-size: 20px;
    max-width: 170px;
  }
  .poster-top {
    display: flex;
  }
  .studio-intro {
    max-width: none;
  }
  .studio-composition {
    padding-top: 65px;
  }
  .studio-sheet {
    inset: 80px 20px 70px 30px;
  }
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}
.process-layout > * {
  min-width: 0;
}
.process-intro h2 {
  font-size: clamp(3.5rem, 6.3vw, 6.7rem);
}
.process-intro > p:last-of-type {
  max-width: 390px;
  color: var(--muted);
  margin-top: 28px;
}
.process-symbol {
  display: block;
  font-size: 120px;
  font-family: var(--body);
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  margin-top: 45px;
}
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  isolation: isolate;
}
.process-steps::before,
.process-steps::after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 60px;
  left: 24px;
  width: 1px;
  background: var(--line);
  z-index: -1;
  transform-origin: top;
}
.process-steps::after {
  background: var(--accent);
  transform: scaleY(var(--process-progress, 0));
}
.process-steps li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 42px;
}
.process-steps li:last-child {
  padding-bottom: 0;
}
.process-number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid #67565a;
  background: var(--bg);
  font:
    14px ui-monospace,
    monospace;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.process-steps .is-active .process-number {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.process-steps h3 {
  font-size: 2.8rem;
  line-height: 1.1;
}
.process-steps p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 490px;
  font-size: 16px;
}
@media (max-width: 850px) {
  .process-layout {
    gap: 50px;
  }
  .process-intro h2 {
    font-size: 3.8rem;
  }
  .process-steps li {
    gap: 20px;
  }
}
@media (max-width: 670px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .process-intro h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
  .process-symbol {
    display: none;
  }
  .process-steps h3 {
    font-size: 2.5rem;
  }
  .process-steps li {
    padding-bottom: 35px;
  }
}

.journey {
  background:
    radial-gradient(ellipse at 0 70%, #3d060c55, transparent 60%),
    var(--section-bg, var(--bg));
  overflow: hidden;
}
.journey-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0 70px;
  align-items: end;
}
.journey-heading .eyebrow {
  grid-column: 1/-1;
}
.journey-heading h2 {
  font-size: clamp(3.5rem, 6.8vw, 7.2rem);
}
.journey-heading > p:last-child {
  color: var(--muted);
  max-width: 390px;
  padding-bottom: 8px;
}
.journey-path {
  list-style: none;
  margin: 80px 0 0;
  padding: 0 0 0 8%;
  position: relative;
  isolation: isolate;
}
.journey-path::before,
.journey-path::after {
  content: "";
  position: absolute;
  left: calc(8% + 6px);
  top: 15px;
  bottom: 40px;
  width: 1px;
  background: var(--line);
  z-index: -1;
  transform-origin: top;
}
.journey-path::after {
  background: var(--accent);
  transform: scaleY(var(--journey-progress, 0));
  box-shadow: 0 0 10px #e52c3655;
}
.journey-path li {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1.1fr 1fr;
  gap: 30px;
  align-items: start;
  padding: 0 0 62px 50px;
}
.journey-path li:last-child {
  padding-bottom: 0;
}
.journey-node {
  position: absolute;
  left: 1px;
  top: 6px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--accent);
  background: var(--bg);
  border-radius: 50%;
}
.journey-path li.is-active .journey-node {
  background: var(--accent);
}
.journey-path h3 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  max-width: 350px;
}
.journey-path p:last-of-type {
  color: var(--muted);
  font-size: 16px;
  max-width: 420px;
  line-height: 1.8;
}
.journey-path .meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
  padding-top: 3px;
}
.journey-index {
  display: none;
}
.journey-continuation {
  margin: 65px 0 0 calc(8% + 50px);
  display: flex;
  align-items: center;
  gap: 25px;
}
.journey-continuation span {
  font-size: 21px;
  color: var(--accent);
}
@media (max-width: 1080px) {
  .journey-path li {
    grid-template-columns: 140px 1fr;
    gap: 20px 30px;
  }
  .journey-path li > p:last-of-type {
    grid-column: 2;
  }
  .journey-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .journey-heading .eyebrow {
    margin-bottom: 0;
  }
  .journey-path {
    padding-left: 0;
  }
  .journey-path::before,
  .journey-path::after {
    left: 6px;
  }
  .journey-continuation {
    margin-left: 50px;
  }
}
@media (max-width: 600px) {
  .journey-path {
    margin-top: 45px;
  }
  .journey-path li {
    display: block;
    padding-left: 30px;
    padding-bottom: 45px;
  }
  .journey-path h3 {
    margin-top: 14px;
    font-size: 2.5rem;
  }
  .journey-path p:last-of-type {
    margin-top: 15px;
  }
  .journey-heading h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }
  .journey-continuation {
    margin: 35px 0 0 30px;
    letter-spacing: 0.08em;
  }
}

.contact {
  min-height: 780px;
  overflow: hidden;
  position: relative;
  background: var(--section-bg, var(--crimson));
}
.contact-landscape {
  position: absolute;
  inset: -40px 0;
  z-index: -2;
  transform: translateY(var(--landscape-y, 0px));
}
.contact-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.contact-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #18030677, transparent 80%),
    linear-gradient(0deg, #090909bb, transparent 55%, #23060855);
}
.contact-content {
  padding-top: clamp(75px, 8vw, 120px);
  padding-bottom: 25px;
  position: relative;
}
.contact .eyebrow {
  color: #e7cbc8;
}
.contact .eyebrow i {
  background: #f48689;
}
.contact h2 {
  font-size: clamp(3.5rem, 7.4vw, 8rem);
  line-height: 0.94;
  max-width: 1050px;
  letter-spacing: -0.017em;
}
.contact-intro {
  font-size: 16px;
  color: var(--text);
  max-width: 510px;
  margin-top: 28px;
}
.contact-cta {
  margin-top: 26px;
}
.contact-cta .button {
  background: #090909;
  border-color: #aa9390;
  min-height: 54px;
  padding-inline: 26px;
  font-size: 16px;
  gap: 50px;
}
.contact-cta .button:hover {
  background: var(--text);
  color: var(--bg);
}
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 30px;
}
.contact-socials > span {
  font-size: 14px;
  color: #e9d1ce;
  padding-left: 25px;
  border-left: 1px solid #9c6565;
}
.contact-signature {
  position: absolute;
  right: 9%;
  top: 30%;
  font-family: cursive;
  font-size: 27px;
  font-style: italic;
  line-height: 1.4;
  transform: rotate(-12deg);
  color: #e3b9ad;
}
.site-footer {
  margin-top: 100px;
  border-top: 1px solid #a7797166;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.site-footer > div {
  display: flex;
  gap: 25px;
  align-items: center;
}
.site-footer .meta {
  color: #d1b9b4;
  letter-spacing: 0.09em;
}
.footer-credit {
  font-size: 12px;
  text-align: right;
  color: #d1b9b4;
  line-height: 1.8;
  margin-left: auto;
}
.footer-credit span {
  display: block;
}
.back-top {
  display: grid;
  place-items: center;
  border: 1px solid #a7797188;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  font-size: 22px;
  transition: background 0.2s;
}
.back-top:hover {
  background: #090909;
}
.site-footer .wordmark {
  font-size: 30px;
}
@media (max-width: 1250px) {
  .contact-signature {
    right: 6%;
    top: 37%;
    font-size: 23px;
  }
  .contact h2 {
    max-width: 80%;
  }
}
@media (max-width: 900px) {
  .contact-signature {
    display: none;
  }
  .contact h2 {
    max-width: 100%;
    font-size: clamp(3.4rem, 8.6vw, 6rem);
  }
  .contact {
    min-height: 700px;
  }
  .contact-landscape img {
    object-position: 70% center;
  }
  .contact-content {
    padding-top: 85px;
  }
  .site-footer {
    margin-top: 90px;
  }
}
@media (max-width: 600px) {
  .contact h2 {
    font-size: clamp(2.8rem, 10.5vw, 4.8rem);
    line-height: 0.98;
  }
  .contact {
    min-height: 740px;
  }
  .contact-content {
    padding-top: 75px;
  }
  .contact-landscape {
    left: -80%;
    right: -10%;
    opacity: 0.76;
  }
  .contact-landscape img {
    object-position: 70% center;
  }
  .contact-shade {
    background:
      linear-gradient(90deg, #21040688, #21040622),
      linear-gradient(0deg, #090909bb, transparent);
  }
  .contact-intro {
    max-width: 290px;
  }
  .contact-cta .button {
    font-size: 14px;
    gap: 30px;
    padding-inline: 18px;
  }
  .contact-socials {
    gap: 15px 25px;
  }
  .contact-socials > span {
    padding: 0;
    border: 0;
    flex-basis: 100%;
  }
  .site-footer {
    margin-top: 65px;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .site-footer > div {
    gap: 15px;
  }
  .site-footer .meta {
    font-size: 12px;
  }
  .footer-credit {
    flex-basis: calc(100% - 65px);
    order: 3;
    text-align: left;
    margin-left: 0;
  }
  .back-top {
    order: 4;
  }
  .site-footer .wordmark {
    font-size: 28px;
  }
}

:root{--bg:#090909;--surface:#121010;--crimson:#3D060C;--accent:#E52C36;--text:#EEE9E2;--muted:#BCB6B1;--line:#35302F}