.about-theme {
  min-height: 100vh;
  overflow-x: clip;
  background: #061725;
  color: #f7fbff;
}

.about-theme .grain { opacity: .04; mix-blend-mode: screen; }

.about-header {
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #f7fbff;
}
.about-header .brand { color: #f7fbff; }
.about-header .muted { color: rgba(247,251,255,.48); }
.about-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.about-home-link { color: rgba(247,251,255,.72); font-size: 12px; font-weight: 700; text-decoration: none; }
.about-home-link:hover { color: #ff8a4c; }
.about-header-cta { border-color: rgba(255,255,255,.48); color: #fff; }
.about-header-cta:hover { border-color: #ff8a4c; color: #ff8a4c; }

.about-main {
  display: grid;
  grid-template-columns: minmax(300px,.8fr) minmax(0,1.2fr);
  gap: clamp(52px,8vw,124px);
  align-items: center;
  min-height: calc(100svh - 86px);
  padding-top: clamp(50px,6vw,82px);
  padding-bottom: clamp(64px,7vw,100px);
}

.about-portrait {
  position: relative;
  width: min(100%,520px);
  margin: 0;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.2);
  background: #02080d;
  box-shadow: 18px 20px 0 rgba(255,255,255,.065);
}
.about-portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255,138,76,.52);
  pointer-events: none;
}
.about-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.about-portrait figcaption {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: rgba(3,12,19,.8);
  font: 500 8px var(--mono);
  letter-spacing: .08em;
}
.about-portrait figcaption span { color: #ff8a4c; }

.about-copy { max-width: 790px; }
.about-copy .eyebrow { margin-bottom: 24px; color: rgba(247,251,255,.66); }
.about-copy .eyebrow span { background: #ff8a4c; }
.about-copy h1 {
  margin: 0;
  font-size: clamp(52px,6.1vw,92px);
  line-height: .91;
  letter-spacing: -.08em;
}
.about-copy h1 em { display: inline; color: #ff8a4c; font-family: "DM Serif Display",Georgia,serif; font-weight: 400; }
.about-lead {
  max-width: 700px;
  margin: clamp(28px,4vw,48px) 0 0;
  padding-left: 18px;
  border-left: 3px solid #ff8a4c;
  color: rgba(239,246,251,.82);
  font-size: clamp(17px,1.45vw,20px);
  line-height: 1.65;
}

.about-principles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,52px); margin-top: clamp(38px,5vw,62px); }
.about-principles article { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.28); }
.about-principles span { color: #ff8a4c; font: 500 9px var(--mono); letter-spacing: .08em; }
.about-principles p { margin: 14px 0 0; color: rgba(239,246,251,.7); font-size: 14px; line-height: 1.7; }

.about-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; color: rgba(239,246,251,.52); font: 500 8px var(--mono); letter-spacing: .07em; }
.about-meta span + span::before { content: "/"; margin-right: 24px; color: #ff8a4c; }
.about-actions { display: flex; align-items: center; gap: 25px; margin-top: 32px; }
.about-button { padding: 16px 20px; background: #f36b2b; color: #fff; }
.about-button:hover { background: #fff; color: #061725; transform: translateY(-2px); }
.about-actions .text-link { border-color: rgba(255,255,255,.5); color: #fff; }
.about-actions .text-link:hover { color: #ff8a4c; }

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(247,251,255,.5);
}
.about-footer p { margin: 0; }
.about-footer a { color: rgba(247,251,255,.65); font: 500 8px var(--mono); letter-spacing: .08em; text-decoration: none; }
.about-footer a:hover { color: #ff8a4c; }

@media (max-width: 850px) {
  .about-main { grid-template-columns: 1fr; min-height: auto; gap: 52px; padding-top: 48px; }
  .about-portrait { width: min(76%,430px); }
  .about-copy { max-width: none; }
  .about-copy h1 { font-size: clamp(50px,11vw,78px); }
}

@media (max-width: 560px) {
  .about-home-link,
  .about-header-cta { display: none; }
  .about-portrait { width: min(88%,370px); box-shadow: 10px 12px 0 rgba(255,255,255,.065); }
  .about-copy h1 { font-size: clamp(47px,13vw,66px); }
  .about-principles { grid-template-columns: 1fr; }
  .about-meta { display: grid; gap: 10px; }
  .about-meta span + span::before { content: none; }
  .about-actions { align-items: flex-start; flex-direction: column; }
  .about-footer { align-items: flex-start; flex-direction: column; }
}
