:root {
  --bg: #000000;
  --surface: #0d0f10;
  --surface-raised: #131516;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f5f1;
  --text-soft: #c5c5c2;
  --text-dim: #7d8285;
  --accent: #ff632e;
  --copper: #c59672;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

svg,
img {
  display: block;
}

.shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 9px;
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button):focus-visible {
  outline: 3px solid #ff8154;
  outline-offset: 3px;
}

.journey-header {
  position: relative;
  z-index: 20;
  inset: auto;
  background: rgba(0, 0, 0, 0.96);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: max(9px, env(safe-area-inset-top)) 9px;
}

.journey-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 99, 46, 0.44);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 99, 46, 0.16), rgba(255, 99, 46, 0.03));
}

.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brand-copy small {
  overflow: hidden;
  color: var(--copper);
  letter-spacing: 0.15em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 8px;
  font-weight: 850;
}

.brand-copy strong {
  overflow: hidden;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 850;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  color: #fff;
  border: 1px solid rgba(255, 99, 46, 0.48);
  border-radius: 999px;
  background: #111315;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 780;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-link:hover {
  border-color: rgba(255, 129, 84, 0.82);
  background: linear-gradient(145deg, rgba(255, 99, 46, 0.12), #171a1d);
  transform: translateY(-1px);
}

.header-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 108px) 0 clamp(72px, 9vw, 122px);
}

.journey-section::before { display: none; content: none; }

.journey-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.portrait-card {
  position: sticky;
  top: 34px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 150, 114, 0.45);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(197, 150, 114, 0.12), rgba(255, 99, 46, 0.03)), var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.06);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
  background: #0b0c0e;
}

.portrait-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(7, 8, 9, 0.48));
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.portrait-card figcaption strong {
  font-size: 16px;
  font-weight: 780;
}

.portrait-card figcaption span {
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 820;
}

.journey-story {
  min-width: 0;
  padding-top: 12px;
}

.eyebrow {
  color: var(--copper);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
}

.journey-story h1 {
  margin: 17px 0 40px;
  letter-spacing: -0.055em;
  text-wrap: balance;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.98;
}

.story-copy {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 710px;
  padding-left: 28px;
}

.story-copy::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(var(--accent), rgba(197, 150, 114, 0.55), rgba(255, 255, 255, 0.06));
}

.story-copy p {
  margin: 0;
  color: var(--text-soft);
  text-wrap: pretty;
  font-size: 17px;
  line-height: 1.82;
}

.story-copy p:first-child {
  color: var(--text);
  font-size: 19px;
  line-height: 1.75;
}

.story-copy p:last-child {
  margin-top: 8px;
  padding: 24px 26px;
  color: var(--text);
  border: 1px solid rgba(197, 150, 114, 0.34);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(197, 150, 114, 0.1), rgba(255, 99, 46, 0.035)), var(--surface-raised);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  font-weight: 650;
}

.journey-footer {
  background: #000;
  border-top: 0 !important;
  box-shadow: none !important;
}

.footer-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-dim);
  font-size: 12px;
}

.footer-inner strong {
  color: var(--text);
  letter-spacing: 0.11em;
  font-size: 11px;
}

@media (max-width: 900px) {
  .journey-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portrait-card {
    position: relative;
    top: auto;
    width: min(100%, 500px);
  }

  .journey-story {
    max-width: 760px;
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .brand-copy small {
    max-width: 135px;
    font-size: 6.5px;
  }

  .brand-copy strong {
    max-width: 135px;
    font-size: 9px;
  }

  .header-link {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .header-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .journey-section {
    padding: 42px 0 70px;
  }

  .journey-layout {
    gap: 42px;
  }

  .portrait-card {
    border-radius: 18px;
  }

  .portrait-card figcaption {
    padding: 17px 18px;
  }

  .journey-story h1 {
    margin-block: 14px 30px;
    font-size: clamp(47px, 15vw, 62px);
  }

  .story-copy {
    gap: 21px;
    padding-left: 20px;
  }

  .story-copy p,
  .story-copy p:first-child {
    font-size: 15px;
    line-height: 1.78;
  }

  .story-copy p:last-child {
    margin-left: -6px;
    padding: 20px;
    border-radius: 14px;
  }

  .footer-inner {
    min-height: 70px;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }

  .portrait-card figcaption span {
    display: none;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-link {
    transition: none;
  }
}


body, main, .journey-section, .journey-footer { background-color: #000 !important; background-image: none !important; }
body,body :not(input):not(textarea):not(select):not(option):not([contenteditable=true]),html{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important;-webkit-touch-callout:none!important}body :not(input):not(textarea):not(select):not(option):not([contenteditable=true])::selection,body::selection{color:inherit;background:0 0}[contenteditable=true],input,option,select,textarea{-webkit-user-select:text!important;-moz-user-select:text!important;user-select:text!important}canvas,img,svg,video{-webkit-user-drag:none}
html,body,img,picture,video,canvas{touch-action: pan-x pan-y;}html.journal-page,html.journal-page body{touch-action: pan-y;}
.header-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.header-brand-copy strong,
.header-brand-copy small {
  display: block;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1;
}

.header-brand-copy strong {
  order: 1;
  color: #f7f5f1;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 850;
}

.header-brand-copy small {
  order: 2;
  color: #c59672;
  letter-spacing: 0.13em;
  font-size: 8px;
  font-weight: 850;
}

@media (max-width: 660px) {
  .header-brand-copy {
    display: flex;
  }

  .header-brand-copy strong,
  .header-brand-copy small {
    max-width: 142px;
  }

  .header-brand-copy strong {
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .header-brand-copy small {
    font-size: 7px;
  }
}

@media (max-width: 390px) {
  .header-brand-copy strong,
  .header-brand-copy small {
    max-width: 118px;
  }

  .header-brand-copy strong {
    font-size: 9px;
  }

  .header-brand-copy small {
    font-size: 6.5px;
  }
}
