@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Epilogue";
  src: url("/assets/fonts/epilogue-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f7f4ef;
  --paper-soft: #eee9e1;
  --ink: #1b1a18;
  --deep: #26231f;
  --ember: #b64027;
  --warm-grey: #6e685f;
  --paper-on-deep: #f7f4ef;
  --rule: rgba(27, 26, 24, 0.18);
  --content: min(1180px, calc(100vw - 48px));
  --serif: "Fraunces", Georgia, serif;
  --display-name: "Epilogue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--ember);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid var(--rule);
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display-name);
  font-size: 1.42rem;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 2px;
  background: var(--ember);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-portal {
  padding: 10px 15px;
  border: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-portal:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: auto;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle::after {
  content: "Menu";
}

.menu-toggle[aria-expanded="true"]::after {
  content: "Close";
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 24px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { top: -7px; }
.menu-toggle-lines::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
  width: var(--content);
  min-height: min(830px, calc(100svh - 78px));
  margin: 0 auto;
  padding: 42px 0 64px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-soft);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(27, 26, 24, 0.08);
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--ember);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 390;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 7ch;
  font-family: var(--display-name);
  font-size: clamp(5rem, 9vw, 9.4rem);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-role {
  margin: 32px 0 6px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 360;
  letter-spacing: -0.02em;
}

.hero-location {
  margin: 0;
  color: var(--warm-grey);
  font-size: 0.83rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--ember);
  background: var(--ember);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  color: var(--paper);
}

.button-light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  border-color: var(--ember);
  color: var(--paper);
}

.button-light-outline {
  border-color: rgba(247, 244, 239, 0.58);
  color: var(--paper);
  background: transparent;
}

