:root {
  --ink: #241f1c;
  --soft-ink: #5f504c;
  --paper: #f3f2ed;
  --white: #fffaf8;
  --line: rgba(36, 31, 28, 0.16);
  --green: #315f4b;
  --coral: #b76b68;
  --blue: #5b8791;
  --shadow: 0 26px 70px rgba(36, 31, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Alegreya Sans", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: rgba(185, 85, 69, 0.24);
}

a {
  color: inherit;
}

img {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  background: rgba(243, 242, 237, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(118px, 14vw, 184px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(30px, 4vw, 62px);
  min-width: 0;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  color: rgba(36, 31, 28, 0.78);
  font-size: 15px;
  font-weight: 300;
  white-space: nowrap;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.language-switcher {
  display: inline-flex;
  overflow: hidden;
  flex: 0 0 auto;
  margin-left: 0;
  border: 1px solid rgba(36, 31, 28, 0.12);
  border-radius: 6px;
  background: rgba(255, 250, 248, 0.7);
  box-shadow: 0 8px 20px rgba(36, 31, 28, 0.06);
}

.language-switcher a {
  min-width: 38px;
  padding: 6px 9px;
  color: rgba(36, 31, 28, 0.76);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.language-switcher a + a {
  border-left: 1px solid var(--line);
}

.language-switcher a.is-active {
  background: rgba(36, 31, 28, 0.82);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  overflow: hidden;
}

.experience-hero {
  display: grid;
  align-items: end;
  padding: clamp(96px, 14svh, 150px) 6vw 72px;
}

.hero-room,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-room {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 500ms ease-out;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 26, 20, 0.78) 0%, rgba(21, 26, 20, 0.42) 38%, rgba(21, 26, 20, 0.08) 70%),
    linear-gradient(180deg, rgba(21, 26, 20, 0.08), rgba(21, 26, 20, 0.36));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--white);
}

.brand-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  color: rgba(255, 254, 250, 0.82);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 900px;
  font-size: clamp(48px, 8vw, 112px);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

.hero-copy p:not(.brand-kicker) {
  max-width: 560px;
  color: rgba(255, 254, 250, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 300;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.hero .button.secondary {
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
}

.scroll-note {
  position: absolute;
  right: 6vw;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 254, 250, 0.76);
  font-size: 13px;
}

.scroll-note::after {
  display: inline-block;
  margin-left: 10px;
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  animation: pulse-line 1.8s ease-in-out infinite;
}

.atelier-intro,
.quality,
.story,
.page-title,
.page-content,
.article {
  padding: clamp(76px, 10vw, 144px) 8vw;
}

.page-title {
  padding-bottom: clamp(26px, 4vw, 52px);
}

.atelier-intro {
  max-width: 1180px;
}

.atelier-intro p:not(.eyebrow),
.room-copy p,
.material-moment p,
.page-title p,
.story p,
.quality p {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 24px);
}

.atelier-intro p:not(.eyebrow) {
  max-width: 780px;
}

.purchase-facts,
.buying-guide {
  width: min(84vw, 1040px);
  display: block;
  margin: 0 auto clamp(64px, 8vw, 96px);
  padding: 0;
}

.purchase-facts-intro,
.buying-guide-copy {
  max-width: 980px;
  margin-bottom: 26px;
}

.purchase-facts-intro h2,
.buying-guide-copy h2 {
  max-width: 16ch;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.04;
}

.purchase-facts-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.purchase-facts-grid article,
.faq-list article,
.materials-facts article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 248, 0.78);
}

.purchase-facts-grid h3,
.faq-list h3,
.materials-facts h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.08;
}

.purchase-facts-grid p,
.faq-list p,
.materials-facts p:not(.eyebrow) {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(17px, 1.8vw, 20px);
}

.buying-guide {
  width: min(84vw, 1180px);
}

.buying-guide-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.buying-guide-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.buying-guide-list {
  display: grid;
  gap: 0;
  margin: 0;
  counter-reset: buying-guide-step;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.buying-guide-list li {
  position: relative;
  min-height: 0;
  padding: 20px 0 20px 56px;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.34;
}

.buying-guide-list li::before {
  position: absolute;
  top: 20px;
  left: 0;
  counter-increment: buying-guide-step;
  color: var(--green);
  content: counter(buying-guide-step, decimal-leading-zero);
  font-size: 13px;
  font-weight: 500;
}

.room-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
  padding: 0 6vw clamp(82px, 10vw, 142px);
}

