:root {
  --accent: #b87044;
  --accent-dark: #835238;
  --paper: #f7f4ef;
  --paper-strong: #fffdf9;
  --ink: #1f1b18;
  --muted: #736b63;
  --line-color: #d7cec4;
  --line: color-mix(in srgb, var(--line-color) 72%, transparent);
  --soft: rgba(255, 255, 255, 0.72);
  --glass: #fffdf9;
  --button-text: #ffffff;
  --body-text: #4d4640;
  --sage: #6f7e6b;
  --blue: #476577;
  --shadow: 0 22px 70px rgba(54, 44, 35, 0.09);
  --radius: 8px;
  --body-font: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
  --heading-font: "IBM Plex Sans Arabic", "Inter", system-ui, sans-serif;
  --font-scale: 1;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(31, 27, 24, 0.035) 1px, transparent 1px) center / 112px 112px,
    var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: calc(16px * var(--font-scale));
  letter-spacing: 0;
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  transform: translate(calc(var(--cursor-x, -999px) - 50%), calc(var(--cursor-y, -999px) - 50%));
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 65%);
  filter: blur(10px);
  transition: transform 140ms ease-out, opacity 240ms ease;
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(49, 39, 31, 0.06);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 700;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.topbar nav a {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.topbar nav a:hover {
  background: rgba(184, 112, 68, 0.1);
  color: var(--ink);
}

main {
  padding: 58px 0 86px;
}

@media (min-width: 861px) {
  .hero {
    padding-top: 104px;
  }

  .hero-cover {
    left: 50%;
    right: auto;
    top: -18px;
    width: 100vw;
    height: 340px;
    transform: translateX(-50%);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

.hero {
  position: relative;
  padding-top: 104px;
}

.hero-cover {
  display: none;
  position: absolute;
  inset: 0 0 auto;
  height: 245px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #e6ddd3;
  box-shadow: 0 30px 90px rgba(54, 44, 35, 0.1);
}

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

.hero-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 27, 24, 0.02), color-mix(in srgb, var(--paper) 38%, transparent)),
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 55%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 42px 38px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 76%, transparent);
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: var(--shadow);
}

.profile-button {
  position: absolute;
  top: -82px;
  left: 50%;
  width: 144px;
  height: 144px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--paper-strong);
  cursor: pointer;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--paper-strong);
  box-shadow: 0 18px 50px rgba(54, 44, 35, 0.18);
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1), box-shadow 420ms ease, filter 420ms ease;
}

.profile-prompt {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--glass) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.35);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(54, 44, 35, 0.12);
  opacity: 0;
  transform: translate(-50%, 10px) scale(0.94);
  transition: opacity 340ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
  white-space: nowrap;
}

.profile-prompt:after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 10px;
  height: 10px;
  background: inherit;
  border-left: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  transform: translateX(-50%) rotate(-45deg);
}

.profile-button:hover .profile-image,
.profile-button:focus-visible .profile-image {
  transform: translateY(-3px) scale(1.035);
  filter: saturate(1.06) contrast(1.02);
  box-shadow: 0 24px 70px rgba(54, 44, 35, 0.23);
}

.profile-button:hover .profile-prompt,
.profile-button:focus-visible .profile-prompt,
.profile-button.prompt-once .profile-prompt {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
}

h1 {
  margin-bottom: 6px;
  font-size: 32px;
  line-height: 1.25;
}

h2 {
  font-size: 31px;
  line-height: 1.5;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

.role {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 17px;
}

.lead {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--body-text);
  font-size: 18px;
  line-height: 2;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.stat {
  min-height: 78px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 68%, transparent);
  backdrop-filter: blur(16px) saturate(1.25);
}

.stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 22px;
  color: var(--ink);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  right: -58%;
  bottom: 0;
  width: 54%;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 48%, transparent 100%);
  transform: skewX(-18deg);
  transition: right 560ms ease;
  pointer-events: none;
}

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

.button:hover:before {
  right: 108%;
}

