:root {
  --paper: #f6f6f3;
  --bone: #fffff8;
  --ink: #141412;
  --muted: #68645c;
  --indigo: #1d3240;
  --blue: #426b7b;
  --rust: #d85a36;
  --green: #8b9567;
  --line: rgba(20, 20, 18, 0.13);
  --smoke: #e5e2d8;
  --charcoal: #20211d;
  --gutter: clamp(18px, 4vw, 64px);
  --max: 1180px;
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --en-serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --en-sans: "Inter", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.8;
  overflow-x: hidden;
}

body.theme-white {
  --paper: #ffffff;
  --bone: #fffdf7;
  --smoke: #f2f1eb;
  --line: rgba(20, 20, 18, 0.12);
  background: #fff;
}

body.theme-white .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
}

body.is-loading {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.load-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--paper);
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.load-screen__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(242, 234, 220, 0.24);
  transform-origin: left;
  animation: loadLine 1.1s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.load-screen__logo {
  width: min(360px, 72vw);
  filter: invert(1);
}

body.is-ready .load-screen {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--gutter);
  color: var(--bone);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 246, 243, 0.86);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  width: clamp(132px, 14vw, 188px);
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
}

.footer .logo {
  width: 156px;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

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

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding: 120px var(--gutter) 90px;
  color: var(--bone);
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image img {
  height: 118%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(20, 20, 18, 0.72), rgba(20, 20, 18, 0.22) 48%, rgba(20, 20, 18, 0.02)),
    linear-gradient(0deg, rgba(20, 20, 18, 0.32), transparent 50%);
}

.home-page .site-header:not(.is-scrolled) {
  color: var(--ink);
  background: rgba(246, 246, 243, 0.54);
  backdrop-filter: blur(12px);
}

.hero--illustration {
  color: var(--ink);
  background: var(--paper);
}

.hero--illustration .hero__image {
  inset: 0;
  display: grid;
  align-items: center;
}

.hero--illustration .hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0.98;
  filter: none;
}

.home-page .hero--illustration .hero__image img {
  object-position: top right;
}

.hero--illustration .hero__veil {
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 0.48), rgba(246, 246, 243, 0.18) 34%, rgba(246, 246, 243, 0.01) 68%, rgba(246, 246, 243, 0.02)),
    linear-gradient(0deg, rgba(246, 246, 243, 0.2), rgba(246, 246, 243, 0.01) 48%, rgba(246, 246, 243, 0.02));
}

.hero--illustration .hero-copy {
  color: rgba(20, 20, 18, 0.84);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero--illustration .hero__content {
  width: min(980px, calc(100vw - var(--gutter) * 2));
  min-width: 0;
  padding: clamp(18px, 3vw, 32px) 0;
}

.hero--illustration .eyebrow {
  color: rgba(20, 20, 18, 0.84);
}

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  gap: 5px;
  max-width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 1.08;
}

.hero--illustration .hero-title {
  gap: 10px;
  font-size: clamp(42px, 5.4vw, 82px);
}