.room-story-right {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.room-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.room-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms ease;
}

.room-image:hover img {
  transform: scale(1.035);
}

.room-copy {
  max-width: 560px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 400;
  text-decoration-color: rgba(49, 95, 75, 0.34);
  text-underline-offset: 5px;
}

.collections {
  padding: clamp(76px, 10vw, 128px) 0;
  background: var(--white);
}

.section-heading {
  max-width: 980px;
  padding: 0 8vw 42px;
}

.section-heading-tight {
  padding: 0 0 32px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-grid a {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 42px);
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease;
}

.collection-grid a:hover {
  background: rgba(49, 95, 75, 0.06);
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.collection-grid span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.collection-grid small {
  max-width: 280px;
  color: var(--soft-ink);
  font-size: 15px;
}

.collection-grid .collection-works {
  max-width: 320px;
  color: rgba(36, 31, 28, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.collection-grid .collection-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 400;
}

.material-moment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(76px, 10vw, 144px) 8vw;
}

.material-moment img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.production-partner {
  width: min(84vw, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  margin: clamp(58px, 8vw, 112px) 0;
}

.production-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.production-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 72px);
  gap: clamp(10px, 1.5vw, 18px);
}

.production-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.production-gallery img:nth-child(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 7;
}

.production-gallery img:nth-child(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.production-gallery img:nth-child(3) {
  grid-column: 4 / 6;
  grid-row: 3 / 7;
}

.production-gallery img:nth-child(4) {
  grid-column: 6 / 7;
  grid-row: 3 / 7;
}

.final-room {
  min-height: 64svh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(76px, 10vw, 144px) 8vw;
  background:
    linear-gradient(110deg, rgba(49, 95, 75, 0.94), rgba(49, 95, 75, 0.72)),
    url("/img/rooms/mediterranean-living-room.jpg") center / cover;
  color: var(--white);
}

.final-room .eyebrow {
  color: rgba(255, 254, 250, 0.78);
}

.final-room h2 {
  max-width: 820px;
}

.final-room .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.final-room .button.secondary {
  background: transparent;
  color: var(--white);
}

.page-title {
  max-width: 1080px;
}

.page-title-with-media {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.page-title-with-media > div {
  max-width: 760px;
}

.page-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-content,
.article {
  max-width: 920px;
  padding-top: 0;
}

.page-content h2,
.article h2 {
  margin: clamp(34px, 5vw, 58px) 0 12px;
  font-size: clamp(32px, 4vw, 52px);
}

.page-content h2:first-child,
.article h2:first-child {
  margin-top: 0;
}

.page-content:has(.collections-manifesto) {
  max-width: none;
  padding-top: 0;
}

.page-content:has(.journal-grid) {
  max-width: none;
  padding-top: 0;
}

.collections-manifesto {
  max-width: 980px;
  margin: 0 0 clamp(42px, 6vw, 88px);
}

.series-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(32px, 5vw, 64px);
}

.series-jump-nav a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 248, 0.8);
  color: var(--soft-ink);
  font-size: 14px;
  text-decoration: none;
}

.about-story {
  width: min(84vw, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  margin: clamp(48px, 7vw, 108px) 0;
}

.about-story-flip .about-story-copy {
  order: 2;
}

.about-story img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-story-copy h2,
.about-note h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.about-story-copy p:not(.eyebrow),
.about-note p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
}

.about-note {
  max-width: 860px;
  margin: clamp(54px, 8vw, 118px) 0 0;
}

.about-note-with-media {
  max-width: none;
  width: min(84vw, 1180px);
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.about-note-copy {
  max-width: 620px;
}

.about-note-with-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collections-manifesto p {
  max-width: 860px;
  color: var(--soft-ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.22;
}

.series-chapter {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
  padding: clamp(58px, 8vw, 116px) 0;
}

.series-chapter-wide {
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
}

.series-chapter:nth-of-type(even) {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
}

.series-chapter-wide:nth-of-type(even) {
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
}

.series-chapter:nth-of-type(even) .series-copy {
  order: 2;
}

.series-copy {
  max-width: 620px;
}

.series-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
}

.series-copy p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
}

