:root {
  --bg: #fbfaf7;
  --paper: #fff;
  --soft: #f3f0eb;
  --ink: #202020;
  --muted: #696969;
  --line: #d8d3c9;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --hero-entry-opacity: 0;
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", var(--sans);
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] .about-quote,
html[lang="zh-CN"] .principle {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", var(--serif);
}

html[lang="zh-CN"] .nav,
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .language-toggle {
  letter-spacing: 0.04em;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.has-intro:not(.intro-settled) body {
  overflow: hidden;
}

.site {
  min-height: 100vh;
}

.has-intro:not(.intro-settled) .site {
  opacity: 1;
}

.intro-settled .site,
.intro-complete .site {
  opacity: 1;
  transition: opacity 700ms ease;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  background: #fff;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: background 360ms ease, opacity 240ms ease, visibility 240ms ease;
}

.has-intro .intro {
  display: grid;
}

.intro-mark {
  position: relative;
  width: min(68vmin, 620px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(var(--intro-y, 0px)) scale(var(--intro-scale, 1));
  transform-origin: center center;
  transition: transform 80ms linear;
  will-change: transform;
}

.intro-dial {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-dial path {
  fill: none;
  stroke: #050505;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2080;
  stroke-dashoffset: 2080;
  animation: drawDial 520ms cubic-bezier(0.65, 0, 0.28, 1) forwards;
}

.intro-logo {
  width: min(44vw, 360px);
  opacity: 0;
  transform: scale(1.6);
  animation: revealLogo 520ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-settled .intro {
  background: transparent;
  pointer-events: none;
}

.intro-settled .intro-dial {
  opacity: 0;
  transition: opacity 260ms ease;
}

.intro-complete .intro {
  opacity: 0;
  transform: scale(0.18) translateY(-142vh);
  transition: opacity 180ms ease, transform 320ms cubic-bezier(0.24, 0.78, 0.26, 1);
}

.intro-docked .intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.has-intro:not(.intro-docked) .brand-logo {
  opacity: 0;
}

.brand-logo {
  transition: opacity 180ms ease;
}

@keyframes drawDial {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes revealLogo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 118px;
  padding: 18px clamp(24px, 6vw, 92px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  opacity: 1;
  transition: transform 260ms ease, opacity 220ms ease;
  will-change: transform;
}

.header.header-hidden {
  transform: translateY(calc(-100% - 2px));
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 78px);
  color: #4e4e4e;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.nav:last-child {
  justify-content: flex-end;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.language-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--ink);
}

.nav a::after,
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.active::after {
  transform: scaleX(1);
}

.language-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 80;
  transform: translate(-50%, -50%) translateY(14px) scale(0.98);
  min-width: min(76vw, 300px);
  padding: 20px 34px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.9));
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", "SimSun", var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.12em;
  box-shadow:
    0 24px 72px rgba(24, 24, 24, 0.1),
    0 2px 10px rgba(24, 24, 24, 0.04);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 0.8, 0.24, 1);
}

.language-toast.is-visible {
  transform: translate(-50%, -50%) translateY(0) scale(1);
  opacity: 1;
}

.brand-logo {
  width: 78px;
  height: auto;
}

.page {
  min-height: calc(100vh - 118px);
  background: var(--paper);
}

.section {
  border-bottom: 1px solid rgba(216, 211, 201, 0.7);
}

