:root {
  --bone: #f0ebe8;
  --paper: #e5dfda;
  --charcoal: #1e1d1a;
  --warm-dark: #37352f;
  --moss: #6b6a5e;
  --fog: #d7d2cb;
  --wood: #b8a58c;
  --muted: rgba(30, 29, 26, 0.62);
  --serif: Canela, "Cormorant Garamond", "Times New Roman", serif;
  --sans: Pretendard, Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--bone);
  font-family: var(--sans);
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
a {
  color: inherit;
}

button {
  font-family: inherit;
}

.loading-screen {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bone);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 900ms ease, visibility 900ms ease;
  animation: loader-failsafe 1ms linear 4.2s forwards;
}

.is-loading .loading-screen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.loading-logo {
  width: clamp(170px, 28vw, 390px);
  height: auto;
  object-fit: contain;
  filter: saturate(0.78) contrast(0.96);
  opacity: 0.96;
}

.loading-stone {
  width: 64px;
  height: 48px;
  border-radius: 44% 56% 48% 52%;
  filter: grayscale(0.2) contrast(1.02);
  animation: stone-spin 2.4s linear infinite;
}

.loading-track {
  width: 180px;
  height: 4px;
  background: rgba(30, 29, 26, 0.08);
  overflow: hidden;
}

.loading-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--charcoal);
  transition: width 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stone-spin {
  from {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-3px);
  }
  to {
    transform: rotate(360deg) translateY(0);
  }
}

@keyframes loader-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 48px;
  color: var(--charcoal);
  transition: color 320ms ease, padding 320ms ease;
}

.site-header.is-on-dark {
  color: var(--bone);
}

.wordmark {
  display: inline-flex;
  width: 54px;
  height: 22px;
  align-items: center;
  text-decoration: none;
}

.wordmark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.74) contrast(0.95);
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
}

.nav a,
.text-link {
  text-decoration: none;
}

.nav a {
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  outline: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--bone);
  background: var(--charcoal);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(30, 29, 26, 0.62), rgba(30, 29, 26, 0.1)),
    linear-gradient(0deg, rgba(30, 29, 26, 0.38), rgba(30, 29, 26, 0.02));
}

.hero-media {
  position: absolute;
  inset: -8vh -6vw;
  transform: scale(1.05);
  transform-origin: center center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
  filter: saturate(0.78) contrast(0.94) brightness(0.84);
}

.hero-emerge-logo {
  position: absolute;
  z-index: 2;
  right: 7vw;
  bottom: 11vh;
  width: clamp(118px, 12vw, 220px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(26px) scale(0.82);
  filter: saturate(0.78) contrast(0.95);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  padding: 28vh 0 0 7vw;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--moss);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-band .eyebrow {
  color: var(--wood);
}

h1,
h2,
h3,
.serif-small {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(64px, 9vw, 150px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(44px, 5.8vw, 92px);
  line-height: 0.98;
}

h3 {
  font-size: 30px;
  line-height: 1.05;
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-top: 32px;
  color: rgba(240, 235, 232, 0.78);
  font-size: 18px;
}

.hero-actions,
.lead-actions,
.dialog-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.quiet-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 29, 26, 0.46);
  border-radius: 0;
  padding: 0 22px;
  background: transparent;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.quiet-button:hover,
.quiet-button:focus-visible {
  background: var(--charcoal);
  color: var(--bone);
  outline: none;
}

.quiet-button.light {
  border-color: rgba(240, 235, 232, 0.5);
  color: var(--bone);
}

.quiet-button.light:hover,
.quiet-button.light:focus-visible {
  background: var(--bone);
  color: var(--charcoal);
}

.quiet-button.secondary {
  opacity: 0.74;
}

.text-link {
  font-size: 12px;
  color: rgba(240, 235, 232, 0.76);
  text-transform: uppercase;
}

.dark-band {
  background: var(--warm-dark);
  color: var(--bone);
}

.material-story {
  min-height: 900px;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(620px, 1.2fr);
  gap: 7vw;
  padding: 118px 7vw;
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.section-intro p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 34px;
  color: rgba(240, 235, 232, 0.62);
}

.material-grid {
  display: grid;
  gap: 0;
  align-content: start;
}

.material-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  min-height: 258px;
  border-bottom: 1px solid rgba(215, 210, 203, 0.18);
  padding: 20px 0;
  opacity: 0.56;
  cursor: pointer;
  transition: opacity 260ms ease;
}