.button.primary {
  background: var(--accent);
  color: var(--button-text);
  border-color: transparent;
}

.button.ghost {
  background: var(--paper-strong);
  color: var(--ink);
}

.statement,
.section,
.story,
.contact {
  margin-top: 86px;
}

.statement {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.statement h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

.statement p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

#journey .section-heading {
  justify-content: flex-start;
  text-align: right;
}

.service-grid,
.featured-grid,
.works-grid,
.media-grid {
  display: grid;
  gap: 14px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.quiet-item,
.timeline-item,
.link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 66%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: 22px;
}

.service-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), background 220ms ease;
}

.service-card:hover .icon {
  transform: translateY(-4px) rotate(-7deg) scale(1.06);
  background: var(--accent);
}

.service-card > *,
.link-card > * {
  position: relative;
  z-index: 3;
}

.service-card p,
.quiet-item p,
.timeline-item p,
.work-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.85;
}

.featured-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.work-card,
.media-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 78%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 12px 36px rgba(54, 44, 35, 0.06);
}

.motion-card {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(0) scale(1);
  transform-style: preserve-3d;
  transition:
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    opacity 320ms ease,
    filter 320ms ease,
    border-color 320ms ease,
    box-shadow 420ms ease,
    background 320ms ease;
  will-change: transform;
}

.motion-card:before,
.motion-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 360ms ease, transform 620ms ease;
}

.motion-card:before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.58), transparent 32%);
  mix-blend-mode: screen;
}

.motion-card:after {
  width: 45%;
  inset-inline-start: auto;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(170%) skewX(-18deg);
}

.motion-card:hover {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-8px) scale(1.015);
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
  box-shadow: 0 26px 70px rgba(54, 44, 35, 0.14);
}

.motion-card:hover:before {
  opacity: 0.95;
}

.motion-card:hover:after {
  opacity: 1;
  transform: translateX(-260%) skewX(-18deg);
}

.feature-card img,
.feature-card video,
.work-card img,
.work-card video {
  width: 100%;
  height: 238px;
  object-fit: cover;
  background: #eee6dd;
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1), filter 420ms ease;
}

.feature-card:hover img,
.feature-card:hover video,
.work-card:hover img,
.work-card:hover video {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.03);
}

.feature-card .body,
.work-card .body,
.media-card .body {
  position: relative;
  z-index: 3;
  padding: 20px;
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.feature-card:hover .body,
.work-card:hover .body,
.media-card:hover .body {
  transform: translateY(-2px);
}

.featured-grid:has(.feature-card:hover) .feature-card:not(:hover),
.works-grid:has(.work-card:hover) .work-card:not(:hover),
.media-grid:has(.media-card:hover) .media-card:not(:hover) {
  opacity: 0.54;
  filter: saturate(0.75) brightness(0.98);
  transform: scale(0.985);
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184, 112, 68, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.works-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  cursor: pointer;
  text-align: right;
  padding: 0;
  color: inherit;
  font: inherit;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--body-text);
  background: rgba(111, 126, 107, 0.14);
  font-size: 12px;
}

.work-card .tag-row span,
.feature-card .pill {
  transition: transform 320ms ease, background 320ms ease;
}

.work-card:hover .tag-row span,
.feature-card:hover .pill {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--accent) 18%, white);
}

.story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  padding: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-copy p {
  color: var(--body-text);
  font-size: 18px;
  line-height: 2.1;
}

