@font-face {
  font-family: "Heading Now 71-78";
  src: url("assets/fonts/heading-now-71-78-regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans Local";
  src: url("assets/fonts/open-sans-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Le Jour Serif";
  src: url("assets/fonts/le-jour-serif-regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Arimo Local";
  src: url("assets/fonts/arimo-regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #edeced;
  --ink: #000000;
  --ink-soft: #1f1f1f;
  --line: #c6c6c6;
  --muted: #777272;
  --deep: #101010;
  --canva-blue: #304254;
  --header-h: 76px;
  --side: 32px;
  --max: 1440px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 25vw 100%;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: width .35s var(--ease), height .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
  mix-blend-mode: difference;
}

.cursor-dot.is-visible {
  opacity: .8;
}

.cursor-dot.is-active {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .18);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--side);
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  background: rgba(237, 236, 237, .78);
  backdrop-filter: blur(18px);
  transition: height .45s var(--ease), background .45s var(--ease);
}

.site-header.is-scrolled {
  height: 60px;
  background: rgba(237, 236, 237, .92);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.brand span {
  font-size: 32px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.main-nav a,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}

.main-nav a:hover::after,
.text-link:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.header-cta:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--side);
  padding-left: var(--side);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 112px;
  padding-bottom: 56px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 1 / 8;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 168px);
}

