:root {
  --paper: #f4f0e8;
  --paper-light: #fbf9f4;
  --ink: #23221f;
  --muted: #69655e;
  --wine: #6d2337;
  --wine-dark: #40111f;
  --sage: #73806f;
  --gold: #b99455;
  --line: rgba(35, 34, 31, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, a { font: inherit; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  background: rgba(244, 240, 232, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(40, 30, 25, .05);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 17px;
}
.brand-name { font-family: var(--serif); font-size: 18px; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 36px); }
.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .06em;
}
.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-contact { padding: 10px 18px; color: #fff; background: var(--wine); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px 0; background: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  align-items: stretch;
  padding: 78px clamp(22px, 5vw, 72px) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 22%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(109, 35, 55, .12);
  border-radius: 50%;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 6vw 10vh 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8.1vw, 132px);
  font-weight: 400;
  line-height: .85;
  letter-spacing: -.055em;
}
.hero-role {
  margin: 24px 0 34px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 36px);
  font-style: italic;
}
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 42px; }
.hero-facts span { padding: 0 17px; border-right: 1px solid var(--line); font-size: 13px; }
.hero-facts span:first-child { padding-left: 0; }
.hero-facts span:last-child { border: 0; }
.hero-facts strong { font-weight: inherit; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--wine); }
.button-ghost:hover { color: #fff; background: var(--wine); }
.hero-portrait { position: relative; min-width: 0; min-height: 700px; background: #d5cbc1; overflow: hidden; }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(28, 12, 18, .2));
  pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 100px;
  height: 100px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.hero-stamp .stamp-age { font-family: var(--serif); font-size: 22px; }
.hero-stamp .stamp-age b { font-weight: 400; }
.hero-stamp small { text-transform: uppercase; letter-spacing: .18em; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 5vw, 72px);
  bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue span { display: inline-block; margin-left: 7px; color: var(--wine); animation: bob 1.7s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

.section { padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px); }
.section-heading { max-width: 720px; margin-bottom: 58px; }
.section-heading h2, .about-section h2, .skills-section h2, .reading-section h2, .contacts-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.section-heading > p:last-child, .heading-row > p { color: var(--muted); max-width: 520px; }
.heading-row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.heading-row > p { max-width: 390px; margin: 0 0 9px; }

.showreel-section { background: var(--wine-dark); color: #fff; }
.showreel-section .eyebrow { color: #dcb9a7; }
.showreel-section .section-heading > p:last-child { color: rgba(255,255,255,.66); }
.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: #21191b;
  border: 1px solid rgba(255,255,255,.12);
}
.showreel-frame video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.showreel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(46,18,28,.92), rgba(46,18,28,.42)),
    url("Фото/Портфолио/20260215-020A2764.jpg") center 35% / cover;
}
.play-symbol { display: grid; width: 76px; height: 76px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; padding-left: 5px; }
.showreel-placeholder strong { display: block; font-family: var(--serif); font-size: clamp(25px, 3vw, 44px); font-weight: 400; }
.showreel-placeholder span { color: rgba(255,255,255,.66); }

.about-section { position: relative; display: grid; grid-template-columns: .32fr .8fr 1fr; gap: clamp(25px, 5vw, 80px); background: var(--paper-light); }
.about-number { color: rgba(109,35,55,.12); font-family: var(--serif); font-size: clamp(80px, 12vw, 180px); line-height: .75; }
.about-copy { padding-top: 48px; color: var(--muted); max-width: 610px; }
.about-copy .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(22px, 2.4vw, 34px); line-height: 1.35; }