.material-card.is-active,
.material-card:hover {
  opacity: 1;
}

.material-card img {
  width: 320px;
  height: 220px;
  filter: saturate(0.82);
}

.material-card span,
.product-card p,
.service-row b {
  display: block;
  color: var(--wood);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.material-card h3 {
  margin-top: 10px;
  margin-bottom: 18px;
}

.material-card p {
  color: rgba(240, 235, 232, 0.58);
  max-width: 260px;
}

.atmosphere {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  padding: 130px 7vw 150px;
  overflow: hidden;
}

.curve-grow {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 8vw;
  min-height: 1040px;
  padding: 130px 7vw;
  background: var(--bone);
  overflow: hidden;
}

.curve-copy {
  align-self: center;
}

.curve-copy p:last-child {
  max-width: 470px;
  margin-top: 64px;
  color: var(--moss);
}

.curve-image-wrap {
  align-self: center;
  justify-self: end;
  width: min(560px, 80%);
  aspect-ratio: 0.78;
  overflow: hidden;
  transform: translateY(70px) scale(0.72);
  opacity: 0.72;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 1200ms ease;
}

.curve-grow.is-grown .curve-image-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.curve-image-wrap img {
  transform: scale(1.08);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.curve-grow.is-grown .curve-image-wrap img {
  transform: scale(1);
}

.ritual-index {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1fr);
  gap: 8vw;
  padding: 120px 7vw 132px;
  background: var(--paper);
  border-top: 1px solid rgba(107, 106, 94, 0.16);
  border-bottom: 1px solid rgba(107, 106, 94, 0.16);
}

.ritual-index-lead {
  align-self: start;
  position: sticky;
  top: 118px;
}

.ritual-index-lead h2 {
  max-width: 660px;
  font-size: clamp(42px, 5vw, 82px);
}

.ritual-index-lead p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 36px;
  color: var(--moss);
}

.ritual-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(107, 106, 94, 0.22);
}

.ritual-list li {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.7fr) minmax(220px, 0.6fr);
  gap: 42px;
  align-items: baseline;
  border-bottom: 1px solid rgba(107, 106, 94, 0.22);
  padding: 34px 0 38px;
}

.ritual-list span {
  color: var(--wood);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.ritual-list h3 {
  font-size: clamp(28px, 3vw, 46px);
}

.ritual-list p {
  color: var(--moss);
  font-size: 13px;
  line-height: 1.75;
}

.serif-small {
  margin-bottom: 150px;
  color: var(--moss);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.98;
}

.atmosphere-copy p:last-child {
  max-width: 480px;
  margin-top: 58px;
  color: var(--moss);
}

.atmosphere-stack {
  position: relative;
  min-height: 690px;
}

.stack-large,
.stack-small {
  position: absolute;
  box-shadow: 0 26px 90px rgba(30, 29, 26, 0.11);
}

.stack-large {
  top: 10px;
  left: 0;
  width: 58%;
  height: 430px;
}

.stack-small {
  right: 0;
  bottom: 20px;
  width: 64%;
  height: 360px;
  filter: saturate(0.72);
}

.objects {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 66px;
  padding: 132px 7vw 124px;
  background: var(--bone);
}

.objects-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.62fr);
  gap: clamp(72px, 8vw, 132px);
  min-height: min(780px, calc(100vh - 72px));
  align-self: start;
  align-items: center;
  border-bottom: 1px solid rgba(107, 106, 94, 0.18);
  padding-bottom: 58px;
}

.objects-copy h2 {
  max-width: 840px;
}

.objects-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 34px;
  color: var(--moss);
}

.objects-feature {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  margin: 0;
}