.hero-title span {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  clip-path: inset(0 100% 0 0);
  animation: textWipe 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(2) { animation-delay: 0.14s; }
.hero-title span:nth-child(3) { animation-delay: 0.28s; }

.home-page .hero--illustration .hero-title span {
  width: fit-content;
  max-width: 100%;
  padding: 0.01em 0.08em 0.05em;
  margin-left: -0.08em;
  background: rgba(246, 246, 243, 0.5);
  box-shadow:
    0 0 0 5px rgba(246, 246, 243, 0.2),
    0 10px 24px rgba(37, 32, 22, 0.045);
}

.hero-copy {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(255, 255, 248, 0.84);
  font-size: 17px;
}

.home-page .hero--illustration .hero-copy {
  display: inline-block;
  width: fit-content;
  max-width: min(680px, 100%);
  padding: 8px 12px 10px;
  margin-top: 24px;
  background: rgba(246, 246, 243, 0.5);
  box-shadow:
    0 0 0 5px rgba(246, 246, 243, 0.18),
    0 10px 24px rgba(37, 32, 22, 0.04);
  color: rgba(20, 20, 18, 0.9);
  line-height: 1.85;
  text-shadow: none;
}

.scroll-mark {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  z-index: 2;
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-mark::after {
  display: block;
  width: 1px;
  height: 56px;
  margin: 14px auto 0;
  background: currentColor;
  content: "";
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.section {
  padding: clamp(86px, 11vw, 154px) var(--gutter);
}

.brand-logo-showcase {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 90px);
}

.brand-logo-showcase__inner {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  justify-items: center;
  max-width: min(900px, calc(100vw - var(--gutter) * 2));
  margin: 0 auto;
  text-align: center;
}

.brand-logo-showcase img {
  width: min(820px, 100%);
  margin: 0 auto;
}

.brand-logo-showcase__copy {
  width: min(820px, 100%);
  margin: 0 auto;
}

.brand-logo-showcase__copy p {
  max-width: none;
  margin: 0 auto;
  color: rgba(20, 20, 18, 0.8);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2;
}

.intro {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.18;
}

.lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.rich-text p {
  margin: 0;
}

.rich-text p + p {
  margin-top: 0.9em;
}

.rich-text ul {
  margin: 0.9em 0 0;
  padding-left: 1.2em;
}

.rich-text ul:first-child {
  margin-top: 0;
}

.rich-text li + li {
  margin-top: 0.3em;
}

.rich-text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.rich-text strong {
  color: inherit;
  font-weight: 700;
}

.rich-text em {
  font-style: italic;
}

.statement {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 108px);
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement__label {
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 820px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
}

.statement-copy p {
  margin: 0 0 22px;
}

.statement-sign {
  padding-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

.lookbook {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
  background: linear-gradient(90deg, var(--paper) 0 50%, var(--smoke) 50% 100%);
}

.lookbook__sticky {
  position: sticky;
  top: 100px;
  align-self: start;
  padding-top: 80px;
}

.lookbook__cards {
  display: grid;
  gap: 18px;
  padding-top: 80px;
}

.look-card {
  color: var(--ink);
  text-decoration: none;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 248, 0.78);
  box-shadow: none;
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.look-card::after {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  content: "View more";
}

.look-card:hover {
  color: var(--bone);
  background: var(--charcoal);
  transform: translateY(-8px);
}

.look-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.look-card h3 {
  margin: 28px 0 12px;
  font-family: var(--en-serif);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.look-card p {
  max-width: 420px;
  margin: 0;
  color: inherit;
}

.card-kicker {
  margin: 0;
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.materials {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  background: var(--charcoal);
  color: var(--bone);
}

.materials__image {
  overflow: hidden;
  border-radius: 0 38vw 38vw 0;
  margin-left: calc(var(--gutter) * -1);
}

.materials__image img {
  min-height: 560px;
  object-fit: cover;
}

.material-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.material-list p,
.material-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 249, 237, 0.18);
  color: rgba(255, 249, 237, 0.84);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
}

.material-list a:hover {
  padding-left: 10px;
  border-color: rgba(255, 249, 237, 0.34);
  color: var(--bone);
}

.material-list strong {
  min-width: 64px;
  color: #a9b88a;
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.material-list span {
  line-height: 1.5;
}

.shop {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
}

.shop__image {
  position: absolute;
  inset: 0;
}

.shop__image img {
  height: 116%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.shop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 20, 18, 0.76), rgba(20, 20, 18, 0.18) 55%, rgba(20, 20, 18, 0.06)),
    linear-gradient(90deg, rgba(20, 20, 18, 0.44), transparent);
  content: "";
}

.shop__panel {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 249, 237, 0.22);
  background: rgba(20, 20, 18, 0.56);
  backdrop-filter: blur(12px);
}

.shop__panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.14;
}

.shop__panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 249, 237, 0.82);
}

.motion-band {
  overflow: hidden;
  padding: 18px 0;
  background: #d8e35c;
  color: var(--ink);
  font-family: var(--en-serif);
  font-size: clamp(32px, 7vw, 96px);
  line-height: 1;
  white-space: nowrap;
}

.motion-band__track {
  display: flex;
  width: max-content;
  animation: bandMove 32s linear infinite;
  will-change: transform;
}

.motion-band__group {
  display: flex;
  flex: 0 0 auto;
  gap: 46px;
  padding-right: 46px;
}

.motion-band span {
  display: inline-block;
}

.contact {
  min-height: 72svh;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, var(--paper), #ece9df);
}

.recruit-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.recruit-strip__copy,
.recruit-strip__panel {
  max-width: var(--max);
}

.recruit-strip__panel {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 248, 0.74);
}

