:root {
  --quarry: #edeae5;
  --ink: #17181a;
  --brass: #b08d57;
  --paper: #f7f5f1;
  --edge: rgba(23, 24, 26, 0.18);
  --pad: clamp(1.35rem, 4vw, 4.5rem);
  --header-height: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--quarry);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

html[lang="ru"] :is(
  .hero h1,
  .display-title,
  .specimen-caption h3,
  .works-page-cta p,
  .work-card h3,
  .pull-quote blockquote,
  .contact-phone
) {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

body,
a {
  cursor: default;
}

a {
  color: inherit;
}

a[href] {
  cursor: pointer;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(13, 14, 15, 0.64), transparent);
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.header-phones {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  pointer-events: auto;
}

.language-switcher {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: rgba(247, 245, 241, 0.55);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.72rem, 0.68vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switcher button {
  padding: 0.3rem 0.1rem;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 200ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button[aria-pressed="true"] {
  color: var(--paper);
  outline: none;
}

.language-switcher button[aria-pressed="true"] {
  border-bottom: 1px solid var(--brass);
}

.wordmark,
.header-phone {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.76rem, 0.72vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark {
  display: inline-flex;
  min-width: 0;
  gap: 0.8rem;
  align-items: center;
}

.wordmark-mark {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}

.header-phone {
  position: relative;
  padding-bottom: 0.25rem;
}

.header-phone::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0.25);
  transform-origin: right;
  transition: transform 300ms ease;
}

.header-phone:hover::after,
.header-phone:focus-visible::after {
  transform: scaleX(1);
}

.vein-thread {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
}

.vein-thread path {
  fill: none;
  stroke: var(--brass);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 118%;
  margin-top: -9%;
  object-fit: cover;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.68) 0%, rgba(10, 11, 12, 0.18) 62%, rgba(10, 11, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.56) 0%, transparent 50%);
}

.hero-copy {
  position: absolute;
  z-index: 6;
  bottom: clamp(6rem, 13vh, 9.5rem);
  left: var(--pad);
  max-width: 70rem;
}

.eyebrow,
.section-index,
.specimen-number,
.specimen-caption p,
.scroll-cue,
.contact-kicker,
.hours span {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.76rem, 0.72vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--brass);
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3.25rem, 8.5vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: 2.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 0;
  color: rgba(247, 245, 241, 0.72);
  font-size: 0.7rem;
}

.scroll-cue span {
  display: block;
  width: 2.4rem;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 245, 241, 0.3);
}

.scroll-cue span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brass);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.section-pad {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.philosophy,
.collection-heading,
.pull-quote {
  position: relative;
  background: var(--quarry);
}

.philosophy {
  min-height: 94vh;
  padding-top: clamp(7rem, 14vw, 13rem);
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.section-index {
  position: relative;
  z-index: 6;
  margin-bottom: clamp(4rem, 9vw, 8rem);
  color: var(--brass);
}

.philosophy-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 10vw, 11rem);
  align-items: start;
}

.display-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6.5vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.body-copy {
  max-width: 34rem;
  padding-top: 0.6rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.8;
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 1.7rem;
}

.collection-heading {
  min-height: 62vh;
  padding-top: clamp(7rem, 13vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.collection-heading .display-title {
  position: relative;
  z-index: 6;
  max-width: 12ch;
}

.specimen {
  position: relative;
  min-height: min(88vh, 62rem);
  margin: 0;
  overflow: hidden;
  background: #777;
}

.specimen::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(7, 8, 9, 0.62));
  content: "";
}

.specimen--dark::after {
  background: linear-gradient(to bottom, transparent, rgba(237, 234, 229, 0.82));
}

.specimen-caption {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: clamp(2rem, 5vw, 4.5rem);
  left: var(--pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  color: var(--paper);
}

.specimen--dark .specimen-caption {
  color: var(--ink);
}

.specimen-number {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--brass);
}

.specimen-caption h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.specimen-caption p {
  max-width: 30rem;
  margin: 0 0 0.35rem;
  line-height: 1.6;
  text-align: right;
}

.works {
  position: relative;
  z-index: 6;
  padding-top: clamp(7rem, 13vw, 12rem);
  padding-bottom: clamp(7rem, 12vw, 11rem);
  color: var(--paper);
  background: var(--ink);
}

