:root {
  --paper: #eeeae1;
  --paper-light: #f6f3ec;
  --ink: #292a25;
  --muted: #747267;
  --olive: #777b67;
  --clay: #aa765f;
  --line: rgba(41, 42, 37, 0.19);
  --serif-jp: "Noto Serif JP", serif;
  --serif-en: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif-jp);
  font-weight: 300;
  line-height: 1.9;
}

.page-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  background: var(--paper-light);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.done,
.page-loader.skip {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.skip {
  transition: none;
}

.loader-brand {
  display: flex;
  min-width: 180px;
  align-items: center;
  flex-direction: column;
  color: var(--ink);
}

.loader-brand span {
  font-size: 27px;
  letter-spacing: 0.16em;
}

.loader-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.loader-brand i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 25px;
  overflow: hidden;
  background: var(--line);
}

.loader-brand i::after {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--olive);
  transform: translateX(-100%);
  animation: tie-thread 1400ms ease forwards;
}

@keyframes tie-thread {
  to {
    transform: translateX(0);
  }
}

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

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

.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;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4vw;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif-en);
  line-height: 0.8;
}

.logo span {
  font-size: 29px;
  font-style: normal;
  letter-spacing: 0.13em;
}

.logo small {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--serif-en);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.site-nav a {
  transition: opacity 180ms ease;
}

.site-nav a:hover {
  opacity: 0.55;
}

.site-nav .nav-shop {
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background: var(--paper-light);
}

.hero-copy {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 150px 7vw 70px 10vw;
}

.eyebrow {
  margin: 0 0 27px;
  color: var(--clay);
  font-family: var(--serif-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.55;
}

h1 {
  font-size: clamp(34px, 4vw, 65px);
}

h2 {
  font-size: clamp(31px, 4.2vw, 56px);
}

em {
  color: var(--olive);
  font-family: var(--serif-en), var(--serif-jp);
  font-weight: 400;
}

.hero-text {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  letter-spacing: 0.13em;
}

.text-link span {
  font-size: 17px;
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #9a9b8b;
}

.hero-visual::before,
.story-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.23), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(20, 25, 17, 0.2));
}

.hero-photo::before,
.story-photo::before {
  z-index: 1;
  background: linear-gradient(145deg, rgba(95, 100, 84, 0.12), rgba(34, 39, 31, 0.24));
  pointer-events: none;
}

.hero-photo img,
.story-photo img,
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  object-position: 50% 48%;
}

.lace-art {
  position: relative;
  width: min(68%, 510px);
  aspect-ratio: 1;
  filter: drop-shadow(12px 18px 15px rgba(43, 43, 33, 0.2));
}

.lace-art-large {
  transform: rotate(-13deg);
}

.lace-ring {
  position: absolute;
  border: 2px dotted rgba(248, 241, 220, 0.9);
  border-radius: 50%;
}

.lace-ring::before,
.lace-ring::after {
  position: absolute;
  content: "";
  border: 5px double rgba(248, 241, 220, 0.8);
  border-radius: 50%;
}

.ring-one {
  inset: 23%;
  border-width: 7px;
  outline: 1px solid rgba(248, 241, 220, 0.65);
  outline-offset: 17px;
}

.ring-one::before {
  inset: -40%;
}

.ring-one::after {
  inset: -65%;
  border-style: dotted;
  border-width: 4px;
}

.ring-two {
  width: 25%;
  aspect-ratio: 1;
  top: 4%;
  left: 38%;
  border-width: 5px;
}

.ring-two::before {
  inset: -20%;
}

.ring-two::after {
  inset: -48%;
  border-style: dotted;
  border-width: 3px;
}

.ring-three {
  width: 25%;
  aspect-ratio: 1;
  right: 5%;
  bottom: 21%;
  border-width: 5px;
}

.ring-three::before,
.ring-four::before {
  inset: -20%;
}

.ring-three::after,
.ring-four::after {
  inset: -48%;
  border-style: dotted;
  border-width: 3px;
}

.ring-four {
  width: 25%;
  aspect-ratio: 1;
  bottom: 21%;
  left: 5%;
  border-width: 5px;
}