.recruit-strip__panel p {
  margin: 0 0 26px;
  color: var(--muted);
}

.recruit-page {
  background: var(--paper);
}

.recruit-page .site-header {
  position: sticky;
}

.recruit-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 120px var(--gutter) 78px;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.recruit-hero__image {
  position: absolute;
  inset: 0;
}

.recruit-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.94) contrast(1.01);
}

.recruit-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 0.42), rgba(246, 246, 243, 0.14) 42%, rgba(246, 246, 243, 0.01) 76%, rgba(246, 246, 243, 0.02)),
    linear-gradient(0deg, rgba(246, 246, 243, 0.18), rgba(246, 246, 243, 0.01) 54%, rgba(246, 246, 243, 0.02));
  content: "";
}

.recruit-hero__content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.recruit-title {
  display: grid;
  gap: 6px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 110px);
  font-weight: 600;
  line-height: 1.04;
}

.recruit-title span {
  display: block;
  width: fit-content;
  overflow: visible;
  clip-path: none;
  animation: none;
}

.recruit-title span:nth-child(2) {
  animation-delay: 0.16s;
}

.jobs__head {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(18px, 2vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.job-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--bone);
  box-shadow: none;
}

.job-card__type {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.job-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
}

.operation-links {
  display: grid;
  gap: 10px;
}

.operation-links a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.operation-links a::after {
  content: " ↗";
  font-size: 11px;
}

