:root {
  color-scheme: light;
  --paper: #fff;
  --silver: #eef0f2;
  --ink: #202326;
  --muted: #52575d;
  --accent: #1a0089;
  --line: #d4d8dc;
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Manrope", sans-serif;
  --gutter: clamp(24px, 6vw, 104px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  scrollbar-color: #8b8d94 var(--silver);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: #fff;
}
a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--accent);
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2 {
  font: 500 clamp(42px, 4.4vw, 68px) / 1.1 var(--display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 em,
h2 em {
  font-weight: 500;
  line-height: 1.14;
  display: inline-block;
  padding-bottom: 0.055em;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}
p {
  max-width: 65ch;
}
button[hidden],
[hidden] {
  display: none !important;
}
.section-space {
  padding: clamp(80px, 8vw, 130px) var(--gutter);
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
  color: #fff;
}
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(32, 35, 38, 0.12);
}
.site-header__inner {
  min-height: 76px;
  max-width: 1680px;
  margin: auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  color: var(--accent);
  font: 600 22px/1.2 var(--body);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}
.nav a {
  font-size: 13px;
  text-decoration: none;
  position: relative;
  padding: 12px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current]::after {
  transform: scaleX(1);
}
.header-cta {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 0 8px 28px;
  border-left: 1px solid var(--line);
  color: var(--accent);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  margin-left: auto;
  font-size: 14px;
}
.menu-lines {
  width: 18px;
  height: 10px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  transition: transform 0.25s;
}
.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(-45deg);
}
.arrow {
  position: relative;
  display: inline-block;
  flex: none;
  width: 22px;
  height: 12px;
  background: linear-gradient(currentColor, currentColor) left center/100% 1px
    no-repeat;
  transition: transform 0.35s var(--ease);
}
.arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  right: 1px;
  top: 2px;
  transform: rotate(45deg);
}
a:hover .arrow,
button:hover .arrow {
  transform: translateX(4px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 56px;
  padding: 15px 25px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s,
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.btn:hover {
  color: #fff;
  background: #29119b;
  box-shadow: 0 8px 22px rgba(26, 0, 137, 0.14);
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.98);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #a7aaae;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(740px, calc(100svh - 76px));
  display: flex;
  align-items: center;
  background: #e8eaed;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.hero-content {
  padding: 64px var(--gutter) 80px;
  width: 100%;
  position: relative;
}
.hero h1 {
  font-size: clamp(62px, 6.2vw, 96px);
  line-height: 1.07;
  max-width: 720px;
}
.hero h1 em {
  color: var(--accent);
}
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 26px;
  max-width: 410px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 32px;
}
.introduction {
  position: relative;
  max-width: 1680px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12%;
  row-gap: 24px;
  align-items: end;
}
.intro-context {
  grid-column: 1/-1;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.introduction h2 {
  font-size: clamp(56px, 5.25vw, 80px);
}
.introduction h2 em {
  color: var(--accent);
}
.intro-note {
  max-width: 380px;
  padding-bottom: 10px;
}
.intro-note p + p {
  margin-top: 24px;
}
.capture {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8%;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 90px;
  overflow: hidden;
  max-width: 1680px;
  margin: auto;
}
.capture-art {
  min-height: 660px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.shirt-cutout {
  position: relative;
  width: min(420px, 85%);
  height: auto;
  z-index: 1;
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 14px rgba(24, 46, 82, 0.07));
}
.capture-word {
  position: absolute;
  left: -5%;
  top: 6%;
  font: 500 clamp(90px, 13.5vw, 194px) / 1 var(--display);
  letter-spacing: -0.04em;
  color: var(--accent);
  z-index: 0;
}
.capture-word--front {
  top: auto;
  bottom: 0;
  left: auto;
  right: -3%;
  z-index: 2;
  font-style: italic;
  line-height: 1.2;
  padding-bottom: 0.04em;
}
.capture-copy h2 {
  font-size: clamp(38px, 3.7vw, 58px);
  max-width: 580px;
}
.capture-copy > p {
  margin-top: 25px;
  max-width: 400px;
  color: var(--muted);
}
.capture-steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 25px;
}
.capture-steps li {
  display: flex;
  gap: 20px;
}
.capture-steps li > span {
  font-size: 12px;
  color: var(--accent);
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.capture-steps p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
}
.app-tour {
  background: var(--silver);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10%;
  align-items: center;
  overflow: hidden;
}
.tour-copy {
  max-width: 560px;
}
.tour-copy > p {
  margin-top: 24px;
  max-width: 380px;
  color: var(--muted);
}
.tour-tabs {
  display: none;
  margin-top: 42px;
}
.js .tour-tabs {
  display: block;
}
.tour-tab {
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid #cbd0d5;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  transition: color 0.2s;
}
.tour-tab:first-child {
  border-top: 1px solid #cbd0d5;
}
.tab-number {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.tour-tab .arrow {
  margin-left: auto;
  opacity: 0;
}
.tour-tab.is-active {
  color: var(--accent);
  font-weight: 600;
}
.tour-tab.is-active .arrow {
  opacity: 1;
}
.tour-tab:hover {
  color: var(--accent);
}
.tour-copy .tour-footnote {
  font-size: 12px;
  margin-top: 22px;
}
.tour-stage {
  position: relative;
  display: grid;
  justify-items: center;
  isolation: isolate;
}
.tour-backdrop {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  white-space: nowrap;
  font: 500 clamp(90px, 10vw, 150px) / 1 var(--display);
  letter-spacing: -0.035em;
  color: #dce0e5;
  pointer-events: none;
}
.tour-panel {
  width: 100%;
  display: grid;
  justify-items: center;
  margin: 0 0 40px;
}
.js .tour-panel {
  margin: 0;
}
.tour-panel img {
  width: clamp(230px, 24vw, 338px);
  aspect-ratio: 660/1434;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 16px 24px 60px rgba(47, 54, 67, 0.15);
}
.tour-panel figcaption {
  font-size: 13px;
  text-align: center;
  max-width: 330px;
  line-height: 1.7;
  margin: 26px auto 0;
  color: var(--muted);
}
.ritual {
  min-height: 720px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--silver);
}
.ritual > img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ritual-copy {
  margin-left: 57%;
  padding: 90px var(--gutter) 90px 0;
}
.ritual-copy h2 {
  font-size: clamp(44px, 4.5vw, 70px);
}
.ritual-copy p {
  max-width: 330px;
  margin-top: 25px;
  color: #363b41;
}
.private-space {
  max-width: 1680px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: start;
}
.private-space h2 {
  font-size: clamp(44px, 4.5vw, 68px);
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 40px;
}
.principles h3 {
  font-size: 16px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.questions {
  background: #f5f6f7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.questions h2 {
  font-size: clamp(42px, 4vw, 60px);
}
.questions .text-link {
  margin-top: 28px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex: none;
  background: linear-gradient(currentColor, currentColor) center/100% 1px
    no-repeat;
}
.plus::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  height: 14px;
  width: 1px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
details[open] .plus::after {
  transform: rotate(90deg);
}
.faq-list details > div {
  padding: 0 28px 24px 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 65ch;
}
.faq-list details > div > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
}
.closing {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1680px;
  margin: auto;
}
.closing h2 {
  font-size: clamp(52px, 5.8vw, 90px);
  color: var(--accent);
}
.closing > div {
  min-width: 290px;
}
.closing .btn {
  margin-top: 25px;
}
.closing .availability {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: 1680px;
  margin: auto;
  padding: 50px var(--gutter) 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
}
.site-footer__mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font: 600 22px/1.2 var(--body);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-symbol {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.site-footer__blurb {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 12px 30px;
  font-size: 12px;
}
.site-footer__nav a {
  text-decoration: none;
}
.site-footer__contact {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.site-footer__legal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.site-footer__inner > div:last-child {
  text-align: right;
}
.shell {
  max-width: 1340px;
  margin: auto;
  padding: 0 var(--gutter);
}
.prose {
  max-width: 760px;
  margin: 80px auto 100px;
}
.prose h1 {
  font-size: clamp(48px, 6vw, 80px);
  margin: 12px 0 30px;
}
.prose h2 {
  font: 600 24px/1.3 var(--body);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  text-wrap: initial;
}
.prose p {
  margin: 0 0 20px;
  line-height: 1.85;
}
.prose li {
  padding: 6px 0;
  line-height: 1.8;
}
.prose ul,
.prose ol {
  padding-left: 23px;
}
.prose a {
  color: var(--accent);
  overflow-wrap: anywhere;
}
.prose .eyebrow {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.prose strong {
  font-weight: 600;
}
.prose .scroll-x {
  max-width: 100%;
  overflow-x: auto;
}
.prose code {
  font-size: 13px;
  background: var(--silver);
  padding: 5px;
  overflow-wrap: anywhere;
}
.site-footer .eyebrow {
  font-size: 12px;
  margin-bottom: 8px;
}
.prose .lede {
  font-size: 20px;
  line-height: 1.65;
}
.prose .body-copy {
  font-size: 16px;
}
@keyframes hero-arrival {
  from {
    transform: translateY(18px);
    opacity: 0.5;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes caption-arrival {
  from {
    transform: translateY(12px);
    opacity: 0.4;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes panel-arrival {
  from {
    opacity: 0.45;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-content h1 {
    animation: hero-arrival 1.15s var(--ease) both;
  }
  .hero-description {
    animation: hero-arrival 1.15s 0.12s var(--ease) both;
  }
  .hero-actions {
    animation: hero-arrival 1.15s 0.22s var(--ease) both;
  }
  .capture-art.is-seen .shirt-cutout {
    animation: garment-arrival 1.5s var(--ease) both;
  }
  .capture-art.is-seen .capture-word--front {
    animation: caption-arrival 1.1s 0.15s var(--ease) both;
  }
  [data-reveal="copy"].is-seen {
    animation: caption-arrival 1s var(--ease) both;
  }
  [data-reveal="closing"].is-seen h2 {
    animation: caption-arrival 1.2s var(--ease) both;
  }
  .tour-panel.is-changing {
    animation: panel-arrival 0.5s var(--ease) both;
  }
  @supports (animation-timeline: view()) {
    .hero-image {
      animation: hero-drift linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
    @keyframes hero-drift {
      to {
        transform: translateY(8%) scale(1.035);
      }
    }
  }
}
@media (min-width: 1700px) {
  .hero {
    min-height: 820px;
  }
  .hero-content {
    max-width: 1680px;
    margin: auto;
  }
  .hero-image {
    object-position: center 60%;
  }
}
@media (max-width: 1100px) {
  .site-header__inner {
    gap: 22px;
  }
  .nav {
    gap: 20px;
  }
  .header-cta {
    padding-left: 20px;
    gap: 12px;
  }
  .hero {
    min-height: 660px;
  }
  .hero h1 {
    font-size: clamp(56px, 6.3vw, 74px);
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 20px;
  }
  .capture-art {
    min-height: 550px;
  }
  .capture {
    gap: 6%;
  }
  .capture-word {
    left: 0;
  }
  .capture-word--front {
    left: auto;
    right: -5%;
  }
  .app-tour {
    gap: 6%;
  }
  .tour-panel img {
    width: 280px;
  }
  .principles {
    gap: 30px 25px;
  }
  .private-space {
    gap: 7%;
  }
  .ritual {
    min-height: 620px;
  }
  .site-footer__inner {
    gap: 30px;
  }
  .site-footer__inner > div:last-child {
    text-align: left;
  }
  .closing > div {
    min-width: 270px;
  }
}
@media (max-width: 767px) {
  :root {
    --gutter: 24px;
  }
  .section-space {
    padding: 74px var(--gutter);
  }
  .site-header__inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0 22px;
  }
  .wordmark {
    font-size: 20px;
    gap: 7px;
  }
  .wordmark .brand-symbol {
    width: 34px;
    height: 34px;
  }
  .header-cta {
    display: none;
  }
  .nav {
    order: 3;
    flex-basis: 100%;
    padding: 10px 0 15px;
    margin: 0;
    justify-content: space-between;
  }
  .js .menu-toggle {
    display: flex;
  }
  .js .nav:not(.is-open) {
    display: none;
  }
  .js .nav.is-open {
    display: flex;
  }
  .nav a {
    font-size: 14px;
    padding: 10px 0;
  }
  .hero {
    min-height: 780px;
    align-items: start;
  }
  .hero-image {
    height: 490px;
    top: auto;
    bottom: 0;
    object-fit: cover;
    object-position: 82% center;
  }
  .hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 390px;
    background: linear-gradient(#e8eaed 79%, rgba(232, 234, 237, 0));
  }
  .hero-content {
    padding: 42px var(--gutter) 0;
  }
  .hero h1 {
    font-size: clamp(48px, 8.8vw, 68px);
    max-width: 580px;
    line-height: 1.06;
  }
  .hero-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
    max-width: 360px;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 22px;
  }
  .btn {
    min-height: 52px;
    gap: 25px;
    padding: 13px 21px;
    font-size: 13px;
  }
  .text-link {
    font-size: 13px;
  }
  .introduction {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro-context {
    font-size: 12px;
    margin-bottom: 0;
  }
  .introduction h2 {
    font-size: 66px;
  }
  .intro-note {
    max-width: 480px;
    margin-left: 15%;
    font-size: 15px;
    padding-top: 12px;
  }
  .intro-note p + p {
    margin-top: 18px;
  }
  .capture {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
  }
  .capture-art {
    min-height: 560px;
    max-width: 520px;
    width: 100%;
    margin: auto;
  }
  .shirt-cutout {
    width: 345px;
    max-width: 85%;
  }
  .capture-word {
    font-size: 160px;
    left: 0;
    top: 4%;
  }
  .capture-word--front {
    top: auto;
    bottom: -10px;
    right: 0;
  }
  .capture-copy h2 {
    font-size: 44px;
  }
  .capture-copy > p {
    max-width: 480px;
    font-size: 15px;
  }
  .capture-steps {
    gap: 22px;
    margin-top: 28px;
  }
  .app-tour {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .tour-copy {
    max-width: none;
  }
  .tour-copy h2 {
    font-size: 46px;
    max-width: 580px;
  }
  .tour-copy > p {
    font-size: 15px;
    max-width: 450px;
  }
  .tour-tabs {
    margin-top: 30px;
  }
  .tour-tab {
    padding: 19px 0;
    font-size: 15px;
  }
  .tour-panel img {
    width: min(76vw, 310px);
  }
  .tour-backdrop {
    font-size: 110px;
  }
  .tour-stage {
    padding-top: 12px;
  }
  .ritual {
    min-height: 860px;
    display: block;
    padding: 50px var(--gutter) 0;
  }
  .ritual > img {
    top: auto;
    bottom: 0;
    height: 500px;
    object-fit: cover;
    object-position: 25% center;
  }
  .ritual::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 390px;
    background: linear-gradient(var(--silver) 80%, rgba(238, 240, 242, 0));
    z-index: -1;
  }
  .ritual-copy {
    margin: 0;
    padding: 0;
  }
  .ritual-copy h2 {
    font-size: 50px;
    line-height: 1.05;
  }
  .ritual-copy p {
    max-width: 330px;
    font-size: 14px;
    margin-top: 17px;
  }
  .private-space {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .private-space h2 {
    font-size: 48px;
  }
  .principles {
    gap: 30px 24px;
  }
  .principles h3 {
    font-size: 15px;
  }
  .principles p {
    font-size: 13px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .questions h2 {
    font-size: 46px;
  }
  .questions .text-link {
    margin-top: 20px;
  }
  .faq-list summary {
    font-size: 14px;
    padding: 22px 0;
  }
  .faq-list details > div {
    font-size: 14px;
  }
  .closing {
    display: block;
  }
  .closing h2 {
    font-size: 60px;
  }
  .closing > div {
    margin-top: 30px;
  }
  .closing .btn {
    margin-top: 20px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    padding: 40px var(--gutter);
    gap: 30px 22px;
  }
  .site-footer__inner > div:last-child {
    grid-column: 1/-1;
  }
  .site-footer__nav {
    gap: 12px 20px;
  }
  .site-footer__contact {
    font-size: 12px;
  }
  .site-footer__legal {
    margin-top: 12px;
  }
  .prose {
    margin: 48px auto 70px;
  }
  .prose h1 {
    font-size: 56px;
  }
  .prose h2 {
    font-size: 23px;
  }
  .prose .lede {
    font-size: 18px;
  }
  .prose p,
  .prose li {
    font-size: 15px;
  }
  .shell {
    padding: 0 var(--gutter);
  }
}
@media (max-width: 380px) {
  :root {
    --gutter: 20px;
  }
  .hero h1 {
    font-size: clamp(38px, 12.5vw, 47px);
  }
  .hero-actions {
    gap: 19px;
  }
  .hero .btn {
    gap: 20px;
    padding-inline: 18px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .capture-word {
    font-size: 143px;
  }
  .capture-art {
    min-height: 520px;
  }
  .capture-copy h2,
  .tour-copy h2,
  .questions h2 {
    font-size: 41px;
  }
  .closing h2 {
    font-size: 54px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__nav {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }
  .site-footer__inner > div:last-child {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-image {
    transform: none !important;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: white;
  }
}
@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .tour-tabs {
    display: none;
  }
  .section-space {
    padding: 30px 0;
  }
  body {
    color: #000;
    background: #fff;
  }
  .tour-panel[hidden] {
    display: block !important;
  }
  .prose {
    margin: 0;
    max-width: none;
  }
  .prose a {
    color: #000;
  }
  .prose a[href^="https"]::after {
    content: " (" attr(href) ")";
    font-size: 10px;
  }
}

/* The captured piece opens into its recorded wardrobe. */
.capture-proof {
  position: absolute;
  z-index: 2;
  right: -2%;
  top: 24%;
  width: clamp(150px, 14vw, 205px);
  border-radius: 18px;
  box-shadow: 12px 18px 34px rgb(42 53 73 / 16%);
}
.capture-word--front {
  z-index: 3;
}
.shirt-cutout {
  transform: translateX(-40px) rotate(-10deg);
}
@keyframes garment-arrival {
  from {
    transform: translate(0, 32px) rotate(-17deg);
  }
  to {
    transform: translate(-40px, 0) rotate(-10deg);
  }
}
@keyframes wardrobe-arrival {
  from {
    opacity: 0.2;
    transform: translate(-70px, 24px) scale(0.86);
    clip-path: inset(0 70% 0 0);
  }
  to {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .capture-art.is-seen .capture-proof {
    animation: wardrobe-arrival 1.25s 0.25s var(--ease) both;
  }
}
@media (max-width: 767px) {
  .capture-proof {
    width: 145px;
    right: -2%;
    top: 22%;
  }
}
@media (max-width: 380px) {
  .capture-proof {
    width: 132px;
    right: -1%;
    top: 24%;
  }
}