.objects-feature img {
  width: 100%;
  min-height: 520px;
  aspect-ratio: 0.94;
  filter: saturate(0.78);
}

.objects-feature figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 88px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--bone);
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}

.objects-feature figcaption span {
  color: var(--wood);
}

.objects-feature figcaption b {
  font-weight: 400;
}

.lead-actions {
  margin-top: 38px;
}

.scent-finder {
  display: flex;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(107, 106, 94, 0.28);
  margin-top: 0;
  padding: 10px;
}

.scent-finder button {
  flex: 1;
  border: 0;
  padding: 11px 10px;
  background: transparent;
  color: var(--moss);
  font-size: 11px;
  cursor: pointer;
}

.scent-finder button.is-selected {
  background: var(--charcoal);
  color: var(--bone);
}

.rail-heading {
  grid-column: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(280px, 0.38fr);
  gap: 7vw;
  align-items: end;
  border-bottom: 1px solid rgba(107, 106, 94, 0.18);
  padding-bottom: 24px;
}

.rail-heading .eyebrow {
  margin-bottom: 16px;
}

.rail-heading h3 {
  max-width: 520px;
  font-size: clamp(30px, 2.4vw, 44px);
}

.rail-heading > p {
  margin: 0 0 4px;
  color: var(--moss);
  font-size: 13px;
  line-height: 1.7;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 0;
  grid-column: 1;
  border-left: 1px solid rgba(107, 106, 94, 0.18);
  border-bottom: 1px solid rgba(107, 106, 94, 0.18);
}

.product-card {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  min-width: 0;
  border-right: 1px solid rgba(107, 106, 94, 0.18);
  padding: clamp(22px, 2vw, 34px);
  cursor: pointer;
  outline: none;
  background: rgba(215, 210, 203, 0.12);
  transition: background 260ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  background: rgba(215, 210, 203, 0.22);
}

.product-card img {
  width: 100%;
  aspect-ratio: 0.82;
  height: auto;
  min-height: 0;
  margin-bottom: 32px;
  filter: saturate(0.82);
  object-fit: cover;
  transition: filter 420ms ease;
}

.product-card:hover img,
.product-card:focus-visible img {
  filter: saturate(0.96);
}

.product-card h3 {
  min-height: 2.1em;
  margin: 18px 0 16px;
}

.product-card span,
.product-card strong {
  display: block;
  color: var(--moss);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.product-card strong {
  align-self: end;
  margin-top: 18px;
  color: var(--charcoal);
}

.set-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
  gap: 7vw;
  margin-top: 6px;
  border-top: 1px solid rgba(107, 106, 94, 0.18);
  padding-top: 64px;
}

.set-heading {
  max-width: 360px;
}

.set-heading h3 {
  font-size: 38px;
  margin-bottom: 26px;
}

.set-heading p:not(.eyebrow) {
  color: var(--moss);
  font-size: 14px;
  line-height: 1.75;
}

.set-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(107, 106, 94, 0.18);
  border-bottom: 1px solid rgba(107, 106, 94, 0.18);
}

.set-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  border-right: 1px solid rgba(107, 106, 94, 0.18);
  padding: 26px 26px 32px;
  background: rgba(215, 210, 203, 0.10);
  cursor: pointer;
  transition: background 260ms ease;
}

.set-card:hover,
.set-card:focus-visible {
  background: rgba(215, 210, 203, 0.22);
  outline: none;
}

.set-card img {
  width: 100%;
  aspect-ratio: 0.92;
  height: auto;
  margin-bottom: 28px;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 420ms ease;
}

.set-card:hover img,
.set-card:focus-visible img {
  filter: saturate(0.9);
}

.set-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--moss);
  font-size: 11px;
  text-transform: uppercase;
}

.set-card h3 {
  font-size: clamp(22px, 1.7vw, 26px);
  margin-bottom: 18px;
}

.set-card p {
  min-height: 4.8em;
  color: var(--moss);
  font-size: 13px;
  line-height: 1.6;
}

.set-card strong {
  margin-top: 18px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 400;
}