.job-card__meta {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.job-card__meta div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.job-card__meta dt {
  color: var(--muted);
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.job-card__meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: auto;
  padding-top: 24px;
}

.job-card .text-link {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  font-size: 11px;
}

.button-link {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

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

.job-detail-hero {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 96px var(--gutter) 24px;
}

.job-detail__back {
  margin-bottom: 28px;
}

.job-detail-title {
  max-width: 1080px;
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.12;
}

.job-title-note {
  white-space: nowrap;
}

.job-detail-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.9;
}

.job-detail {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.job-detail.section {
  padding-top: 30px;
}

.job-detail__head {
  max-width: 900px;
  margin: 0 auto 26px;
}

.job-detail__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.25;
}

.job-story {
  max-width: 980px;
  margin: 0 auto 52px;
  border-top: 1px solid var(--line);
}

.job-story__section {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.job-story__section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.35;
}

.job-story__body {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
}

.job-story__body p {
  margin: 0;
}

.job-story__body p + p {
  margin-top: 0.55em;
}

.job-requirements {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.job-requirement-row {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.job-requirement-row dt {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.job-requirement-row dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2;
}

.job-requirement-row dd p {
  margin: 0;
}

.job-requirement-row dd p + p {
  margin-top: 0.42em;
}

.job-detail__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.job-detail__summary dl {
  margin: 0;
  padding: 24px 28px;
  background: var(--bone);
}

.job-detail__summary dt,
.job-detail__row strong {
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.job-detail__summary dd {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
}

.job-detail__blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.job-detail-block,
.job-detail-apply {
  border: 1px solid var(--line);
  background: var(--bone);
}

.job-detail-block {
  padding: clamp(26px, 3vw, 38px);
}

.job-detail-block:first-child,
.job-detail-block:nth-child(3) {
  grid-column: 1 / -1;
}

.job-detail-block__kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.job-detail-block h2,
.job-detail-apply h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.job-detail-block__body,
.job-detail-mini dd,
.job-detail-apply p {
  color: var(--ink);
  line-height: 1.9;
}

.job-detail-block__body br,
.job-detail-mini dd br {
  display: block;
  content: "";
  margin-top: 0.35em;
}

.job-detail-block__body p,
.job-detail-mini dd p {
  margin: 0;
}

.job-detail-block__body p + p,
.job-detail-mini dd p + p {
  margin-top: 0.55em;
}

.job-detail-mini {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.job-detail-mini dl {
  display: grid;
  grid-template-columns: minmax(118px, 0.22fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.job-detail-mini dt {
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.job-detail-mini dd {
  margin: 0;
}

.job-detail-apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 44px auto 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.job-detail-apply p {
  margin: 0;
}

.job-detail__actions {
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  padding-top: 0;
}

.info-section {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.info-table {
  border-top: 1px solid var(--line);
}

.info-table dl {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.info-table dt {
  color: var(--blue);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-table dd {
  margin: 0;
  color: var(--ink);
}

.product-reference {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  background: var(--bone);
}

.photo-board,
.store-photo-story {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  background: var(--bone);
}

.photo-board__head {
  max-width: 760px;
}

.photo-board__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(34px, 5vw, 64px);
}

.photo-feature,
.photo-tile,
.store-photo-card {
  position: relative;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}

.photo-feature {
  min-height: 100%;
}

.photo-feature img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-tile img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-feature figcaption,
.photo-tile figcaption,
.store-photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 248, 0.84);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
}

.store-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  margin-top: clamp(34px, 5vw, 64px);
}

.store-photo-card:first-child {
  grid-row: span 2;
}

.store-photo-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.store-photo-card:first-child img {
  min-height: 660px;
}

.store-photo-card figcaption span {
  display: block;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.photo-board .reveal,
.store-photo-story .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.product-card {
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 33, 30, 0.28);
  box-shadow: 0 14px 32px rgba(31, 28, 23, 0.08);
}

.product-card img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card > div {
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.product-card .card-kicker {
  margin-bottom: 8px;
}

.product-card .rich-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.product-card .rich-text p {
  margin: 0;
}

.custom-page-content {
  max-width: 980px;
  margin-inline: auto;
}

.vessel-illustration {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  background: var(--paper);
}

.vessel-illustration__copy {
  max-width: 520px;
}

.vessel-illustration__image {
  margin: 0;
  border: 1px solid rgba(20, 20, 18, 0.1);
  background: #fff7df;
  overflow: hidden;
}

.vessel-illustration__image img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transform: none;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vessel-illustration__image:hover img {
  transform: scale(1.015);
}

.production-scenes {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  background: var(--paper);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 5vw, 58px);
}

.production-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.production-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.production-card:hover img {
  transform: scale(1.025);
}

.production-card div {
  padding: 20px 22px 24px;
}

.production-card h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.workstyle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: clamp(32px, 7vw, 100px);
  background: var(--charcoal);
  color: var(--bone);
}

.workstyle__list {
  align-self: end;
}

.workstyle__list p {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 249, 237, 0.18);
  color: rgba(255, 249, 237, 0.82);
}

.workstyle__list strong {
  min-width: 48px;
  color: #a9b88a;
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.entry {
  min-height: 70svh;
  display: grid;
  place-content: center;
  text-align: center;
}

.sub-page {
  background: var(--paper);
}

.sub-page .site-header {
  position: sticky;
}

.sub-page .site-header,
.recruit-page .site-header {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 246, 243, 0.92);
  backdrop-filter: blur(16px);
}

.sub-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 118px var(--gutter) 78px;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.theme-white .sub-hero {
  background: #fff;
}

.sub-hero__image {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
}

.sub-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 1;
  filter: none;
}

.sub-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 246, 243, 0.42), rgba(246, 246, 243, 0.12) 34%, rgba(246, 246, 243, 0.01) 68%, rgba(246, 246, 243, 0.02)),
    linear-gradient(0deg, rgba(246, 246, 243, 0.18), rgba(246, 246, 243, 0.01) 54%, rgba(246, 246, 243, 0.02));
  content: "";
}

.theme-white .sub-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 58%);
}

.theme-white .sub-hero__image {
  inset: 0;
}

.sub-hero .hero-copy,
.recruit-hero .hero-copy {
  display: inline-block;
  width: fit-content;
  max-width: min(680px, 100%);
  padding: 8px 12px 10px;
  background: rgba(246, 246, 243, 0.48);
  box-shadow:
    0 0 0 5px rgba(246, 246, 243, 0.17),
    0 10px 24px rgba(37, 32, 22, 0.04);
  color: rgba(20, 20, 18, 0.86);
  line-height: 1.85;
}

.sub-hero__content {
  position: relative;
  z-index: 2;
  max-width: min(980px, 88vw);
}

.sub-hero .recruit-title,
.recruit-hero .recruit-title {
  display: block;
  gap: 10px;
  line-height: 1.12;
}

.sub-hero .recruit-title span,
.recruit-hero .recruit-title span {
  display: inline;
  width: auto;
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 0 10px rgba(246, 246, 243, 0.95),
    0 0 22px rgba(246, 246, 243, 0.82),
    0 8px 22px rgba(37, 32, 22, 0.08);
}

