@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Caveat:wght@400;500;600;700&family=Cinzel:wght@400;500;600&family=Cormorant+Garamond:wght@400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Serif+Display&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Gloock&family=Great+Vibes&family=Josefin+Sans:wght@400;500;600;700&family=Lato:wght@400;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Nunito+Sans:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&family=Pacifico&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Poppins:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&family=Raleway:wght@400;500;600;700&family=Roboto+Slab:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Moret";
  src: url("https://static.showit.co/file/KkedNhlTRUaAIx-PRdPkug/shared/moret-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GT Alpina Condensed Thin";
  src: url("https://static.showit.co/file/QQ51IVpIR6yAh6dFoHjiKA/shared/gt-alpina-condensed-thin.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GT Alpina Condensed Thin Italic";
  src: url("https://static.showit.co/file/wCKE07W_QEm69n7fTwrIRw/shared/gt-alpina-condensed-thin-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

:root {
  --font-title: "Cinzel", Georgia, "Times New Roman", serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Red Hat Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Caveat", "Moret", "Gloock", Georgia, "Times New Roman", serif;
  --brand-weight: 500;
  --brand-style: normal;
  --brand-decoration: none;
  --heading-weight: 400;
  --heading-style: normal;
  --heading-decoration: none;
  --body-weight: 400;
  --body-style: normal;
  --body-decoration: none;
  --wordmark-size: 34px;
  --nav-size: 14px;
  --hero-title-size: 24px;
  --heading-size: 40px;
  --small-heading-size: 28px;
  --label-size: 22px;
  --body-size: 17px;
  --button-size: 14px;
  --hero-height: 1082px;
  --hero-gap: 7px;
  --hero-padding: 14px;
  --hero-card-width: 633px;
  --hero-card-height: 460px;
  --hero-card-opacity: 80%;
  --hero-card-x: 50%;
  --hero-card-y: 50%;
  --ink: #4e0948;
  --muted: #625863;
  --paper: #f6f2ea;
  --white: #ffffff;
  --line: rgba(78, 9, 72, 0.18);
  --accent: #000000;
  --accent-dark: #6b4e71;
  --pink: #f5f5f4;
  --yellow: #862d65;
  --green: #4e0948;
  --blue: #f3e7dc;
  --header-bg: #ffffff;
  --header-text: #4e0948;
  --backdrop: #4b163f;
  --shadow: 0 24px 80px rgba(78, 9, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  font-style: var(--body-style);
}

main {
  padding-inline: clamp(16px, 2.35vw, 49px);
  background: var(--paper);
}

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

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

.site-header {
  position: relative;
  top: auto;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(22px, 3vw, 44px);
  color: var(--header-text);
  background: var(--header-bg);
  border-top: 0;
  transition:
    box-shadow 180ms ease,
    transform 240ms ease,
    opacity 180ms ease;
}

.site-header.is-scrolled {
  background: var(--header-bg);
  box-shadow: 0 10px 30px rgba(78, 9, 72, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 0;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  align-items: start;
  font-family: var(--font-brand);
  justify-self: center;
  color: var(--header-text);
  font-weight: var(--brand-weight);
  font-style: var(--brand-style);
  letter-spacing: 0.01em;
  text-shadow: none;
  font-size: clamp(24px, 3vw, var(--wordmark-size));
  line-height: 1;
  text-transform: none;
  letter-spacing: 0.02em;
  text-decoration: var(--brand-decoration);
  white-space: nowrap;
}

.brand-wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  color: var(--accent-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: var(--nav-size);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-self: center;
}

.side-nav {
  display: grid;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--nav-size);
  font-weight: 600;
  color: var(--header-text);
}

.left-nav {
  justify-self: start;
}

.right-nav {
  justify-self: end;
  text-align: right;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
}

.nav-toggle {
  display: none;
}

.theme-lab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(340px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 30, 46, 0.18);
  box-shadow: 0 18px 50px rgba(43, 30, 46, 0.18);
  color: #2b1e2e;
}

.layout-lab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(360px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 30, 46, 0.18);
  box-shadow: 0 18px 50px rgba(43, 30, 46, 0.18);
  color: #2b1e2e;
}

.layout-lab.is-collapsed {
  width: auto;
  min-width: 168px;
  max-height: none;
  overflow: visible;
}

.layout-lab.is-collapsed .lab-panel {
  display: none;
}

.layout-lab p {
  margin: 8px 0 14px;
  color: #625863;
  font-size: 13px;
  line-height: 1.4;
}

.layout-lab-grid {
  display: grid;
  gap: 10px;
}

.layout-lab label {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(110px, 150px) 52px;
  gap: 8px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(43, 30, 46, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.layout-lab small {
  display: block;
  margin-top: 2px;
  color: #7b737c;
  font-size: 11px;
  font-weight: 500;
}

.layout-lab output {
  color: #625863;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.layout-lab input[type="range"] {
  width: 100%;
}

.theme-lab h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #2b1e2e;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.lab-toggle span:last-child {
  letter-spacing: 0;
  text-transform: none;
  font-size: 12px;
  color: #625863;
}

.lab-panel {
  margin-top: 4px;
}

.theme-lab.is-collapsed {
  width: auto;
  min-width: 168px;
  max-height: none;
  overflow: visible;
}

.theme-lab.is-collapsed .lab-panel {
  display: none;
}

.theme-lab p {
  margin: 0 0 14px;
  color: #625863;
  font-size: 13px;
  line-height: 1.4;
}

.theme-lab-grid {
  display: grid;
  gap: 10px;
}

.theme-lab label {
  display: grid;
  grid-template-columns: 1fr 44px 54px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(43, 30, 46, 0.1);
}

.theme-lab small {
  display: block;
  margin-top: 2px;
  color: #7b737c;
  font-size: 11px;
  font-weight: 500;
}

.theme-lab input[type="color"] {
  width: 44px;
  height: 34px;
  padding: 2px;
  border: 1px solid rgba(43, 30, 46, 0.18);
  background: #ffffff;
  cursor: pointer;
}

.font-toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.font-toggle-group label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  font-size: 11px;
  font-weight: 700;
}

.font-toggle-group input {
  width: auto;
}

.theme-lab [data-theme-reset-one] {
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(43, 30, 46, 0.18);
  background: #ffffff;
  color: #2b1e2e;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.theme-reset {
  width: 100%;
  margin-top: 12px;
  min-height: 38px;
  border: 1px solid rgba(43, 30, 46, 0.24);
  background: #ffffff;
  color: #2b1e2e;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.font-lab {
  left: 18px;
  right: auto;
}

.font-lab select,
.font-lab input[type="range"] {
  width: 100%;
}

.font-lab label {
  grid-template-columns: 1fr 112px 54px;
}

.font-control {
  display: grid;
  gap: 4px;
}

.font-value {
  color: #625863;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.font-lab select {
  min-height: 34px;
  border: 1px solid rgba(43, 30, 46, 0.18);
  background: #ffffff;
  color: #2b1e2e;
  font: inherit;
  font-size: 12px;
}

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  color: var(--ink);
  overflow: hidden;
}

.reference-hero {
  height: min(calc(100vh - 84px), var(--hero-height));
  min-height: 560px;
  max-height: 720px;
  margin-top: 14px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: var(--hero-gap);
  padding: var(--hero-padding);
  background: var(--backdrop);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 200, 0.94), rgba(255, 247, 200, 0.66) 48%, rgba(255, 247, 200, 0.08)),
    linear-gradient(0deg, rgba(255, 247, 200, 0.32), transparent 45%);
}

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