blockquote {
  margin: 26px 0 0;
  padding: 20px 22px;
  border-right: 4px solid var(--accent);
  background: color-mix(in srgb, var(--glass) 70%, transparent);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.timeline,
.quiet-list {
  display: grid;
  gap: 12px;
}

.timeline-item,
.quiet-item {
  transition: transform 360ms cubic-bezier(.16, 1, .3, 1), border-color 260ms ease, background 260ms ease;
  padding: 20px;
}

.timeline-item {
  position: relative;
}

.timeline-item:before {
  content: "";
  position: absolute;
  top: 24px;
  right: -7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(184, 112, 68, 0.15);
}

.timeline-item:hover,
.quiet-item:hover {
  transform: translateX(-4px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  background: rgba(255, 253, 249, 0.92);
}

.timeline-item h3,
.quiet-item h3 {
  margin-bottom: 4px;
}

.timeline-item .period,
.quiet-item .period {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 56%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
}

.skill-cloud span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  background: color-mix(in srgb, var(--glass) 86%, transparent);
  color: var(--body-text);
}

.media-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.media-card:first-child {
  grid-row: span 2;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #eee6dd;
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1), filter 420ms ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.media-card:first-child img,
.media-card:first-child video {
  height: 520px;
}

.contact {
  padding: 54px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
}

.contact h2 {
  width: min(700px, 100%);
  margin-inline: auto;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.link-card {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.link-card.motion-card:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.28);
}

.links-page {
  min-height: 100vh;
}

.links-shell {
  width: min(620px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.back-home {
  min-height: 40px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--glass) 72%, transparent);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 72%, transparent);
  backdrop-filter: blur(24px) saturate(1.35);
  box-shadow: var(--shadow);
}

.links-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  text-align: center;
}

.links-hero:before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 180px;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 65%);
  pointer-events: none;
}

.links-hero > * {
  position: relative;
  z-index: 1;
}

.links-hero img {
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  border: 7px solid var(--paper-strong);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(54, 44, 35, 0.18);
}

.links-hero h1 {
  margin-bottom: 8px;
}

.links-hero p:last-child {
  margin: 0 auto;
  max-width: 460px;
  color: var(--body-text);
  line-height: 1.9;
}

.linktree-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.linktree-button {
  min-height: 68px;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 74%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(54, 44, 35, 0.06);
}

.linktree-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
}

.linktree-button strong,
.linktree-button small {
  display: block;
}

.linktree-button small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 720ms cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

dialog {
  width: min(760px, calc(100% - 28px));
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}

dialog::backdrop {
  background: rgba(31, 27, 24, 0.38);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.dialog-media {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.dialog-content {
  padding: 26px;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 720px);
  }

  .service-grid,
  .featured-grid,
  .works-grid,
  .media-grid,
  .split,
  .story {
    grid-template-columns: 1fr;
  }

  .media-card:first-child {
    grid-row: auto;
  }

  .media-card:first-child img,
  .media-card:first-child video,
  .work-card video,
  .media-card img,
  .media-card video {
    height: 320px;
  }

  .section-heading {
    display: block;
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-aura {
    display: none;
  }

  .motion-card,
  .motion-card:hover,
  .featured-grid:has(.feature-card:hover) .feature-card:not(:hover),
  .works-grid:has(.work-card:hover) .work-card:not(:hover),
  .media-grid:has(.media-card:hover) .media-card:not(:hover) {
    transform: none;
    filter: none;
    opacity: 1;
  }

  .motion-card:before,
  .motion-card:after,
  .button:before {
    display: none;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    border-radius: 999px;
  }

  .topbar nav a {
    white-space: nowrap;
    font-size: 13px;
  }

  main {
    padding-top: 34px;
  }

  .hero {
    padding-top: 86px;
  }

  .hero-cover {
    height: 190px;
  }

  .hero-card {
    width: calc(100% - 16px);
    padding: 70px 20px 28px;
  }

  .profile-button {
    width: 126px;
    height: 126px;
    top: -70px;
  }

  .profile-prompt {
    bottom: calc(100% + 9px);
  }

  h1 {
    font-size: 27px;
  }

  h2,
  .statement h2 {
    font-size: 25px;
  }

  .lead {
    font-size: 16px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .statement,
  .section,
  .story,
  .contact {
    margin-top: 62px;
  }

  .story,
  .contact {
    padding: 28px 18px;
  }

  .feature-card img,
  .feature-card video,
  .work-card img,
  .work-card video,
  .media-card img,
  .media-card video,
  .media-card:first-child img,
  .media-card:first-child video {
    height: 270px;
  }
}