.service-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-self: end;
  border: 1px solid rgba(107, 106, 94, 0.22);
  background: rgba(215, 210, 203, 0.12);
  margin-top: 2px;
  padding: 28px 32px;
}

.service-row span {
  display: block;
  margin-top: 8px;
  color: var(--moss);
  font-size: 12px;
  line-height: 1.45;
}

.quiet-bag {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(360px, 0.7fr);
  gap: 9vw;
  padding: 125px 7vw;
  background: var(--warm-dark);
  color: var(--bone);
}

.quiet-bag p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 34px;
  color: rgba(215, 210, 203, 0.74);
}

.checkout-panel {
  border: 1px solid rgba(215, 210, 203, 0.22);
  padding: 42px;
}

.checkout-panel ol {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
}

.checkout-panel li {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(215, 210, 203, 0.16);
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 28px;
}

.checkout-panel span {
  color: var(--wood);
  font-family: var(--sans);
  font-size: 11px;
}

.footer {
  position: relative;
  min-height: 720px;
  padding: 44px 7vw 34px;
  background: var(--bone);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 106, 94, 0.24);
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 11px;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--charcoal);
  color: var(--bone);
  outline: none;
}

.footer-nav {
  position: absolute;
  top: 44px;
  right: 7vw;
  display: grid;
  gap: 14px;
  justify-items: end;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-nav a,
.footer-legal a,
.footer-meta a {
  color: inherit;
  text-decoration: none;
}

.footer p {
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 114px;
  max-width: 1180px;
  margin: 0;
  font-family: var(--serif);
  color: rgba(30, 29, 26, 0.34);
  font-size: clamp(48px, 7.6vw, 118px);
  line-height: 0.95;
  transform-origin: left center;
  transform: scale(0.86) translateY(40px);
  opacity: 0.72;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), opacity 1100ms ease;
}