.button-light-outline:hover {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.section {
  padding: clamp(82px, 11vw, 150px) 0;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.section-rule {
  border-top: 1px solid var(--rule);
}

.section-deep {
  color: var(--paper-on-deep);
  background: var(--deep);
}

.section-heading-row {
  margin-bottom: clamp(36px, 5vw, 66px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-number {
  color: var(--warm-grey);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 390;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-note {
  max-width: 38ch;
  margin: 8px 0 0;
  color: var(--warm-grey);
  font-size: 0.95rem;
}

.text-link {
  position: relative;
  display: inline-block;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--ember);
  transition: transform 180ms ease;
  transform-origin: right;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--paper);
  background: #111;
}

.video-facade > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.83;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.video-facade:hover > img {
  opacity: 0.68;
  transform: scale(1.02);
}

.video-facade iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.play-icon {
  width: 76px;
  height: 76px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 244, 239, 0.7);
  border-radius: 50%;
  background: rgba(27, 26, 24, 0.66);
  backdrop-filter: blur(8px);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.play-button:hover .play-icon {
  background: var(--ember);
  transform: scale(1.05);
}

.video-meta {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.video-meta h2,
.video-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 430;
}

.video-meta p {
  margin: 0;
  color: var(--warm-grey);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-reel {
  max-width: 1020px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(420px, 1.35fr);
  gap: clamp(50px, 9vw, 140px);
}

.about-copy p {
  max-width: 61ch;
  margin: 0 0 1.2em;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  font-weight: 360;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.about-copy .text-link {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.home-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  align-items: end;
  gap: clamp(12px, 2vw, 24px);
}

.home-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.home-gallery figure:nth-child(1) { aspect-ratio: 3 / 2; }
.home-gallery figure:nth-child(2) { aspect-ratio: 3 / 4; }
.home-gallery figure:nth-child(3) { aspect-ratio: 3 / 2; }

.home-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-gallery figure:hover img {
  transform: scale(1.02);
}

.home-gallery-cta {
  margin-top: 30px;
  text-align: right;
}

.resume-callout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
}

.resume-callout p {
  max-width: 52ch;
  color: #c9c3b9;
  font-size: 1.05rem;
}

.section-deep .eyebrow {
  color: #e6795d;
}

.section-deep .video-meta p {
  color: #aca59b;
}

.resume-callout .section-title {
  color: var(--paper);
}

.contact-band {
  text-align: center;
}

.contact-band .eyebrow {
  margin-bottom: 28px;
}

.contact-band h2 {
  max-width: 11ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  font-weight: 380;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.contact-band p {
  max-width: 52ch;
  margin: 28px auto 0;
  color: var(--warm-grey);
  font-size: 1.05rem;
}

.section-deep.contact-band p {
  color: #c9c3b9;
}

.contact-band .actions {
  justify-content: center;
}

.page-hero {
  width: var(--content);
  min-height: 470px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0 70px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 50px;
}

.page-title {
  font-size: clamp(5rem, 12vw, 11rem);
}

.page-intro {
  max-width: 40ch;
  margin: 0 0 10px auto;
  color: var(--warm-grey);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 360;
  line-height: 1.42;
}

.reel-feature {
  width: min(1060px, calc(100vw - 48px));
  margin: 0 auto;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 7vw, 90px) clamp(20px, 3vw, 38px);
}

.reel-card .video-meta {
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: clamp(14px, 2vw, 28px);
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5),
.gallery-item:nth-child(8) {
  margin-top: 70px;
}

.gallery-open {
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: zoom-in;
}

.gallery-open img {
  width: 100%;
  height: auto;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-open:hover img {
  transform: scale(1.02);
}

.lightbox {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  height: min(86vh, 820px);
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(18, 17, 15, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 244, 239, 0.6);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(27, 26, 24, 0.66);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.resume-page {
  background: var(--paper-soft);
}

.resume-shell {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 0;
}

.resume-sheet {
  min-height: 660px;
  padding: clamp(38px, 7vw, 86px);
  border: 1px solid rgba(27, 26, 24, 0.12);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(38, 35, 31, 0.08);
}

.resume-sheet-head {
  padding-bottom: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}

.resume-sheet h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7.3rem);
  font-weight: 390;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.resume-tools {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}

.resume-tools p {
  max-width: 38rem;
  margin: 0;
  color: var(--warm-grey);
}

.resume-tools .actions {
  margin-top: 0;
  flex-shrink: 0;
}

.resume-content {
  padding-top: clamp(42px, 6vw, 72px);
}

.resume-details {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 36px;
}

.resume-details div,
.resume-skills div {
  display: grid;
  gap: 5px;
}

.resume-details dt,
.resume-skills dt {
  color: var(--warm-grey);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resume-details dd,
.resume-skills dd {
  margin: 0;
}

.resume-section {
  margin-top: clamp(52px, 7vw, 82px);
}

.resume-section h2 {
  margin: 0 0 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 390;
  letter-spacing: -0.03em;
}

.resume-table-wrap {
  overflow-x: auto;
}

.resume-section table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.resume-section th {
  padding: 0 18px 12px 0;
  color: var(--warm-grey);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resume-section td {
  padding: 12px 18px 12px 0;
  border-top: 1px solid var(--rule);
  vertical-align: top;
}

.resume-section th:nth-child(1),
.resume-section td:nth-child(1) {
  width: 35%;
}

.resume-section th:nth-child(2),
.resume-section td:nth-child(2) {
  width: 30%;
}

.resume-skills {
  margin: 0;
  display: grid;
  gap: 22px;
}

.resume-skills div {
  grid-template-columns: minmax(110px, 0.2fr) minmax(0, 1fr);
  gap: 24px;
}

.resume-training {
  margin: 0;
  padding: 0;
  list-style: none;
}

.resume-training li {
  padding: 13px 0;
  border-top: 1px solid var(--rule);
}

.resume-training li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-layout {
  width: var(--content);
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(76px, 11vw, 145px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.contact-layout h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 10vw, 9.6rem);
  font-weight: 380;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.contact-copy {
  padding-top: 34px;
  border-top: 1px solid var(--rule);
}

.contact-copy p {
  margin: 0 0 28px;
  color: var(--warm-grey);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 360;
  line-height: 1.45;
}

.contact-meta {
  margin-top: 34px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--rule);
  color: var(--warm-grey);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  color: #c9c3b9;
  background: var(--deep);
}

.footer-inner {
  width: var(--content);
  min-height: 126px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: var(--paper);
  font-family: var(--display-name);
  font-size: 1.25rem;
  font-optical-sizing: auto;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-copy {
  color: #948d83;
  font-size: 0.72rem;
}

.not-found {
  min-height: calc(100svh - 204px);
  padding: 80px 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 380;
  line-height: 0.8;
}

.not-found p {
  color: var(--warm-grey);
}

.reveal-eligible {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --content: min(100% - 36px, 720px);
  }

  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle-lines {
    display: none;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 52px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    padding: 5px 0;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 12vw, 4.6rem);
    font-weight: 390;
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-transform: none;
  }

  .nav-link::after {
    bottom: 0;
  }

  .nav-portal {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    padding: 24px 0 76px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-copy {
    padding: 0 4px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(4.1rem, 20vw, 7rem);
  }

  .hero-role {
    margin-top: 24px;
  }

  .section-heading-row,
  .video-meta,
  .resume-sheet-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid,
  .resume-callout,
  .page-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .resume-callout {
    gap: 36px;
  }

  .about-copy p {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .page-hero {
    min-height: 390px;
    padding-bottom: 52px;
    gap: 34px;
  }

  .page-intro {
    margin: 0;
  }

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

  .gallery-item {
    grid-column: auto;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8) {
    margin-top: 45px;
  }

  .contact-layout {
    min-height: 0;
    gap: 70px;
  }

  .contact-copy {
    max-width: 590px;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100% - 28px);
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 14px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .home-gallery {
    grid-template-columns: 1fr;
  }

  .home-gallery figure:nth-child(n) {
    aspect-ratio: 4 / 5;
  }

  .home-gallery figure:nth-child(1) img,
  .home-gallery figure:nth-child(3) img {
    object-position: center;
  }

  .home-gallery-cta {
    text-align: left;
  }

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

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

  .gallery-item:nth-child(n) {
    margin-top: 0;
  }

  .resume-shell {
    width: 100%;
    padding: 0;
  }

  .resume-sheet {
    min-height: 700px;
    padding: 72px 22px;
    border: 0;
    box-shadow: none;
  }

  .resume-tools {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .resume-skills div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-layout h1 {
    font-size: clamp(4.4rem, 22vw, 7rem);
  }

  .contact-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    min-height: 180px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-eligible {
    opacity: 1;
    transform: none;
  }
}