.section-inner {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: #565656;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  font-size: clamp(58px, 7.2vw, 106px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}

p {
  margin: 0;
}

.rule {
  width: 44px;
  height: 0.5px;
  margin: 24px 0;
  background: var(--ink);
}

.link-line,
.button-line {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 230px;
  padding: 12px 0 10px;
  border-bottom: 0.5px solid var(--ink);
  color: #3c3c3c;
  font-size: 13px;
  text-transform: uppercase;
}

.button-line {
  min-width: 170px;
  padding-inline: 18px;
  border: 0.5px solid var(--ink);
}

.stacked-page {
  display: block;
}

.home-intro-scroll {
  position: relative;
  min-height: calc((100vh - var(--header-height)) * 2);
}

.logo-stage {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  min-height: calc(100vh - var(--header-height));
  background: transparent;
  pointer-events: none;
}

.hero-page {
  position: sticky;
  top: var(--header-height);
  display: block;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  padding: 0;
  background: url("site/home-hero-generated.png") 58% center / cover no-repeat;
  overflow: hidden;
}

.hero-page::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(58vw, 720px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.7) 72%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fff;
  opacity: calc(1 - var(--hero-entry-opacity));
  pointer-events: none;
  transition: opacity 80ms linear;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(440px, calc(100vw - 48px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto 0 clamp(32px, 6.2vw, 92px);
  padding: clamp(90px, 11vw, 170px) 0 clamp(50px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 440px;
}

.hero-copy h1 {
  font-size: clamp(58px, 6.2vw, 92px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 380px;
  color: #515151;
  font-size: clamp(17px, 1.4vw, 22px);
}

.hero-art {
  display: none;
}

.hero-art img {
  width: min(54vw, 620px);
  max-height: 76vh;
  object-fit: contain;
}

.home-band {
  border-top: 0.5px solid rgba(216, 211, 201, 0.55);
  background:
    linear-gradient(90deg, rgba(246, 245, 243, 0.98) 0%, rgba(246, 245, 243, 0.96) 37%, rgba(246, 245, 243, 0.18) 56%, rgba(246, 245, 243, 0) 100%),
    url("site/home-heritage-generated.png") center / cover no-repeat;
  overflow: hidden;
}

.home-band-inner {
  min-height: clamp(430px, 42vw, 560px);
  display: flex;
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0;
}

.home-band-copy {
  width: min(330px, 36vw);
}

.home-collection {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(30px, 8vw, 150px);
  align-items: start;
  min-height: clamp(620px, 72vw, 850px);
  padding: clamp(46px, 6vw, 76px) 0 clamp(72px, 9vw, 118px);
}

.home-card {
  max-width: 340px;
  margin-top: clamp(28px, 5vw, 70px);
}

.home-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f4f1ec;
  margin-bottom: 18px;
}

.home-collection-link {
  justify-self: end;
  margin-top: clamp(48px, 6vw, 76px);
}

.split-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 118px);
}

.split-copy {
  align-self: center;
  width: min(520px, calc(100% - 60px));
  margin: 0 auto;
  padding: 54px 0;
}

.split-copy p {
  color: #474747;
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 118px);
  object-fit: cover;
}

.collection-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1.05fr) minmax(220px, 0.55fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(44px, 6vw, 84px) 0;
}

.collection-hero {
  min-height: calc(100vh - 118px);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.16) 68%, rgba(255, 255, 255, 0) 100%),
    url("site/collection-hero-generated.png") center / cover no-repeat;
}

.collection-hero .section-inner {
  width: min(1350px, calc(100vw - 192px));
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(420px, 560px) 1fr;
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(92px, 10vh, 132px);
}

.collection-hero h1 {
  font-size: clamp(68px, 5.8vw, 92px);
  line-height: 1.08;
}

.collection-hero p:not(.eyebrow) {
  max-width: 430px;
  color: #2d2d2d;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.55;
}

.collection-feature {
  background: #f7f5f1;
  padding: clamp(48px, 5.8vw, 78px) 0;
}

.collection-feature-grid {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(420px, 560px) minmax(210px, 300px);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
}

.collection-image {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 461 / 318;
  object-fit: cover;
}

.spec-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3vw, 44px);
  display: grid;
  gap: 24px;
}

.spec-aside dl,
.spec-table {
  margin: 0;
}

.spec-aside div,
.spec-table div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.spec-aside dt,
.spec-table dt {
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
}

.spec-aside dd,
.spec-table dd {
  margin: 5px 0 0;
}

.story-page {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: calc(100vh - 118px);
}

.story-intro {
  padding: clamp(64px, 8vw, 120px) 0;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
    url("site/chinese-logo.png") center / min(38vw, 520px) no-repeat;
}