.footer p.is-grown {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.footer-meta {
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  color: var(--moss);
  font-size: 11px;
}

.footer-meta address {
  max-width: 720px;
  font-style: normal;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.footer-legal a {
  border-bottom: 1px solid rgba(107, 106, 94, 0.34);
}

.product-dialog {
  width: min(880px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  background: var(--bone);
  color: var(--charcoal);
}

.product-dialog::backdrop {
  background: rgba(30, 29, 26, 0.48);
}

.product-dialog[open] {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
}

.dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: var(--moss);
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-image {
  min-height: 620px;
}

.dialog-copy {
  padding: 76px 70px 58px;
}

.dialog-copy h2 {
  margin-bottom: 28px;
  font-size: 56px;
}

.dialog-copy p {
  color: var(--moss);
}

.dialog-notes {
  margin: 34px 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.24;
}

.purchase-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(107, 106, 94, 0.24);
  margin-bottom: 28px;
  padding: 18px;
  color: var(--moss);
  font-size: 11px;
}

.reveal-enabled [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal],
.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    padding: 24px;
  }

  .nav {
    gap: 18px;
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: auto;
    padding: 150px 24px 0;
  }

  .hero-emerge-logo {
    right: 24px;
    bottom: 52px;
    width: 112px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .material-story,
  .atmosphere,
  .curve-grow,
  .ritual-index,
  .objects,
  .quiet-bag {
    display: block;
    padding: 86px 24px;
  }

  .section-intro {
    position: static;
    margin-bottom: 48px;
  }

  .material-card,
  .material-card.is-active,
  .material-card:hover {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .material-card img {
    width: 100%;
    height: 292px;
  }

  .serif-small {
    margin-bottom: 72px;
  }

  .atmosphere-stack {
    min-height: 520px;
    margin-top: 58px;
  }

  .curve-grow {
    min-height: auto;
  }

  .curve-copy p:last-child {
    margin-top: 42px;
  }

  .curve-image-wrap {
    width: 68%;
    margin: 72px 0 0 auto;
  }

  .ritual-index-lead {
    position: static;
    margin-bottom: 46px;
  }

  .ritual-list li {
    grid-template-columns: 86px 1fr;
    gap: 18px 28px;
    padding: 28px 0 32px;
  }

  .ritual-list p {
    grid-column: 2;
  }

  .stack-large {
    width: 76%;
    height: 300px;
  }

  .stack-small {
    width: 72%;
    height: 260px;
  }

  .objects {
    padding-bottom: 70px;
  }

  .objects-lead {
    display: block;
    margin-bottom: 34px;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .objects-feature {
    position: relative;
    margin-top: 42px;
  }

  .objects-feature img {
    min-height: 0;
    aspect-ratio: 0.92;
  }

  .objects-feature figcaption {
    position: static;
    display: grid;
    gap: 8px;
    margin-top: -10px;
    color: var(--charcoal);
  }

  .rail-heading {
    display: block;
    margin: 0 0 24px;
    border-bottom: 1px solid rgba(107, 106, 94, 0.18);
    padding-bottom: 22px;
  }

  .rail-heading h3 {
    max-width: 320px;
    font-size: 32px;
  }

  .rail-heading > p {
    max-width: 320px;
    margin-top: 18px;
    font-size: 12px;
  }

  .lead-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .scent-finder {
    margin-top: 34px;
  }

  .product-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    margin: 0 -24px;
    padding: 0 24px 18px;
    border-left: 0;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    min-width: 76%;
    border-right: 0;
    padding: 20px;
    scroll-snap-align: start;
  }

  .product-card img {
    height: 390px;
  }

  .product-card h3 {
    min-height: 0;
  }

  .set-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
    padding-top: 34px;
  }

  .set-list {
    grid-template-columns: 1fr;
    gap: 14px;
    border-left: 0;
  }

  .set-card {
    border-right: 0;
    padding: 20px;
  }

  .set-card img {
    height: 230px;
  }

  .set-card p {
    min-height: 0;
  }

  .service-row {
    display: block;
    margin-top: 28px;
    padding: 22px;
  }

  .service-row div + div {
    margin-top: 20px;
  }

  .checkout-panel {
    margin-top: 42px;
    padding: 28px;
  }

  .checkout-panel li {
    font-size: 22px;
  }

  .footer {
    min-height: 620px;
    padding: 30px 24px;
  }

  .footer-nav {
    top: 34px;
    right: 24px;
  }

  .footer p {
    left: 24px;
    right: 24px;
    bottom: 142px;
  }

  .footer-meta {
    left: 24px;
    right: 24px;
    bottom: 28px;
    display: grid;
    gap: 18px;
  }

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

  .product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .dialog-image {
    min-height: 340px;
  }

  .dialog-copy {
    padding: 42px 24px 30px;
  }

  .dialog-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
    padding: 18px 20px;
  }

  .wordmark {
    position: absolute;
    top: 18px;
    left: 20px;
    width: 46px;
    height: 19px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-copy {
    width: calc(100vw - 40px);
    padding: 132px 20px 0;
  }

  .hero-media {
    inset: -4vh -18vw;
  }

  .hero-emerge-logo {
    right: 20px;
    bottom: 36px;
    width: 88px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .material-story,
  .atmosphere,
  .curve-grow,
  .ritual-index,
  .objects,
  .quiet-bag {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-copy > p:not(.eyebrow),
  .objects-copy p:not(.eyebrow),
  .quiet-bag p:not(.eyebrow) {
    font-size: 13px;
  }

  .lead-actions {
    grid-template-columns: 1fr;
  }

  .ritual-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ritual-list p {
    grid-column: auto;
  }

  .scent-finder {
    overflow-x: auto;
  }

  .scent-finder button {
    min-width: 112px;
  }

  .product-rail {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-card {
    min-width: 84%;
  }

  .product-card img {
    height: min(360px, 82vw);
  }

  .set-card img,
  .material-card img {
    height: min(300px, 76vw);
  }

  .checkout-panel li {
    gap: 16px;
    font-size: 20px;
  }

  .purchase-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer {
    min-height: 700px;
  }

  .footer p {
    bottom: 180px;
    font-size: clamp(42px, 15vw, 62px);
  }
}

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