:root {
  /* Core brand */
  --turwa-black: #12110f;
  --turwa-charcoal: #2f2f2c;
  --turwa-gold: #c6a074;
  --turwa-gold-dark: #795d39;
  --turwa-ivory: #f9f4ed;
  --turwa-cream: #ecd7bf;

  /* Supporting colors */
  --turwa-sage: #666a3d;
  --turwa-blush: #b39a8e;
  --turwa-blush-dark: #805b49;

  /* Semantic website colors */
  --color-background: var(--turwa-ivory);
  --color-surface: #fffcf7;
  --color-text: var(--turwa-black);
  --color-text-muted: #5a5549;
  --color-primary: var(--turwa-black);
  --color-accent: var(--turwa-gold);
  --color-accent-text: var(--turwa-gold-dark);
  --color-border: rgb(198 160 116 / 30%);

  --turwa-gold-gradient:
    linear-gradient(135deg, #f3d797 0%, #c6a074 48%, #795d39 100%);

  /* Tokens consumed across this sheet, mapped onto the TURWA palette */
  --ink: var(--turwa-black);
  --ink-soft: var(--turwa-charcoal);
  --bone: var(--turwa-ivory);
  --paper: var(--color-surface);
  --cream: var(--turwa-cream);
  --coral: var(--turwa-gold);
  --coral-dark: var(--turwa-gold-dark);
  --silver: rgba(249, 244, 237, 0.66);
  --muted: var(--color-text-muted);
  --line: rgb(198 160 116 / 26%);
  --line-light: rgb(198 160 116 / 45%);
  --white: var(--turwa-ivory);
  --font-display: "Newsreader", Georgia, serif;
  --font-sans: "Archivo", Arial, sans-serif;
  --shell: min(1440px, calc(100% - 64px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

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

h1,
h2,
h3 {
  font-weight: 400;
}

em {
  font-family: var(--font-display);
  font-weight: 400;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  background: var(--coral);
  color: var(--ink);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 200;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  background: rgba(249, 244, 237, 0.14);
  height: 2px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
}

.scroll-progress span {
  background: var(--turwa-gold-gradient);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.section-shell {
  margin-inline: auto;
  width: var(--shell);
}

.section-pad {
  padding-block: 128px;
}

#work,
#occasions,
#process,
#inquiry {
  scroll-margin-top: 64px;
}

.section-index,
.eyebrow {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.section-index-light {
  color: var(--silver);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 22px;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button svg {
  height: 17px;
  stroke-width: 1.7;
  width: 17px;
}

.button-accent {
  background: var(--coral);
  color: var(--ink);
}

.button-accent:hover {
  background: var(--coral-dark);
  color: var(--turwa-ivory);
}

.icon-button {
  align-items: center;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.icon-button svg {
  height: 18px;
  stroke-width: 1.7;
  width: 18px;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  left: 32px;
  position: absolute;
  right: 32px;
  top: 0;
  z-index: 100;
}

.site-header::after {
  background: rgb(198 160 116 / 34%);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

.site-header.is-fixed {
  animation: header-in 260ms ease both;
  background: rgba(18, 17, 15, 0.94);
  height: 64px;
  left: 0;
  padding-inline: 32px;
  position: fixed;
  right: 0;
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.wordmark {
  align-items: baseline;
  display: inline-flex;
  font-size: 21px;
  font-weight: 600;
  justify-self: start;
  line-height: 1;
}

.wordmark span:last-child {
  color: var(--coral);
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a,
.header-cta {
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  background: var(--coral);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  border-bottom: 1px solid rgba(249, 244, 237, 0.5);
  display: inline-flex;
  gap: 9px;
  justify-self: end;
  padding-bottom: 5px;
}

.header-cta svg {
  height: 14px;
  width: 14px;
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.mobile-menu {
  background: var(--coral);
  color: var(--ink);
  display: none;
  inset: 0;
  padding: 110px 24px 30px;
  position: fixed;
  z-index: 90;
}

.mobile-menu nav {
  border-top: 1px solid rgba(18, 17, 15, 0.3);
}

.mobile-menu a {
  align-items: baseline;
  border-bottom: 1px solid rgba(18, 17, 15, 0.3);
  display: flex;
  font-family: var(--font-display);
  font-size: 38px;
  justify-content: space-between;
  line-height: 1;
  padding-block: 20px;
}

.mobile-menu a span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
}

.mobile-menu p {
  bottom: 22px;
  font-size: 12px;
  margin: 0;
  position: absolute;
}

.mobile-menu.is-open {
  display: block;
}

.site-header.menu-active .wordmark span:last-child {
  color: var(--turwa-black);
}

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: 720px;
  height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 110%;
  inset: -5% 0;
  object-fit: cover;
  object-position: 56% center;
  position: absolute;
  width: 100%;
  will-change: transform;
}

.hero-wash {
  background: rgba(0, 0, 0, 0.28);
  inset: 0;
  position: absolute;
}

.hero-grain,
.hero-grain::after {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-grain {
  mix-blend-mode: soft-light;
  opacity: 0.14;
}

.hero-grain::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  content: "";
}

.hero-content {
  bottom: 102px;
  left: max(32px, calc((100vw - 1440px) / 2));
  max-width: 880px;
  position: absolute;
  z-index: 2;
}

.hero-eyebrow {
  color: rgba(249, 244, 237, 0.78);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: 82px;
  font-weight: 500;
  line-height: 0.95;
  margin: 0 0 28px;
}

.hero h1 em {
  font-size: 1.06em;
}

.hero-lower {
  align-items: flex-end;
  display: flex;
  gap: 64px;
}

.hero-lower > p {
  color: rgba(249, 244, 237, 0.8);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 390px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 24px;
}

.text-button {
  align-items: center;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 10px;
  padding: 0;
}

.play-mark {
  align-items: center;
  border: 1px solid rgba(249, 244, 237, 0.7);
  border-radius: 50%;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
  width: 40px;
}

.text-button:hover .play-mark {
  background: var(--coral);
  color: var(--ink);
}

.play-mark svg {
  fill: currentColor;
  height: 13px;
  width: 13px;
}

.hero-meta {
  bottom: 22px;
  display: flex;
  gap: 22px;
  left: 32px;
  position: absolute;
  z-index: 2;
}

.hero-meta span {
  color: rgba(249, 244, 237, 0.7);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-timecode {
  bottom: 20px;
  color: rgba(249, 244, 237, 0.7);
  font-size: 10px;
  margin: 0;
  position: absolute;
  right: 32px;
  z-index: 2;
}

.manifesto {
  background: var(--bone);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
}

.statement {
  font-family: var(--font-sans);
  font-size: 72px;
  line-height: 0.98;
  margin: 0 0 64px;
  max-width: 1020px;
}

.statement em {
  color: var(--coral-dark);
}

.manifesto-copy {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 32px;
  grid-template-columns: 5fr 3fr;
  margin-left: 25%;
  padding-top: 24px;
}

.manifesto-copy p {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 0;
}

.manifesto-copy .quiet {
  color: var(--color-text-muted);
  font-size: 13px;
}

.work {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}

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

.section-heading h2 {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
  margin: 14px 0 0;
}

.filter-tabs {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  gap: 28px;
}

.filter-tab {
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 11px;
  padding: 10px 0;
  position: relative;
}

.filter-tab::after {
  background: var(--coral);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 180ms ease;
  width: 100%;
}

.filter-tab.is-active {
  color: var(--ink);
}

.filter-tab.is-active::after {
  transform: scaleX(1);
}

.project-grid {
  display: grid;
  gap: 110px 28px;
  grid-template-columns: repeat(12, 1fr);
}

.project {
  min-width: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.project.is-hidden {
  display: none;
}

.project-wide {
  grid-column: 1 / span 8;
}

.project-portrait {
  align-self: end;
  grid-column: 9 / span 4;
}

.project-full {
  grid-column: 2 / span 10;
}

.project-offset {
  grid-column: 5 / span 8;
}

.project-media {
  background: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.project-wide .project-media {
  aspect-ratio: 16 / 9;
}

.project-portrait .project-media {
  aspect-ratio: 4 / 5;
}

.project-full .project-media {
  aspect-ratio: 2 / 1;
}

.project-media img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1),
    opacity 220ms ease;
  width: 100%;
}

.project-portrait .project-media img {
  object-position: center;
}

.project-media:hover img {
  transform: scale(1.025);
}

.project-view {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  height: 58px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -42%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  width: 58px;
}

.project-view svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.project-media:hover .project-view,
.project-media:focus-visible .project-view {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.frame-corners::before,
.frame-corners::after {
  border-color: rgba(249, 244, 237, 0.7);
  border-style: solid;
  content: "";
  height: 15px;
  position: absolute;
  top: 14px;
  width: 15px;
}

.frame-corners::before {
  border-width: 1px 0 0 1px;
  left: 14px;
}

.frame-corners::after {
  border-width: 1px 1px 0 0;
  right: 14px;
}

.project-caption {
  align-items: flex-start;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 1fr;
  margin-top: 16px;
  padding-top: 16px;
}

.project-caption h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 5px 0 0;
}

.project-type {
  color: var(--turwa-sage);
  font-size: 10px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.project-caption > p {
  color: var(--color-text-muted);
  font-size: 12px;
  margin: 0;
  max-width: 300px;
}

.occasions {
  background: var(--ink);
  color: var(--white);
}

.occasions-header {
  align-items: end;
  display: grid;
  grid-template-columns: 2fr 10fr;
  margin-bottom: 74px;
}

.occasions-header h2 {
  font-family: var(--font-sans);
  font-size: 70px;
  line-height: 0.97;
  margin: 0;
}

.occasions-header h2 em {
  color: var(--coral);
}

.occasion-stage {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 4fr 8fr;
}

.occasion-list {
  border-right: 1px solid var(--line);
}

.occasion-tab {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: rgba(249, 244, 237, 0.55);
  cursor: pointer;
  display: grid;
  font-family: var(--font-display);
  font-size: 28px;
  grid-template-columns: 42px 1fr auto;
  padding: 26px 26px 26px 0;
  text-align: left;
  transition: color 220ms ease;
  width: 100%;
}

.occasion-tab span {
  font-family: var(--font-sans);
  font-size: 9px;
}

.occasion-tab svg {
  height: 17px;
  opacity: 0;
  transform: translateX(-7px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  width: 17px;
}

.occasion-tab:hover,
.occasion-tab.is-active {
  color: var(--white);
}

.occasion-tab.is-active svg {
  opacity: 1;
  transform: translateX(0);
}

.occasion-panel {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-width: 0;
}

.occasion-image-wrap {
  aspect-ratio: 1 / 1;
  margin: 28px;
  overflow: hidden;
  position: relative;
}

.occasion-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease;
  width: 100%;
}

.occasion-image-wrap img.is-switching {
  opacity: 0;
}

.occasion-number {
  background: var(--coral);
  bottom: 0;
  color: var(--ink);
  font-size: 10px;
  left: 0;
  padding: 8px 10px;
  position: absolute;
}

.occasion-copy {
  align-self: end;
  padding: 28px 28px 40px 0;
}

.occasion-copy .eyebrow {
  color: var(--turwa-blush);
  margin-bottom: 16px;
}

.occasion-copy h3 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 22px;
}

.occasion-copy > p:last-child {
  color: var(--silver);
  font-size: 13px;
  margin-bottom: 0;
}

.point-of-view {
  background: var(--cream);
  color: var(--ink);
  min-height: 850px;
  overflow: hidden;
}

.point-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 6fr 6fr;
}

.point-copy h2 {
  font-family: var(--font-sans);
  font-size: 64px;
  line-height: 0.98;
  margin: 84px 0 36px;
}

.point-copy h2 em {
  color: var(--turwa-gold-dark);
}

.point-copy .section-index {
  color: var(--color-text-muted);
}

.point-copy > p:not(.section-index) {
  font-size: 17px;
  max-width: 560px;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  gap: 38px;
  margin-top: 34px;
  padding-bottom: 5px;
}

.text-link svg {
  height: 15px;
  width: 15px;
}

.film-stack {
  min-height: 630px;
  position: relative;
}

.film-frame {
  background: var(--ink);
  color: var(--white);
  margin: 0;
  padding: 10px 10px 7px;
  position: absolute;
  width: min(470px, 76%);
}

.film-frame img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.film-frame figcaption {
  font-size: 8px;
  margin-top: 6px;
}

.frame-one {
  right: 1%;
  top: -22px;
  transform: rotate(2deg);
}

.frame-two {
  bottom: -46px;
  left: -2%;
  transform: rotate(-3deg);
}

.frame-two img {
  object-position: center 45%;
}

.process {
  background: var(--bone);
}

.process-heading {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  margin-bottom: 84px;
}

.process-heading h2 {
  font-family: var(--font-sans);
  font-size: 60px;
  line-height: 0.98;
  margin: 0;
}

.process-heading h2 em {
  color: var(--coral-dark);
}

.process-heading > p:last-child {
  align-self: end;
  color: var(--color-text-muted);
  font-size: 13px;
  margin: 0 0 0 20%;
}

.process-list {
  border-top: 1px solid var(--line-light);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  align-items: start;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 26px;
  grid-template-columns: 2fr 8fr 2fr;
  padding: 30px 0;
}

.step-number {
  color: var(--turwa-blush-dark);
  font-size: 10px;
  font-weight: 600;
}

.process-list h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.process-list p {
  color: var(--color-text-muted);
  font-size: 13px;
  margin: 0;
  max-width: 530px;
}

.process-list svg {
  align-self: center;
  height: 24px;
  justify-self: end;
  stroke-width: 1.25;
  width: 24px;
}

.deliverables {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 760px;
}

.deliverables-image {
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.deliverables-image::after {
  background: rgba(0, 0, 0, 0.08);
  content: "";
  inset: 0;
  position: absolute;
}

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

.deliverables-image > p {
  bottom: 20px;
  color: rgba(249, 244, 237, 0.75);
  font-size: 9px;
  left: 24px;
  margin: 0;
  position: absolute;
  z-index: 1;
}

.deliverables-copy {
  align-self: center;
  padding: 72px;
}

.deliverables-copy h2 {
  font-family: var(--font-sans);
  font-size: 52px;
  line-height: 0.98;
  margin: 56px 0 60px;
}

.deliverables-copy h2 em {
  color: var(--coral);
}

.deliverables-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.deliverables-copy li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 36px 1fr;
  padding: 22px 0;
}

.deliverables-copy li > span {
  color: var(--coral);
  font-size: 9px;
}

.deliverables-copy h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 3px;
}

.deliverables-copy li p {
  color: var(--silver);
  font-size: 11px;
  margin: 0;
}

.inquiry {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  color: var(--white);
}

.inquiry-grid {
  display: grid;
  gap: 9%;
  grid-template-columns: 1fr 1fr;
}

.inquiry-copy h2 {
  font-family: var(--font-sans);
  font-size: 56px;
  line-height: 0.98;
  margin: 68px 0 34px;
}

.inquiry-copy h2 em {
  color: var(--coral);
}

.inquiry-copy > p:last-child {
  color: var(--silver);
  font-size: 14px;
  max-width: 500px;
}

.inquiry-form {
  position: relative;
}

.form-row {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.inquiry-form label {
  display: block;
  margin-bottom: 22px;
}

.inquiry-form label > span:first-child {
  color: var(--silver);
  display: block;
  font-size: 9px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(198 160 116 / 32%);
  border-radius: 0;
  color: var(--white);
  font-size: 13px;
  outline: none;
  padding: 10px 0 13px;
  resize: vertical;
  width: 100%;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--coral);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(249, 244, 237, 0.42);
}

.inquiry-form select {
  appearance: none;
  cursor: pointer;
}

.inquiry-form select option {
  background: var(--ink);
}

.select-wrap {
  display: block;
  position: relative;
}

.select-wrap svg {
  height: 15px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 12px;
  width: 15px;
}

.form-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.form-footer p {
  color: rgba(249, 244, 237, 0.55);
  font-size: 9px;
  margin: 0;
}

.form-footer .button {
  cursor: pointer;
  min-width: 180px;
}

.form-success {
  align-items: center;
  background: var(--coral);
  color: var(--ink);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 40px;
  position: absolute;
}

.form-success[hidden] {
  display: none;
}

.form-success > svg {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 46px;
  margin-right: 18px;
  padding: 12px;
  width: 46px;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.form-success span {
  font-size: 11px;
  margin-top: 5px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 72px 32px 24px;
}

.footer-top {
  align-items: end;
  display: grid;
  grid-template-columns: 3fr 4fr 5fr;
  min-height: 180px;
}

.footer-wordmark {
  font-size: 48px;
}

.footer-top > p {
  color: var(--silver);
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
}

.footer-email {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--font-display);
  font-size: 34px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.footer-email svg {
  height: 24px;
  width: 24px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 9px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 76px;
  padding-top: 20px;
  text-transform: uppercase;
}

.footer-bottom p {
  color: rgba(249, 244, 237, 0.55);
  margin: 0;
}

.footer-bottom > p:last-child {
  justify-self: end;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--coral);
}

.reel-dialog {
  background: var(--ink);
  border: 0;
  color: var(--white);
  height: 100dvh;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100vw;
}

.reel-dialog::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.reel-topbar {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding-inline: 24px;
}

.reel-topbar > div {
  display: flex;
  gap: 24px;
}

.reel-topbar p,
.reel-topbar span {
  font-size: 9px;
  margin: 0;
  text-transform: uppercase;
}

.reel-topbar span {
  color: var(--silver);
}

.reel-stage {
  height: calc(100dvh - 72px);
  overflow: hidden;
  position: relative;
}

.reel-slide {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: scale(1.02);
  transition:
    opacity 900ms ease,
    transform 4s linear;
  width: 100%;
}

.reel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.reel-shade {
  background: rgba(0, 0, 0, 0.28);
  inset: 0;
  position: absolute;
}

.reel-title-wrap {
  bottom: 100px;
  left: 5vw;
  position: absolute;
}

.reel-title-wrap p {
  color: var(--coral);
  font-size: 10px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.reel-title-wrap h2 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  margin: 0;
}

.reel-controls {
  align-items: center;
  bottom: 20px;
  display: flex;
  gap: 18px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.reel-controls .icon-button {
  flex: 0 0 42px;
}

.reel-timeline {
  background: rgba(249, 244, 237, 0.3);
  height: 1px;
  position: relative;
  width: 100%;
}

.reel-timeline span {
  background: var(--turwa-gold-gradient);
  height: 2px;
  left: 0;
  position: absolute;
  top: -1px;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

#reel-time {
  flex: 0 0 auto;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.68, 0.25, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --shell: calc(100% - 48px);
  }

  .hero h1 {
    font-size: 66px;
  }

  .statement {
    font-size: 58px;
  }

  .occasion-panel {
    grid-template-columns: 1fr;
  }

  .occasion-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .occasion-copy {
    padding: 0 28px 36px;
  }

  .point-copy h2 {
    font-size: 52px;
  }

  .deliverables-copy {
    padding: 46px;
  }

  .deliverables-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
    --shell: calc(100% - 32px);
  }

  .section-pad {
    padding-block: 90px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    left: 16px;
    right: 16px;
  }

  .site-header.is-fixed {
    padding-inline: 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .site-header.menu-active {
    color: var(--ink);
    position: fixed;
  }

  .site-header.menu-active::after {
    background: rgba(18, 17, 15, 0.3);
  }

  .hero {
    height: 88svh;
    min-height: 680px;
  }

  .hero-content {
    bottom: 76px;
    left: 16px;
    right: 16px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lower {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-meta {
    display: none;
  }

  .hero-timecode {
    bottom: 16px;
    right: 16px;
  }

  .manifesto-grid,
  .occasions-header,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .manifesto-grid > .section-index,
  .occasions-header > .section-index,
  .process-heading > .section-index {
    margin-bottom: 48px;
  }

  .statement {
    font-size: 52px;
  }

  .manifesto-copy {
    margin-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .filter-tabs {
    max-width: 100%;
    overflow-x: auto;
  }

  .project-grid {
    column-gap: 0;
    row-gap: 72px;
  }

  .project-wide,
  .project-portrait,
  .project-full,
  .project-offset {
    grid-column: 1 / -1;
  }

  .project-portrait {
    margin-left: 24%;
  }

  .project-full .project-media {
    aspect-ratio: 16 / 9;
  }

  .occasions-header h2 {
    font-size: 54px;
  }

  .occasion-stage {
    grid-template-columns: 1fr;
  }

  .occasion-list {
    border-right: 0;
    display: flex;
    overflow-x: auto;
  }

  .occasion-tab {
    border-right: 1px solid var(--line);
    flex: 0 0 auto;
    font-family: var(--font-sans);
    font-size: 12px;
    gap: 8px;
    grid-template-columns: auto auto;
    padding: 18px 22px;
    width: auto;
  }

  .occasion-tab svg {
    display: none;
  }

  .occasion-panel {
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
  }

  .occasion-image-wrap {
    aspect-ratio: 4 / 5;
    margin: 22px;
  }

  .occasion-copy {
    align-self: end;
    padding: 22px 22px 38px 0;
  }

  .occasion-copy h3 {
    font-size: 32px;
  }

  .point-of-view {
    min-height: auto;
  }

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

  .film-stack {
    min-height: 600px;
  }

  .frame-one {
    right: 2%;
  }

  .frame-two {
    bottom: 0;
  }

  .process-heading h2 {
    font-size: 52px;
  }

  .process-heading > p:last-child {
    margin: 26px 0 0;
    max-width: 500px;
  }

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

  .deliverables-image {
    min-height: 560px;
  }

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

  .inquiry-copy {
    margin-bottom: 54px;
  }

  .footer-top {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer-bottom > p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .section-pad {
    padding-block: 76px;
  }

  .hero {
    height: 90svh;
    min-height: 660px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-wash {
    background: rgba(0, 0, 0, 0.38);
  }

  .hero-content {
    bottom: 64px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 0.98;
    margin-bottom: 22px;
  }

  .hero-lower > p {
    font-size: 12px;
    max-width: 340px;
  }

  .hero-actions {
    gap: 16px;
    width: 100%;
  }

  .hero-actions .button {
    gap: 12px;
  }

  .text-button {
    white-space: nowrap;
  }

  .statement,
  .section-heading h2,
  .occasions-header h2,
  .point-copy h2,
  .process-heading h2,
  .inquiry-copy h2 {
    font-size: 42px;
  }

  .manifesto-copy {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .manifesto-copy p {
    font-size: 16px;
  }

  .filter-tabs {
    gap: 23px;
    width: 100%;
  }

  .project-grid {
    row-gap: 60px;
  }

  .project-portrait {
    margin-left: 14%;
  }

  .project-caption {
    grid-template-columns: 1fr;
  }

  .project-caption h3 {
    font-size: 25px;
  }

  .project-caption > p {
    display: none;
  }

  .project-view {
    height: 46px;
    opacity: 1;
    transform: translate(-50%, -50%);
    width: 46px;
  }

  .occasion-panel {
    grid-template-columns: 1fr;
  }

  .occasion-image-wrap {
    aspect-ratio: 4 / 5;
    margin: 16px;
  }

  .occasion-copy {
    padding: 12px 16px 32px;
  }

  .occasion-copy h3 {
    font-size: 31px;
  }

  .point-copy h2 {
    margin-top: 60px;
  }

  .point-copy > p:not(.section-index) {
    font-size: 15px;
  }

  .film-stack {
    min-height: 460px;
  }

  .film-frame {
    width: 84%;
  }

  .frame-two {
    left: 4%;
  }

  .process-heading {
    margin-bottom: 54px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr auto;
  }

  .process-list h3 {
    font-size: 24px;
  }

  .process-list svg {
    height: 19px;
    width: 19px;
  }

  .deliverables-image {
    min-height: 430px;
  }

  .deliverables-copy {
    padding: 68px 20px;
  }

  .deliverables-copy h2 {
    font-size: 40px;
    margin: 46px 0;
  }

  .inquiry-copy h2 br {
    display: none;
  }

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

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .form-footer .button {
    width: 100%;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .footer-email {
    font-size: 24px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }

  .reel-title-wrap {
    bottom: 120px;
    left: 20px;
    right: 20px;
  }

  .reel-title-wrap h2 {
    font-size: 38px;
  }

  .reel-controls {
    gap: 10px;
    left: 14px;
    right: 14px;
  }

  #reel-time {
    display: none;
  }
}

@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;
  }

  .hero-image {
    transform: none !important;
  }

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