.series-meta {
  margin: 12px 0 0;
  color: var(--soft-ink);
  font-size: clamp(16px, 1.8vw, 20px);
}

.series-meta strong {
  color: var(--ink);
  font-weight: 500;
}

.series-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.series-actions .button {
  width: auto;
}

.series-room-preview {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.series-room-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.series-detail-hero {
  width: min(84vw, 1180px);
  margin: 0 auto;
  padding-bottom: clamp(44px, 6vw, 68px);
}

.series-detail-hero > div {
  max-width: 620px;
}

.series-detail-hero .page-portrait {
  aspect-ratio: 4 / 3;
}

.series-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.series-detail-page {
  max-width: none;
}

.series-detail-page .room-story {
  width: min(84vw, 1180px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 48px);
  padding: 0 0 clamp(54px, 7vw, 88px);
}

.series-detail-page .room-copy {
  max-width: 500px;
}

.series-detail-page .room-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.series-detail-facts,
.series-detail-gallery {
  width: min(84vw, 1180px);
  margin: 0 0 clamp(54px, 7vw, 108px);
}

.series-detail-summary {
  width: min(84vw, 760px);
  margin: 0 0 clamp(38px, 5vw, 64px);
}

.series-detail-summary p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: clamp(18px, 1.8vw, 22px);
}

.series-detail-summary strong {
  color: var(--ink);
  font-weight: 500;
}

.series-detail-gallery h2 {
  max-width: 14ch;
  font-size: clamp(30px, 3.8vw, 46px);
}

.series-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.series-work-card {
  margin: 0;
}

.series-work-card img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(36, 31, 28, 0.14);
}

.series-work-card figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.4;
}

.petersburg-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
  align-items: start;
  padding: clamp(22px, 3.4vw, 46px);
  background: rgba(255, 250, 248, 0.42);
  border-radius: 8px;
}

.petersburg-gallery figure {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
}

.petersburg-gallery figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0 24px 56px rgba(36, 31, 28, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform: rotate(var(--tilt, 0deg));
}