.hero-content {
  max-width: 780px;
}

.hero-card {
  position: absolute;
  z-index: 2;
  left: var(--hero-card-x);
  top: var(--hero-card-y);
  width: min(52vw, var(--hero-card-width));
  min-height: var(--hero-card-height);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(8px, 1vw, 14px);
  min-height: 0;
  padding: clamp(22px, 3vw, 44px);
  background: rgb(245 245 244 / var(--hero-card-opacity));
  backdrop-filter: blur(2px);
  border: 1px solid rgba(78, 9, 72, 0.12);
  color: var(--yellow);
  text-align: center;
  box-shadow: 0 16px 40px rgba(35, 12, 34, 0.2);
}

.hero-card h1 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: clamp(24px, 3.2vw, var(--hero-title-size));
  line-height: 1.14;
}

.hero-card p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
}

.hero-card .hero-actions {
  justify-content: center;
}

.collage-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(35, 12, 34, 0.22);
}

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

.photo-1 {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}

.photo-2 {
  grid-column: 5 / 9;
  grid-row: 1 / 4;
}

.photo-3 {
  grid-column: 9 / 13;
  grid-row: 1 / 5;
}

.photo-4 {
  grid-column: 1 / 4;
  grid-row: 4 / 9;
}

.photo-5 {
  grid-column: 4 / 9;
  grid-row: 4 / 9;
}