.portfolio-section { background: #ddd2c6; }
.portrait-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 310px; gap: 16px; }
.portrait-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #cabdb1;
  cursor: zoom-in;
}
.portrait-card:first-child { grid-row: span 2; }
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .6s ease; }
.portrait-card:hover img { transform: scale(1.035); }
.portrait-card.portrait-eyes img { object-position: center 31%; transform: scale(1.82); }
.portrait-card.portrait-eyes:hover img { transform: scale(1.88); }
.portrait-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(25,20,19,.54);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.experience-section { background: var(--paper); }
.project-featured { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); min-height: 720px; background: var(--paper-light); }
.project-visual { position: relative; overflow: hidden; }
.project-visual img { width: 100%; height: 100%; object-fit: cover; }
.project-year { position: absolute; left: 22px; bottom: 22px; padding: 8px 14px; color: #fff; background: rgba(35,22,22,.55); border-radius: 999px; backdrop-filter: blur(6px); }
.project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 6vw, 90px); }
.project-type { margin: 0 0 14px; color: var(--wine); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.project h3, .project-card h3, .video-project h3, .awards-project h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(35px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1;
}
.project-role { color: var(--wine); font-family: var(--serif); font-size: 21px; font-style: italic; }
.audience-note {
  margin: 22px 0 4px;
  padding: 15px 18px;
  color: var(--wine-dark);
  background: rgba(185,148,85,.14);
  border-left: 3px solid var(--gold);
}
.audience-note strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.text-link { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin-top: 16px; padding-bottom: 5px; border-bottom: 1px solid var(--wine); color: var(--wine); text-decoration: none; }
.stage-carousel { position: relative; margin: 12px 0 90px; padding: 0 76px; }
.stage-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.stage-gallery::-webkit-scrollbar { display: none; }
.stage-gallery button { aspect-ratio: 4 / 5; padding: 0; overflow: hidden; border: 0; background: #d8d0c8; cursor: zoom-in; }
.stage-gallery button { scroll-snap-align: start; }
.stage-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.stage-gallery button:hover img { transform: scale(1.04); }
.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--wine);
  border: 2px solid var(--wine);
  border-radius: 50%;
  box-shadow: 0 9px 25px rgba(64,17,31,.22);
  font-size: 27px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, opacity .2s ease;
}
.carousel-arrow:hover { color: var(--wine); background: #fff; }
.carousel-arrow:disabled { opacity: .25; cursor: default; }
.carousel-arrow:disabled:hover { color: #fff; background: var(--wine); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.video-project { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 5vw, 70px); align-items: center; margin-bottom: 100px; }
.video-wrap { aspect-ratio: 16 / 9; background: #171717; }
.video-wrap video { width: 100%; height: 100%; object-fit: contain; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 100px; }
.project-card { position: relative; padding: clamp(28px, 4vw, 58px); background: var(--paper-light); overflow: hidden; }
.project-card-accent { color: #fff; background: var(--wine); }
.project-card-accent .project-type { color: #ebc7b6; }
.project-card .card-index { position: absolute; top: -34px; right: 10px; color: rgba(109,35,55,.08); font-family: var(--serif); font-size: 150px; line-height: 1; }
.project-card-accent .card-index { color: rgba(255,255,255,.08); }
.project-card h3 { font-size: clamp(34px, 3.5vw, 54px); }
.project-card > p:not(.project-type) { min-height: 78px; }
.project-card video { width: 100%; max-height: 510px; margin-top: 24px; background: #111; }
.awards-project { display: grid; grid-template-columns: .9fr 1.1fr; background: #d8cbbb; }
.awards-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.awards-copy { padding: clamp(35px, 5vw, 75px); }
.award-list { margin: 38px 0 0; padding: 0; list-style: none; }
.award-list li { display: grid; grid-template-columns: 58px 1fr auto; align-items: baseline; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(35,34,31,.18); }
.award-list span { color: var(--muted); font-size: 12px; }
.award-list strong { font-size: 14px; }
.award-list em { color: var(--wine); font-family: var(--serif); font-size: 16px; }
.barmaley-video {
  margin: 28px 0 0;
  padding: clamp(26px, 4vw, 54px);
  background: var(--paper-light);
}
.barmaley-video h3 { font-size: clamp(34px, 3.5vw, 54px); }
.barmaley-video p:last-child { max-width: 430px; color: var(--muted); }
.documents-section { margin-top: 100px; }
.documents-heading { max-width: 760px; margin-bottom: 42px; }
.documents-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}
.documents-heading > p:last-child { max-width: 590px; color: var(--muted); }
.documents-carousel { position: relative; padding: 0 76px; }
.documents-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.documents-gallery::-webkit-scrollbar { display: none; }
.documents-gallery button {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 10px;
  overflow: hidden;
  background: #ddd3c7;
  border: 0;
  cursor: zoom-in;
  scroll-snap-align: start;
}
.documents-gallery img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.documents-gallery button:hover img { transform: scale(1.025); }
.documents-gallery span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(35,25,24,.7);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  font-size: 11px;
}
.documents-prev { left: 0; }
.documents-next { right: 0; }

.skills-section { color: #fff; background: #303831; }
.skills-section .eyebrow { color: #d7be8a; }
.skills-intro { max-width: 930px; }
.skills-intro > p:last-child { max-width: 720px; margin: 35px 0 0; color: rgba(255,255,255,.68); }
.skills-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; margin: 75px 0; }
.skills-columns h3 { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.skills-columns ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 30px; padding: 0; list-style: none; color: rgba(255,255,255,.78); }
.skills-columns li::before { content: "—"; margin-right: 10px; color: #d7be8a; }
.interests-card {
  grid-column: 1 / -1;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
}
.interests-card h3 { margin-top: 0; }
.interests-card p { max-width: 920px; margin: 22px 0 0; color: rgba(255,255,255,.76); }
.facts-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.facts-strip div { padding: 24px; border-right: 1px solid rgba(255,255,255,.18); }
.facts-strip div:last-child { border: 0; }
.facts-strip span { display: block; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.facts-strip strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.facts-strip strong span { display: inline; color: inherit; font-size: inherit; letter-spacing: inherit; text-transform: inherit; }

.reading-section { display: grid; grid-template-columns: .45fr 1fr; gap: 8vw; background: var(--paper-light); }
.reading-section > div { max-width: 870px; }
.reading-section p:last-child { max-width: 650px; margin-top: 35px; color: var(--muted); }
.contacts-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; color: #fff; background: var(--wine-dark); }
.contacts-section .contact-kicker {
  margin-bottom: 25px;
  color: #e7b8aa;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: none;
}
.contacts-section h2 { font-size: clamp(38px, 4.8vw, 70px); }
.contact-person { align-self: end; padding: 32px 0 5px; border-top: 1px solid rgba(255,255,255,.25); }
.contact-person > span { color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contact-person strong { display: block; margin: 8px 0 14px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  color: rgba(255,255,255,.72);
  text-decoration-color: rgba(231,184,170,.5);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.contact-links a:hover { color: #fff; text-decoration-color: #e7b8aa; }
.contact-links svg {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  padding: 10px;
  fill: none;
  stroke: #e7b8aa;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(231,184,170,.3);
  border-radius: 50%;
  background: rgba(231,184,170,.08);
}
.site-footer { display: flex; justify-content: space-between; padding: 26px clamp(22px, 5vw, 72px); color: var(--muted); background: #191815; font-size: 11px; }
.site-footer a { color: #ddd5c9; text-decoration: none; }

.lightbox {
  width: min(92vw, 1120px);
  max-width: none;
  height: min(91vh, 900px);
  max-height: none;
  padding: 0;
  border: 0;
  background: #171514;
  color: #fff;
  overflow: hidden;
}
.lightbox::backdrop { background: rgba(12,10,10,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; height: calc(100% - 52px); object-fit: contain; }
.lightbox p { margin: 0; padding: 13px 60px 13px 20px; color: rgba(255,255,255,.72); font-size: 13px; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: #fff; background: rgba(10,10,10,.55); font-size: 27px; line-height: 1; cursor: pointer; }
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(10,10,10,.5);
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}
.lightbox-arrow:hover { background: var(--wine); transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-portrait { min-height: 620px; }
  .hero-facts span { padding: 0 10px; }
  .about-section { grid-template-columns: .2fr .9fr 1fr; }
  .portrait-grid { grid-template-columns: repeat(3, 1fr); }
  .facts-strip { grid-template-columns: repeat(3, 1fr); }
  .facts-strip div:nth-child(3) { border-right: 0; }
  .facts-strip div:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 800px) {
  .site-header { height: 68px; background: var(--paper-light); backdrop-filter: none; }
  .brand { position: relative; z-index: 52; }
  .brand-name { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 52; }
  .menu-toggle > span:not(.sr-only) { transition: opacity .2s ease, transform .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 51;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 96px 12vw 48px;
    background: var(--paper-light);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .32s ease, visibility 0s linear .32s;
  }
  .main-nav.open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .main-nav a { font-family: var(--serif); font-size: 30px; }
  .nav-contact { font-family: var(--sans) !important; font-size: 14px !important; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 68px 0 0; }
  .hero-copy { min-height: 570px; padding: 95px 22px 80px; }
  .hero h1 { font-size: clamp(62px, 19vw, 100px); }
  .hero-portrait { min-height: 650px; }
  .hero-facts { gap: 8px 0; }
  .hero-facts span:nth-child(3) { padding-left: 0; }
  .scroll-cue { display: none; }
  .section { padding: 78px 22px; }
  .heading-row { display: block; }
  .heading-row > p { margin-top: 20px; }
  .showreel-frame { aspect-ratio: 4 / 5; }
  .showreel-placeholder { align-items: flex-end; justify-content: flex-start; background-position: 58% center; }
  .play-symbol { width: 55px; height: 55px; }
  .about-section { grid-template-columns: 1fr; }
  .about-number { display: none; }
  .about-copy { padding-top: 0; }
  .portrait-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .portrait-card:first-child { grid-row: span 2; }
  .project-featured, .video-project, .awards-project, .contacts-section, .reading-section { grid-template-columns: 1fr; }
  .project-featured { min-height: 0; }
  .project-visual { min-height: 580px; }
  .stage-gallery { grid-auto-columns: calc((100% - 12px) / 2); }
  .documents-gallery { grid-auto-columns: calc((100% - 12px) / 2); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card > p:not(.project-type) { min-height: 0; }
  .awards-photo img { min-height: 400px; }
  .award-list li { grid-template-columns: 50px 1fr; }
  .award-list em { grid-column: 2; }
  .skills-columns { grid-template-columns: 1fr; gap: 30px; }
  .skills-columns ul { grid-template-columns: 1fr; }
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .facts-strip div, .facts-strip div:nth-child(3) { border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .facts-strip div:nth-child(even) { border-right: 0; }
  .contacts-section { gap: 45px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(42px, 14.4vw, 64px); line-height: .9; }
  .hero-facts span { width: 50%; padding: 3px 8px 3px 0; border: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-portrait { min-height: 540px; }
  .hero-stamp { right: 18px; bottom: 18px; width: 84px; height: 84px; }
  .hero-stamp .stamp-age { font-size: 20px; }
  .hero-stamp small { font-size: 9px; }
  .showreel-placeholder { display: block; padding-top: 52%; }
  .showreel-placeholder .play-symbol { margin-bottom: 18px; }
  .portrait-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
  .portrait-card { min-width: 78vw; height: 470px; scroll-snap-align: start; }
  .stage-carousel, .documents-carousel { padding: 0 48px; }
  .stage-gallery { display: grid; grid-auto-columns: 78vw; }
  .documents-gallery { grid-auto-columns: 78vw; }
  .carousel-arrow { width: 40px; height: 40px; font-size: 20px; }
  .lightbox-arrow { width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .project-visual { min-height: 500px; }
  .project-copy { padding: 35px 24px; }
  .project-card { padding: 34px 22px; }
  .award-list li { grid-template-columns: 1fr; gap: 3px; }
  .award-list em { grid-column: 1; }
  .facts-strip { grid-template-columns: 1fr; }
  .facts-strip div, .facts-strip div:nth-child(3), .facts-strip div:nth-child(even) { border-right: 0; }
  .site-footer { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
