:root{--font-geist-sans:"Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;}
:root {
  --paper: #faf9f5;
  --cream: #f0ede3;
  --cream-deep: #e3ddcf;
  --ink: #3b3d4a;
  --ink-soft: #5d5f69;
  --sage: #98aa91;
  --sage-deep: #66775f;
  --cacao: #63483f;
  --citrus: #e1a333;
  --line: rgba(59, 61, 74, 0.16);
  --white: #ffffff;
  --max: 1280px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body::selection {
  background: var(--sage);
  color: var(--white);
}

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

button,
summary {
  font: inherit;
}

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

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

main {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 12px clamp(24px, 4vw, 68px);
  border-bottom: 1px solid rgba(59, 61, 74, 0.08);
  background: rgba(250, 249, 245, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  height: 64px;
  overflow: visible;
}

.brand img {
  width: 136px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

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

.button-light:hover {
  background: var(--white);
}

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

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

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 880px;
  padding-top: 88px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 88px 0 0;
  z-index: -3;
  background-image: linear-gradient(90deg, rgba(250, 249, 245, 0.55), rgba(250, 249, 245, 0.05)), url("../../generated/hero-organic-bg.png");
  background-position: center;
  background-size: cover;
  filter: saturate(0.82);
  transform: scale(1.025);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 220px;
  background: linear-gradient(0deg, var(--paper), transparent);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 40px;
  width: min(calc(100% - 80px), 1400px);
  min-height: 750px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
  padding: 55px 0 90px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

.hero h1,
.section-heading h2,
.manifesto-copy h2,
.sets-intro h2,
.final-cta-inner h2,
.faq-heading h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(42px, 3.7vw, 56px);
}

.hero-collection-label{display:inline-flex;align-items:center;gap:13px;margin-bottom:24px;padding:8px 13px;color:var(--white);background:var(--ink);font-size:10px;font-weight:800;letter-spacing:.16em;line-height:1.2}
.hero-collection-label span{padding-right:13px;border-right:1px solid rgba(255,255,255,.35);color:#c9d3c5}
.hero-brand-title{display:block;margin-bottom:3px;font-family:var(--sans);font-size:clamp(16px,1.45vw,22px);font-weight:850;letter-spacing:.15em;line-height:1.25}
.hero-jp-title{display:block;font-size:clamp(55px,5.4vw,78px);line-height:1.15;white-space:nowrap}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin-bottom: 26px;
  color: var(--sage-deep);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: 0.02em;
}

.hero-description {
  max-width: 585px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.hero-counts{display:flex;align-items:center;gap:28px;margin:-8px 0 30px;padding:12px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.hero-counts span{display:flex;align-items:baseline;gap:8px;color:var(--ink-soft);font-size:8px;font-weight:800;letter-spacing:.15em}
.hero-counts strong{color:var(--ink);font-family:var(--serif);font-size:28px;font-weight:500;letter-spacing:-.04em}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.hero-products {
  position: relative;
  min-height: 650px;
}

.hero-product {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(59, 61, 74, 0.16);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
}

.hero-product:hover {
  z-index: 6;
  box-shadow: 0 40px 100px rgba(59, 61, 74, 0.24);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  padding: 6px 11px;
  color: var(--white);
  background: rgba(59, 61, 74, 0.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-product-main {
  z-index: 3;
  top: 135px;
  left: 8%;
  width: min(36vw, 520px);
  aspect-ratio: 1.48;
  transform: rotate(-2.5deg);
  animation: float-main 6.5s ease-in-out infinite;
}

.hero-product-main:hover {
  transform: rotate(0) translateY(-8px);
}

.hero-product-top {
  z-index: 2;
  top: 25px;
  right: -4%;
  width: min(23vw, 330px);
  aspect-ratio: 1.28;
  transform: rotate(4deg);
  animation: float-side 7s ease-in-out infinite 0.6s;
}

.hero-product-top:hover,
.hero-product-bottom:hover {
  transform: rotate(0) translateY(-8px);
}

.hero-product-bottom {
  z-index: 4;
  right: 1%;
  bottom: 50px;
  width: min(26vw, 380px);
  aspect-ratio: 1.3;
  transform: rotate(2deg);
  animation: float-side 7.4s ease-in-out infinite 1s;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(102, 119, 95, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 145px;
  right: -140px;
  width: 630px;
  height: 630px;
}

.orbit-two {
  top: 225px;
  right: -50px;
  width: 440px;
  height: 440px;
}

.scroll-cue {
  position: absolute;
  bottom: 45px;
  left: clamp(28px, 4vw, 68px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  background: var(--ink);
  animation: scroll-line 2s ease-in-out infinite;
}

.trust-ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 48px;
  font-family: var(--serif);
  font-size: 18px;
  white-space: nowrap;
}

.ticker-track span::before {
  width: 7px;
  height: 7px;
  margin-right: 48px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.section {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2,
.sets-intro h2,
.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 4.2vw, 62px);
}

.section-heading h2 {
  font-size: clamp(38px, 3.5vw, 56px);
}

.section-heading > p,
.sets-intro > p,
.final-cta-inner > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2;
}

.finder-section {
  padding-top: 135px;
  padding-bottom: 80px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.need-card {
  position: relative;
  min-height: 180px;
  padding: 30px 32px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease, background 0.35s ease;
}

.need-card:hover,
.need-card.is-active {
  color: var(--white);
  background: var(--ink);
}

.need-number {
  display: block;
  margin-bottom: 22px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.need-card:hover .need-number,
.need-card.is-active .need-number {
  color: #bdcbb8;
}

.need-card strong,
.need-card small {
  display: block;
}

.need-card strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.need-card small {
  opacity: 0.72;
  font-size: 12px;
}

.need-arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.need-card:hover .need-arrow,
.need-card.is-active .need-arrow {
  transform: translateX(6px);
}

.recommendation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  margin-top: 40px;
  padding: 44px;
  background: var(--cream);
}

.recommendation-copy h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.45;
}

.recommendation-copy > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.recommendation-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.recommendation-products.recommendation-sets {
  grid-template-columns: repeat(2, 1fr);
}

.recommendation-products a {
  overflow: hidden;
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recommendation-products a:hover {
  z-index: 2;
  box-shadow: 0 18px 40px rgba(59, 61, 74, 0.14);
  transform: translateY(-6px);
}

.recommendation-products img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.recommendation-products a > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
}

.main-products-section {
  width: 100%;
  max-width: none;
  padding: 150px max(40px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.section-heading.light .eyebrow,
.main-products-section .product-label {
  color: #bdcbb8;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.7);
}

.main-product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.main-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.main-product-image {
  position: relative;
  overflow: hidden;
}

.main-product-image > span {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.main-product-card.featured .main-product-image img {
  aspect-ratio: 1.28;
}

.main-product-card:hover .main-product-image img {
  transform: scale(1.045);
}

.main-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 34px;
}

.product-label {
  margin-bottom: 14px;
  color: var(--sage-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.main-product-body h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.35;
}

.main-product-body > p:not(.product-label) {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin: auto 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.price-row strong small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.price-row > span {
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

.comparison {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 50px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.comparison-title h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
}

.comparison thead th {
  color: #bdcbb8;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.comparison tbody th {
  font-family: var(--serif);
  font-size: 16px;
}

.manifesto-section {
  position: relative;
  padding-bottom: 100px;
}

.manifesto-word {
  position: absolute;
  top: 95px;
  right: -15px;
  z-index: -1;
  color: rgba(59, 61, 74, 0.035);
  font-size: clamp(100px, 17vw, 240px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  white-space: nowrap;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
  align-items: start;
}

.manifesto-copy {
  position: sticky;
  top: 135px;
}

.manifesto-copy h2 {
  margin-bottom: 36px;
  font-size: clamp(48px, 5vw, 72px);
}

.manifesto-copy > p {
  max-width: 510px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.manifesto-copy .text-link {
  margin-top: 15px;
}

.standard-list > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 10px 20px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.standard-list span {
  grid-row: 1 / 3;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.standard-list h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.standard-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.brand-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-numbers div {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-numbers strong {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.brand-numbers span {
  margin-top: auto;
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ritual-section {
  width: 100%;
  max-width: none;
  padding: 150px max(40px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.ritual-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ritual-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.ritual-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(23, 25, 29, 0.7), rgba(23, 25, 29, 0.02) 70%);
  content: "";
}

.ritual-card.day {
  background-image: url("../../generated/day-active-bg.png");
}

.ritual-card.night {
  color: var(--white);
  background-image: url("../../generated/night-rest-bg.png");
}

.ritual-card.day::before {
  background: linear-gradient(0deg, rgba(48, 46, 40, 0.62), rgba(48, 46, 40, 0.02) 70%);
}

.ritual-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px;
  color: var(--white);
}

.ritual-content > p {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ritual-content h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
}

.ritual-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ritual-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.ritual-links a:hover {
  color: var(--ink);
  background: var(--white);
}

.new-section {
  padding-bottom: 80px;
}

.new-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.new-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--cream);
}

.new-product-card.cacao {
  background: #eee5df;
}

.new-product-card.citrus {
  background: #f3e9ca;
}

.new-product-card.muesli {
  background: #e7dfd0;
}

.new-number {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.new-image-wrap {
  overflow: hidden;
}

.new-image-wrap img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.new-product-card:hover .new-image-wrap img {
  transform: scale(1.045);
}

.new-product-copy {
  display: flex;
  flex-direction: column;
  padding: 42px;
}

.new-product-copy h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.3;
}

.new-product-copy > p:not(.product-label) {
  color: var(--ink-soft);
  font-size: 14px;
}

.new-product-copy ul,
.set-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 30px;
  padding: 0;
  list-style: none;
}

.new-product-copy li,
.set-copy li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.new-product-copy .button {
  align-self: flex-start;
}

.collection-section {
  padding-top: 100px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.collection-card {
  position: relative;
  display: grid;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
  z-index: 2;
  box-shadow: 0 30px 70px rgba(59, 61, 74, 0.13);
  transform: translateY(-8px);
}

.collection-card.card-1,
.collection-card.card-2 {
  grid-column: span 6;
}

.collection-card.card-3,
.collection-card.card-4,
.collection-card.card-5 {
  grid-column: span 4;
}

.collection-image {
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.collection-card.card-3 .collection-image img,
.collection-card.card-4 .collection-image img,
.collection-card.card-5 .collection-image img {
  aspect-ratio: 1.12;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-copy {
  padding: 30px;
}

.collection-copy > span {
  color: var(--sage-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.collection-copy h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.collection-copy p {
  color: var(--ink-soft);
  font-size: 13px;
}

.collection-copy strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.sets-section {
  width: 100%;
  max-width: none;
  padding: 150px max(40px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}

.sets-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.7fr;
  align-items: end;
  gap: 35px;
  margin-bottom: 70px;
}

.sets-intro .eyebrow {
  align-self: start;
}

.set-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.set-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
}

.set-card.premium {
  color: var(--white);
  background: var(--ink);
}

.set-image {
  overflow: hidden;
}

.set-image img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.set-card:hover .set-image img {
  transform: scale(1.04);
}

.set-copy {
  display: flex;
  flex-direction: column;
  padding: 42px;
}

.set-copy > span {
  color: var(--sage-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.premium .set-copy > span {
  color: #bdcbb8;
}

.set-copy h3 {
  margin: 12px 0 15px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
}

.set-copy > p {
  color: var(--ink-soft);
  font-size: 14px;
}

.premium .set-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.premium .set-copy li {
  border-color: rgba(255, 255, 255, 0.25);
}

.set-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: auto 0 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.premium .set-price {
  border-color: rgba(255, 255, 255, 0.18);
}

.set-price strong {
  font-size: 31px;
  letter-spacing: -0.04em;
}

.set-price small {
  opacity: 0.72;
  font-size: 11px;
}

.set-copy .button {
  align-self: stretch;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 18px;
}

.voice-card,
.voice-message {
  min-height: 390px;
  margin: 0;
  padding: 42px;
  background: var(--cream);
}

.voice-card {
  display: flex;
  flex-direction: column;
}

.quote-mark {
  height: 70px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 100px;
  line-height: 1;
}

.voice-card > p {
  margin: auto 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.85;
}

.voice-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.voice-card footer strong {
  font-size: 12px;
}

.voice-card footer span {
  color: var(--ink-soft);
  font-size: 10px;
}

.voice-message {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--sage-deep);
}

.voice-message .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.voice-message h3 {
  margin: auto 0 22px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.55;
}

.voice-message > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.voice-message .text-link {
  align-self: flex-start;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding-top: 90px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 92px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 30px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  margin-top: 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(27, 29, 34, 0.86), rgba(27, 29, 34, 0.45)), url("../../generated/night-rest-bg.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.final-cta-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 50%, rgba(152, 170, 145, 0.25), transparent 40%);
  content: "";
}

.final-cta-inner {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.final-cta-inner .eyebrow {
  color: #c9d3c5;
}

.final-cta-inner h2 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(48px, 4.8vw, 66px);
}

.final-title-line {
  display: block;
  white-space: nowrap;
}

.final-cta-inner > p {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
}

.light-link {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 65px max(40px, calc((100vw - var(--max)) / 2)) 35px;
  background: var(--paper);
}

.footer-brand img {
  width: 170px;
  margin-bottom: 8px;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.main-product-card:nth-child(2),
.new-product-card:nth-child(2),
.collection-card:nth-child(2),
.set-card:nth-child(2),
.voice-card:nth-child(2) {
  transition-delay: 0.1s;
}

.main-product-card:nth-child(3),
.collection-card:nth-child(3) {
  transition-delay: 0.2s;
}

.collection-card:nth-child(4) {
  transition-delay: 0.1s;
}

.collection-card:nth-child(5) {
  transition-delay: 0.2s;
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-8px, 4px, 0); }
}

@keyframes float-main {
  0%, 100% { transform: rotate(-2.5deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-13px); }
}

@keyframes float-side {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.pairing-section{width:100%;max-width:none;padding:150px max(40px,calc((100vw - var(--max))/2));background:#e9ece5}
.pairing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.pairing-card{display:grid;grid-template-columns:minmax(220px,.82fr) minmax(0,1.18fr);min-height:430px;overflow:hidden;background:var(--paper);box-shadow:0 18px 50px rgba(59,61,74,.07);transition:transform .45s ease,box-shadow .45s ease}
.pairing-card:hover{box-shadow:0 28px 70px rgba(59,61,74,.13);transform:translateY(-7px)}
.pairing-visual{position:relative;min-height:430px;overflow:hidden;background:#dce8e8;isolation:isolate}.pairing-card.rest .pairing-visual{background:#444552}.pairing-card.refresh .pairing-visual{background:#d9e7dd}.pairing-card.nutrition .pairing-visual{background:#eee2da}
.pairing-visual:after{position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.7),transparent 42%);content:""}
.pairing-number{position:absolute;z-index:5;top:20px;left:20px;color:rgba(59,61,74,.82);font-family:var(--serif);font-size:45px;line-height:1}.pairing-card.rest .pairing-number{color:rgba(255,255,255,.75)}
.pairing-image{position:absolute;width:76%;aspect-ratio:1.25;border:6px solid rgba(255,255,255,.86);object-fit:cover;box-shadow:0 20px 45px rgba(46,47,55,.2);transition:transform .55s ease}.pairing-image.image-1{top:82px;left:-8%;transform:rotate(-5deg)}.pairing-image.image-2{right:-13%;bottom:34px;transform:rotate(5deg)}.pairing-image.image-3{bottom:-7px;left:12%;width:62%;transform:rotate(-1deg)}
.pairing-card:hover .pairing-image.image-1{transform:rotate(-2deg) translateY(-6px)}.pairing-card:hover .pairing-image.image-2{transform:rotate(2deg) translateY(-8px)}
.pairing-copy{display:flex;flex-direction:column;padding:40px 34px}.pairing-copy h3{margin-bottom:18px;font-family:var(--serif);font-size:clamp(27px,2.3vw,35px);font-weight:600;line-height:1.45}.pairing-copy>p:not(.product-label){color:var(--ink-soft);font-size:13px;line-height:1.9}
.pairing-products{display:flex;flex-wrap:wrap;gap:7px;margin-top:auto;padding-top:25px}.pairing-products a{display:inline-flex;align-items:center;gap:9px;padding:8px 11px;border:1px solid var(--line);border-radius:999px;font-size:10px;font-weight:750;transition:color .3s ease,background .3s ease}.pairing-products a:hover{color:var(--white);background:var(--ink)}
.pairing-footer{display:flex;align-items:center;justify-content:space-between;gap:35px;margin-top:34px;padding-top:28px;border-top:1px solid var(--line)}.pairing-footer p{max-width:700px;margin:0;color:var(--ink-soft);font-size:12px}

.catalog-page{background:var(--paper)}.catalog-header{position:fixed;inset:0 0 auto;z-index:100;display:grid;grid-template-columns:220px 1fr auto;align-items:center;gap:30px;min-height:88px;padding:12px clamp(24px,4vw,68px);border-bottom:1px solid rgba(59,61,74,.08);background:rgba(250,249,245,.92);backdrop-filter:blur(18px)}
.catalog-brand{display:flex;align-items:center;width:170px;height:64px;overflow:visible}.catalog-brand img{width:136px;height:auto}.catalog-header nav{display:flex;justify-content:center;gap:34px;font-size:12px;font-weight:750}.catalog-header nav a,.catalog-back{padding:7px 0;border-bottom:1px solid transparent}.catalog-header nav a:hover,.catalog-back:hover{border-color:currentColor}.catalog-back{display:inline-flex;align-items:center;gap:12px;font-size:12px;font-weight:750}
.catalog-hero{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(440px,.85fr);align-items:end;gap:70px;width:min(calc(100% - 80px),var(--max));min-height:680px;margin:0 auto;padding:190px 0 95px}.catalog-kicker{display:inline-flex;align-items:center;gap:12px;margin-bottom:28px;padding:8px 12px;color:var(--white);background:var(--ink);font-size:9px;font-weight:800;letter-spacing:.16em}.catalog-kicker span{color:#c9d3c5}
.catalog-hero h1{margin-bottom:28px;font-family:var(--sans);font-size:clamp(19px,1.8vw,26px);font-weight:850;letter-spacing:.12em;line-height:1.35}.catalog-hero h1 strong{display:block;margin-top:5px;font-family:var(--serif);font-size:clamp(52px,5vw,72px);font-weight:500;letter-spacing:-.055em;line-height:1.2}.catalog-hero>div:first-child>p:last-child{max-width:650px;color:var(--ink-soft);font-size:16px;line-height:2}
.catalog-jump{border-top:1px solid var(--line)}.catalog-jump a{display:grid;grid-template-columns:40px 1fr auto;align-items:center;gap:16px;min-height:92px;border-bottom:1px solid var(--line);transition:padding .35s ease,background .35s ease}.catalog-jump a:hover{padding:0 16px;background:var(--cream)}.catalog-jump span{color:var(--sage-deep);font-size:10px;font-weight:800;letter-spacing:.12em}.catalog-jump strong{font-family:var(--serif);font-size:21px;font-weight:600}.catalog-jump small{color:var(--ink-soft);font-size:8px;font-weight:800;letter-spacing:.14em}
.catalog-group{width:min(calc(100% - 80px),var(--max));margin:0 auto;padding:125px 0;border-top:1px solid var(--line);scroll-margin-top:88px}.catalog-group-heading{display:grid;grid-template-columns:1fr minmax(300px,.58fr);align-items:end;gap:70px;margin-bottom:58px}.catalog-group-heading h2{margin:0;font-family:var(--serif);font-size:clamp(43px,4.5vw,64px);font-weight:500;letter-spacing:-.05em}.catalog-group-heading>p{margin-bottom:4px;color:var(--ink-soft);font-size:14px;line-height:2}
.catalog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.catalog-card{display:flex;min-width:0;flex-direction:column;background:var(--cream);transition:transform .4s ease,box-shadow .4s ease}.catalog-card:hover{box-shadow:0 26px 60px rgba(59,61,74,.13);transform:translateY(-7px)}.catalog-card-image{position:relative;overflow:hidden}.catalog-card-image>span{position:absolute;z-index:2;top:15px;left:16px;padding:5px 8px;color:var(--white);background:rgba(59,61,74,.8);font-size:9px;font-weight:800}.catalog-card-image img{width:100%;aspect-ratio:1.34;object-fit:cover;transition:transform .7s ease}.catalog-card:hover .catalog-card-image img{transform:scale(1.045)}
.catalog-card-copy{display:flex;flex:1;flex-direction:column;padding:28px 26px 24px}.catalog-card-copy>p{margin-bottom:11px;color:var(--sage-deep);font-size:8px;font-weight:850;letter-spacing:.17em}.catalog-card-copy h3{margin-bottom:15px;font-family:var(--serif);font-size:25px;font-weight:600;line-height:1.4}.catalog-short-description{margin-bottom:24px;color:var(--ink-soft);font-size:12px;line-height:1.8}.catalog-card-copy>strong{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:15px;border-top:1px solid var(--line);font-size:11px}
.catalog-bottom{width:min(calc(100% - 80px),var(--max));margin:30px auto 0;padding:95px clamp(38px,6vw,85px);color:var(--white);background:var(--ink)}.catalog-bottom .eyebrow{color:#bdcbb8}.catalog-bottom h2{margin-bottom:25px;font-family:var(--serif);font-size:clamp(42px,5vw,66px);font-weight:500;line-height:1.35}.catalog-bottom>p:not(.eyebrow){max-width:670px;margin-bottom:32px;color:rgba(255,255,255,.7);font-size:14px}
.catalog-footer{display:grid;grid-template-columns:1fr auto;align-items:end;gap:30px;padding:65px max(40px,calc((100vw - var(--max))/2)) 35px}.catalog-footer img{width:170px}.catalog-footer div{display:flex;gap:24px;font-size:11px;font-weight:750}.catalog-footer>p{grid-column:1/-1;margin:25px 0 0;padding-top:20px;border-top:1px solid var(--line);color:var(--ink-soft);font-size:9px}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
  }

  .header-nav {
    gap: 18px;
  }

  .header-nav a:nth-child(3) {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
    width: min(calc(100% - 48px), 1200px);
  }

  .hero h1 {
    font-size: clamp(46px, 5vw, 64px);
  }

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

  .main-product-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .main-product-card.featured .main-product-image img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .pairing-card{grid-template-columns:minmax(185px,.75fr) minmax(0,1.25fr)}
  .pairing-copy{padding:32px 26px}
  .catalog-hero{grid-template-columns:minmax(0,1fr) minmax(360px,.75fr);gap:45px}
  .catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}

  .voice-message {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 8px 20px;
  }

  .brand {
    width: 130px;
    height: 52px;
  }

  .brand img {
    width: 110px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 13px 9px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--ink);
  }

  .header-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 34px;
    visibility: hidden;
    opacity: 0;
    background: rgba(250, 249, 245, 0.98);
    transform: translateY(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .header-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav a,
  .header-nav a:nth-child(3) {
    display: block;
    font-family: var(--serif);
    font-size: 27px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-background {
    inset: 72px 0 0;
    background-position: 45% center;
  }

  .hero-inner {
    display: block;
    width: calc(100% - 40px);
    min-height: auto;
  }

  .hero-copy {
    padding: 76px 0 28px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.32;
  }

  .hero-collection-label{margin-bottom:20px;font-size:8px}.hero-brand-title{font-size:14px}.hero-jp-title{font-size:clamp(38px,10.5vw,49px)}

  .hero-lead {
    font-size: 23px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-counts{gap:18px;margin-bottom:27px}.hero-counts span{gap:5px;font-size:7px;letter-spacing:.09em}.hero-counts strong{font-size:24px}

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-products {
    min-height: 460px;
    margin: 5px -10px 0;
  }

  .hero-product-main {
    top: 95px;
    left: 0;
    width: 78%;
  }

  .hero-product-top {
    top: 15px;
    right: -8%;
    width: 48%;
  }

  .hero-product-bottom {
    right: -5%;
    bottom: 10px;
    width: 55%;
  }

  .scroll-cue,
  .hero-orbit {
    display: none;
  }

  .ticker-track span {
    min-height: 62px;
    padding: 0 30px;
    font-size: 15px;
  }

  .ticker-track span::before {
    margin-right: 30px;
  }

  .section,
  .main-products-section,
  .pairing-section,
  .ritual-section,
  .sets-section {
    width: 100%;
    padding: 100px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .sets-intro h2,
  .faq-heading h2 {
    font-size: 39px;
  }

  .section-heading > p {
    margin-top: 20px;
  }

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

  .need-card {
    min-height: 126px;
    padding: 22px 24px;
  }

  .need-number {
    margin-bottom: 12px;
  }

  .recommendation {
    display: block;
    margin-top: 24px;
    padding: 28px 20px;
  }

  .recommendation-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  .recommendation-products a:nth-child(3) {
    grid-column: 1 / -1;
  }

  .recommendation-products a:nth-child(3) img {
    aspect-ratio: 1.9;
  }

  .main-product-grid,
  .new-product-grid,
  .set-grid,
  .ritual-cards,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .main-product-card.featured {
    grid-column: auto;
    display: flex;
  }

  .main-product-card.featured .main-product-image img {
    height: auto;
    aspect-ratio: 1.28;
  }

  .main-product-body,
  .new-product-copy,
  .set-copy {
    padding: 28px 24px;
  }

  .comparison {
    display: block;
    margin-top: 58px;
    padding-top: 40px;
  }

  .comparison-title {
    margin-bottom: 24px;
  }

  .manifesto-section {
    padding-bottom: 70px;
  }

  .manifesto-grid {
    display: block;
  }

  .manifesto-copy,
  .faq-heading {
    position: static;
  }

  .manifesto-copy h2 {
    font-size: 50px;
  }

  .standard-list {
    margin-top: 60px;
  }

  .standard-list > div {
    grid-template-columns: 38px 1fr;
    padding: 34px 0;
  }

  .standard-list h3 {
    font-size: 23px;
  }

  .brand-numbers {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .brand-numbers div {
    min-height: 140px;
  }

  .brand-numbers strong {
    font-size: 50px;
  }

  .ritual-card {
    min-height: 460px;
  }

  .ritual-card.day {
    background-position: 66% center;
  }

  .ritual-card.night {
    background-position: 42% center;
  }

  .ritual-content {
    padding: 28px 22px;
  }

  .pairing-grid{grid-template-columns:1fr}
  .pairing-card{grid-template-columns:1fr}
  .pairing-visual{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px;min-height:0;padding-top:70px}
  .pairing-visual:has(.image-3){grid-template-columns:repeat(3,minmax(0,1fr))}
  .pairing-image,
  .pairing-image.image-1,
  .pairing-image.image-2,
  .pairing-image.image-3{position:relative;inset:auto;width:100%;aspect-ratio:1/1.08;border:0;box-shadow:none;object-position:center;transform:none}
  .pairing-card:hover .pairing-image.image-1,
  .pairing-card:hover .pairing-image.image-2{transform:none}
  .pairing-copy{padding:30px 24px}
  .pairing-footer{align-items:stretch;flex-direction:column}
  .pairing-footer .button{width:100%}

  .new-section {
    padding-bottom: 45px;
  }

  .collection-section {
    padding-top: 70px;
  }

  .collection-grid {
    display: block;
  }

  .collection-card {
    margin-bottom: 18px;
  }

  .collection-card.card-3 .collection-image img,
  .collection-card.card-4 .collection-image img,
  .collection-card.card-5 .collection-image img {
    aspect-ratio: 1.34;
  }

  .sets-intro {
    display: block;
    margin-bottom: 44px;
  }

  .sets-intro h2 {
    margin-bottom: 20px;
  }

  .voice-message {
    grid-column: auto;
  }

  .voice-card,
  .voice-message {
    min-height: 330px;
    padding: 30px 24px;
  }

  .faq-section {
    display: block;
  }

  .faq-heading {
    margin-bottom: 42px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-cta-section {
    min-height: 650px;
    margin-top: 20px;
  }

  .final-cta-bg {
    background-position: 34% center;
  }

  .final-cta-inner {
    width: calc(100% - 40px);
  }

  .final-cta-inner h2 {
    font-size: 48px;
  }

  .final-title-line {
    white-space: normal;
  }

  .site-footer {
    display: block;
    padding: 50px 20px 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 56px;
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 12px 35px rgba(39, 41, 48, 0.28);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .catalog-header{grid-template-columns:1fr auto;min-height:72px;padding:8px 20px}.catalog-brand{width:130px;height:52px}.catalog-brand img{width:110px}.catalog-header nav{display:none}.catalog-back{font-size:11px}
  .catalog-hero{display:block;width:calc(100% - 40px);min-height:auto;padding:135px 0 80px}.catalog-kicker{font-size:7px}.catalog-hero h1{font-size:15px}.catalog-hero h1 strong{font-size:clamp(39px,11vw,50px)}.catalog-hero>div:first-child>p:last-child{font-size:14px}.catalog-jump{margin-top:45px}.catalog-jump a{min-height:78px}
  .catalog-group{width:calc(100% - 40px);padding:90px 0;scroll-margin-top:72px}.catalog-group-heading{display:block;margin-bottom:38px}.catalog-group-heading h2{font-size:42px}.catalog-group-heading>p{margin-top:18px}.catalog-grid{grid-template-columns:1fr}
  .catalog-bottom{width:calc(100% - 40px);padding:65px 24px}.catalog-bottom h2{font-size:39px}.catalog-footer{display:block;padding:50px 20px 30px}.catalog-footer div{flex-direction:column;gap:10px;margin-top:28px}
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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