.photo-note {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-number {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 4vw;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 12px;
}

.scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 47%;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-shell {
  padding: 150px 8vw;
}

.works {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: start;
  gap: 5vw;
  margin-bottom: 90px;
}

.section-heading .eyebrow {
  padding-top: 22px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading h2 em {
  white-space: nowrap;
}

.section-heading > p:last-child {
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px 6vw;
  align-items: start;
}

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

.work-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  overflow: hidden;
}

.work-image img {
  position: absolute;
  inset: 0;
  transition: transform 600ms ease, filter 600ms ease;
}

.work-card:hover .work-image img {
  transform: scale(1.025);
  filter: brightness(1.025);
}

.work-card-tall .work-image {
  min-height: 680px;
}

.work-image > span {
  position: absolute;
  bottom: 14px;
  left: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.placeholder-a {
  background: #857f74;
}

.placeholder-b {
  background: #b3a68c;
}

.placeholder-c {
  background: #8c9188;
}

.motif {
  position: relative;
  width: 48%;
  aspect-ratio: 1;
  border: 4px dotted rgba(247, 240, 220, 0.85);
  border-radius: 50%;
  filter: drop-shadow(8px 13px 9px rgba(40, 38, 29, 0.23));
}

.motif::before,
.motif::after {
  position: absolute;
  content: "";
  border: 3px double rgba(247, 240, 220, 0.75);
  border-radius: inherit;
}

.motif::before {
  inset: 13%;
}

.motif::after {
  inset: -18%;
  border-style: dotted;
}

.motif-flower {
  transform: rotate(-25deg);
}

.motif-drop {
  width: 38%;
  border-radius: 50% 50% 50% 8%;
  transform: rotate(-45deg);
}

.motif-loop {
  width: 38%;
  border-radius: 44%;
  transform: rotate(18deg);
}

.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.work-meta h3 {
  margin-bottom: 0;
  font-family: var(--serif-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.work-meta p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.works-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  margin-top: 100px;
}

.outline-button {
  display: flex;
  width: min(100%, 430px);
  align-items: center;
  justify-content: space-between;
  padding: 20px 27px;
  border: 1px solid var(--ink);
  font-size: 13px;
  letter-spacing: 0.13em;
  transition: color 200ms ease, background 200ms ease;
}

.outline-button:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.works-action small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.story {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr 1fr;
  background: #d8d4ca;
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #6e7469;
}

.story-photo img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.lace-art-small {
  transform: rotate(18deg);
}

.vertical-label {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.story-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 110px 10vw;
}

.story-copy h2 {
  font-size: clamp(31px, 3.4vw, 48px);
}

.story-copy h2 span,
.story-copy h2 em {
  white-space: nowrap;
}

.story-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: #5f5f57;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2.25;
}

.story-sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
  color: var(--muted);
  font-family: var(--serif-en);
}

.story-sign span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-sign strong {
  color: var(--ink);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
}

.story-copy .text-link {
  margin-top: 28px;
}

.origin {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 8vw;
  background: var(--paper-light);
}

.origin-heading {
  position: sticky;
  top: 120px;
}

.origin-heading h2 {
  margin-bottom: 0;
}

.origin-since {
  margin: -8px 0 35px;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.origin-body {
  max-width: 590px;
  padding-top: 45px;
}

.origin-body p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2.4;
}

.origin-body .origin-phrase {
  margin: 50px 0;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: 0.14em;
  line-height: 1.8;
}

.lessons {
  display: grid;
  min-height: 850px;
  grid-template-columns: 1.05fr 0.95fr;
  background: #d9d5ca;
}

.lesson-gallery {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: #8b8e82;
}

.lesson-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 15px 20px 35px rgba(46, 45, 38, 0.16);
}

.lesson-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.lesson-photo-main {
  inset: 0 18% 20% 0;
}

.lesson-photo-sub {
  right: 6%;
  bottom: 7%;
  width: 42%;
  aspect-ratio: 1;
  border: 9px solid #e8e4da;
}

.lesson-gallery > p {
  position: absolute;
  right: 22px;
  top: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.lesson-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 100px 8vw;
}

.lesson-intro {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2.2;
}

.lesson-places {
  width: 100%;
  margin-bottom: 45px;
  border-top: 1px solid var(--line);
}