.photo-6 {
  grid-column: 9 / 13;
  grid-row: 5 / 9;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.5vw, var(--label-size));
  font-weight: 400;
  color: var(--yellow);
}

.hero .eyebrow {
  color: var(--yellow);
}

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

p,
li,
label,
input,
select,
textarea {
  text-decoration: var(--body-decoration);
}

h1 {
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, var(--heading-size));
  line-height: 1.12;
  font-weight: var(--heading-weight);
  font-style: var(--heading-style);
  text-decoration: var(--heading-decoration);
  letter-spacing: 0;
  max-width: 980px;
}

h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.8vw, var(--heading-size));
  line-height: 1.12;
  font-weight: var(--heading-weight);
  font-style: var(--heading-style);
  text-decoration: var(--heading-decoration);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: var(--small-heading-size);
  line-height: 1.2;
  font-weight: var(--heading-weight);
  font-style: var(--heading-style);
  text-decoration: var(--heading-decoration);
}

.hero p {
  max-width: 650px;
  font-size: var(--body-size);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 4px;
  padding: 8px 12px;
  border: 1px solid transparent;
  font-size: var(--button-size);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
}

.button.secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(255, 253, 244, 0.78);
}

.button.full {
  width: 100%;
}

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

.intro-band,
.marquee {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.quote-panel p,
.timeline p,
.service-list p {
  color: var(--muted);
}

main > section:not(.reference-hero) p:not(.eyebrow):not(.kicker),
main > section:not(.reference-hero) li,
main > section:not(.reference-hero) label,
main > section:not(.reference-hero) input,
main > section:not(.reference-hero) select,
main > section:not(.reference-hero) textarea {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

.portfolio-grid,
.portfolio-item {
  display: none;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.about-collage img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% 42%;
}

.about-script .eyebrow {
  color: var(--yellow);
  font-family: var(--font-title);
  font-size: clamp(26px, 3.8vw, var(--heading-size));
  line-height: 1.12;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.about-script h2 {
  color: var(--yellow);
  margin-bottom: 26px;
}

.kicker {
  margin: 0 0 10px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(13px, 1.6vw, var(--label-size));
  line-height: 1.2;
  font-weight: 400;
  color: var(--yellow);
}

.section-heading .eyebrow,
.contact-copy .eyebrow,
.work-heading .eyebrow,
.hero-card .eyebrow,
.about-script .eyebrow,
.kicker {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.about-script p {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.6;
}

.image-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  overflow: hidden;
  background: var(--pink);
}

.image-ribbon img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

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

.album-hero {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 140px clamp(20px, 5vw, 72px) 34px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 58%), var(--paper);
}

.album-hero h1 {
  max-width: 900px;
  color: var(--yellow);
}

.album-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.title-rule {
  display: block;
  width: 38px;
  height: 2px;
  margin: 2px 0 4px;
  background: var(--yellow);
}

.album-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr 0.92fr 0.98fr;
  gap: clamp(14px, 2.2vw, 28px);
  align-items: end;
  padding: 26px clamp(20px, 5vw, 72px) 74px;
  overflow: hidden;
}

.album-card {
  position: relative;
  display: block;
  min-height: clamp(370px, 46vw, 590px);
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 22px 46px rgba(31, 19, 28, 0.17);
  transform: translateY(var(--album-offset, 0)) rotate(var(--album-tilt, 0deg));
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.album-card:nth-child(2) {
  --album-offset: 18px;
  --album-tilt: -2deg;
}

.album-card:nth-child(3) {
  --album-offset: -8px;
  --album-tilt: 1.5deg;
}

.album-card:nth-child(4) {
  --album-offset: 28px;
  --album-tilt: 2deg;
}

.album-card:nth-child(5) {
  --album-offset: 6px;
  --album-tilt: -1.5deg;
}

.album-card:hover {
  transform: translateY(calc(var(--album-offset, 0) - 8px)) rotate(var(--album-tilt, 0deg));
  box-shadow: 0 28px 58px rgba(31, 19, 28, 0.22);
}

.album-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease;
}

.album-card:hover img {
  transform: scale(1.035);
}

.album-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.album-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 18px;
}

