:root {
  --ink: #151515;
  --ink-soft: #4f4c47;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e7e1d8;
  --line-strong: #cdc3b4;
  --accent: #9b7a3e;
  --accent-dark: #6f5528;
  --sage: #6f8176;
  --clay: #a85f45;
  --mist: #eef2ef;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
  --radius: 8px;
  --header: 76px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  height: var(--header);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 50;
}

.site-header[hidden] {
  display: none;
}

.site-header[data-elevated="true"] {
  border-color: rgba(205, 195, 180, 0.7);
  box-shadow: 0 8px 28px rgba(21, 21, 21, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  margin-top: 2px;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.icon-button {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: 42px;
}

.icon-button:hover {
  background: var(--mist);
  border-color: var(--line-strong);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  width: 18px;
}

#site-root {
  min-height: 100vh;
  padding-top: var(--header);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section--tight {
  padding-top: 34px;
}

.section__head {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto 30px;
  max-width: 1220px;
}

.section__head h2,
.hero-copy h1,
.gallery-view h1,
.admin-title h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

.section__head h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.section__head p,
.hero-copy p,
.gallery-view__intro p,
.muted {
  color: var(--ink-soft);
  line-height: 1.65;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.72rem;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero {
  align-items: end;
  display: grid;
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.64), rgba(10, 10, 10, 0.2) 48%, rgba(10, 10, 10, 0.08)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.38), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-copy {
  color: #fff;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 8.2rem);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 610px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  gap: 9px;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--light {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button svg,
.icon-button svg {
  height: 17px;
  width: 17px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.gallery-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.gallery-card__media {
  background: var(--mist);
  border: 0;
  display: block;
  height: clamp(280px, 32vw, 430px);
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.gallery-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.status-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  font-size: 0.72rem;
  gap: 6px;
  left: 14px;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
}

.gallery-card__body {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px;
}

.gallery-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
}

.gallery-meta {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
  min-width: 86px;
  text-align: right;
}

.feature-band {
  background: #20201e;
  color: #fff;
  display: grid;
  gap: 0;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 620px;
}

.feature-band__media {
  min-height: 420px;
}

.feature-band__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-band__content {
  align-self: center;
  max-width: 650px;
  padding: clamp(36px, 6vw, 82px);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 12px;
  grid-template-columns: 34px 1fr;
  padding-top: 18px;
}

.feature-item svg {
  color: #c9aa6c;
  height: 22px;
  margin-top: 3px;
  width: 22px;
}

.feature-item h3 {
  font-size: 1rem;
  margin: 0 0 4px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
}

.gallery-view {
  padding: clamp(28px, 5vw, 62px);
}

.gallery-view__intro {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 30px;
  max-width: 1320px;
}

.gallery-view h1 {
  font-size: clamp(2.6rem, 7vw, 7rem);
}

.toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.segmented {
  background: var(--panel);
  border: 1px solid var(--line);
  display: inline-flex;
  padding: 4px;
}

.segmented button {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  min-height: 34px;
  padding: 0 12px;
}

.segmented a {
  align-items: center;
  color: var(--ink-soft);
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
}

.segmented button[aria-pressed="true"],
.segmented a[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.media-board {
  display: grid;
  gap: var(--gallery-gap, 12px);
  margin: 0 auto;
  max-width: 1320px;
}

.media-board[data-layout="grid"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-board[data-layout="masonry"] {
  columns: 4 220px;
  display: block;
}

.media-board[data-layout="cinematic"] {
  grid-template-columns: 1.45fr 1fr 1fr;
}

.media-board[data-layout="fullscreen"] {
  grid-template-columns: 1fr;
  max-width: none;
}

.media-tile {
  background: #ded8cf;
  border: 0;
  break-inside: avoid;
  color: #fff;
  display: block;
  -webkit-tap-highlight-color: transparent;
  margin: 0 0 var(--gallery-gap, 12px);
  min-height: 190px;
  overflow: hidden;
  padding: 0;
  position: relative;
  touch-action: manipulation;
  user-select: none;
  width: 100%;
}

.gallery-load-more {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 28px auto 0;
}

.media-board:not([data-layout="masonry"]) .media-tile {
  aspect-ratio: 4 / 5;
  margin: 0;
}

.media-board[data-layout="cinematic"] .media-tile:first-child {
  grid-row: span 2;
}

.media-board[data-layout="fullscreen"] .media-tile {
  aspect-ratio: 16 / 9;
}

.media-tile img,
.media-tile video {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 360ms ease, filter 360ms ease;
  width: 100%;
}

.media-tile:hover img,
.media-tile:hover video {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.media-failed {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.06), rgba(21, 21, 21, 0.16)),
    #ded8cf;
  position: relative;
}

.media-failed::before {
  color: rgba(21, 21, 21, 0.58);
  content: "Preview unavailable";
  font-size: 0.72rem;
  font-weight: 800;
  left: 50%;
  letter-spacing: 0.12em;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  width: min(80%, 180px);
}

.media-failed > img,
.media-failed > video {
  display: none;
}

.media-tile__tools {
  align-items: center;
  bottom: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  position: absolute;
  right: 12px;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.media-tile:hover .media-tile__tools {
  opacity: 1;
  transform: translateY(0);
}

.round-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: var(--ink);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.round-action[data-active="true"] {
  background: var(--clay);
  color: #fff;
}

.round-action svg {
  height: 17px;
  width: 17px;
}

.lightbox {
  align-items: center;
  background: rgba(12, 12, 11, 0.92);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 12px;
  position: fixed;
  z-index: 100;
}

.lightbox[data-open="true"] {
  display: flex;
}

.lightbox__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lightbox__stage {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 88vh;
  max-height: 88vh;
  max-width: 96vw;
  width: 96vw;
}

.lightbox__stage img,
.lightbox__stage video {
  height: auto;
  max-height: 88vh;
  max-width: 96vw;
  object-fit: contain;
  width: auto;
}

.lightbox__stage video {
  width: min(96vw, 1280px);
}

.lightbox__stage img {
  width: auto;
}

.lightbox__hint {
  color: rgba(244, 244, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.lightbox__logo {
  align-items: center;
  display: inline-flex;
  left: 22px;
  position: absolute;
  top: 22px;
  z-index: 2;
}

.lightbox__logo img {
  display: block;
  height: auto;
  max-height: 42px;
  width: min(138px, 32vw);
}

.lightbox .icon-button {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
}

.admin-shell {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  min-height: calc(100vh - var(--header));
}

.admin-sidebar {
  background: #1f201e;
  color: #fff;
  padding: 28px 18px;
  position: sticky;
  top: var(--header);
  height: calc(100vh - var(--header));
}

.admin-logo {
  display: inline-block;
  margin: 0 0 22px;
  width: min(170px, 100%);
}

.admin-logo img {
  display: block;
  height: auto;
  width: 100%;
}

.admin-sidebar h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 22px;
}

.admin-tabs {
  display: grid;
  gap: 6px;
}

.admin-tabs button {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  text-align: left;
}

.admin-tabs button[aria-selected="true"],
.admin-tabs button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.admin-tabs svg {
  height: 17px;
  width: 17px;
}

.admin-home-link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 10px;
  margin-top: 16px;
  min-height: 42px;
  padding: 0 12px;
}

.admin-home-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-home-link svg {
  height: 17px;
  width: 17px;
}

.admin-main {
  padding: clamp(24px, 4vw, 46px);
}

.admin-title {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.admin-title h1 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
}

.panel h3 {
  font-size: 1rem;
  margin: 0 0 14px;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-12 {
  grid-column: span 12;
}

.metric {
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.metric strong {
  color: var(--ink);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-top: 8px;
  text-transform: none;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 42px;
  padding: 10px 11px;
  width: 100%;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.dropzone {
  align-items: center;
  background: var(--mist);
  border: 1px dashed var(--line-strong);
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 230px;
  padding: 28px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.dropzone[data-active="true"] {
  background: #f5efe3;
  border-color: var(--accent);
}

.dropzone svg {
  color: var(--accent);
  height: 34px;
  width: 34px;
}

.dropzone input {
  display: none;
}

.upload-progress {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.upload-progress[hidden] {
  display: none;
}

.upload-progress__item {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
}

.upload-progress__head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}

.upload-progress__head strong,
.upload-progress__head span {
  display: block;
}

.upload-progress__head strong {
  font-size: 0.9rem;
  max-width: min(460px, 62vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-progress__head span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin-top: 3px;
}

.upload-progress__head .icon-button {
  flex: 0 0 auto;
  height: 34px;
  width: 34px;
}

.upload-progress__head .icon-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.upload-progress__bar {
  background: var(--mist);
  height: 8px;
  overflow: hidden;
}

.upload-progress__bar span {
  background: var(--accent);
  display: block;
  height: 100%;
  transition: width 160ms ease;
}

.upload-progress__item[data-status="complete"] .upload-progress__bar span {
  background: #3f7d54;
}

.upload-progress__item[data-status="canceled"] .upload-progress__bar span,
.upload-progress__item[data-status="error"] .upload-progress__bar span {
  background: #9f3f3f;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: middle;
}

.table th {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.table td:last-child {
  text-align: right;
}

.media-preview {
  align-items: center;
  background: var(--mist);
  color: var(--ink-soft);
  display: inline-grid;
  height: 58px;
  justify-items: center;
  overflow: hidden;
  position: relative;
  width: 82px;
}

.media-preview img,
.media-preview video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-preview span {
  align-items: center;
  background: rgba(32, 32, 30, 0.72);
  color: #fff;
  display: grid;
  height: 28px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
}

.media-preview svg {
  height: 15px;
  width: 15px;
}

.media-preview--empty {
  border: 1px dashed var(--line-strong);
}

.mini-cover {
  background: var(--mist);
  height: 48px;
  object-fit: cover;
  width: 70px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--mist);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 0.78rem;
  min-height: 30px;
  padding: 6px 10px;
}

.login-wrap {
  align-items: center;
  display: grid;
  min-height: calc(100vh - var(--header));
  padding: clamp(22px, 4vw, 56px);
}

.login-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 460px;
  padding: clamp(24px, 5vw, 42px);
  width: 100%;
}

.login-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.toast {
  background: #20201e;
  bottom: 22px;
  color: #fff;
  left: 50%;
  min-width: min(380px, calc(100vw - 32px));
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 110;
}

.toast[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.empty-state {
  align-items: center;
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  display: grid;
  min-height: 180px;
  padding: 24px;
  place-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  .gallery-grid,
  .media-board[data-layout="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .gallery-view__intro,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    height: auto;
    position: static;
  }

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

  .span-3,
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .main-nav {
    background: rgba(251, 250, 247, 0.98);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 14px;
    position: fixed;
    right: 0;
    top: var(--header);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section__head,
  .admin-title {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid,
  .media-board[data-layout="grid"],
  .media-board[data-layout="cinematic"] {
    grid-template-columns: 1fr;
  }

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

  .gallery-card__media {
    height: 360px;
  }

  .toolbar {
    justify-content: flex-start;
  }
}

body[data-view="portfolio"] {
  background: #fff;
}

body[data-view="portfolio"] .site-header {
  display: none;
}

body[data-view="portfolio"] #site-root {
  padding-top: 0;
}

.portfolio-shell {
  background: #fff;
  color: #111;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 100vh;
}

.portfolio-sidebar {
  align-content: start;
  background: #fff;
  display: grid;
  gap: 34px;
  height: 100vh;
  left: 0;
  padding: 30px 24px;
  position: sticky;
  top: 0;
}

.portfolio-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.portfolio-nav,
.portfolio-contact {
  display: grid;
  gap: 8px;
}

.portfolio-nav a,
.portfolio-contact a {
  color: #111;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.portfolio-nav a:hover,
.portfolio-contact a:hover,
.project-list a:hover {
  color: #777;
}

.portfolio-contact {
  align-self: end;
  margin-top: auto;
}

.portfolio-main {
  padding: 28px clamp(18px, 4vw, 56px) 80px 10px;
}

.portfolio-lead {
  margin-left: auto;
  max-width: 760px;
  min-height: 110px;
}

.portfolio-lead p {
  color: #222;
  font-size: clamp(1.3rem, 2.7vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.portfolio-category {
  margin-top: 54px;
}

.portfolio-section-title {
  align-items: baseline;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.portfolio-category h2,
.portfolio-about h2 {
  color: #111;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.portfolio-section-title a {
  color: #777;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.portfolio-mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.portfolio-tile {
  background: #eee;
  display: block;
  grid-column: span 4;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.portfolio-mosaic--hero .portfolio-tile--large,
.portfolio-mosaic--index .portfolio-tile--large {
  grid-column: span 7;
  min-height: 680px;
}

.portfolio-mosaic--hero .portfolio-tile--tall,
.portfolio-mosaic--index .portfolio-tile--tall {
  grid-column: span 5;
  min-height: 680px;
}

.portfolio-tile--wide {
  grid-column: span 8;
}

.portfolio-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 300ms ease;
  width: 100%;
}

.portfolio-tile:hover img {
  filter: brightness(0.86);
  transform: scale(1.025);
}

.portfolio-tile span {
  bottom: 12px;
  color: #fff;
  display: grid;
  gap: 2px;
  left: 12px;
  opacity: 0;
  position: absolute;
  right: 12px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tile strong,
.portfolio-tile small {
  display: block;
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio-tile small {
  color: rgba(255, 255, 255, 0.78);
}

.project-list {
  border-top: 1px solid #111;
  display: grid;
  margin-top: 14px;
}

.project-list a {
  border-bottom: 1px solid #ddd;
  display: grid;
  font-size: clamp(1.05rem, 2vw, 1.8rem);
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 140px;
  line-height: 1.1;
  padding: 12px 0;
}

.project-list a span:last-child {
  color: #777;
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
}

.project-list--compact a {
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  grid-template-columns: 190px minmax(0, 1fr);
}

.project-list--compact a span:last-child {
  text-align: left;
}

.portfolio-about {
  border-top: 1px solid #111;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 310px;
  margin-top: 70px;
  padding-top: 18px;
}

.portfolio-about h2 {
  font-size: clamp(1.4rem, 3vw, 3.6rem);
  line-height: 1.02;
  max-width: 900px;
  text-transform: none;
}

.portfolio-about p,
.portfolio-about a {
  color: #111;
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 14px;
}

body[data-view="portfolio"] .gallery-view {
  background: #fff;
  padding: 34px clamp(18px, 4vw, 58px) 80px;
}

body[data-view="portfolio"] .gallery-view h1 {
  color: #111;
  font-family: inherit;
  font-size: clamp(2.8rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
}

body[data-view="portfolio"] .eyebrow {
  color: #555;
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .portfolio-shell {
    grid-template-columns: 1fr;
  }

  .portfolio-sidebar {
    border-bottom: 1px solid #eee;
    height: auto;
    padding: 18px;
    position: static;
  }

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

  .portfolio-contact {
    align-self: start;
    grid-template-columns: repeat(3, max-content);
    margin-top: 0;
  }

  .portfolio-main {
    padding: 22px 18px 64px;
  }

  .portfolio-lead {
    margin-left: 0;
    min-height: auto;
  }

  .portfolio-tile,
  .portfolio-mosaic--hero .portfolio-tile--large,
  .portfolio-mosaic--hero .portfolio-tile--tall,
  .portfolio-mosaic--index .portfolio-tile--large,
  .portfolio-mosaic--index .portfolio-tile--tall,
  .portfolio-tile--wide {
    grid-column: span 12;
    min-height: 420px;
  }

  .portfolio-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .project-list a {
    grid-template-columns: 1fr;
  }

  .project-list a span:last-child {
    text-align: left;
  }
}

body[data-view="portfolio"] {
  background: #070808;
}

body[data-view="portfolio"] #site-root {
  background: #070808;
  color: #f4f4f0;
  padding-top: 0;
}

.speed-home {
  background: #070808;
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
  min-height: 100vh;
  text-transform: uppercase;
}

.speed-nav {
  align-items: center;
  display: flex;
  height: 116px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(28px, 4.8vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.speed-brand {
  align-items: center;
  display: inline-flex;
  height: clamp(50px, 5vw, 72px);
  width: clamp(102px, 10vw, 154px);
}

.speed-brand img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.speed-nav__links {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 38px);
}

.speed-nav a:not(.speed-brand) {
  color: rgba(244, 244, 240, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: color 160ms ease;
}

.speed-nav a:hover {
  color: #fff;
}

.speed-nav a.speed-login-button {
  align-items: center;
  border: 1px solid rgba(244, 244, 240, 0.34);
  border-radius: 999px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.speed-nav a.speed-login-button svg {
  height: 18px;
  width: 18px;
}

.speed-menu-button,
.speed-mobile-menu {
  display: none;
}

.speed-hero {
  min-height: 93vh;
  overflow: hidden;
  position: relative;
}

.speed-hero::before,
.speed-hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.speed-hero::before {
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.56) 34%, rgba(7, 8, 8, 0.04) 66%, rgba(7, 8, 8, 0.62) 100%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.86) 0%, rgba(7, 8, 8, 0.1) 38%, rgba(7, 8, 8, 0.64) 100%);
}

.speed-hero::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), transparent 1px);
  background-size: 100% 3px;
  mix-blend-mode: overlay;
  opacity: 0.22;
}

.speed-hero__image {
  background: url("assets/optimized/DSC03227.jpg") 60% 45% / 115% auto no-repeat;
  filter: grayscale(1) contrast(1.06) brightness(0.72);
  inset: 0;
  position: absolute;
  transform: scale(1.03);
}

.speed-hero__copy {
  bottom: clamp(88px, 13vh, 164px);
  left: clamp(28px, 4.8vw, 72px);
  max-width: 590px;
  position: absolute;
  z-index: 2;
}

.speed-kicker {
  color: rgba(244, 244, 240, 0.76);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
}

.speed-hero h1 {
  color: #f2f2ee;
  font-size: clamp(3.9rem, 6.8vw, 7.25rem);
  font-stretch: condensed;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
}

.speed-intro {
  color: rgba(244, 244, 240, 0.68);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  letter-spacing: 0;
  line-height: 1.55;
  margin: 34px 0 42px;
  max-width: 330px;
  text-transform: none;
}

.speed-link {
  align-items: center;
  color: #f5f5f1;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 18px;
  letter-spacing: 0.2em;
}

.speed-link span {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.speed-scroll {
  align-items: center;
  bottom: 9vh;
  color: rgba(244, 244, 240, 0.66);
  display: grid;
  gap: 16px;
  justify-items: center;
  position: absolute;
  right: clamp(28px, 4.8vw, 72px);
  text-align: center;
  z-index: 2;
}

.speed-scroll span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.55;
}

.speed-scroll i {
  background: rgba(244, 244, 240, 0.76);
  display: block;
  height: 56px;
  width: 1px;
}

.speed-scroll b {
  background: #f4f4f0;
  display: block;
  height: 4px;
  width: 4px;
}

.speed-featured {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  grid-template-columns: minmax(180px, 23vw) minmax(0, 1fr);
  min-height: 92vh;
}

.speed-featured__rail {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(42px, 5vw, 68px) clamp(26px, 4.6vw, 70px);
}

.speed-featured__rail p {
  color: rgba(244, 244, 240, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 54px;
}

.speed-featured__rail ol {
  display: grid;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.speed-featured__rail a {
  align-items: baseline;
  color: rgba(244, 244, 240, 0.72);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 22px;
  grid-template-columns: 24px 1fr;
  letter-spacing: 0.16em;
}

.speed-featured__rail span {
  color: #96ff00;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.speed-featured__rail .is-active a {
  color: #fff;
}

.speed-socials {
  align-items: center;
  display: flex;
  gap: 26px;
  margin-top: auto;
}

.speed-socials a {
  color: rgba(244, 244, 240, 0.72);
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  letter-spacing: 0;
  width: 24px;
}

.speed-socials svg {
  height: 22px;
  width: 22px;
}

.social-icon {
  display: block;
  height: 22px;
  object-fit: contain;
  width: 22px;
}

.speed-mobile-socials {
  display: none;
}

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

.speed-card {
  aspect-ratio: 1.16 / 1;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  position: relative;
}

.speed-card::after {
  background:
    linear-gradient(0deg, rgba(7, 8, 8, 0.88) 0%, rgba(7, 8, 8, 0.08) 56%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.18), transparent 60%);
  content: "";
  inset: 0;
  position: absolute;
}

.speed-card img {
  filter: grayscale(0.45) brightness(0.72) contrast(1.06);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: filter 260ms ease, transform 600ms ease;
  width: 100%;
}

.speed-card:hover img {
  filter: grayscale(0.1) brightness(0.9) contrast(1.03);
  transform: scale(1.04);
}

.speed-card span,
.speed-card strong,
.speed-card small,
.speed-card em {
  position: relative;
  z-index: 1;
}

.speed-card span {
  color: #96ff00;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.speed-card strong,
.speed-card small {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.45;
}

.speed-card small {
  color: rgba(255, 255, 255, 0.9);
}

.speed-card em {
  bottom: clamp(24px, 3vw, 42px);
  font-size: 1.35rem;
  font-style: normal;
  letter-spacing: 0;
  position: absolute;
  right: clamp(24px, 3vw, 42px);
}

.logo-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: clamp(60px, 12vw, 180px);
  z-index: 2;
}

.logo-marquee::before {
  background: linear-gradient(90deg, #070808, rgba(7, 8, 8, 0));
  left: 0;
}

.logo-marquee::after {
  background: linear-gradient(270deg, #070808, rgba(7, 8, 8, 0));
  right: 0;
}

.logo-marquee__track {
  align-items: center;
  animation: logoMarquee 28s linear infinite;
  display: flex;
  gap: clamp(38px, 6vw, 92px);
  width: max-content;
}

.logo-marquee__item {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 54px;
  justify-content: center;
  min-width: clamp(120px, 12vw, 190px);
}

.logo-marquee__item img {
  filter: brightness(0.78) contrast(0.98);
  max-height: 46px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.82;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.speed-about {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 84px) clamp(28px, 4.8vw, 72px);
}

.speed-about p {
  color: rgba(244, 244, 240, 0.78);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0;
  max-width: 840px;
  text-transform: none;
}

.speed-about--compact p {
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  line-height: 1.46;
  max-width: 660px;
}

.home-about-preview {
  align-items: center;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: clamp(110px, 13vw, 190px) minmax(0, 1fr);
  max-width: 840px;
}

.home-about-preview__image {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.home-about-preview__image img {
  filter: grayscale(0.2) brightness(0.82) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-about-preview__copy .speed-kicker {
  margin: 0 0 14px;
}

.home-about-preview__copy p:not(.speed-kicker) {
  margin: 0;
}

.category-view {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 1px),
    #070808;
  background-size: 64px 100%;
  color: #f4f4f0;
  min-height: 100vh;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4.8vw, 72px) 90px;
}

.category-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.category-logo {
  display: inline-flex;
  height: clamp(50px, 5vw, 72px);
  width: clamp(102px, 10vw, 154px);
}

.category-logo img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.category-view__head {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(0, 760px) auto;
  margin-bottom: 30px;
  padding-bottom: clamp(30px, 4vw, 48px);
}

.category-view__head h1 {
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.4rem, 8.5vw, 9rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.category-view__head p:not(.speed-kicker) {
  color: rgba(244, 244, 240, 0.62);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 620px;
  text-transform: none;
}

.category-view__head .toolbar {
  justify-content: end;
}

.sports-subcategory-nav {
  background: rgba(244, 244, 240, 0.06);
  border-color: rgba(244, 244, 240, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 28px;
  max-width: 100%;
}

.sports-subcategory-nav a {
  color: rgba(244, 244, 240, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sports-subcategory-nav a[aria-pressed="true"] {
  background: #f4f4f0;
  color: #070808;
}

.sports-subcategory-mobile {
  display: none;
}

.category-section-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 34px 0 16px;
}

.category-section-head h2 {
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.category-section-head .speed-kicker {
  margin: 0;
}

.category-gallery-grid--featured {
  margin-bottom: 34px;
}

.category-gallery-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-gallery-card {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  position: relative;
}

.category-gallery-card::after {
  background:
    linear-gradient(0deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.08) 58%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.28), transparent 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.category-gallery-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.category-gallery-card:hover img {
  transform: none;
}

.category-gallery-card span,
.category-gallery-card strong,
.category-gallery-card small,
.category-gallery-card em {
  position: relative;
  z-index: 1;
}

.category-gallery-card span {
  color: #96ff00;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.category-gallery-card strong,
.category-gallery-card small {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.category-gallery-card small {
  color: rgba(255, 255, 255, 0.82);
}

.category-gallery-card em {
  bottom: clamp(20px, 3vw, 34px);
  font-size: 1.35rem;
  font-style: normal;
  letter-spacing: 0;
  position: absolute;
  right: clamp(20px, 3vw, 34px);
}

.about-page {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032), transparent 1px),
    #070808;
  background-size: 64px 100%;
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
  min-height: 100vh;
  overflow: hidden;
  text-transform: uppercase;
}

.about-page__nav {
  position: relative;
}

.about-hero {
  align-items: end;
  display: grid;
  gap: clamp(32px, 5vw, 78px);
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  min-height: calc(100vh - 116px);
  padding: clamp(32px, 5vw, 74px) clamp(28px, 4.8vw, 72px) clamp(44px, 6vw, 88px);
  position: relative;
}

.about-hero::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.68), transparent 56%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-hero__copy,
.about-hero__portrait {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  color: #f2f2ee;
  font-size: clamp(4.2rem, 8.4vw, 9.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0;
}

.about-hero p:not(.speed-kicker),
.about-story__copy p:not(.speed-kicker) {
  color: rgba(244, 244, 240, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  letter-spacing: 0;
  line-height: 1.65;
  margin: 32px 0 38px;
  max-width: 560px;
  text-transform: none;
}

.about-hero__portrait {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
}

.about-hero__portrait::after,
.about-story__image::after {
  background:
    linear-gradient(0deg, rgba(7, 8, 8, 0.62), transparent 50%),
    linear-gradient(90deg, rgba(7, 8, 8, 0.18), transparent 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.about-hero__portrait img,
.about-story__image img {
  filter: grayscale(0.24) brightness(0.78) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-story {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: clamp(30px, 5vw, 78px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  padding: clamp(48px, 6vw, 92px) clamp(28px, 4.8vw, 72px);
}

.about-story__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.about-story__copy {
  align-self: center;
}

.about-story h2 {
  color: #f4f4f0;
  font-size: clamp(2.35rem, 5vw, 5.85rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
  max-width: 860px;
}

.about-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-services span {
  border: 1px solid rgba(244, 244, 240, 0.24);
  color: rgba(244, 244, 240, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 11px 14px;
}

body[data-view="admin"] {
  background: #070808;
  color: #f4f4f0;
}

body[data-view="admin"] .site-header {
  display: none;
}

body[data-view="admin"] #site-root {
  background: #070808;
  min-height: 100vh;
  padding-top: 0;
}

body[data-view="admin"] .admin-shell,
body[data-view="admin"] .login-wrap,
body[data-view="portfolio"] .gallery-view,
body[data-view="portfolio"] .login-wrap,
body[data-view="portfolio"] .section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 1px),
    #070808;
  background-size: 64px 100%;
  color: #f4f4f0;
}

body[data-view="admin"] .admin-sidebar {
  background: #090a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f4f0;
  height: 100vh;
  top: 0;
}

body[data-view="admin"] .admin-sidebar h2,
body[data-view="admin"] .admin-title h1,
body[data-view="admin"] .login-panel h1,
body[data-view="portfolio"] .gallery-view h1,
body[data-view="portfolio"] .login-panel h1 {
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

body[data-view="admin"] .admin-title h1,
body[data-view="portfolio"] .gallery-view h1 {
  font-size: clamp(3.4rem, 8.5vw, 9rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

body[data-view="admin"] .admin-sidebar h2 {
  font-size: 1.25rem;
  letter-spacing: 0.14em;
}

body[data-view="admin"] .admin-tabs button {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(244, 244, 240, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-view="admin"] .admin-home-link {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(244, 244, 240, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-view="admin"] .admin-tabs button[aria-selected="true"],
body[data-view="admin"] .admin-tabs button:hover,
body[data-view="admin"] .admin-home-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

body[data-view="admin"] .panel,
body[data-view="admin"] .login-panel,
body[data-view="portfolio"] .login-panel {
  background: rgba(12, 13, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: #f4f4f0;
}

body[data-view="admin"] .panel h3,
body[data-view="admin"] .field label,
body[data-view="portfolio"] .field label,
body[data-view="admin"] .table th,
body[data-view="portfolio"] .eyebrow,
body[data-view="admin"] .eyebrow {
  color: rgba(244, 244, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-view="admin"] .panel h3 {
  color: #f4f4f0;
}

body[data-view="admin"] .muted,
body[data-view="portfolio"] .muted,
body[data-view="portfolio"] .gallery-view__intro p,
body[data-view="admin"] .metric {
  color: rgba(244, 244, 240, 0.62);
}

body[data-view="admin"] .metric strong {
  color: #f4f4f0;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-weight: 950;
}

body[data-view="admin"] .field input,
body[data-view="admin"] .field select,
body[data-view="admin"] .field textarea,
body[data-view="portfolio"] .field input,
body[data-view="portfolio"] .field select,
body[data-view="portfolio"] .field textarea {
  background: #0c0d0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4f4f0;
}

body[data-view="admin"] .field input:focus,
body[data-view="admin"] .field select:focus,
body[data-view="admin"] .field textarea:focus,
body[data-view="portfolio"] .field input:focus,
body[data-view="portfolio"] .field select:focus,
body[data-view="portfolio"] .field textarea:focus {
  border-color: rgba(244, 244, 240, 0.64);
  outline: none;
}

body[data-view="admin"] .button,
body[data-view="portfolio"] .button,
body[data-view="portfolio"] .segmented,
body[data-view="portfolio"] .icon-button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #f4f4f0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-view="admin"] .button--dark,
body[data-view="admin"] .button--accent,
body[data-view="portfolio"] .button--dark,
body[data-view="portfolio"] .button--accent,
body[data-view="portfolio"] .segmented button[aria-pressed="true"] {
  background: #f4f4f0;
  border-color: #f4f4f0;
  color: #070808;
}

body[data-view="admin"] .button--ghost:hover,
body[data-view="admin"] .button:hover,
body[data-view="portfolio"] .button:hover,
body[data-view="portfolio"] .icon-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

body[data-view="admin"] .dropzone,
body[data-view="admin"] .chip,
body[data-view="portfolio"] .chip {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(244, 244, 240, 0.72);
}

body[data-view="admin"] .dropzone[data-active="true"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 244, 240, 0.54);
}

body[data-view="admin"] .dropzone svg {
  color: #f4f4f0;
}

body[data-view="admin"] .upload-progress__item {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-view="admin"] .upload-progress__head span {
  color: rgba(244, 244, 240, 0.58);
}

body[data-view="admin"] .upload-progress__bar {
  background: rgba(255, 255, 255, 0.12);
}

body[data-view="admin"] .upload-progress__bar span {
  background: #f4f4f0;
}

body[data-view="admin"] .table th,
body[data-view="admin"] .table td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body[data-view="admin"] .table td,
body[data-view="admin"] .table code {
  color: rgba(244, 244, 240, 0.82);
}

body[data-view="admin"] .mini-cover {
  background: #161717;
  filter: grayscale(0.65) contrast(1.05);
}

body[data-view="admin"] .media-preview {
  background: #161717;
}

body[data-view="admin"] .media-preview--empty {
  border-color: rgba(255, 255, 255, 0.18);
}

body[data-view="portfolio"] .gallery-view {
  padding: clamp(34px, 5vw, 72px) clamp(20px, 4.8vw, 72px) 90px;
}

body[data-view="portfolio"] .gallery-view__intro {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  max-width: none;
  padding-bottom: 30px;
}

body[data-view="portfolio"] .toolbar {
  align-content: end;
  grid-column: 1 / -1;
}

.gallery-cover {
  align-self: start;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  max-height: 420px;
  max-width: 560px;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

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

body[data-view="portfolio"] .segmented {
  background: rgba(255, 255, 255, 0.055);
  padding: 3px;
}

body[data-view="portfolio"] .segmented button {
  color: rgba(244, 244, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-view="portfolio"] .media-board {
  max-width: none;
}

body[data-view="portfolio"] .media-tile {
  background: #101111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-view="portfolio"] .media-tile img,
body[data-view="portfolio"] .media-tile video {
  filter: none;
  transition: none;
}

body[data-view="portfolio"] .media-tile:hover img,
body[data-view="portfolio"] .media-tile:hover video {
  filter: none;
  transform: none;
}

body[data-view="portfolio"] .round-action {
  background: rgba(244, 244, 240, 0.94);
  color: #070808;
}

body[data-view="portfolio"] .lightbox {
  background: rgba(7, 8, 8, 0.96);
}

body[data-view="portfolio"] .empty-state {
  background: #070808;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(244, 244, 240, 0.68);
}

body[data-view="admin"] .toast,
body[data-view="portfolio"] .toast {
  background: #f4f4f0;
  color: #070808;
}

@media (max-width: 900px) {
  .speed-nav {
    height: 88px;
  }

  .speed-nav__links {
    gap: 16px;
  }

  .speed-hero {
    min-height: 88vh;
  }

  .speed-hero__copy {
    bottom: 72px;
  }

  .speed-scroll {
    display: none;
  }

  .speed-featured {
    grid-template-columns: 1fr;
  }

  .speed-featured__rail {
    min-height: auto;
  }

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

  .speed-socials {
    margin-top: 42px;
  }
}

@media (max-width: 760px) {
  .speed-nav {
    height: 96px;
    padding: 0 20px;
  }

  .speed-nav__links {
    display: none;
  }

  .speed-menu-button {
    align-items: center;
    background: transparent;
    border: 0;
    display: grid;
    gap: 5px;
    height: 34px;
    justify-items: stretch;
    padding: 0;
    position: relative;
    width: 36px;
    z-index: 7;
  }

  .speed-menu-button span {
    background: #f4f4f0;
    display: block;
    height: 3px;
    width: 100%;
  }

  .speed-mobile-menu {
    background: rgba(7, 8, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: none;
    gap: 0;
    padding: 8px;
    position: absolute;
    right: 20px;
    top: 76px;
    width: 180px;
    z-index: 6;
  }

  .speed-mobile-menu[data-open="true"] {
    display: grid;
  }

  .speed-mobile-menu a {
    color: #f4f4f0;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 14px 12px;
    text-transform: uppercase;
  }

  .speed-mobile-menu a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .speed-nav a:not(.speed-brand) {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .speed-brand {
    height: 62px;
    width: 132px;
  }

  .speed-hero {
    min-height: 760px;
  }

  .speed-hero::before {
    background:
      radial-gradient(circle at 66% 24%, rgba(255, 255, 255, 0.14), transparent 22%),
      linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.54) 42%, rgba(7, 8, 8, 0.08) 72%, rgba(7, 8, 8, 0.48) 100%),
      linear-gradient(0deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.16) 42%, rgba(7, 8, 8, 0.62) 100%);
  }

  .speed-hero__image {
    background-position: 18% 12%;
    background-size: cover;
    transform: scale(1.02);
  }

  .speed-hero__copy {
    bottom: 72px;
    left: 24px;
    right: 24px;
    max-width: 350px;
  }

  .speed-hero h1 {
    font-size: clamp(3.25rem, 14.2vw, 4.05rem);
    line-height: 0.9;
    max-width: 340px;
  }

  .speed-kicker {
    margin-bottom: 18px;
  }

  .speed-intro {
    font-size: 1rem;
    margin: 22px 0 34px;
    max-width: 310px;
  }

  .speed-scroll {
    bottom: 82px;
    display: grid;
    right: 24px;
  }

  .speed-scroll span {
    font-size: 0.66rem;
  }

  .speed-scroll i {
    height: 62px;
  }

  .speed-featured {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px 70px;
  }

  .speed-featured__rail {
    display: block;
    padding: 0;
  }

  .speed-featured__rail p {
    font-size: 0.86rem;
    letter-spacing: 0.2em;
    margin: 0 0 18px;
  }

  .speed-featured__rail ol,
  .speed-featured__rail .speed-socials {
    display: none;
  }

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

  .speed-card {
    aspect-ratio: 1 / 1.08;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 16px 14px;
  }

  .speed-card span {
    font-size: 0.64rem;
    margin-bottom: 6px;
  }

  .speed-card strong,
  .speed-card small {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    line-height: 1.34;
  }

  .speed-card em {
    bottom: 14px;
    font-size: 1.25rem;
    right: 14px;
  }

  .speed-mobile-socials {
    align-items: center;
    display: flex;
    gap: 52px;
    justify-content: center;
    margin-top: 72px;
  }

  .speed-mobile-socials a {
    color: rgba(244, 244, 240, 0.74);
    display: inline-flex;
    font-size: 2.1rem;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    letter-spacing: 0;
    width: 36px;
  }

  .speed-mobile-socials svg {
    height: 34px;
    width: 34px;
  }

  .speed-mobile-socials .social-icon {
    height: 34px;
    width: 34px;
  }

  .speed-about {
    align-items: start;
    flex-direction: column;
    padding-inline: 20px;
  }

  .logo-marquee {
    padding: 14px 0;
  }

  .logo-marquee__track {
    gap: 34px;
  }

  .logo-marquee__item {
    height: 42px;
    min-width: 108px;
  }

  .logo-marquee__item img {
    max-height: 34px;
    max-width: 108px;
  }

  .home-about-preview {
    align-items: start;
    gap: 20px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-about-preview__copy .speed-kicker {
    margin-bottom: 10px;
  }

  .about-page__nav {
    position: relative;
  }

  .about-hero {
    gap: 30px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 20px 56px;
  }

  .about-hero h1 {
    font-size: clamp(3.7rem, 16vw, 4.65rem);
    line-height: 0.9;
  }

  .about-hero p:not(.speed-kicker),
  .about-story__copy p:not(.speed-kicker) {
    font-size: 1rem;
    margin: 24px 0 32px;
  }

  .about-hero__portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-story {
    gap: 34px;
    grid-template-columns: 1fr;
    padding: 52px 20px 72px;
  }

  .about-story__image {
    aspect-ratio: 1 / 1.16;
  }

  .about-story h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
    line-height: 0.94;
  }

  .category-view {
    overflow-x: hidden;
    padding: 28px 16px 70px;
  }

  .category-topbar {
    margin-bottom: 34px;
  }

  .category-logo {
    height: 62px;
    width: 132px;
  }

  .category-back {
    font-size: 0.66rem;
    gap: 10px;
  }

  .category-view__head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .category-view__head .toolbar {
    justify-content: start;
    width: 100%;
  }

  .sports-subcategory-nav {
    display: none;
  }

  .sports-subcategory-mobile {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    margin: 0 0 24px;
  }

  .sports-subcategory-mobile__featured,
  .sports-subcategory-menu summary {
    align-items: center;
    background: rgba(244, 244, 240, 0.06);
    border: 1px solid rgba(244, 244, 240, 0.16);
    color: rgba(244, 244, 240, 0.72);
    display: flex;
    font-size: 0.66rem;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.12em;
    min-height: 42px;
    padding: 0 12px;
    text-align: center;
    text-transform: uppercase;
  }

  .sports-subcategory-mobile__featured[aria-pressed="true"],
  .sports-subcategory-menu[data-active="true"] summary {
    background: #f4f4f0;
    color: #070808;
  }

  .sports-subcategory-menu {
    position: relative;
  }

  .sports-subcategory-menu summary {
    cursor: pointer;
    list-style: none;
  }

  .sports-subcategory-menu summary::-webkit-details-marker {
    display: none;
  }

  .sports-subcategory-menu div {
    background: #111211;
    border: 1px solid rgba(244, 244, 240, 0.16);
    display: grid;
    left: 0;
    max-height: 52vh;
    overflow: auto;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    z-index: 5;
  }

  .sports-subcategory-menu a {
    color: rgba(244, 244, 240, 0.74);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 14px 12px;
    text-align: center;
    text-transform: uppercase;
  }

  .sports-subcategory-menu a[aria-pressed="true"] {
    background: #f4f4f0;
    color: #070808;
  }

  .category-section-head {
    align-items: start;
    display: grid;
    gap: 8px;
  }

  .category-view__head h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .category-view__head p:not(.speed-kicker) {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .category-gallery-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-gallery-card {
    aspect-ratio: 1 / 1.12;
    border-radius: 6px;
    padding: 15px 13px;
  }

  .category-gallery-card strong,
  .category-gallery-card small {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    line-height: 1.34;
  }

  .category-gallery-card em {
    bottom: 13px;
    right: 13px;
  }

  body[data-view="portfolio"] .gallery-view__intro {
    grid-template-columns: 1fr;
    min-height: 78vh;
    overflow: hidden;
    padding: 118px 0 32px;
    position: relative;
  }

  body[data-view="portfolio"] .gallery-view h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  body[data-view="portfolio"] .gallery-view__intro p {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  body[data-view="portfolio"] .media-board[data-layout="grid"],
  body[data-view="portfolio"] .media-board[data-layout="cinematic"],
  body[data-view="portfolio"] .media-board[data-layout="fullscreen"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-view="portfolio"] .media-board[data-layout="masonry"] {
    column-gap: var(--gallery-gap, 12px);
    columns: 2 0;
  }

  body[data-view="portfolio"] .media-board[data-layout="fullscreen"] .media-tile,
  body[data-view="portfolio"] .media-board[data-layout="cinematic"] .media-tile:first-child {
    aspect-ratio: 4 / 5;
    grid-row: auto;
  }

  body[data-view="portfolio"] .media-tile__tools {
    opacity: 1;
    transform: none;
  }

  body[data-view="portfolio"] .media-tile[data-selected="true"] .media-tile__tools {
    opacity: 1;
    transform: none;
  }

  body[data-view="portfolio"] .toolbar {
    grid-column: auto;
    position: relative;
    z-index: 1;
  }

  body[data-view="portfolio"] .segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    width: 100%;
  }

  body[data-view="portfolio"] .segmented button {
    font-size: 0.72rem;
    min-width: 0;
    padding: 0 8px;
    text-align: center;
  }

  body[data-view="portfolio"] .media-board {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

  .gallery-load-more {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .gallery-cover {
    display: none;
  }

  body[data-view="portfolio"] .gallery-view__intro::before,
  body[data-view="portfolio"] .gallery-view__intro::after {
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
  }

  body[data-view="portfolio"] .gallery-view__intro::before {
    background: var(--gallery-cover) center / cover no-repeat;
    filter: grayscale(0.2) brightness(0.56) contrast(1.04);
    z-index: 0;
  }

  body[data-view="portfolio"] .gallery-view__intro::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.46) 54%, rgba(7, 8, 8, 0.22)),
      linear-gradient(0deg, #070808 0%, rgba(7, 8, 8, 0.14) 46%, rgba(7, 8, 8, 0.56) 100%);
    z-index: 0;
  }

  body[data-view="portfolio"] .gallery-view__intro > div:first-child {
    position: relative;
    z-index: 1;
  }

  body[data-view="admin"] .admin-sidebar {
    height: auto;
  }
}

@media (min-width: 641px) {
  .speed-nav {
    height: 116px;
    padding: 0 clamp(28px, 4.8vw, 72px);
  }

  .speed-nav__links {
    display: flex;
  }

  .speed-menu-button,
  .speed-mobile-menu {
    display: none;
  }

  .speed-brand {
    height: clamp(50px, 5vw, 72px);
    width: clamp(102px, 10vw, 154px);
  }

  .speed-hero {
    min-height: 93vh;
  }

  .speed-hero__image {
    background-position: -60% 45%;
    background-size: 115% auto;
    transform: scale(1.03);
  }

  .speed-hero__copy {
    bottom: clamp(88px, 13vh, 164px);
    left: clamp(28px, 4.8vw, 72px);
    max-width: 590px;
    right: auto;
  }

  .speed-hero h1 {
    font-size: clamp(3.9rem, 6.8vw, 7.25rem);
    line-height: 0.86;
    max-width: none;
  }

  .speed-intro {
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    margin: 34px 0 42px;
    max-width: 330px;
  }

  .speed-scroll {
    bottom: 9vh;
    display: grid;
    right: clamp(28px, 4.8vw, 72px);
  }

  .speed-featured {
    display: grid;
    grid-template-columns: minmax(180px, 23vw) minmax(0, 1fr);
    min-height: 92vh;
    padding: 0;
  }

  .speed-featured__rail {
    display: flex;
    padding: clamp(42px, 5vw, 68px) clamp(26px, 4.6vw, 70px);
  }

  .speed-featured__rail ol,
  .speed-featured__rail .speed-socials {
    display: grid;
  }

  .speed-featured__rail .speed-socials {
    display: flex;
  }

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

  .speed-card {
    aspect-ratio: 1.16 / 1;
    border-radius: 0;
    padding: clamp(24px, 3vw, 42px);
  }

  .speed-mobile-socials {
    display: none;
  }
}