.story-intro p {
  max-width: 700px;
  margin: 0 auto;
  color: #3e3e3e;
}

.story-grid {
  display: grid;
  grid-template-columns: 240px minmax(280px, 1fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(50px, 6vw, 82px) 0;
}

.portrait {
  margin: 0;
  overflow: hidden;
  background: #e8e4dd;
}

.portrait img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.portrait figcaption {
  padding: 10px 12px;
  background: #101010;
  color: #fff;
  font-size: 11px;
}

.story-grid p,
.craft-grid p,
.product-grid p,
.product-copy-grid p,
.timeline p,
.contact-page p,
.about-story p,
.about-founder p {
  color: #474747;
  font-size: 15px;
}

.video-section {
  padding: clamp(44px, 6vw, 80px) 0;
  background: #fbfaf7;
}

.video-frame {
  width: 100%;
  background: #101010;
  overflow: hidden;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.split-media.video-frame {
  min-height: calc(100vh - 118px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
}

.split-media.video-frame iframe {
  width: min(100%, 860px);
}

.product-copy-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 0 0 clamp(44px, 6vw, 82px);
}

.vertical-divider {
  background: var(--line);
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(44px, 6vw, 84px) 0;
}

.craft-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.craft-collage img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.craft-collage img:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.quote {
  margin: 30px 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
  color: #242424;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(300px, 0.78fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(44px, 6vw, 84px) 0;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 51%, rgba(255, 255, 255, 0.6) 100%);
}

.product-grid > img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}

.dial-image {
  aspect-ratio: 1;
  object-fit: contain;
}

.detail-page {
  padding: clamp(50px, 6vw, 86px) 0;
}

.detail-page.soft {
  background: #fbfaf7;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
}

.spec-table {
  display: grid;
  gap: 0;
}

.spec-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 13px 0;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-pair img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.timeline {
  padding: clamp(50px, 6vw, 86px) 0;
}

.timeline.pdf-like {
  background: #fbfaf7;
}

.timeline-head {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.timeline-list {
  margin-top: 54px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px clamp(50px, 8vw, 110px);
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.timeline-item:nth-child(even) {
  margin-top: 78px;
}

.timeline-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 20px;
}

.timeline-item h3 {
  font-size: clamp(24px, 2.2vw, 34px);
}

.timeline-item.wide-image img {
  object-position: center;
}

.timeline-source {
  max-height: 330px;
  object-fit: cover;
}

.principle {
  margin-top: clamp(44px, 6vw, 82px);
  padding: 42px 28px;
  border: 1px solid var(--line);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.principle span {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(44px, 6vw, 84px) 0;
}

.contact-page img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
}

.about-founder {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 18%, #fff 100%);
}

.about-founder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: min(17vw, 210px);
  height: 48%;
  background: url("site/collection-hero-generated.png") left center / cover no-repeat;
  opacity: 0.18;
  filter: grayscale(1);
}

.about-founder-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(360px, 620px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: min(520px, calc(100vh - 118px));
  padding: clamp(44px, 6vw, 78px) 0;
}

.about-founder-photo {
  margin: 0;
  background: #f1eee8;
  overflow: hidden;
}

.about-founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-founder-copy {
  max-width: 620px;
}

.about-founder-copy h1 {
  font-family: var(--sans);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.18;
  margin-bottom: 22px;
}

.about-story {
  position: relative;
  padding: clamp(48px, 7vw, 90px) 0;
  background: #fbfaf7;
  overflow: hidden;
}

.about-story::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(34vw, 520px);
  height: 70%;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0), rgba(251, 250, 247, 0.72)),
    url("site/about-ink-mountain.jpg") right bottom / cover no-repeat;
  opacity: 0.44;
}

.about-story .section-inner,
.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
}

.about-story-copy {
  max-width: 520px;
}

.about-story-copy h1 {
  font-size: clamp(34px, 3.2vw, 54px);
}

.about-story-copy p {
  margin: 0 0 13px;
}

