:root {
  --night: #0a0e0b;
  --night-soft: #111611;
  --forest: #1b241b;
  --moss: #59634e;
  --bone: #ebe8df;
  --bone-deep: #d7d2c6;
  --ink: #171914;
  --mist: rgba(235, 232, 223, 0.72);
  --line-light: rgba(235, 232, 223, 0.24);
  --line-dark: rgba(23, 25, 20, 0.22);
  --display: "Bodoni MT", Didot, "Times New Roman", serif;
  --body: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --pad: clamp(24px, 5.25vw, 84px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--bone);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--bone);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.section-pad {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.eyebrow {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--night);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.86) 0%, rgba(5, 8, 5, 0.55) 26%, rgba(5, 8, 5, 0.1) 49%, transparent 63%),
    linear-gradient(0deg, rgba(5, 8, 5, 0.62) 0%, transparent 42%);
  pointer-events: none;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 61% 50%;
}

.hero__bar {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
}

.monogram {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(235, 232, 223, 0.58);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
}

.hero__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 6.5vw;
  width: min(450px, 34vw);
  transform: translateY(-41%);
}

.wordmark {
  max-width: 6.2em;
  font-family: var(--display);
  font-size: clamp(68px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: 0.085em;
  line-height: 0.84;
}

.wordmark span {
  display: block;
}

.hero__statement {
  max-width: 15em;
  margin-top: 44px;
  font-family: var(--display);
  font-size: clamp(25px, 2.15vw, 35px);
  line-height: 1.04;
}

.hero__statement span {
  display: inline;
}

.hero__support {
  max-width: 31em;
  margin-top: 18px;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button--light {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}

.button--quiet {
  border-color: rgba(235, 232, 223, 0.68);
  color: var(--bone);
}

.hero__season {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 30px;
  color: rgba(235, 232, 223, 0.62);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio {
  padding-top: clamp(110px, 14vw, 220px);
  padding-bottom: clamp(110px, 14vw, 220px);
  background: var(--bone);
  color: var(--ink);
}

.studio > .eyebrow {
  color: rgba(23, 25, 20, 0.56);
}

.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: clamp(54px, 10vw, 180px);
  align-items: end;
  margin-top: 44px;
}

.studio h2,
.section-head h2,
.fall-story h2,
.selected-work h2,
.process h2,
.meet h2,
.inquiry h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.studio h2 {
  max-width: 9em;
  font-size: clamp(58px, 7.5vw, 122px);
  line-height: 0.94;
}

.studio__copy {
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.studio__copy p {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.22;
}

.studio__copy .text-link {
  margin-top: 34px;
}

.seasonal-worlds {
  background: var(--night);
}

.section-head {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 48px;
  padding-top: clamp(90px, 11vw, 165px);
  padding-bottom: clamp(60px, 8vw, 116px);
  align-items: end;
}

.section-head .eyebrow {
  color: var(--mist);
}

.section-head h2 {
  font-size: clamp(62px, 9vw, 146px);
  line-height: 0.82;
}

.chapter {
  padding-bottom: clamp(120px, 15vw, 230px);
}

.chapter__lead {
  display: grid;
  grid-template-columns: minmax(0, 73%) minmax(260px, 27%);
  min-height: min(82vw, 960px);
  background: var(--night-soft);
}

.chapter__lead--reverse {
  grid-template-columns: minmax(260px, 27%) minmax(0, 73%);
}

.chapter__lead > img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.chapter--fall .chapter__lead > img {
  object-position: 50% 51%;
}

.chapter--halloween .chapter__lead > img {
  grid-column: 2;
  object-position: 48% 50%;
}

.chapter--christmas .chapter__lead > img {
  object-position: 55% 50%;
}

.chapter__lead-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 34px;
  border-left: 1px solid var(--line-light);
}

.chapter__lead--reverse .chapter__lead-caption {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--line-light);
  border-left: 0;
}

.chapter__name {
  font-family: var(--display);
  font-size: clamp(46px, 5.2vw, 84px);
  line-height: 0.9;
}

.chapter__lead-caption > p:last-child {
  max-width: 15em;
  color: var(--mist);
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 27px);
  line-height: 1.15;
}