.eyebrow,
.section-kicker,
.project-number {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-title,
.about h2,
.photos-heading h2,
.portfolio-header h2,
.services h2 {
  margin: 0;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  padding-top: 34px;
  font-size: 8.3rem;
}

.title-line {
  display: block;
  overflow: hidden;
  transform: translateY(110%);
  animation: titleIn 1.25s var(--ease) forwards;
}

.title-line:nth-child(2) {
  animation-delay: .12s;
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(220px, 360px) auto;
  align-items: end;
  gap: 28px;
  max-width: 700px;
  padding-bottom: 10px;
}

.hero-meta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.text-link {
  align-self: end;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-gallery {
  grid-column: 8 / 13;
  position: relative;
  align-self: end;
  min-height: 620px;
}

.hero-photo,
.about-image,
.quote-image,
.project-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.hero-photo img,
.about-image img,
.quote-image img,
.project-image img {
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transform: scale(1.02);
  transition: filter .9s var(--ease), transform 1.1s var(--ease);
}

.magnetic:hover img {
  filter: grayscale(0) contrast(1.03) brightness(.98);
  transform: scale(1.07) translate3d(var(--mx, 0), var(--my, 0), 0);
}

.hero-photo-large {
  position: absolute;
  right: 18%;
  bottom: 0;
  width: 68%;
  aspect-ratio: 4 / 5;
}

.hero-photo-small {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 44%;
  aspect-ratio: 3 / 4;
  border: 16px solid var(--paper);
}

.scroll-indicator {
  position: absolute;
  right: var(--side);
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 46px;
  height: 1px;
  background: var(--muted);
  transform-origin: left;
  animation: pulseLine 1.8s var(--ease) infinite;
}

.intro-band {
  position: relative;
  overflow: hidden;
  overflow: clip;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 92px;
  overflow: hidden;
  contain: layout paint;
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 54px;
  padding: 0 var(--side);
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
}

.photos {
  padding-top: 116px;
  padding-bottom: 116px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.photos .section-kicker {
  grid-column: 1 / 3;
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.photos-heading {
  grid-column: 3 / 10;
  margin-bottom: 36px;
}

.photos-heading h2 {
  font-size: 6.4rem;
}

.photos-heading p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.photo-collage {
  grid-column: 3 / 13;
  columns: 4 220px;
  column-gap: 18px;
}

.photo-card {
  position: relative;
  margin: 0;
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
  overflow: hidden;
  background: #dedcdd;
  border: 1px solid rgba(0, 0, 0, .12);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid var(--paper);
  pointer-events: none;
  opacity: .85;
}

.photo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.07) brightness(.94);
  transform: scale(1);
  transition: filter .9s var(--ease), transform 1.1s var(--ease);
}

.photo-card:hover img {
  filter: grayscale(0) contrast(1.02) brightness(.98);
  transform: scale(1.025) translate3d(var(--mx, 0), var(--my, 0), 0);
}

.photo-card-tall {
  aspect-ratio: auto;
}

.photo-card-wide {
  aspect-ratio: auto;
}

.about {
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 118px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.about .section-kicker {
  grid-column: 1 / 3;
  align-self: start;
}

.about-copy {
  grid-column: 3 / 8;
}

.about-copy h2 {
  margin-bottom: 38px;
  font-size: 4.1rem;
}

.about-copy p {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
}

blockquote {
  margin: 38px 0 0;
  padding-left: 24px;
  border-left: 1px solid var(--ink);
  font-family: "Le Jour Serif", Georgia, serif;
  font-size: 34px;
  line-height: 1.08;
}

.about-image {
  grid-column: 9 / 13;
  align-self: stretch;
  min-height: 560px;
}

.quote-section {
  min-height: 92svh;
  padding-top: 84px;
  padding-bottom: 84px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.quote-section .section-kicker {
  grid-column: 1 / 3;
  align-self: start;
}

.quote {
  grid-column: 1 / 7;
  margin: 0;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: .94;
  text-transform: uppercase;
}

.quote-image {
  grid-column: 8 / 13;
  min-height: 560px;
}

.portfolio {
  border-bottom: 1px solid var(--line);
}

.portfolio-header {
  padding-top: 116px;
  padding-bottom: 82px;
  align-items: end;
}

.portfolio-header .section-kicker {
  grid-column: 1 / 3;
  align-self: start;
}

.portfolio-header h2 {
  grid-column: 3 / 9;
  font-size: 4.2rem;
}

.portfolio-intro {
  grid-column: 9 / 13;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.project {
  position: relative;
  min-height: clamp(680px, 92svh, 860px);
  padding-top: 92px;
  padding-bottom: 92px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.project-copy {
  z-index: 2;
}

.project-copy h3 {
  margin: 18px 0 20px;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: .98;
  text-transform: uppercase;
}

.project-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.project-basilica .project-copy {
  grid-column: 1 / 5;
  grid-row: 2;
}

.basilica-wide {
  grid-column: 1 / 9;
  grid-row: 1;
  aspect-ratio: 16 / 6;
}

.basilica-tall {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
  aspect-ratio: 2 / 5;
  min-height: 0;
}

.basilica-detail {
  grid-column: 6 / 10;
  grid-row: 2;
  aspect-ratio: 16 / 9;
}

.project-portraits .project-copy {
  grid-column: 6 / 9;
  grid-row: 2;
}

.portrait-main {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.portrait-wide {
  grid-column: 6 / 13;
  grid-row: 1;
  aspect-ratio: 21 / 8;
}

.portrait-secondary {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 4 / 3;
}

.project-fashion .fashion-copy {
  grid-column: 1 / 5;
  grid-row: 1;
  align-self: start;
}

.fashion-hero {
  grid-column: 5 / 9;
  grid-row: 1;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.fashion-detail {
  grid-column: 9 / 13;
  grid-row: 1;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.fashion-secondary {
  grid-column: 1 / 5;
  grid-row: 2;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.fashion-gallery {
  grid-column: 5 / 13;
  grid-row: 2;
  columns: 4 170px;
  column-gap: 18px;
}

.project-products .product-copy {
  grid-column: 5 / 9;
  grid-row: 1;
  align-self: start;
  text-align: center;
}

.product-main {
  grid-column: 2 / 5;
  grid-row: 1 / 3;
  aspect-ratio: 2 / 3;
  min-height: 0;
}

.product-wide {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 16 / 10;
}

.product-gallery,
.fashion-gallery {
  grid-column: 1 / -1;
  columns: 4 210px;
  column-gap: 18px;
}

.product-gallery {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 42px;
}

.fashion-gallery {
  grid-column: 5 / 13;
  grid-row: 2;
  margin-top: 0;
}

.product-gallery-item {
  position: relative;
  display: block;
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  background: #dedcdd;
  border: 1px solid rgba(0, 0, 0, .12);
}

.product-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid var(--paper);
  pointer-events: none;
  opacity: .85;
}

.product-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.07) brightness(.94);
  transform: scale(1);
  transition: filter .9s var(--ease), transform 1.1s var(--ease);
}

.product-gallery-item:hover img {
  filter: grayscale(0) contrast(1.02) brightness(.98);
  transform: scale(1.025) translate3d(var(--mx, 0), var(--my, 0), 0);
}

.services {
  padding-top: 118px;
  padding-bottom: 118px;
  border-bottom: 1px solid var(--line);
}

.services .section-kicker {
  grid-column: 1 / 3;
}

.services h2 {
  grid-column: 3 / 9;
  font-size: 4rem;
}

.service-list {
  grid-column: 3 / 13;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
}

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

.service-item h3 {
  margin: 72px 0 18px;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
}

.contact {
  min-height: calc(100svh - 64px);
  padding-top: 116px;
  padding-bottom: 96px;
  align-items: center;
}

.contact .section-kicker {
  grid-column: 1 / 3;
  align-self: start;
}

.contact-title {
  grid-column: 2 / 12;
  margin: 0;
  font-family: "Le Jour Serif", Georgia, serif;
  font-size: 8.2rem;
  font-weight: 400;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
}

.pricing-panel {
  grid-column: 3 / 11;
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
}

.pricing-head,
.pricing-table {
  background: var(--paper);
}

.pricing-head {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.pricing-head span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.pricing-head h3 {
  max-width: 360px;
  margin: 0;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 2.45rem;
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.pricing-table {
  display: grid;
  align-content: stretch;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(98px, auto);
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), transform .35s var(--ease);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row:not(.pricing-row-head):hover {
  background: rgba(0, 0, 0, .035);
  transform: translateX(6px);
}

.pricing-row-head {
  min-height: 62px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.pricing-row strong {
  justify-self: end;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.contact-panel {
  grid-column: 2 / 7;
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.contact-panel div {
  display: grid;
  gap: 4px;
}

.contact-panel span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-panel a {
  width: fit-content;
  font-family: "Heading Now 71-78", "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-actions {
  grid-column: 8 / 12;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}

.primary-action {
  background: var(--ink);
  color: var(--paper);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
}

.secondary-action:hover {
  background: var(--ink);
  color: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--side);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

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

@keyframes titleIn {
  to {
    transform: translateY(0);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleX(.45);
    opacity: .45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  :root {
    --side: 24px;
  }

  .hero-title {
    font-size: 6.2rem;
  }

  .hero-gallery {
    min-height: 540px;
  }

  .quote,
  .photos-heading h2,
  .portfolio-header h2,
  .services h2 {
    font-size: 3.4rem;
  }

  .contact-title {
    font-size: 6.2rem;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero {
    padding-top: 96px;
  }

  .hero-copy,
  .hero-gallery,
  .about .section-kicker,
  .about-copy,
  .about-image,
  .photos .section-kicker,
  .photos-heading,
  .photo-collage,
  .quote-section .section-kicker,
  .quote,
  .quote-image,
  .portfolio-header .section-kicker,
  .portfolio-header h2,
  .portfolio-intro,
  .services .section-kicker,
  .services h2,
  .service-list,
  .contact .section-kicker,
  .contact-title,
  .contact-panel,
  .contact-actions {
    grid-column: 1 / -1;
  }

  .hero-copy {
    min-height: auto;
    gap: 38px;
  }

  .hero-title {
    font-size: 5.1rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .about,
  .photos,
  .quote-section,
  .portfolio-header,
  .services,
  .contact {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .about-image,
  .quote-image {
    min-height: 560px;
  }

  .quote {
    font-size: 3.35rem;
  }

  .photos .section-kicker {
    position: static;
  }

  .photos-heading h2 {
    font-size: 5.1rem;
  }

  .photo-collage {
    columns: 3 180px;
    column-gap: 14px;
  }

  .project {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
    row-gap: 18px;
  }

  .project-basilica .project-copy,
  .basilica-wide,
  .basilica-tall,
  .basilica-detail,
  .project-portraits .project-copy,
  .portrait-main,
  .portrait-wide,
  .portrait-secondary,
  .project-fashion .fashion-copy,
  .fashion-hero,
  .fashion-detail,
  .fashion-secondary,
  .fashion-gallery,
  .project-products .product-copy,
  .product-main,
  .product-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .basilica-wide,
  .portrait-wide,
  .product-wide,
  .basilica-detail {
    aspect-ratio: 16 / 10;
  }

  .basilica-tall,
  .portrait-main,
  .portrait-secondary,
  .product-main {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .project-basilica .project-copy {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  .basilica-wide {
    grid-column: 1 / -1;
    grid-row: 2;
    aspect-ratio: 16 / 7;
  }

  .basilica-tall {
    grid-column: 1 / 4;
    grid-row: 3;
    aspect-ratio: 3 / 4;
  }

  .basilica-detail {
    grid-column: 4 / -1;
    grid-row: 3;
    aspect-ratio: 3 / 4;
  }

  .project-portraits .project-copy {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .portrait-wide {
    grid-column: 3 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 7;
  }

  .portrait-main {
    grid-column: 1 / 4;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .portrait-secondary {
    grid-column: 4 / -1;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .project-fashion .fashion-copy {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  .fashion-hero {
    grid-column: 4 / -1;
    grid-row: 1;
    aspect-ratio: 3 / 4;
  }

  .fashion-detail {
    grid-column: 1 / 4;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .fashion-secondary {
    grid-column: 4 / -1;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .fashion-gallery {
    grid-column: 1 / -1;
    grid-row: 3;
    columns: 3 180px;
    column-gap: 14px;
    margin-top: 18px;
  }

  .project-products .product-copy {
    grid-column: 1 / 4;
    grid-row: 1;
  }

  .product-main {
    grid-column: 1 / 4;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .product-wide {
    grid-column: 4 / -1;
    grid-row: 2;
    aspect-ratio: 3 / 4;
  }

  .product-gallery {
    grid-column: 1 / -1;
    grid-row: 3;
    columns: 3 180px;
    column-gap: 14px;
    margin-top: 18px;
  }

  .project-products .product-copy {
    text-align: left;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .pricing-panel {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .pricing-head {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
    --side: 18px;
  }

  body {
    background-size: 50% 100%;
    font-size: 16px;
  }

  .brand small,
  .header-cta span:first-child,
  .scroll-indicator {
    display: none;
  }

  .header-cta {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero-title {
    font-size: 3.7rem;
  }

  .hero-gallery {
    min-height: 430px;
  }

  .hero-photo-large {
    right: 18%;
    width: 78%;
  }

  .hero-photo-small {
    bottom: 42px;
    width: 48%;
    border-width: 10px;
  }

  .ticker {
    height: 74px;
  }

  .ticker-track {
    gap: 34px;
    font-size: 30px;
  }

  .intro-band {
    min-height: 74px;
  }

  .about-copy h2,
  .photos-heading h2,
  .quote,
  .portfolio-header h2,
  .services h2 {
    font-size: 2.9rem;
  }

  .about-copy p,
  .photos-heading p,
  .project-copy p,
  .portfolio-intro {
    font-size: 16px;
  }

  blockquote {
    font-size: 26px;
  }

  .about-image,
  .quote-image,
  .basilica-tall,
  .portrait-main,
  .portrait-secondary,
  .fashion-hero,
  .fashion-detail,
  .fashion-secondary,
  .product-main {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .project-basilica .project-copy,
  .basilica-wide,
  .basilica-tall,
  .basilica-detail,
  .project-portraits .project-copy,
  .portrait-main,
  .portrait-wide,
  .portrait-secondary,
  .project-fashion .fashion-copy,
  .fashion-hero,
  .fashion-detail,
  .fashion-secondary,
  .fashion-gallery,
  .project-products .product-copy,
  .product-main,
  .product-wide,
  .product-gallery {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .basilica-wide,
  .portrait-wide,
  .product-wide,
  .basilica-detail {
    aspect-ratio: 4 / 5;
  }

  .photo-collage {
    columns: 2 130px;
    column-gap: 12px;
  }

  .photo-card::after {
    border-width: 8px;
  }

  .fashion-gallery,
  .product-gallery {
    columns: 2 130px;
    column-gap: 12px;
  }

  .product-gallery-item::after {
    border-width: 8px;
  }

  .project-copy h3,
  .service-item h3 {
    font-size: 2rem;
  }

  .contact-title {
    font-size: 4.1rem;
  }

  .contact-panel a {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1.45rem;
  }

  .pricing-panel {
    margin-top: 30px;
  }

  .pricing-head {
    min-height: 150px;
    padding: 22px;
  }

  .pricing-head h3 {
    font-size: 2rem;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 22px;
  }

  .pricing-row-head {
    display: none;
  }

  .pricing-row:not(.pricing-row-head):hover {
    transform: translateY(-3px);
  }

  .pricing-row strong {
    justify-self: start;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

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

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

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