.lesson-place {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1.3fr;
  align-items: start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.lesson-place > span {
  color: var(--clay);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.lesson-place a,
.lesson-place > p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.07em;
  line-height: 1.9;
}

.lesson-place a {
  transition: opacity 180ms ease;
}

.lesson-place a:hover {
  opacity: 0.58;
}

.lesson-place small {
  display: block;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.thread-order {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9vw;
  background: var(--paper);
}

.thread-heading > p:last-child {
  max-width: 450px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2.25;
}

.thread-heading h2 {
  font-size: clamp(31px, 3.5vw, 48px);
}

.thread-heading h2 span,
.thread-heading h2 em {
  white-space: nowrap;
}

.thread-card {
  padding: 55px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.custom-order {
  margin-bottom: 38px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.custom-order span {
  color: var(--clay);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.custom-order h3 {
  margin: 18px 0 9px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.custom-order p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.07em;
}

.thread-number {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 5px 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.thread-number span {
  align-self: start;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.thread-number strong {
  grid-row: span 2;
  color: var(--olive);
  font-family: var(--serif-en);
  font-size: clamp(90px, 11vw, 145px);
  font-weight: 400;
  line-height: 0.75;
}

.thread-number strong small {
  display: inline-block;
  margin: 0 5px;
  color: var(--muted);
  font-family: var(--serif-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.thread-number p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.swatch-note {
  margin: 28px 0 -17px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.thread-swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 35px 0;
}

.thread-swatches i {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #a9af9c;
}

.thread-swatches i:nth-child(2) { background: #687c76; }
.thread-swatches i:nth-child(3) { background: #9a7666; }
.thread-swatches i:nth-child(4) { background: #d0bba2; }
.thread-swatches i:nth-child(5) { background: #697587; }
.thread-swatches i:nth-child(6) { background: #c29b91; }
.thread-swatches i:nth-child(7) { background: #dacfb9; }
.thread-swatches i:nth-child(8) { background: #8d6e79; }
.thread-swatches i:nth-child(9) { background: #c4bd83; }
.thread-swatches i:nth-child(10) { background: #596266; }
.thread-swatches i:nth-child(11) { background: #b27b69; }
.thread-swatches i:nth-child(12) { background: #e3ded0; }

.thread-card .outline-button {
  width: 100%;
}

.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 9vw;
  color: var(--paper-light);
  background: #74796d;
}

.shop-banner .eyebrow {
  color: #ddd1b9;
}

.shop-banner h2 {
  margin-bottom: 0;
}

.shop-banner em {
  color: #ddd1b9;
}

.shop-banner > a {
  display: flex;
  width: 175px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.shop-banner > a:hover {
  color: var(--olive);
  background: var(--paper-light);
  transform: rotate(-8deg);
}

.shop-banner > a span {
  font-size: 13px;
  letter-spacing: 0.16em;
}

.shop-banner > a strong {
  margin-top: 7px;
  font-size: 19px;
  font-weight: 300;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  padding: 75px 5vw 35px;
  background: var(--paper-light);
}

.footer-logo {
  justify-self: start;
}

.footer-links {
  display: flex;
  justify-self: center;
  gap: 30px;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.1em;
}

footer > p {
  justify-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    padding: 18px 20px;
    background: rgba(246, 243, 236, 0.9);
  }

  .logo span {
    font-size: 29px;
  }

  .site-header > .logo {
    position: relative;
    z-index: 2;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    width: 36px;
    height: 30px;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 5px;
    border: 0;
    background: none;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 200ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    opacity: 0;
    pointer-events: none;
    background: var(--paper-light);
    font-size: 24px;
    transition: opacity 220ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 65svh;
    padding: 140px 8vw 75px;
  }

  .hero-visual {
    min-height: 60svh;
  }

  .hero-number,
  .scroll-note {
    display: none;
  }

  .section-shell {
    padding: 100px 7vw;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 55px;
  }

  .section-heading .eyebrow,
  .section-heading > p:last-child {
    padding-top: 0;
  }

  .section-heading > p:last-child {
    max-width: 500px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-card-tall {
    grid-row: auto;
  }

  .work-card-tall .work-image,
  .work-image {
    min-height: 70vw;
  }

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

  .story-visual {
    min-height: 75vw;
  }

  .story-copy {
    padding: 90px 8vw;
  }

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

  .origin-heading {
    position: static;
  }

  .origin-body {
    padding-top: 0;
  }

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

  .lesson-gallery {
    min-height: 75vw;
  }

  .lesson-copy {
    padding: 90px 8vw;
  }

  .thread-order {
    grid-template-columns: 1fr;
  }

  .shop-banner {
    gap: 45px;
    padding: 80px 8vw;
  }

  .shop-banner > a {
    width: 140px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    min-height: 620px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .lace-art {
    width: 70%;
  }

  .work-card-tall .work-image,
  .work-image {
    min-height: 105vw;
  }

  .work-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .story-visual {
    min-height: 100vw;
  }

  .lesson-gallery {
    min-height: 110vw;
  }

  .lesson-photo-main {
    inset: 0 12% 18% 0;
  }

  .lesson-photo-sub {
    right: 5%;
    bottom: 5%;
    width: 45%;
    border-width: 6px;
  }

  .lesson-place {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .thread-card {
    padding: 30px 24px;
  }

  .thread-number {
    grid-template-columns: 1fr auto;
  }

  .thread-number strong {
    font-size: 90px;
  }

  .shop-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-banner > a {
    width: 100%;
    aspect-ratio: auto;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 25px;
    border-radius: 0;
  }

  .shop-banner > a strong {
    margin-top: 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }

  .footer-links {
    justify-self: end;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

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

  .page-loader {
    display: none;
  }
}