.chapter__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-top: clamp(64px, 8vw, 120px);
}

.chapter__body--reverse .chapter__intro {
  grid-column: 2;
}

.chapter__intro {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line-light);
}

.chapter__intro .eyebrow {
  color: var(--mist);
}

.chapter__intro h3 {
  max-width: 10em;
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 0.96;
}

.chapter__intro .text-link {
  align-self: flex-start;
}

.chapter-frame {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.chapter-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.chapter-frame--wide {
  grid-column: 1 / -1;
}

.chapter-frame--wide img {
  aspect-ratio: 2 / 1;
}

.chapter-frame--portrait {
  justify-self: center;
  width: min(100%, 540px);
}

.chapter-frame--portrait img {
  aspect-ratio: 4 / 5;
}

.chapter-frame figcaption,
.work-item figcaption,
.progression figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chapter--fall {
  background: var(--night);
}

.chapter--halloween {
  padding-top: clamp(120px, 14vw, 210px);
  background: var(--forest);
}

.chapter--christmas {
  padding-top: clamp(120px, 14vw, 210px);
  background: #11130f;
}

.fall-story {
  padding-top: clamp(110px, 13vw, 200px);
  padding-bottom: clamp(110px, 13vw, 200px);
  background: var(--bone);
  color: var(--ink);
}

.fall-story__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(44px, 9vw, 150px);
  align-items: end;
}

.fall-story__head .eyebrow {
  margin-bottom: 28px;
  color: rgba(23, 25, 20, 0.56);
}

.fall-story h2 {
  max-width: 10em;
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.94;
}

.fall-story__head > p {
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  line-height: 1.6;
}

.progression {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(58px, 8vw, 116px);
}

.progression figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progression img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.progression figure:nth-child(1) img {
  object-position: 47% 50%;
}

.progression figure:nth-child(4) img {
  object-position: 50% 46%;
}

.selected-work {
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(110px, 14vw, 210px);
  background: var(--night);
}

.work-head {
  display: grid;
  grid-template-columns: 0.4fr 1.1fr 0.5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(64px, 9vw, 130px);
}

.work-head .eyebrow,
.work-head > p:last-child {
  color: var(--mist);
}

.selected-work h2 {
  max-width: 9em;
  font-size: clamp(58px, 7.8vw, 126px);
  line-height: 0.9;
}

.work-head > p:last-child {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-size: 13px;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 112px) clamp(26px, 4vw, 64px);
  align-items: start;
}

.work-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.work-item img {
  object-fit: cover;
}

.work-item--landscape img {
  aspect-ratio: 4 / 3;
}

.work-item--square img {
  aspect-ratio: 1 / 1;
}

.work-item--portrait {
  width: 78%;
}

.work-item--portrait:nth-child(odd) {
  justify-self: end;
}

.work-item--portrait img {
  aspect-ratio: 4 / 5;
}

.work-item figcaption span:last-child {
  color: var(--mist);
}

.process {
  padding-top: clamp(110px, 13vw, 195px);
  padding-bottom: clamp(110px, 13vw, 195px);
  background: var(--forest);
}

.process__head {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 44px;
  align-items: end;
}

.process__head .eyebrow {
  color: var(--mist);
}