.petersburg-gallery figcaption {
  margin: 0;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.petersburg-gallery figure:hover img {
  transform: rotate(var(--tilt, 0deg)) translateY(-4px);
  box-shadow: 0 24px 58px rgba(36, 31, 28, 0.2);
}

.petersburg-gallery figure:nth-child(1) {
  --tilt: -1.1deg;
  grid-column: 1 / 8;
  margin-top: clamp(10px, 2vw, 28px);
}

.petersburg-gallery figure:nth-child(2) {
  --tilt: 1.2deg;
  grid-column: 7 / 13;
  margin-top: 0;
}

.petersburg-gallery figure:nth-child(3) {
  --tilt: 0.8deg;
  grid-column: 2 / 7;
  margin-top: clamp(-8px, -0.8vw, -2px);
}

.petersburg-gallery figure:nth-child(4) {
  --tilt: -0.7deg;
  grid-column: 7 / 13;
  margin-top: clamp(18px, 3vw, 42px);
}

.collection-cta {
  margin-top: clamp(36px, 6vw, 80px);
}

.article-hero {
  width: 100%;
  margin: clamp(28px, 5vw, 58px) 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.materials-facts,
.materials-faq {
  width: min(84vw, 1180px);
  margin: clamp(54px, 7vw, 108px) 0;
}

.materials-intro-copy {
  max-width: 860px;
}

.materials-intro-copy p {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 24px);
}

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

.materials-faq-intro {
  max-width: 740px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.journal-grid {
  display: grid;
  gap: clamp(44px, 7vw, 112px);
  margin-top: clamp(36px, 6vw, 80px);
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  padding: clamp(18px, 4vw, 42px) 0;
}

.journal-card:nth-child(even) img {
  order: 2;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.journal-card h2 {
  margin-top: 0;
  font-size: clamp(34px, 4.6vw, 62px);
}

.journal-card p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
}

.page-content p,
.article p,
.page-content li,
.article li {
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  color: var(--soft-ink);
}

.site-footer a {
  text-decoration-color: rgba(36, 31, 28, 0.28);
  text-underline-offset: 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0.92;
  transform: translateY(12px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@keyframes pulse-line {
  0%,
  100% {
    transform: scaleX(0.62);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px 12px;
  }

  .brand img {
    width: clamp(116px, 36vw, 148px);
  }

  .header-actions {
    display: contents;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 0 4px;
    font-size: 14px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .language-switcher {
    order: 2;
    align-self: flex-end;
    justify-self: flex-end;
    margin-left: 0;
  }

  .language-switcher a {
    min-width: 36px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .experience-hero {
    min-height: calc(100svh - 128px);
    padding: 78px 20px 58px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(21, 26, 20, 0.18), rgba(21, 26, 20, 0.78)),
      linear-gradient(90deg, rgba(21, 26, 20, 0.48), rgba(21, 26, 20, 0.12));
  }

  .hero-copy p:not(.brand-kicker) {
    max-width: 88vw;
    font-size: 17px;
  }

  .scroll-note {
    right: auto;
    left: 20px;
  }

  .atelier-intro,
  .page-title,
  .page-content,
  .article,
  .material-moment,
  .final-room {
    padding-top: clamp(56px, 14vw, 86px);
    padding-right: 20px;
    padding-bottom: clamp(56px, 14vw, 86px);
    padding-left: 20px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .purchase-facts-intro,
  .buying-guide-copy {
    max-width: none;
  }

  .purchase-facts-intro h2,
  .buying-guide-copy h2 {
    max-width: 10ch;
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(36px, 10.5vw, 52px);
    line-height: 1.02;
  }

  .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .room-story,
  .room-story-right,
  .material-moment,
  .production-partner,
  .about-story,
  .page-title-with-media,
  .series-chapter,
  .journal-card,
  .collection-grid,
  .purchase-facts,
  .buying-guide,
  .materials-facts,
  .series-work-grid {
    grid-template-columns: 1fr;
  }

  .purchase-facts-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .buying-guide-layout {
    grid-template-columns: 1fr;
  }

  .collections-manifesto p {
    font-size: 20px;
  }

  .collection-grid a {
    padding: 24px 20px;
  }

  .petersburg-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .petersburg-gallery figure,
  .petersburg-gallery figure:nth-child(1),
  .petersburg-gallery figure:nth-child(2),
  .petersburg-gallery figure:nth-child(3),
  .petersburg-gallery figure:nth-child(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .production-partner {
    width: auto;
  }

  .series-detail-hero,
  .series-detail-summary,
  .series-detail-facts,
  .series-detail-gallery {
    width: auto;
  }

  .series-detail-hero {
    gap: 24px;
    padding-bottom: 32px;
  }

  .series-detail-hero > div,
  .series-detail-page .room-copy {
    max-width: none;
  }

  .series-detail-hero .page-portrait {
    aspect-ratio: 4 / 3;
  }

  .series-detail-summary {
    margin-bottom: 32px;
  }

  .series-detail-summary p {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .series-detail-page .room-story {
    width: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-right: 20px;
    padding-bottom: 72px;
    padding-left: 20px;
  }

  .series-detail-page .room-copy h2,
  .series-detail-gallery h2 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-story {
    width: auto;
  }

  .about-note-with-media {
    width: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-story-flip .about-story-copy {
    order: initial;
  }

  .production-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .production-gallery img,
  .production-gallery img:nth-child(1),
  .production-gallery img:nth-child(2),
  .production-gallery img:nth-child(3),
  .production-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .series-chapter:nth-of-type(even) .series-copy,
  .journal-card:nth-child(even) img {
    order: initial;
  }

  .room-story,
  .room-story-right {
    gap: 28px;
    padding-right: 20px;
    padding-bottom: 72px;
    padding-left: 20px;
  }

  .room-story-right .room-copy {
    order: 2;
  }

  .series-detail-page .room-story .room-copy {
    order: 2;
  }

}

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