.sub-hero .recruit-title {
  max-width: 980px;
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 1.1;
  word-break: keep-all;
}

.catalog,
.shop-list,
.about-grid {
  display: grid;
  gap: 18px;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.catalog {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.shop-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-card,
.shop-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--bone);
  box-shadow: none;
}

.shop-card {
  overflow: hidden;
}

.shop-card img {
  width: calc(100% + 60px);
  max-width: none;
  aspect-ratio: 4 / 3;
  margin: -30px -30px 24px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.shop-page .shop-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px) 24px;
}

.shop-directory {
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
}

.shop-directory .shop-list {
  max-width: none;
}

.shop-directory::after {
  display: none;
}

.shop-page .shop-card {
  min-height: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.shop-page .shop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 0 18px;
  border-radius: 6px;
}

.shop-page .shop-card h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
}

.shop-card__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin: 0 0 18px;
  padding: 4px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
}

.catalog-card h2 {
  margin: 26px 0 14px;
  font-family: var(--en-serif);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.shop-card h2 {
  margin: 26px 0 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.14;
}

.look-card h3,
.catalog-card h2 {
  text-wrap: balance;
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

@supports (word-break: auto-phrase) {
  .look-card h3,
  .catalog-card h2 {
    word-break: auto-phrase;
  }
}

.catalog-card p,
.shop-card p {
  color: var(--muted);
}

.shop-page .shop-card .shop-card__tag {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
}

.plain-hero {
  min-height: 64svh;
  display: grid;
  align-content: center;
  max-width: var(--max);
  margin: 0 auto;
}

.button {
  justify-self: center;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 0.28s ease, background 0.28s ease;
}

.button:hover {
  background: var(--blue);
  transform: translateY(-4px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--gutter) 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bone);
}

.footer p {
  margin: 0;
  font-family: var(--en-serif);
  font-size: 26px;
  color: var(--ink);
}

.footer span {
  max-width: 430px;
  font-size: 12px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@keyframes loadLine {
  0% { transform: scaleX(0); }
  55% { transform: scaleX(1); }
  100% { transform: scaleX(1) translateX(100%); }
}

@keyframes textWipe {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.45); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes bandMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 0;
    padding: 8px 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 248, 0.96);
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(20, 20, 18, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    visibility: hidden;
  }

  .site-header:not(.is-menu-open) .nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav a {
    padding: 13px 16px;
  }

  .nav a::after {
    display: none;
  }

  .intro,
  .lookbook,
  .materials,
  .recruit-strip,
  .workstyle,
  .vessel-illustration,
  .statement {
    grid-template-columns: 1fr;
  }

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

  .job-detail__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-detail__blocks,
  .job-detail-apply {
    grid-template-columns: 1fr;
  }

  .job-requirement-row {
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    gap: 24px;
  }

  .job-story__section {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 24px;
  }

  .job-detail-block:first-child,
  .job-detail-block:nth-child(3) {
    grid-column: auto;
  }

  .catalog,
  .shop-list,
  .about-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .shop-page .shop-list {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-board__layout,
  .store-photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-feature img,
  .store-photo-card:first-child img {
    min-height: 460px;
  }

  .store-photo-card:first-child {
    grid-row: auto;
  }

  .info-table dl {
    grid-template-columns: 1fr;
  }

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

  .lookbook__sticky {
    position: static;
  }

  .materials__image {
    margin-right: calc(var(--gutter) * -1);
  }

  .sub-hero {
    min-height: 58svh;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .sub-hero__image {
    inset: 0;
    align-items: center;
  }

  .sub-hero__image img {
    object-position: center center;
    opacity: 1;
  }

  .sub-hero::after {
    background:
      linear-gradient(0deg, rgba(246, 246, 243, 0.34), rgba(246, 246, 243, 0.12) 34%, rgba(246, 246, 243, 0.01) 76%, rgba(246, 246, 243, 0.02));
  }

  .hero--illustration {
    min-height: 68svh;
    padding-top: 98px;
    padding-bottom: 54px;
  }

  .hero--illustration .hero__image {
    inset: 0;
    align-items: center;
  }

  .hero--illustration .hero__image img {
    object-position: center center;
  }

  .home-page .hero--illustration .hero__image img {
    object-position: center center;
  }

  .recruit-hero {
    min-height: 58svh;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .recruit-hero__image {
    inset: 0;
  }

  .recruit-hero__image img {
    height: 100%;
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 58svh;
    padding: 88px 18px 34px;
  }

  .hero--illustration {
    min-height: 56svh;
  }

  .hero--illustration .hero__image {
    inset: 0;
  }

  .home-page .hero--illustration {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    padding: 92px 0 44px;
    overflow: visible;
  }

  .home-page .hero--illustration .hero__veil {
    display: none;
  }

  .home-page .hero--illustration .hero__content {
    order: 2;
    width: 100%;
    padding: 0 24px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .hero--illustration .hero-title span {
    display: block;
    width: auto;
    max-width: none;
    padding: 0;
    margin-left: 0;
    background: transparent;
    box-shadow: none;
    clip-path: none;
    animation: none;
  }

  .home-page .hero--illustration .hero-copy {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 14px;
    padding: 14px 16px 16px;
    background: rgba(255, 255, 248, 0.64);
    box-shadow: 0 16px 42px rgba(37, 32, 22, 0.05);
    font-size: 15px;
    line-height: 1.9;
  }

  .home-page .hero--illustration .hero__image {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    height: clamp(190px, 54vw, 260px);
    overflow: hidden;
  }

  .home-page .hero--illustration .hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .hero--illustration .hero__content {
    width: auto;
    padding: 16px 18px;
    background: rgba(246, 246, 243, 0.82);
    backdrop-filter: blur(4px);
  }

  .scroll-mark {
    display: none;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero--illustration .hero-title {
    gap: 4px;
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.18;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 15px;
  }

  .recruit-title {
    font-size: clamp(34px, 10.5vw, 50px);
  }

  .job-detail-hero {
    padding: 96px 18px 34px;
  }

  .job-detail-title {
    font-size: clamp(32px, 9vw, 42px);
  }

  .job-title-note {
    display: block;
    margin-top: 0.04em;
  }

  .job-detail__head {
    margin-bottom: 18px;
  }

  .job-story {
    margin-bottom: 40px;
  }

  .job-story__section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .job-story__section h2 {
    font-size: 23px;
  }

  .job-story__body {
    font-size: 15px;
    line-height: 1.9;
  }

  .job-requirement-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .job-requirement-row dt {
    font-size: 13px;
  }

  .job-requirement-row dd {
    font-size: 15px;
    line-height: 1.9;
  }

  .job-detail-apply {
    margin-top: 34px;
    padding: 26px 0;
  }

  .job-detail__summary {
    grid-template-columns: 1fr;
  }

  .job-detail-mini dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sub-hero,
  .recruit-hero {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 28px 0 42px;
    overflow: visible;
  }

  .sub-hero__image,
  .recruit-hero__image {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    height: clamp(170px, 48vw, 230px);
    overflow: hidden;
  }

  .sub-hero__image img,
  .recruit-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .sub-hero::after,
  .recruit-hero::after {
    display: none;
  }

  .sub-hero__content,
  .recruit-hero__content {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 0 24px;
  }

  .sub-hero .eyebrow,
  .recruit-hero .eyebrow {
    margin-bottom: 10px;
  }

  .sub-hero .recruit-title,
  .recruit-hero .recruit-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .sub-hero .recruit-title span,
  .recruit-hero .recruit-title span {
    text-shadow: none;
  }

  .home-page .hero--illustration .reveal,
  .sub-hero .reveal,
  .recruit-hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sub-hero .hero-copy,
  .recruit-hero .hero-copy {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 12px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(20, 20, 18, 0.76);
    font-size: 15px;
    line-height: 1.95;
  }

  .section {
    padding: 76px 18px;
  }

  .lookbook {
    padding: 0 18px 78px;
  }

  .materials__image {
    margin-right: -18px;
    margin-left: -18px;
    border-radius: 0 0 180px 0;
  }

  .materials__image img {
    min-height: 430px;
  }

  .shop {
    min-height: 86svh;
  }

  .shop__panel {
    padding: 24px;
  }

  .footer {
    display: block;
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer span {
    display: block;
    margin-top: 12px;
    text-align: left;
  }

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

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-feature img,
  .store-photo-card img,
  .store-photo-card:first-child img {
    min-height: 360px;
  }

  .photo-feature figcaption,
  .photo-tile figcaption,
  .store-photo-card figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .vessel-illustration__image {
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
  }
}

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

  [data-parallax] {
    transform: none !important;
  }
}