.process h2 {
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.86;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: clamp(70px, 9vw, 134px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process__steps li {
  min-height: 340px;
  padding: 28px 34px 34px 0;
  border-right: 1px solid var(--line-light);
}

.process__steps li + li {
  padding-left: 34px;
}

.process__steps li:last-child {
  border-right: 0;
}

.process__steps li > span {
  color: var(--mist);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
}

.process__steps h3 {
  margin-top: 82px;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
}

.process__steps p {
  max-width: 24em;
  margin-top: 24px;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.65;
}

.meet {
  padding-top: clamp(110px, 14vw, 220px);
  padding-bottom: clamp(110px, 14vw, 220px);
  background: var(--bone-deep);
  color: var(--ink);
}

.meet > .eyebrow {
  color: rgba(23, 25, 20, 0.56);
}

.meet__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: clamp(54px, 10vw, 180px);
  align-items: end;
  margin-top: 48px;
}

.meet h2 {
  max-width: 10em;
  font-size: clamp(58px, 7.4vw, 118px);
  line-height: 0.92;
}

.meet__grid p {
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.2;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 10vw, 176px);
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
  background: var(--bone);
  color: var(--ink);
}

.inquiry__intro .eyebrow {
  color: rgba(23, 25, 20, 0.56);
}

.inquiry h2 {
  max-width: 9em;
  margin-top: 34px;
  font-size: clamp(50px, 6vw, 96px);
  line-height: 0.94;
}

.inquiry__intro > p:last-child {
  max-width: 32em;
  margin-top: 36px;
  font-size: 13px;
  line-height: 1.6;
}

.inquiry__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  align-content: start;
}

.inquiry__form label {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.inquiry__form label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.inquiry__form input,
.inquiry__form select,
.inquiry__form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 25, 20, 0.48);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.inquiry__form textarea {
  resize: vertical;
}

.inquiry__note,
.delivery-note,
.inquiry__form button {
  grid-column: 1 / -1;
}

