:root {
  --white: #fff;
  --black: #000;
  --grey-2: #fafafa;
  --grey-7: #ededed;
  --grey-25: #bfbfbf;
  --grey-50: #808080;
  --grey-80: #333;
  --grey-90: #1a1a1a;
  --nav-height: 48px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  background: var(--white);
  color: var(--black);
  font-family: "Funnel Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
  text-transform: uppercase;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: 200px;
  font-weight: 300;
  line-height: 0.9;
}

h2 {
  font-size: 120px;
  font-weight: 300;
  line-height: 0.84;
}

h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.04;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.12;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: 1632px;
  padding: 0 16px;
  width: 100%;
}

.sections-wrapper {
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
}

.space-top {
  margin-top: 200px;
}

.site-nav {
  background: var(--white);
  height: var(--nav-height);
  inset: 0 0 auto;
  padding: 12px 0;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.nav-content {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.logo {
  padding: 2px;
  white-space: nowrap;
  z-index: 3;
}

.nav-panel {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 24px;
  justify-content: flex-end;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 16px;
}

.nav-link {
  padding: 2px;
}

.nav-socials {
  display: none;
}

.menu-button {
  background: transparent;
  color: var(--black);
  display: none;
  padding: 2px;
  position: relative;
  z-index: 3;
}

.text-link {
  display: inline-flex;
  flex-direction: column;
  height: 18px;
  overflow: hidden;
}

.text-link span {
  display: block;
  min-height: 18px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.text-link span:last-child {
  color: var(--grey-50);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(-100%);
}

.arrow-link {
  align-items: center;
  border-top: 1px solid currentColor;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 16px;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  color: var(--grey-50);
}

.arrow {
  display: inline-flex;
  transition: transform 0.35s ease;
}

.arrow-link:hover .arrow,
.arrow-link:focus-visible .arrow {
  transform: translate(4px, -4px);
}

.hero-section {
  padding-top: 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero-content h1 {
  max-width: 960px;
}

.hero-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-grid,
.link-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block span {
  color: var(--grey-50);
}

.info-block strong {
  font-weight: 400;
}

.hero-image {
  display: flex;
  height: 200vh;
  max-height: 2000px;
  min-height: 1200px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  height: 124%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.hero-image-copy {
  align-items: center;
  color: var(--white);
  display: flex;
  flex: 1;
  gap: 24px;
  justify-content: space-between;
  padding: 48px;
  position: relative;
  z-index: 2;
}

.hero-image-copy p {
  font-weight: 800;
  max-width: 240px;
  width: 100%;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: space-between;
}

.h2-small {
  font-size: 50px;
  line-height: 0.98;
  max-width: 620px;
}

.highlights-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.highlight {
  border-top: 1px solid var(--grey-7);
  color: var(--grey-25);
  display: block;
  font-size: 37.5px;
  font-weight: 300;
  line-height: 0.98;
  padding-top: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.highlight:hover {
  color: var(--black);
}

.about-image {
  height: 880px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.book-promo-section {
  background: var(--grey-2);
  padding: 160px 0;
}

.book-promo-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
}

.book-promo-grid img {
  height: 820px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.book-promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}

.book-promo-copy > span {
  color: var(--grey-50);
}

.book-promo-copy h2 {
  max-width: 640px;
}

.book-promo-copy p {
  color: var(--grey-50);
  font-size: 20px;
  line-height: 1.2;
  max-width: 360px;
  text-transform: none;
}

.book-promo-copy .button {
  align-self: flex-start;
  max-width: 360px;
  width: 100%;
}

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

.section-heading h2 {
  max-width: 640px;
}

.section-heading span {
  color: var(--grey-25);
  font-size: 50px;
  font-weight: 300;
  line-height: 0.98;
  text-align: right;
}

.works-grid {
  display: grid;
  gap: 24px;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(520px, 34vw, 680px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-card {
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  width: 100%;
}

.works-empty-block {
  background: var(--white);
  border-top: 1px solid var(--grey-7);
  min-height: 0;
}

.works-empty-tall {
  grid-row: span 2;
}

.work-card-feature {
  grid-row: span 2;
}

.work-card-tall {
  grid-row: span 2;
}

.work-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.65s ease;
  width: 100%;
}

.work-card img.secondary {
  opacity: 0;
  z-index: 2;
}

.work-card:hover img.primary,
.work-card:focus-visible img.primary {
  transform: scale(1.04);
}

.work-card:hover img.secondary,
.work-card:focus-visible img.secondary {
  opacity: 1;
  transform: scale(1.04);
}

.work-card::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  bottom: 0;
  content: "";
  height: 120px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.work-info {
  align-items: flex-end;
  display: flex;
  flex: 1;
  gap: 24px;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  z-index: 4;
}

.work-info .arrow {
  font-size: 20px;
}

.work-short {
  color: rgba(255, 255, 255, 0.75);
  max-width: 240px;
}

.banner {
  color: var(--white);
  display: flex;
  height: 150vh;
  max-height: 1680px;
  min-height: 1080px;
  overflow: hidden;
  position: relative;
}

.banner::after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.banner img {
  height: 112%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.banner-content {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 96px 48px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.banner-content h2 {
  font-size: clamp(72px, 7.6vw, 156px);
  line-height: 0.92;
  max-width: 1120px;
}

.button-row {
  display: flex;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  min-height: 58px;
  padding: 20px 28px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: var(--grey-80);
}

.button.light,
.submit-button {
  background: var(--white);
  color: var(--black);
}

.button.light:hover,
.button.light:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  background: var(--grey-7);
}

.services-grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(3, 1fr);
}

.service-block {
  border-top: 1px solid var(--grey-7);
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 32px;
}

.service-icon {
  color: var(--grey-50);
  display: block;
  height: 36px;
  width: 36px;
}

.service-icon svg {
  display: block;
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 100%;
}

.service-block h3 {
  max-width: 320px;
}

.honors-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
}

.honors-block {
  border-top: 1px solid var(--grey-7);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2fr;
  padding-top: 24px;
}

.honors-list {
  display: flex;
  flex-direction: column;
}

.honor-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 4fr 2fr 1fr;
  padding: 8px 0;
  transition: color 0.35s ease;
}

a.honor-row:hover,
a.honor-row:focus-visible {
  color: var(--grey-50);
}

.honor-row span {
  color: var(--grey-50);
}

.honor-row strong {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.12;
}

.honor-images {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2fr;
}

.honor-images img {
  height: 680px;
  object-fit: cover;
  width: 100%;
}

.honor-images img:first-child {
  filter: grayscale(1);
}

.notes-section {
  margin-bottom: 280px;
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.note-row {
  border-top: 1px solid var(--grey-7);
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 2fr 5fr 3fr;
  padding-top: 20px;
}

.note-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.note-row strong {
  font-weight: 400;
}

.note-row span {
  color: var(--grey-50);
}

.note-row p {
  max-width: 456px;
}

.note-row img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.testimonials-section {
  margin-bottom: 280px;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-row {
  border-top: 1px solid var(--grey-7);
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 5fr 3fr;
  padding-top: 24px;
}

.testimonials-text-only .testimonial-row {
  grid-template-columns: 2fr 5fr;
}

.testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-person strong {
  font-weight: 400;
}

.testimonial-person span {
  color: var(--grey-50);
}

.testimonial-quote {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 780px;
  text-transform: none;
}

@media (min-width: 992px) {
  .testimonial-quote {
    font-size: 32px;
  }
}

.testimonial-row img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.contact-background {
  background: var(--grey-2);
  margin-top: 0;
  padding: 200px 0 280px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: space-between;
}

.contact-info h2 {
  margin-bottom: 80px;
}

.contact-items {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link {
  font-size: 36px;
  font-weight: 300;
  height: 38px;
  line-height: 1.04;
  padding: 4px 0;
}

.contact-link span {
  min-height: 38px;
}

.contact-link-blocks {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-form {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 800px;
  padding: 24px;
}

.contact-form h3 {
  max-width: 320px;
}

.contact-form form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
}

.input-row {
  display: flex;
  gap: 12px;
}

.contact-form label {
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--grey-80);
  border-radius: 0;
  color: var(--white);
  height: 42px;
  outline: none;
  padding: 0 0 24px;
  transition: border-color 0.35s ease;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey-50);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: var(--grey-50);
}

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

.contact-form select {
  appearance: none;
}

.message-label {
  display: flex;
  flex: 1;
}

.contact-form textarea {
  flex: 1;
  min-height: 220px;
  resize: vertical;
}

.form-status {
  color: var(--grey-50);
  min-height: 18px;
  text-align: center;
}

.shop-frame-wrap {
  background: var(--grey-2);
  min-height: 820px;
  width: 100%;
}

.shop-frame-wrap iframe {
  border: 0;
  display: block;
  height: 820px;
  overflow: hidden;
  width: 100%;
}

.footer {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100vh;
  inset: 0;
  position: fixed;
  z-index: 1;
}

.footer-spacer {
  height: 100vh;
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 16px;
}

.footer-info .info-block {
  color: var(--white);
}

.footer-hero {
  display: grid;
  gap: 24px;
  grid-template-columns: 3fr 1fr;
}

.footer-hero p {
  font-size: 200px;
  font-weight: 300;
  line-height: 0.9;
}

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

.footer-links {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, 1fr);
}

.footer-legal {
  background: var(--white);
  color: var(--black);
  padding: 12px 0;
}

.footer-legal .container {
  display: flex;
  justify-content: space-between;
}

.footer-legal a {
  transition: color 0.35s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--grey-50);
}

.project-simple-nav {
  background: var(--white);
  height: var(--nav-height);
  inset: 0 0 auto;
  padding: 12px 0;
  position: fixed;
  z-index: 100;
}

.project-simple-nav-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.project-page {
  padding-bottom: 0;
}

.project-hero-section {
  padding-top: 144px;
}

.project-title {
  margin-bottom: 80px;
  max-width: 1180px;
}

.project-info {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 80px;
}

.project-info-blocks {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.project-description {
  color: var(--grey-50);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 300;
  gap: 24px;
  line-height: 1.2;
  max-width: 760px;
  text-transform: none;
}

.project-cover-frame,
.project-image-frame {
  background: transparent;
  color: inherit;
  display: block;
  padding: 0;
  text-align: left;
  width: 100%;
}

.project-cover-frame,
.project-image-frame {
  cursor: zoom-in;
}

.project-cover-image {
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.project-gallery-section {
  margin-top: 24px;
}

.project-images-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.project-image {
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.project-image-frame.wide-project-image {
  grid-column: 1 / -1;
}

.project-image-frame.left-project-image {
  grid-column: 1 / 2;
}

.project-image-frame.right-project-image {
  grid-column: 2 / 3;
}

.project-image-frame.big-project-image {
  margin-top: 160px;
}

.empty-project-image {
  height: 880px;
  width: 100%;
}

.empty-project-image.small-empty {
  height: 480px;
}

.other-works-section {
  margin-top: 200px;
}

.other-works-section .section-heading {
  align-items: center;
}

.other-works-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.other-work-card {
  height: 640px;
}

.project-closing-section {
  background: var(--black);
  color: var(--white);
  margin-top: 160px;
  padding: 48px 0 24px;
}

.project-closing-content {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 5vw, 72px);
  justify-content: flex-start;
}

.project-closing-hero {
  display: grid;
  gap: 24px;
  grid-template-columns: 3fr 1fr;
}

.project-closing-hero p {
  font-size: clamp(96px, 13vw, 220px);
  font-weight: 300;
  line-height: 0.9;
}

.project-closing-hero img {
  height: 420px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.project-closing-actions {
  align-items: center;
  border-top: 1px solid var(--grey-50);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding-top: 16px;
}

.project-closing-home {
  border-top: 0;
  max-width: 320px;
  padding-top: 0;
}

.project-closing-actions .button-row {
  justify-content: flex-end;
}

.button.outline-light {
  background: transparent;
  border-color: var(--grey-50);
  color: var(--white);
}

.button.outline-light:hover,
.button.outline-light:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.project-legal-footer {
  background: var(--white);
  color: var(--black);
  padding: 12px 0;
}

.project-legal-footer .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.project-lightbox {
  align-items: center;
  background: rgb(0 0 0 / 94%);
  color: var(--white);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 56px 72px;
  position: fixed;
  z-index: 300;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox-figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.project-lightbox-image {
  height: auto;
  max-height: calc(100svh - 144px);
  max-width: calc(100vw - 180px);
  object-fit: contain;
  width: auto;
}

.project-lightbox-counter {
  color: var(--grey-25);
}

.project-lightbox-button,
.project-lightbox-arrow {
  background: transparent;
  color: var(--white);
  position: absolute;
  transition: color 0.35s ease;
}

.project-lightbox-button:hover,
.project-lightbox-button:focus-visible,
.project-lightbox-arrow:hover,
.project-lightbox-arrow:focus-visible {
  color: var(--grey-25);
}

.project-lightbox-close {
  right: 24px;
  top: 24px;
}

.project-lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.project-lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.book-page {
  padding-bottom: 200px;
}

.book-hero-section {
  padding-top: 72px;
}

.book-hero-grid {
  color: var(--white);
  display: flex;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
  position: relative;
}

.book-hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1040px;
  min-height: 720px;
  padding: 48px;
  position: relative;
  z-index: 2;
}

.book-hero-copy > span {
  margin-bottom: 40px;
}

.book-hero-copy h1 {
  margin-bottom: 32px;
  max-width: 920px;
}

.book-hero-copy p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 480px;
  text-transform: none;
}

.book-hero-image {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.book-hero-image img {
  filter: brightness(0.58);
  height: 112%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.book-text-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.book-text-grid h2 {
  max-width: 760px;
}

.book-body-copy {
  color: var(--grey-50);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 300;
  gap: 24px;
  line-height: 1.28;
  max-width: 760px;
  text-transform: none;
}

.book-body-copy strong {
  color: var(--black);
  font-weight: 400;
}

.book-preview-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.book-preview-grid img {
  display: block;
  height: auto;
  width: 100%;
}

.book-preview-grid .book-preview-large {
  grid-column: span 1;
}

.book-author-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.book-author-grid > img {
  height: 960px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.book-author-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}

.book-author-copy > span {
  color: var(--grey-50);
}

.book-author-copy h2 {
  max-width: 640px;
}

.book-author-copy p {
  color: var(--grey-50);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.28;
  max-width: 680px;
  text-transform: none;
}

.book-author-copy .arrow-link {
  max-width: 360px;
  width: 100%;
}

.book-buy-section {
  background: var(--grey-2);
  padding: 200px 0;
}

.book-buy-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.buy-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 360px;
  padding: 32px;
}

.buy-card p {
  color: var(--grey-50);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: none;
}

.buy-card .button {
  margin-top: auto;
}

.book-closing-image img {
  height: 100vh;
  max-height: 1200px;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.shop-page {
  padding-bottom: 160px;
}

.shop-frame-section {
  padding-top: calc(var(--nav-height) + 24px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

@media (max-width: 991px) {
  h1 {
    font-size: 136px;
  }

  h2 {
    font-size: 104px;
  }

  .hero-content h1 {
    max-width: 680px;
  }

  .info-grid,
  .link-grid {
    gap: 20px;
  }

  .hero-image {
    height: 125vh;
    max-height: 1800px;
  }

  .hero-image-copy {
    padding: 32px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .about-copy {
    gap: 160px;
  }

  .book-promo-grid,
  .project-info,
  .book-text-grid,
  .book-author-grid {
    grid-template-columns: 1fr;
  }

  .book-promo-grid img {
    height: 720px;
  }

  .book-promo-copy {
    gap: 160px;
  }

  .space-top {
    margin-top: 160px;
  }

  .works-grid {
    gap: 20px;
    grid-auto-rows: 460px;
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card-feature {
    grid-row: span 2;
  }

  .services-grid {
    gap: 32px 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .honors-block {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .honor-images img {
    height: 600px;
  }

  .note-row {
    gap: 64px 20px;
    grid-template-columns: 2fr 2fr;
  }

  .note-row p {
    max-width: 640px;
  }

  .note-row img {
    height: 520px;
  }

  .contact-background {
    padding: 160px 0 240px;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 104px;
  }

  .project-closing-hero {
    grid-template-columns: 2fr 1fr;
  }

  .project-closing-hero img {
    height: 360px;
  }

  .project-lightbox {
    padding: 48px;
  }

  .project-lightbox-image {
    max-height: calc(100svh - 128px);
    max-width: calc(100vw - 128px);
  }

  .book-preview-grid {
    grid-template-columns: 1fr;
  }

  .book-buy-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    height: auto;
    position: static;
  }

  .footer-spacer {
    display: none;
  }

  .footer-content {
    gap: 160px;
  }

  .footer-hero {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .footer-hero p {
    font-size: 136px;
  }

  .footer-hero img {
    height: 880px;
  }

  .menu-button {
    display: block;
  }

  .nav-panel {
    align-items: stretch;
    background: var(--white);
    display: none;
    flex-direction: column;
    height: 100vh;
    inset: 0;
    justify-content: space-between;
    overflow: auto;
    padding: 72px 16px 24px;
    position: absolute;
    width: 100%;
    z-index: 2;
  }

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

  .nav-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-link {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 300;
    height: 58px;
    line-height: 0.84;
  }

  .nav-link span {
    min-height: 58px;
  }

  .nav-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 56px;
  }

  h3 {
    font-size: 32px;
  }

  .hero-content {
    gap: 56px;
  }

  .hero-content h1 {
    max-width: 320px;
  }

  .hero-blocks {
    gap: 48px;
  }

  .info-grid,
  .link-grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    height: 100vh;
    max-height: 1200px;
    min-height: 600px;
  }

  .hero-image-copy {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .about-grid,
  .about-copy {
    gap: 80px;
  }

  .h2-small {
    font-size: 36px;
    max-width: 424px;
  }

  .highlight {
    font-size: 27px;
    padding-top: 20px;
  }

  .about-image {
    height: 560px;
  }

  .book-promo-section {
    padding: 120px 0;
  }

  .book-promo-grid {
    gap: 16px;
  }

  .book-promo-grid img {
    height: 560px;
  }

  .book-promo-copy {
    gap: 80px;
    padding: 24px;
  }

  .book-promo-copy p {
    font-size: 18px;
  }

  .space-top {
    margin-top: 120px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 16px;
    margin-bottom: 64px;
  }

  .section-heading h2 {
    max-width: 320px;
  }

  .section-heading span {
    font-size: 36px;
  }

  .works-grid {
    gap: 16px;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .work-card {
    height: 520px;
  }

  .work-card-feature,
  .work-card-tall,
  .works-empty-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .works-empty-block {
    display: none;
  }

  .banner {
    height: auto;
    max-height: none;
    min-height: 720px;
  }

  .banner-content {
    gap: 120px;
    justify-content: flex-start;
    padding: 64px 24px;
  }

  .banner-content h2 {
    font-size: clamp(56px, 15vw, 92px);
  }

  .button-row {
    align-self: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

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

  .service-block {
    gap: 20px;
  }

  .honors-wrapper {
    gap: 64px;
    margin-bottom: 64px;
  }

  .honors-block {
    border-top: 0;
    gap: 48px;
    padding-top: 0;
  }

  .honor-row {
    border-top: 1px solid var(--grey-7);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  .honor-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .honor-images img {
    height: 480px;
  }

  .honor-images img:first-child {
    height: 360px;
  }

  .notes-section {
    margin-bottom: 200px;
  }

  .note-row {
    gap: 48px 16px;
  }

  .note-row img {
    height: 400px;
  }

  .testimonials-section {
    margin-bottom: 200px;
  }

  .testimonial-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-row img {
    height: 400px;
  }

  .contact-background {
    padding: 120px 0 200px;
  }

  .contact-grid {
    gap: 80px;
  }

  .contact-info,
  .contact-info h2 {
    gap: 48px;
    margin-bottom: 48px;
  }

  .contact-link {
    font-size: 24px;
    height: 28px;
  }

  .contact-link span {
    min-height: 28px;
  }

  .contact-link-blocks {
    gap: 16px;
  }

  .contact-form {
    min-height: 720px;
  }

  .footer-content {
    gap: 80px;
  }

  .footer-links {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-hero {
    gap: 48px;
  }

  .footer-hero p {
    font-size: 64px;
  }

  .footer-hero img {
    height: 560px;
  }

  .project-hero-section {
    padding-top: 112px;
  }

  .project-title {
    margin-bottom: 64px;
  }

  .project-info {
    margin-bottom: 64px;
  }

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

  .project-image-frame.big-project-image {
    margin-top: 0;
  }

  .project-images-grid,
  .other-works-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .project-image-frame.wide-project-image,
  .project-image-frame.left-project-image,
  .project-image-frame.right-project-image {
    grid-column: 1 / -1;
  }

  .empty-project-image {
    display: none;
  }

  .other-works-section {
    margin-top: 120px;
  }

  .project-closing-section {
    margin-top: 120px;
    padding: 24px 0;
  }

  .project-closing-content {
    gap: 56px;
  }

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

  .project-closing-hero img {
    height: 520px;
  }

  .project-closing-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .project-closing-actions .button-row {
    justify-content: stretch;
  }

  .project-closing-actions .button {
    width: 100%;
  }

  .project-lightbox {
    padding: 56px 16px 72px;
  }

  .project-lightbox-image {
    max-height: calc(100svh - 160px);
    max-width: calc(100vw - 32px);
  }

  .project-lightbox-prev,
  .project-lightbox-next {
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .project-lightbox-prev {
    left: 16px;
  }

  .project-lightbox-next {
    right: 16px;
  }

  .book-page {
    padding-bottom: 120px;
  }

  .book-hero-grid {
    min-height: 720px;
  }

  .book-hero-copy {
    min-height: 720px;
    padding: 24px;
  }

  .book-hero-copy p,
  .book-body-copy,
  .book-author-copy p,
  .buy-card p {
    font-size: 18px;
  }

  .book-preview-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .book-preview-grid .book-preview-large {
    grid-column: span 1;
  }

  .book-preview-grid img {
    height: auto;
  }

  .book-author-grid > img {
    height: 560px;
  }

  .book-author-copy {
    gap: 48px;
    padding: 0;
  }

  .book-buy-section {
    padding: 120px 0;
  }

  .book-closing-image img {
    height: 640px;
    min-height: 640px;
  }

  .shop-page {
    padding-bottom: 120px;
  }
}

@media (max-width: 479px) {
  .menu-button {
    display: block;
  }

  .nav-panel {
    align-items: stretch;
    background: var(--white);
    display: none;
    flex-direction: column;
    height: 100vh;
    inset: 0;
    justify-content: space-between;
    overflow: auto;
    padding: 72px 16px 24px;
    position: absolute;
    width: 100%;
    z-index: 2;
  }

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

  .nav-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-link {
    font-size: 64px;
    font-weight: 300;
    height: 58px;
    line-height: 0.84;
  }

  .nav-link span {
    min-height: 58px;
  }

  .nav-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .highlights-grid,
  .contact-link-blocks,
  .input-row {
    display: flex;
    flex-direction: column;
  }

  .note-row {
    display: flex;
    flex-direction: column;
  }

  .book-promo-grid img,
  .testimonial-row img,
  .other-work-card,
  .work-card {
    height: 440px;
  }

  .book-promo-copy,
  .buy-card {
    padding: 20px;
  }

  .project-simple-nav-content {
    font-size: 12px;
  }

  .contact-link {
    font-size: 22px;
  }

  .project-closing-hero p {
    font-size: 80px;
  }

  .project-closing-hero img {
    height: 420px;
  }

  .project-lightbox-close {
    right: 16px;
    top: 16px;
  }

  .book-hero-grid,
  .book-hero-copy {
    min-height: 680px;
  }
}