.about-story-visual {
  margin: 0;
  justify-self: center;
  width: min(100%, 430px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 32, 32, 0.08);
}

.about-story-visual img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
}

.about-quote {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.26;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 6vw, 92px);
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: auto;
    justify-items: center;
    padding: 8px 14px 10px;
  }

  .brand-logo {
    order: -1;
    width: 50px;
  }

  .nav,
  .nav:last-child {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 16px;
    font-size: 11px;
    line-height: 1.15;
  }

  .nav a,
  .language-toggle {
    padding: 4px 0;
  }

  .hero-page,
  .split-page,
  .collection-layout,
  .story-grid,
  .craft-grid,
  .product-grid,
  .detail-grid,
  .timeline-head,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .split-media img,
  .split-media video {
    min-height: 360px;
  }

  .hero-page {
    background-position: 62% center;
  }

  .hero-page::before {
    width: 72vw;
  }

  .hero-copy {
    width: min(100% - 40px, 1180px);
  }

  .spec-aside {
    border-left: 0;
    padding-left: 0;
  }

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

  .home-band-inner,
  .home-collection,
  .product-copy-grid,
  .about-founder-grid,
  .collection-hero .section-inner,
  .collection-feature-grid,
  .about-story .section-inner {
    grid-template-columns: 1fr;
  }

  .about-founder-grid {
    min-height: auto;
  }

  .about-founder-photo {
    width: min(100%, 340px);
  }

  .about-story::after {
    width: 42vw;
    opacity: 0.28;
  }

  .video-frame iframe {
    min-height: 0;
  }

  .collection-hero .section-inner {
    width: min(100% - 48px, 1180px);
    padding-top: 76px;
  }

  .collection-hero h1 {
    font-size: clamp(58px, 10vw, 86px);
  }

  .home-band {
    background:
      linear-gradient(90deg, rgba(246, 245, 243, 0.98) 0%, rgba(246, 245, 243, 0.9) 48%, rgba(246, 245, 243, 0.25) 100%),
      url("site/home-heritage-generated.png") 62% center / cover no-repeat;
  }

  .home-band-copy {
    width: min(420px, 64vw);
  }

  .vertical-divider {
    display: none;
  }

  .home-collection-link {
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .header {
    gap: 3px;
    padding: 6px 10px 8px;
  }

  .brand-logo {
    width: 42px;
  }

  .nav,
  .nav:last-child {
    gap: 3px 10px;
    font-size: 10px;
  }

  .nav a,
  .language-toggle {
    padding: 3px 0;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-page {
    min-height: 760px;
    background-position: 70% top;
  }

  .hero-page::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0.2) 100%);
  }

  .hero-copy {
    min-height: 760px;
    justify-content: flex-start;
    padding-top: 82px;
  }

  .home-band {
    background:
      linear-gradient(180deg, rgba(246, 245, 243, 0.98) 0%, rgba(246, 245, 243, 0.88) 48%, rgba(246, 245, 243, 0.18) 100%),
      url("site/home-heritage-generated.png") 64% bottom / cover no-repeat;
  }

  .home-band-inner {
    min-height: 720px;
    align-items: flex-start;
    padding-top: 58px;
  }

  .home-band-copy {
    width: min(100%, 360px);
  }

  .home-collection {
    min-height: 720px;
  }

  .home-card {
    max-width: 100%;
  }

  .craft-collage,
  .product-grid,
  .image-pair,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(even) {
    margin-top: 0;
  }

  .timeline-list::before {
    display: none;
  }

  .collection-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 47%, rgba(255, 255, 255, 0.2) 100%),
      url("site/collection-hero-generated.png") 62% center / cover no-repeat;
  }

  .collection-hero .section-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 58px;
  }

  .craft-collage img:first-child {
    min-height: 320px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

  .has-intro body {
    overflow: auto;
  }

  .has-intro .intro {
    display: none;
  }

  .has-intro .site {
    opacity: 1;
  }

  .has-intro .brand-logo {
    opacity: 1;
  }
}