.delivery-note {
  color: rgba(23, 25, 20, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.inquiry__form button {
  min-height: 50px;
  border: 1px solid rgba(23, 25, 20, 0.34);
  background: rgba(23, 25, 20, 0.08);
  color: rgba(23, 25, 20, 0.56);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 44px;
  padding-top: 70px;
  padding-bottom: 50px;
  background: var(--night);
}

.footer__brand {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  letter-spacing: 0.05em;
  line-height: 0.9;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  align-content: start;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__location {
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
}

.footer__disclosure {
  grid-column: 1 / -1;
  max-width: 68em;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: var(--mist);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .studio__grid,
  .meet__grid,
  .fall-story__head,
  .inquiry {
    gap: 56px;
  }

  .chapter__lead {
    grid-template-columns: minmax(0, 68%) minmax(230px, 32%);
  }

  .chapter__lead--reverse {
    grid-template-columns: minmax(230px, 32%) minmax(0, 68%);
  }

  .chapter__lead > img {
    min-height: 610px;
  }

  .work-head {
    grid-template-columns: 0.3fr 1.2fr 0.5fr;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 4px;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 48px;
    right: 0;
    display: grid;
    width: 210px;
    padding: 14px;
    border: 1px solid var(--line-light);
    background: rgba(10, 14, 11, 0.96);
  }

  .mobile-nav nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero__media::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 5, 0.84) 0%, rgba(5, 7, 5, 0.5) 31%, transparent 62%),
      linear-gradient(0deg, var(--night) 0%, rgba(6, 8, 6, 0.94) 18%, rgba(6, 8, 6, 0.62) 34%, transparent 58%);
  }

  .hero__media img {
    height: 78svh;
    object-position: 36% 49%;
  }

  .hero__bar {
    top: 14px;
    right: 20px;
    left: 20px;
    padding-bottom: 10px;
  }

  .monogram {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .hero__copy {
    inset: 0;
    width: auto;
    transform: none;
  }

  .wordmark {
    position: absolute;
    top: 76px;
    left: 22px;
    max-width: 5.5em;
    font-size: 39px;
    line-height: 0.82;
    letter-spacing: 0.075em;
  }

  .hero__statement {
    position: absolute;
    bottom: 120px;
    left: 22px;
    max-width: 9em;
    margin: 0;
    font-size: 25px;
    line-height: 0.99;
  }

  .hero__statement span {
    display: block;
  }

  .hero__support {
    display: none;
  }

  .hero__actions {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    gap: 8px;
    margin: 0;
  }

  .hero__actions .button {
    flex: 0 0 auto;
    min-width: 154px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero__actions .button--quiet {
    min-width: 142px;
    border-color: transparent;
    color: rgba(235, 232, 223, 0.78);
    text-decoration: underline;
    text-decoration-color: rgba(235, 232, 223, 0.35);
    text-underline-offset: 5px;
  }

  .hero__season {
    right: 22px;
    bottom: 78px;
    max-width: 15em;
    color: rgba(235, 232, 223, 0.5);
    font-size: 7px;
    text-align: right;
  }

  .studio,
  .fall-story,
  .selected-work,
  .process,
  .meet,
  .inquiry {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .studio__grid,
  .meet__grid,
  .fall-story__head,
  .inquiry {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .studio__grid {
    margin-top: 30px;
  }

  .studio h2,
  .meet h2 {
    font-size: clamp(52px, 15vw, 68px);
  }

  .studio__copy,
  .meet__grid p {
    padding-top: 20px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 84px;
    padding-bottom: 58px;
  }

  .section-head h2 {
    font-size: 67px;
  }

  .chapter {
    padding-bottom: 110px;
  }

  .chapter--halloween,
  .chapter--christmas {
    padding-top: 90px;
  }

  .chapter__lead,
  .chapter__lead--reverse {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .chapter__lead > img,
  .chapter--halloween .chapter__lead > img {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .chapter--fall .chapter__lead > img {
    object-position: 50% 51%;
  }

  .chapter--halloween .chapter__lead > img {
    object-position: 50% 50%;
  }

  .chapter--christmas .chapter__lead > img {
    object-position: 52% 50%;
  }

  .chapter__lead-caption,
  .chapter__lead--reverse .chapter__lead-caption {
    order: 2;
    min-height: 190px;
    padding: 24px 20px 28px;
    border: 0;
    border-top: 1px solid var(--line-light);
  }

  .chapter__name {
    font-size: 54px;
  }

  .chapter__lead-caption > p:last-child {
    align-self: flex-end;
    max-width: 14em;
    font-size: 19px;
  }

  .chapter__body,
  .chapter__body--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 68px;
  }

  .chapter__body--reverse .chapter__intro {
    grid-column: auto;
  }

  .chapter__intro {
    min-height: 310px;
  }

  .chapter__intro h3 {
    font-size: 49px;
  }

  .chapter-frame--wide {
    grid-column: auto;
  }

  .chapter-frame--wide img,
  .chapter-frame img {
    aspect-ratio: 4 / 5;
  }

  .chapter-frame--portrait {
    width: 100%;
  }

  .fall-story h2,
  .selected-work h2,
  .process h2,
  .inquiry h2 {
    font-size: clamp(50px, 14vw, 65px);
  }

  .progression {
    grid-template-columns: 1fr 1fr;
    gap: 38px 12px;
    margin-top: 58px;
  }

  .progression img {
    aspect-ratio: 4 / 5;
  }

  .progression figcaption {
    gap: 8px;
    font-size: 8px;
  }

  .work-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 62px;
  }

  .work-head > p:last-child {
    max-width: 28em;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .work-item--portrait,
  .work-item--portrait:nth-child(odd) {
    justify-self: stretch;
    width: 100%;
  }

  .work-item--landscape img,
  .work-item--square img,
  .work-item--portrait img {
    aspect-ratio: 4 / 5;
  }

  .process__head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .process__steps li,
  .process__steps li + li {
    min-height: 250px;
    padding: 26px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process__steps li:last-child {
    border-bottom: 0;
  }

  .process__steps h3 {
    margin-top: 54px;
  }

  .inquiry__form {
    grid-template-columns: 1fr;
  }

  .inquiry__note,
  .delivery-note,
  .inquiry__form button {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 62px;
  }

  .footer__nav {
    max-width: 340px;
  }

  .footer__disclosure {
    grid-column: auto;
    margin-top: 12px;
  }
}

@media (max-width: 380px) {
  .hero__actions .button {
    min-width: 144px;
  }

  .hero__actions .button--quiet {
    min-width: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