.works .section-index {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.works-intro {
  max-width: 32rem;
  margin: 0 0 0.35rem;
  color: rgba(247, 245, 241, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(18rem, 27vw, 27rem);
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
}

.works-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -2rem 0 1.25rem;
  color: rgba(247, 245, 241, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.works-carousel-controls > div {
  display: flex;
  gap: 0.6rem;
}

.works-carousel-controls button {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(247, 245, 241, 0.34);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, opacity 200ms ease;
}

.works-carousel-controls button:hover,
.works-carousel-controls button:focus-visible {
  border-color: var(--brass);
  color: var(--brass);
  outline: none;
}

.works-carousel-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.works:not(.works--page) .works-grid {
  display: flex;
  grid-template-columns: none;
  grid-auto-rows: auto;
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
  margin-right: calc(var(--pad) * -1);
  padding-right: var(--pad);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--brass) rgba(247, 245, 241, 0.12);
  scrollbar-width: thin;
}

.works:not(.works--page) .work-card,
.works:not(.works--page) .work-card--hero,
.works:not(.works--page) .work-card--feature,
.works:not(.works--page) .work-card--half,
.works:not(.works--page) .work-card--wide {
  flex: 0 0 clamp(20rem, 56vw, 52rem);
  width: clamp(20rem, 56vw, 52rem);
  height: clamp(28rem, 52vw, 43rem);
  grid-column: auto;
  grid-row: auto;
  scroll-snap-align: start;
}

.works-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.works-more-link {
  display: inline-flex;
  min-width: min(100%, 18rem);
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(247, 245, 241, 0.34);
  color: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.works-more-link span {
  color: var(--brass);
  font-size: 1.15rem;
  transition: transform 250ms ease;
}

.works-more-link:hover,
.works-more-link:focus-visible {
  border-color: var(--brass);
  color: var(--ink);
  background: var(--brass);
  outline: none;
}

.works-more-link:hover span,
.works-more-link:focus-visible span {
  color: var(--ink);
  transform: translateX(0.3rem);
}

body.works-page {
  color: var(--paper);
  background: var(--ink);
}

.works--page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 8rem));
}

.works--page .works-heading {
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.works-page-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(247, 245, 241, 0.18);
}

.works-page-cta p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.works-page-cta a {
  flex: 0 0 auto;
  color: var(--brass);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.work-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 241, 0.12);
  background: #292a2c;
}

.work-card--hero {
  grid-column: span 7;
  grid-row: span 2;
}

.work-card--feature {
  grid-column: span 5;
}

.work-card--half {
  grid-column: span 6;
}

.work-card--wide {
  grid-column: span 12;
}

.work-card::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(6, 7, 8, 0.82));
  content: "";
  pointer-events: none;
}

.work-open {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.work-open:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: -4px;
}

.work-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.work-expand {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  display: grid;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(247, 245, 241, 0.45);
  border-radius: 999px;
  place-items: center;
  color: var(--paper);
  background: rgba(14, 15, 16, 0.54);
  backdrop-filter: blur(8px);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 250ms ease, transform 250ms ease, border-color 250ms ease;
}

.work-card:hover .work-expand,
.work-open:focus-visible .work-expand {
  border-color: var(--brass);
  opacity: 1;
  transform: translateY(0);
}

.work-card figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.3rem, 2.2vw, 2.2rem);
  bottom: clamp(1.3rem, 2.2vw, 2.2rem);
  left: clamp(1.3rem, 2.2vw, 2.2rem);
  pointer-events: none;
}