.album-caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.album-caption strong {
  font-family: var(--font-title);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.album-caption em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.immersive-category-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.immersive-category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.16) contrast(1.02);
}

.immersive-category-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 8, 16, 0.2), rgba(20, 8, 16, 0.46)),
    linear-gradient(90deg, rgba(20, 8, 16, 0.42), transparent 40%, rgba(20, 8, 16, 0.34));
  content: "";
}

.immersive-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  padding: 150px 20px 210px;
}

.immersive-overlay .eyebrow,
.immersive-overlay h1,
.immersive-overlay p {
  color: var(--white);
}

.immersive-overlay p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.story-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  padding: 0 clamp(20px, 5vw, 72px) 78px;
  margin-top: -135px;
}

.story-tile {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 330px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--yellow);
  box-shadow: 0 22px 42px rgba(31, 19, 28, 0.2);
  text-align: center;
  text-decoration: none;
}

.story-tile span {
  padding-top: 22px;
  color: var(--accent-dark);
  font-weight: 800;
}

.story-tile strong {
  padding: 12px 12px 0;
  font-family: var(--font-title);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 1.1;
}

.story-tile small {
  min-height: 42px;
  padding: 10px 14px 18px;
  color: var(--muted);
  line-height: 1.45;
}

.story-tile img {
  width: 100%;
  height: 150px;
  align-self: end;
  object-fit: cover;
}

.category-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 76px clamp(20px, 5vw, 72px);
  background: var(--pink);
  color: var(--ink);
  text-align: center;
}

.category-cta h2 {
  max-width: 820px;
  color: var(--yellow);
}

.work-feature {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(38px, 5.2vw, 78px);
  overflow: hidden;
  min-height: 1080px;
  background: var(--paper);
  text-align: center;
}

.work-arc {
  display: none;
}

.work-heading {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  margin: 0;
}

.work-heading .eyebrow {
  font-size: clamp(11px, 1.32vw, 20px);
}

.work-heading h2 {
  font-size: clamp(23px, 3.3vw, 35px);
}

.work-heading .eyebrow,
.work-heading h2 {
  color: inherit;
  margin-bottom: 0;
}

.work-showcase {
  position: relative;
  z-index: 1;
  width: min(670px, 49vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 24px 70px rgba(78, 9, 72, 0.18);
}

.work-showcase-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  width: min(1220px, 100%);
  margin: 0;
}

.work-image-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.work-nav {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.work-nav.prev {
  justify-self: end;
}

.work-nav.next {
  justify-self: start;
}

.work-nav span {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.work-nav:hover,
.work-nav:focus-visible {
  background: transparent;
  color: var(--ink);
}

.work-nav:focus-visible,
.work-image-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 8px;
}

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

.work-circles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(58px, 9vw, 150px);
  width: min(1060px, 100%);
  margin: 0;
}

.work-circle {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--yellow);
}

.work-circle img {
  width: clamp(190px, 18vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(78, 9, 72, 0.14);
}

.work-circle span {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  color: var(--yellow);
}

.work-circle small {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}

.services {
  background: #4e0948;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.about-image {
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: rgba(255, 250, 242, 0.84);
  max-width: 680px;
}

.about-copy .eyebrow {
  color: var(--yellow);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-copy h2 {
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent);
  font-weight: 900;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article,
.quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
}

.timeline h3 {
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0;
}

.quote-panel {
  align-self: center;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 72px);
  background: #4e0948;
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 253, 249, 0.76);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--yellow);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
}