.work-card figcaption span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--brass);
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card h3 {
  max-width: 14ch;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.65rem, 2.7vw, 3.15rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: rgba(10, 11, 12, 0.96);
  overflow: hidden;
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox::backdrop {
  background: rgba(10, 11, 12, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(4.5rem, 8vw, 6.5rem) var(--pad) clamp(2rem, 5vw, 4rem);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1.2rem;
  place-items: center;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(247, 245, 241, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 1.4rem;
  right: var(--pad);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(247, 245, 241, 0.38);
  color: var(--paper);
  background: rgba(23, 24, 26, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--brass);
  outline: none;
}

.lightbox-nav {
  position: fixed;
  z-index: 3;
  top: 50%;
  display: grid;
  width: clamp(3rem, 5vw, 4.5rem);
  height: clamp(3rem, 5vw, 4.5rem);
  padding: 0;
  border: 1px solid rgba(247, 245, 241, 0.42);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(23, 24, 26, 0.68);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox-prev {
  left: var(--pad);
}

.lightbox-next {
  right: var(--pad);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--brass);
  color: var(--brass);
  outline: none;
}

@media (max-width: 42rem) {
  .lightbox figure {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1.25rem;
    transform: none;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

.pull-quote {
  display: grid;
  min-height: 82vh;
  padding-top: clamp(6rem, 11vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 10rem);
  align-content: center;
}

.pull-quote blockquote {
  position: relative;
  z-index: 6;
  max-width: 16ch;
  margin: 0 auto;
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5.8vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
}

.contact {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 2rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.contact .section-index {
  margin-bottom: 2rem;
}

.contact-inner {
  position: relative;
  z-index: 6;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 5rem;
  text-align: center;
}

.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  justify-content: center;
}

.contact-kicker {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  color: var(--brass);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  letter-spacing: 0.12em;
}

.contact-phone {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-bottom: 0.22em;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
  transition: color 250ms ease;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  color: var(--brass);
  outline: none;
}

.hours {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.hours span {
  color: rgba(247, 245, 241, 0.48);
}

.hours p {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact-name {
  position: relative;
  z-index: 6;
  margin: 0;
  color: rgba(247, 245, 241, 0.34);
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.works-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--ink, #17181a);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.35rem;
}

.works-back:hover {
  opacity: 0.58;
}

@media (max-height: 650px) and (min-width: 761px) {
  .contact {
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 1rem;
  }

  .contact .section-index {
    margin-bottom: 1rem;
  }

  .contact-inner {
    padding: 0 0 1rem;
  }

  .contact-kicker {
    margin-bottom: 1.25rem;
  }

  .contact-phone {
    font-size: clamp(2.2rem, 3.4vw, 4rem);
  }

  .hours {
    margin-top: 1.5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.25rem;
  }

  .header-phones {
    position: absolute;
    top: 0.8rem;
    right: var(--pad);
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
  }

  .language-switcher {
    font-size: 0.68rem;
  }

  .header-phone,
  .wordmark {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
  }

  .wordmark {
    max-width: 52vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wordmark-mark {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12vw, 4.5rem);
    line-height: 0.9;
  }

  .hero-copy {
    right: var(--pad);
    bottom: 7rem;
  }

  .scroll-cue {
    right: auto;
    left: var(--pad);
  }

  .philosophy {
    min-height: auto;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .body-copy {
    max-width: none;
    padding-left: 12vw;
  }

  .collection-heading {
    min-height: 50vh;
  }

  .specimen {
    min-height: 78svh;
  }

  .specimen-caption {
    display: block;
  }

  .specimen-caption h3 {
    overflow-wrap: anywhere;
  }

  .specimen-caption p {
    margin-top: 1.5rem;
    text-align: left;
  }

  .works-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .works-page-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(25rem, 68svh);
  }

  .works-carousel-controls {
    margin-top: -1rem;
  }

  .works-carousel-controls > span {
    max-width: 12rem;
    line-height: 1.5;
  }

  .works:not(.works--page) .work-card,
  .works:not(.works--page) .work-card--hero,
  .works:not(.works--page) .work-card--feature,
  .works:not(.works--page) .work-card--half,
  .works:not(.works--page) .work-card--wide {
    flex-basis: 86vw;
    width: 86vw;
    height: min(68svh, 36rem);
  }

  .work-card,
  .work-card--hero,
  .work-card--feature,
  .work-card--half,
  .work-card--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .work-expand {
    opacity: 1;
    transform: none;
  }

  .work-card h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .pull-quote blockquote br {
    display: none;
  }

  .contact {
    padding-bottom: 1.4rem;
  }

  .contact-inner {
    padding-bottom: 3rem;
  }

  .contact-phone {
    font-size: clamp(2.3rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .contact-phones {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

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

  .image-frame img {
    transform: none !important;
  }
}