.contact-form label:has(textarea),
.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 12px;
  font: inherit;
  background: #fbfaf7;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.inquiry-popup {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 1000;
  width: min(calc(100% - 32px), 420px);
  transform: translate(-50%, 18px);
  opacity: 0;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.inquiry-popup.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.inquiry-popup.is-error {
  background: #7c1d1d;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 253, 249, 0.75);
  font-size: 14px;
}

.landing-hero {
  min-height: 82vh;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 140px clamp(20px, 5vw, 72px) 70px;
  min-height: 82vh;
  background: var(--paper);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 620px;
  font-size: 17px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.contact-page-hero {
  background: var(--blue);
}

.story-copy {
  display: grid;
  gap: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 86px;
    padding: 18px 24px;
  }

  .brand-wordmark {
    justify-self: center;
    font-size: 26px;
  }

  .nav-toggle {
    position: absolute;
    right: 24px;
    top: 28px;
  }

  .side-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

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

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .reference-hero {
    margin-top: 0;
    height: auto;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: auto;
    padding: 18px 18px 28px;
    gap: 12px;
    background: var(--backdrop);
  }

  .hero-card,
  .collage-photo {
    min-height: auto;
  }

  .hero-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: auto;
    transform: none;
    grid-column: 1 / -1;
    order: 3;
    padding: 24px 20px;
    background: rgba(245, 245, 244, 0.9);
  }

  .collage-photo {
    aspect-ratio: 4 / 3;
  }

  .photo-1,
  .photo-3 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .split,
  .contact-section,
  .about-panel,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .album-showcase {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 54px;
  }

  .album-card {
    flex: 0 0 min(360px, 72vw);
    min-height: 500px;
    scroll-snap-align: center;
    transform: none;
  }

  .album-card:hover {
    transform: translateY(-6px);
  }

  .story-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -110px;
  }

  .section-copy {
    position: static;
  }

  .work-circles,
  .service-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  main {
    padding-inline: 0;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 32px;
  }

  .hero-card {
    padding: 30px 20px;
  }

  .hero-card h1 {
    margin-bottom: 16px;
    font-size: 31px;
    line-height: 1.12;
  }

  .hero-card p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    min-width: 0;
    padding: 12px 16px;
  }

  h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .intro-band,
  .portfolio-grid,
  .about-feature,
  .work-feature,
  .work-circles,
  .reference-hero,
  .service-list,
  .timeline,
  .contact-form,
  .story-strip {
    grid-template-columns: 1fr;
  }

  .album-hero {
    padding-top: 120px;
  }

  .album-showcase {
    padding-inline: 18px;
  }

  .album-card {
    flex-basis: 78vw;
    min-height: 430px;
  }

  .immersive-category-hero {
    min-height: 72vh;
  }

  .immersive-overlay {
    padding: 130px 20px 150px;
  }

  .story-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 18px;
    margin-top: -86px;
  }

  .story-tile {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }

  .work-feature {
    min-height: auto;
  }

  .work-arc {
    top: -130px;
    width: 140vw;
  }

  .work-showcase-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 18px 42px;
  }

  .work-showcase {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(420px, 86vw);
  }

  .work-nav {
    grid-row: 2;
    justify-self: center;
    width: auto;
    height: auto;
    font-size: 10px;
  }

  .work-nav span {
    font-size: 18px;
  }

  .hero-card {
    order: 2;
  }

  .collage-photo {
    aspect-ratio: 4 / 3;
  }

  .photo-1,
  .photo-3 {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .image-ribbon {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .image-ribbon img {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .about-collage img {
    aspect-ratio: 4 / 3;
    object-position: 58% 35%;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 18, 15, 0.18);
    padding-bottom: 14px;
  }

  .intro-band div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .portfolio-item,
  .portfolio-item.large {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}
