:root {
  --bg: #f7f6f2;
  --surface: #fcfcfb;
  --surface-deep: #f2efe9;
  --text: #31302d;
  --muted: #595652;
  --line: #d9d5cc;
  --accent: #31302d;
  --latin-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nav-offset: 5.8rem;
  --header-height: 5.6rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

main[id],
section[id] {
  scroll-margin-top: var(--nav-offset);
}

body {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  text-transform: uppercase;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1160px, 94vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid rgba(166, 145, 116, 0.24);
  position: sticky;
  top: 0;
  background: rgba(235, 222, 206, 0.58);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  z-index: 20;
}

.site-header .container {
  width: min(1120px, 88vw);
}

.header-inner {
  min-height: 5rem;
  padding: 0.25rem 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: -0.25rem;
}

.brand img {
  display: block;
  width: auto;
  height: 3.15rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.45rem, 3vw, 2.35rem);
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem 0;
  line-height: 1;
  font-size: 0.88rem;
  color: #766f64;
  font-family: var(--latin-font);
  letter-spacing: 0.08em;
  position: relative;
  transition: color 260ms ease, opacity 260ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 1px;
  background: rgba(49, 48, 45, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms ease;
}

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

.main-nav .order-now-btn {
  justify-content: center;
  padding: 0.74rem 1.45rem;
  border: 1px solid rgba(199, 169, 112, 0.48);
  border-radius: 0.48rem;
  background: #1f1d19;
  color: #d7c59c;
  letter-spacing: 0.08em;
  box-shadow: 0 9px 20px rgba(31, 25, 17, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, color 260ms ease, background 260ms ease;
  animation: order-now-glow 5.5s ease-in-out infinite;
}

.main-nav .order-now-btn::after {
  display: none;
}

.main-nav .order-now-btn:hover {
  color: #f1dfb7;
  background: #171511;
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(31, 25, 17, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.hero {
  min-height: calc(100vh - 0.5rem);
  padding-top: var(--header-height);
  padding-bottom: 0;
  margin-top: calc(-1 * var(--header-height));
  border-bottom: 1px solid rgba(166, 145, 116, 0.28);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #eadcc8;
  background-image: linear-gradient(90deg, rgba(238, 224, 205, 0.2) 0%, rgba(238, 224, 205, 0.08) 42%, rgba(238, 224, 205, 0) 72%), url("assets/hero-section-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(0.25rem, 1.4vw, 1.35rem);
  width: min(980px, 84vw);
  margin-inline: auto;
  min-height: clamp(540px, 92vh, 700px);
}

.hero-copy {
  z-index: 2;
  padding: clamp(1rem, 2.2vw, 2rem) 0 clamp(1.6rem, 3.2vw, 3.2rem);
  margin-top: clamp(0.8rem, 3vh, 2.2rem);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  max-width: 29.5rem;
  background: transparent;
}

.hero-visual {
  align-self: end;
  justify-self: end;
  width: min(455px, 35vw);
  margin-bottom: -0.95rem;
  --hero-image-rest: translateX(clamp(-0.9rem, -1vw, -0.2rem));
  transform: var(--hero-image-rest);
  transform-origin: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: var(--hero-image-rest) translate3d(-0.85rem, 0, 0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(20, 16, 12, 0.18));
}

.hero .text-cta {
  font-family: var(--latin-font);
}

.main-nav a,
.text-cta,
.process-subtitle,
.pricing-subtitle,
.faq-subtitle,
.size-subtitle,
#about .eyebrow,
#about h2,
#about p,
#about .about-list li,
#faq summary,
#faq .faq-answer,
.collections-headline,
.collections-instagram-cta,
.origin-kicker,
.origin-en,
.footer-inner p {
  font-family: var(--latin-font);
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8f8a81;
  margin-bottom: 0.8rem;
}

h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 4.1vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
  max-width: 14ch;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.16;
  color: var(--text);
  padding-block: clamp(0.2rem, 0.7vh, 0.45rem);
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  color: var(--text);
}

.hero-copy p {
  max-width: 28rem;
}

.hero-subtext {
  max-width: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(0.86rem, 0.98vw, 0.98rem);
  line-height: 1.82;
  letter-spacing: 0.065em;
  color: #39352f;
  text-transform: none;
}

.hero-subtext span {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 {
  max-width: none;
  margin: 0;
  white-space: normal;
  text-align: left;
  margin-inline: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(2.7rem, 4.15vw, 4.05rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.12em;
  color: #24211d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
  opacity: 0;
  transform: translate3d(-0.85rem, 0, 0);
  transform-origin: left center;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero:not(.is-ready) .hero-copy h1 {
  opacity: 0;
  transform: translate3d(-0.85rem, 0, 0);
}

.hero.is-ready .hero-copy h1 {
  animation: hero-title-fade-in 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.is-ready .hero-visual {
  animation: hero-image-fade-in 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  width: min(15.8rem, 100%);
  margin: 0.85rem 0 0.8rem;
  color: #a37742;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(163, 119, 66, 0.6);
}

.hero-divider span {
  font-size: 1rem;
  line-height: 1;
  color: #a37742;
}

.text-cta {
  display: inline-block;
  margin-top: 1.3rem;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  padding-bottom: 0.1rem;
  transition: transform 320ms ease, letter-spacing 320ms ease, opacity 240ms ease;
}

.text-cta:hover {
  opacity: 0.75;
  transform: translateY(-2px);
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(0, 20px, 0) scale(0.988);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.65, 0.2, 1) var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(0.2, 0.65, 0.2, 1) var(--reveal-delay, 0ms),
    filter 820ms cubic-bezier(0.2, 0.65, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.hero-copy > .reveal {
  filter: none;
  transform: none;
  transition: opacity 1500ms ease var(--reveal-delay, 0ms);
}

.hero-copy.reveal {
  filter: none;
  transform: none;
  transition: opacity 1300ms ease;
}

.hero .text-cta {
  border-bottom: 0;
  transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease, color 280ms ease;
}

.hero .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-width: 12.8rem;
  margin-top: 1.45rem;
  padding: 0.76rem 1.05rem 0.76rem 1.28rem;
  border: 1px solid rgba(199, 169, 112, 0.48);
  border-radius: 0.45rem;
  background: #1f1d19;
  color: #d7c59c;
  box-shadow: 0 10px 22px rgba(31, 25, 17, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero .hero-cta span {
  font-size: 1.45rem;
  line-height: 0.7;
  transform: translateY(-0.02rem);
}

.hero .text-cta:hover {
  transform: translateY(-2px);
  letter-spacing: 0.08em;
  opacity: 1;
  color: #f1dfb7;
  background: #171511;
  box-shadow: 0 14px 28px rgba(31, 25, 17, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes hero-title-fade-in {
  0% {
    opacity: 0;
    transform: translate3d(-0.85rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-image-fade-in {
  0% {
    opacity: 0;
    transform: var(--hero-image-rest) translate3d(-0.85rem, 0, 0);
  }
  100% {
    opacity: 1;
    transform: var(--hero-image-rest) translate3d(0, 0, 0);
  }
}

@keyframes order-now-glow {
  0%,
  100% {
    box-shadow: 0 9px 20px rgba(31, 25, 17, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 0 13px 28px rgba(31, 25, 17, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

@keyframes title-rule-glow {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1.08);
  }
}

@keyframes map-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.story-visual {
  min-height: 440px;
  background: linear-gradient(145deg, var(--surface), var(--surface-deep));
}

.concept-sheet-section {
  padding: clamp(4rem, 10vh, 7rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.process-wrap {
  max-width: 1240px;
}

.process-title {
  margin: clamp(0.9rem, 2.2vh, 1.6rem) 0 clamp(0.6rem, 1.8vh, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.55rem);
  letter-spacing: 0.08em;
  color: #2e2d2a;
  padding-block: clamp(0.3rem, 0.9vh, 0.65rem);
}

.process-title span {
  width: clamp(3.2rem, 8vw, 8rem);
  height: 2px;
  background: rgba(134, 120, 95, 0.4);
  animation: title-rule-glow 4.8s ease-in-out infinite;
}

.process-title span:last-child {
  animation-delay: 0.7s;
}

.process-subtitle {
  margin: 0.4rem 0 clamp(2.3rem, 5vh, 3.2rem);
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: #9a8d76;
  font-weight: 600;
}

.process-columns {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.2rem);
  margin-top: clamp(0.5rem, 1.6vh, 1.2rem);
  padding-block: clamp(0.7rem, 1.8vh, 1.25rem);
}

.process-columns > * {
  position: relative;
  z-index: 1;
}

.process-card {
  position: relative;
  min-height: 100%;
  padding: clamp(0.85rem, 1.7vw, 1.2rem);
  border: 1px solid rgba(134, 120, 95, 0.24);
  background: rgba(252, 252, 251, 0.42);
  display: grid;
  align-content: start;
  gap: clamp(0.75rem, 1.4vw, 1rem);
}

.process-card-image-only {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(134, 120, 95, 0.24) !important;
}

.process-card-image-only::after {
  display: none !important;
  content: none !important;
}

.process-card-image-only img {
  display: block;
  width: 100%;
  height: auto;
}

.process-card-image-only img.process-under-visual {
  width: 76%;
  margin-inline: auto;
}

.process-card-below-arrow {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.process-card-below-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.process-card-heading {
  min-height: 4.8rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  text-align: center;
}

.process-card-heading p {
  margin: 0;
  font-family: var(--latin-font);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #9a8d76;
  text-transform: uppercase;
}

.process-card-heading h3 {
  margin: 0;
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #2f2d29;
}

.process-arrow {
  width: clamp(2.1rem, 4vw, 3rem);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(134, 120, 95, 0.35);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #8b7c62;
  font-family: var(--latin-font);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1;
  background: rgba(252, 252, 251, 0.42);
}

.step-label {
  margin: 0;
  color: #8f8a81;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.step-number {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  color: #31302d;
}

.step-header h3 {
  margin: 0;
  color: #31302d;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
}

.step-divider {
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0.6rem 0 0.9rem;
  background: #b7afa0;
}

.step-text {
  margin: 0;
  color: #595652;
  line-height: 1.75;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  min-height: 7.2em;
}

.step-visual-block {
  margin-top: 1rem;
}

.visual-label {
  margin: 0 0 0.35rem;
  color: #6d685f;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.paw-row,
.pattern-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.paw-row {
  margin-bottom: 0.7rem;
}

.paw-row span {
  font-size: 1.9rem;
  line-height: 1;
  color: #a9a9a9;
  filter: grayscale(1);
}

.pattern {
  width: 64px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #d4d1ca;
  background-color: #f3f2ef;
}

.pattern.wave {
  background-image: repeating-radial-gradient(circle at 50% 72%, #b1b1b1 0 2px, transparent 2px 11px);
}

.pattern.asanoha {
  background-image: radial-gradient(circle at center, transparent 44%, #c3c1bc 45% 47%, transparent 48%),
    repeating-conic-gradient(from 0deg, #c5c2bb 0 6deg, transparent 6deg 30deg);
}

.pattern.mountain {
  background-image: repeating-linear-gradient(-35deg, #a8a8a8 0 14px, transparent 14px 26px);
  background-size: 42px 22px;
}

.cat-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.cat-outline {
  border: 2px solid #d5d2cc;
  border-radius: 22px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9a958c;
  font-size: 1.3rem;
  background: #fcfcfb;
}

.cat-outline small {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #b2ada4;
}

.delivery-layout {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.cat-outline.single {
  width: 140px;
  min-height: 140px;
}

.delivery-box {
  width: 140px;
  height: 140px;
  border: 2px solid #b0aca4;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f4d49;
  font-size: 1.5rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  background: #fbfaf8;
}

.section {
  padding: clamp(3rem, 8vh, 6rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.section-head {
  margin-bottom: 1.5rem;
}

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

#collections .container {
  width: min(1160px, 94vw);
  max-width: none;
  margin-inline: auto;
}

#collections.section {
  padding-top: clamp(3.2rem, 8vh, 6rem);
  background: var(--bg);
}

.collections-editorial {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: clamp(1.2rem, 2.4vh, 1.7rem);
  position: relative;
  padding-bottom: clamp(1rem, 2vh, 1.45rem);
  text-align: center;
}

.collections-headline {
  margin: 0;
  padding: clamp(0.55rem, 1.5vw, 1rem) 0 clamp(0.75rem, 2vw, 1.25rem);
  display: grid;
  justify-items: center;
  gap: clamp(0.65rem, 1.4vw, 0.95rem);
  text-align: center;
  font-family: var(--latin-font);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  color: #3a3732;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.collections-headline::after {
  content: "";
  width: min(260px, 32vw);
  height: 1px;
  background: rgba(122, 116, 106, 0.35);
}

.collections-instagram-cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: clamp(1.2rem, 2.6vw, 1.9rem) auto 0;
  padding: 0.95rem 1.55rem;
  border: 1px solid rgba(163, 119, 66, 0.42);
  border-radius: 999px;
  color: #3a3732;
  background: rgba(252, 252, 251, 0.52);
  box-shadow: 0 8px 18px rgba(56, 50, 41, 0.08);
  font-family: var(--latin-font);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.collections-instagram-cta:hover {
  transform: translateY(-2px);
  background: rgba(252, 252, 251, 0.78);
  box-shadow: 0 12px 24px rgba(56, 50, 41, 0.12);
}

.collections-instagram-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.collections-instagram-cta svg * {
  fill: none;
}

.collections-stage {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(0.6rem, 1.8vw, 1.2rem);
  overflow: hidden;
}

.collections-side-label {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  color: #676158;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: none;
  font-family: var(--latin-font);
  opacity: 0.9;
}

.collections-grid {
  display: flex;
  justify-content: safe center;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.2rem 0.2rem 0.9rem;
  scrollbar-color: rgba(122, 116, 106, 0.45) transparent;
  scrollbar-width: thin;
}

.collections-grid:focus-visible {
  outline: 1px solid rgba(163, 119, 66, 0.58);
  outline-offset: 0.35rem;
}

.collections-grid::-webkit-scrollbar {
  height: 0.42rem;
}

.collections-grid::-webkit-scrollbar-track {
  background: transparent;
}

.collections-grid::-webkit-scrollbar-thumb {
  background: rgba(122, 116, 106, 0.36);
  border-radius: 999px;
}

.collections-item {
  flex: 0 0 clamp(230px, 25vw, 300px);
  min-width: 0;
  scroll-snap-align: start;
}

.collections-item-media {
  aspect-ratio: 4 / 5;
  background: var(--surface-deep);
  overflow: hidden;
}

.collections-item-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-tag {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.price {
  margin-top: 1rem;
  color: var(--text);
}

.split-section {
  background: var(--bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.4rem;
}

.split-grid p {
  max-width: 55ch;
}

.split-grid > * {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.pricing-section {
  background: var(--bg);
}

.pricing-wrap {
  max-width: 1200px;
}

.pricing-title {
  margin: clamp(0.9rem, 2.2vh, 1.6rem) 0 clamp(0.6rem, 1.8vh, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  letter-spacing: 0.12em;
  color: #2e2d2a;
  padding-block: clamp(0.3rem, 0.9vh, 0.65rem);
}

.pricing-title span {
  width: clamp(3.2rem, 8vw, 8rem);
  height: 2px;
  background: rgba(134, 120, 95, 0.4);
  animation: title-rule-glow 4.8s ease-in-out infinite;
}

.pricing-title span:last-child {
  animation-delay: 0.7s;
}

.pricing-subtitle {
  margin: 0.2rem 0 clamp(1rem, 2vw, 1.45rem);
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: #9a8d76;
  font-weight: 600;
}

.pricing-intro {
  margin: 0 auto clamp(2.1rem, 4.8vw, 3.4rem);
  max-width: 760px;
  text-align: center;
  color: #666259;
  font-size: clamp(0.92rem, 1.18vw, 1.04rem);
  line-height: 1.85;
  letter-spacing: 0.05em;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(260px, 1fr) minmax(260px, 1fr);
  align-items: end;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.pricing-feature-list {
  align-self: end;
  margin-bottom: 0;
  border-radius: 0.45rem;
  background: rgba(228, 223, 216, 0.66);
  padding: clamp(0.8rem, 1.7vw, 1.15rem);
}

.pricing-feature-item,
.pricing-plan-row {
  min-height: 4.05rem;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem clamp(0.45rem, 1.1vw, 0.85rem);
  border-bottom: 1px solid rgba(134, 120, 95, 0.22);
  color: #3d3932;
}

.pricing-feature-item:last-child,
.pricing-plan-row:last-child {
  border-bottom: 0;
}

.pricing-feature-icon,
.pricing-row-icon {
  width: 2.1rem;
  aspect-ratio: 1 / 1;
  display: inline-grid;
  place-items: center;
  color: #777167;
  font-family: var(--latin-font);
  font-size: 1.35rem;
  line-height: 1;
}

.pricing-feature-item span:last-child,
.pricing-plan-row strong,
.pricing-plan-row span:last-child {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pricing-plan-card .pricing-plan-row:nth-of-type(2)::before {
  content: "発送目安";
}

.pricing-plan-card .pricing-plan-row:nth-of-type(3)::before {
  content: "価格";
}

.pricing-plan-card .pricing-plan-row:nth-of-type(4)::before {
  content: "デザイン";
}

.pricing-plan-card .pricing-plan-row:nth-of-type(5)::before {
  content: "本体色";
}

.pricing-plan-row::before {
  display: none;
}

.pricing-plan-card {
  position: relative;
  border: 1px solid rgba(134, 120, 95, 0.28);
  border-radius: 0.7rem;
  background: rgba(252, 252, 251, 0.72);
  overflow: visible;
}

.pricing-plan-card h3 {
  min-height: 5.2rem;
  margin: 0;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(134, 120, 95, 0.22);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #3a3732;
}

.pricing-plan-card.custom h3 {
  background: #827c70;
  color: #fff;
  border-radius: 0.62rem 0.62rem 0 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.pricing-note {
  margin: clamp(1.3rem, 2.8vw, 1.8rem) 0 0;
  padding: 0.85rem 1rem;
  text-align: center;
  color: var(--muted);
  background: rgba(228, 223, 216, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.pricing-note + .pricing-note {
  margin-top: 0.75rem;
}

.size-section {
  background: var(--bg);
}

.size-wrap {
  max-width: 1200px;
}

.size-title {
  margin: clamp(0.9rem, 2.2vh, 1.6rem) 0 clamp(0.6rem, 1.8vh, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.55rem);
  letter-spacing: 0.08em;
  color: #2e2d2a;
  padding-block: clamp(0.3rem, 0.9vh, 0.65rem);
}

.size-title span {
  width: clamp(3.2rem, 8vw, 8rem);
  height: 2px;
  background: rgba(134, 120, 95, 0.4);
  animation: title-rule-glow 4.8s ease-in-out infinite;
}

.size-title span:last-child {
  animation-delay: 0.7s;
}

.size-subtitle {
  margin: 0.4rem 0 1.9rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: #9a8d76;
  font-weight: 600;
}

.size-image-wrap {
  margin: 0;
  display: flex;
  justify-content: center;
}

.size-chart-image {
  width: min(980px, 100%);
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.3rem;
  align-items: start;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-grid > div {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.about-list li {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.about-list li:last-child {
  border-bottom: 0;
}

.faq-section {
  background: var(--bg);
}

.faq-wrap {
  width: min(960px, 96vw);
}

.faq-title {
  margin: clamp(0.9rem, 2.2vh, 1.6rem) 0 clamp(0.6rem, 1.8vh, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.55rem, 3.5vw, 2.55rem);
  letter-spacing: 0.08em;
  color: #2e2d2a;
  font-weight: 500;
  padding-block: clamp(0.3rem, 0.9vh, 0.65rem);
}

.faq-title span {
  width: clamp(3.2rem, 8vw, 8rem);
  height: 2px;
  background: rgba(134, 120, 95, 0.4);
  animation: title-rule-glow 4.8s ease-in-out infinite;
}

.faq-title span:last-child {
  animation-delay: 0.7s;
}

.faq-subtitle {
  margin: 0.4rem 0 1.9rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: #9a8d76;
  font-weight: 600;
}

.faq-accordion {
  margin-top: 1.15rem;
  display: grid;
  gap: 1.35rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--surface);
  overflow: hidden;
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.faq-item[open] {
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(55, 49, 40, 0.08);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.85rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text);
  font-weight: 500;
}

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

.faq-icon {
  width: 2.55rem;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #49443b;
}

.faq-icon::before {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] .faq-icon::before {
  content: "×";
  font-size: 1.2rem;
}

.faq-answer {
  padding: 1.15rem 1.85rem 1.55rem;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.faq-answer span {
  display: block;
}

.faq-answer span + span {
  margin-top: 0.3rem;
}

.origin-section {
  background: var(--bg);
}

.care-note-section {
  padding: clamp(3rem, 8vh, 5rem) 0;
  border-bottom: 1px solid var(--line);
  background-image: url("assets/care-note-background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.care-note-wrap {
  border: 0;
  background: transparent;
  padding: 0;
}

.care-biography {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4.8vw, 4rem);
  width: min(1160px, 100%);
  margin-inline: auto;
  background: transparent;
  animation: biography-section-rise 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.care-biography-images {
  display: grid;
  justify-items: start;
  align-self: start;
  gap: clamp(0.75rem, 1.8vw, 1.15rem);
  padding-top: 0.35rem;
  animation: biography-images-fade 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.care-biography-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(107, 103, 96, 0.24);
  background: var(--surface);
  box-shadow: 0 18px 38px rgba(56, 50, 41, 0.08);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.care-biography-image:first-child {
  width: 92%;
}

.care-biography-image:last-child {
  width: 82%;
  justify-self: end;
}

.care-biography-copy {
  max-width: 62ch;
  text-align: left;
  animation: biography-copy-fade 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.care-biography-name {
  margin: 0 0 0.62rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3rem) !important;
  font-weight: 500;
  line-height: 1.16 !important;
  letter-spacing: 0.12em;
  color: #2f2d29;
}

.care-biography-name-en {
  margin: 0 0 clamp(1.55rem, 3.2vw, 2.35rem);
  color: #9a8d76;
  font-family: var(--latin-font);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.care-biography h4 {
  margin: 0 0 clamp(1.65rem, 3vw, 2.35rem);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #2f2d29;
}

.care-biography-copy p {
  margin: 0;
  font-size: clamp(0.92rem, 1.04vw, 1rem);
  line-height: 1.9;
}

.care-biography-copy p + p {
  margin-top: 1.18rem;
}

.care-biography-statement {
  margin-top: 1.45rem !important;
  color: #2f2d29;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.05rem, 1.32vw, 1.2rem) !important;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@keyframes biography-section-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 0.7rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes biography-images-fade {
  from {
    opacity: 0;
    transform: translate3d(-0.8rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes biography-copy-fade {
  from {
    opacity: 0;
    transform: translate3d(0.8rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.origin-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.92rem;
}

.origin-rule {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--line);
  margin: 1.15rem 0 1.4rem;
}

.origin-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 2.9vw, 2.45rem);
  white-space: nowrap;
  max-width: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  letter-spacing: 0.03em;
}

.origin-copy {
  border: 0;
  background: transparent;
  padding: 0;
}

.origin-subtext {
  line-height: 1.7;
  max-width: none;
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
}

.origin-subtext span {
  display: block;
  white-space: nowrap;
}

.origin-en {
  margin-top: 1rem;
  color: var(--muted);
  font-family: var(--latin-font);
}

.origin-map-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
}

.origin-map-image {
  width: min(680px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  border: 0;
  outline: none;
  border-radius: 0;
  background: transparent;
  animation: map-float 8.5s ease-in-out infinite;
  transition: transform 420ms ease;
}

.site-footer {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
}

.footer-inner p {
  color: #6d685f;
  font-size: 1.05rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.footer-email {
  color: #6d685f;
  font-family: var(--latin-font);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: color 220ms ease, opacity 220ms ease;
}

.footer-email:hover {
  color: var(--text);
  opacity: 0.88;
}

.footer-social {
  width: 3.35rem;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6d685f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.footer-social:hover {
  color: var(--text);
  transform: translateY(-1px);
  opacity: 0.88;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(55, 49, 40, 0.12);
  }

  .origin-map-image:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .care-biography-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(56, 50, 41, 0.13);
  }

}

.footer-social svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-social svg * {
  fill: none;
}

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

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

  .hero,
  .hero-copy h1,
  .hero-visual,
  .main-nav .order-now-btn,
  .origin-map-image,
  .care-biography,
  .care-biography-images,
  .care-biography-copy {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .split-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .pricing-comparison {
    grid-template-columns: 1fr;
    gap: clamp(1.8rem, 4vw, 2.4rem);
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-feature-list {
    display: none;
  }

  .pricing-plan-card {
    width: 100%;
  }

  .pricing-plan-row {
    grid-template-columns: 2.4rem minmax(5.8rem, 0.45fr) minmax(0, 1fr);
  }

  .pricing-plan-row::before {
    display: block;
    grid-column: 2;
    color: #9a8d76;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .pricing-plan-row > :last-child {
    grid-column: 3;
  }

  .faq-wrap {
    width: min(820px, 94vw);
  }

  .faq-title {
    font-size: clamp(1.3rem, 6.2vw, 1.9rem);
    letter-spacing: 0.04em;
    gap: 0.65rem;
  }

  .faq-title span {
    width: 2.2rem;
  }

  .faq-subtitle {
    margin-bottom: 1.25rem;
  }

  .faq-item summary {
    padding: 1.15rem 1.35rem;
  }

  .faq-answer {
    padding: 1rem 1.35rem 1.35rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(2.2rem + var(--header-height));
    padding-bottom: 0;
    margin-top: calc(-1 * var(--header-height));
    background-position: center top;
    background-attachment: scroll;
  }

  .care-note-section {
    background-attachment: scroll;
  }

  .hero-grid {
    width: min(760px, 88vw);
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.75rem;
  }

  .hero-copy {
    padding: 0.8rem 0 0;
    max-width: 34rem;
    margin-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 7.4vw, 3.7rem);
  }

  .hero-divider {
    width: min(15.6rem, 78vw);
  }

  .hero-visual {
    width: min(390px, 68vw);
    justify-self: center;
    margin-bottom: -0.45rem;
    --hero-image-rest: translateX(0);
    transform: var(--hero-image-rest);
  }

  .hero-subtext span {
    white-space: normal;
  }

  .hero-subtext {
    text-align: center;
  }

  .story-visual {
    min-height: 320px;
  }

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

  .collections-stage {
    margin-top: 0.9rem;
  }

  .collections-side-label {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: left;
  }

  .collections-item {
    flex-basis: clamp(220px, 42vw, 300px);
  }

  .process-columns {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(0.9rem, 2.6vh, 1.6rem);
    margin-top: 0.35rem;
  }

  .process-arrow,
  .process-arrow.reveal,
  .process-arrow.reveal.is-visible {
    transform: rotate(90deg);
  }

  .process-card {
    width: min(560px, 86vw);
    padding: clamp(0.85rem, 3vw, 1.15rem);
    border-right: 1px solid rgba(134, 120, 95, 0.24);
    border-bottom: 1px solid rgba(134, 120, 95, 0.24);
  }

  .process-card-image-only {
    width: min(560px, 86vw);
    border-bottom: 1px solid rgba(134, 120, 95, 0.24) !important;
  }

  .process-card-below-arrow {
    width: min(560px, 86vw);
    border-bottom: 1px solid rgba(134, 120, 95, 0.24) !important;
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-card::after {
    display: none;
  }

  .step-text {
    min-height: auto;
  }

  .delivery-layout {
    justify-content: flex-start;
  }

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

  .origin-copy h2 {
    white-space: normal;
    text-align: center;
  }

  .origin-subtext {
    text-align: center;
  }

  .origin-subtext span {
    white-space: normal;
  }

  .origin-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .origin-en {
    text-align: center;
  }

  .origin-map-wrap {
    width: 100%;
  }

  .origin-map-image {
    width: min(760px, 96vw);
  }
}

@media (max-width: 700px) {
  :root {
    --nav-offset: 1rem;
    --header-height: 0rem;
  }

  .site-header {
    position: static;
  }

  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .section {
    padding-block: clamp(2.2rem, 7vh, 4rem);
  }


  .site-header .container {
    width: min(100% - 1.25rem, 1160px);
  }

  #collections .container {
    width: min(100% - 1.25rem, 1160px);
    overflow-x: clip;
  }

  .collections-editorial {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .collections-stage {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .collections-grid {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    padding: 1rem 0;
    align-items: center;
    flex-direction: column;
    gap: 0.85rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 0.72rem 0.9rem;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .main-nav .order-now-btn {
    padding: 0.62rem 1rem;
  }

  .brand img {
    height: 2.75rem;
  }

  .hero {
    padding-top: 1.4rem;
    padding-bottom: 0;
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 1.25rem, 520px);
    justify-items: center;
    gap: 0.5rem;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    letter-spacing: 0.07em;
    text-align: center;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-subtext span {
    white-space: normal;
  }

  .hero .hero-cta {
    min-width: min(12.4rem, 100%);
    align-self: center;
  }

  .hero-visual {
    width: min(360px, 82vw);
    opacity: 1;
    transform: var(--hero-image-rest);
    animation: none;
  }

  .hero-visual img {
    filter: drop-shadow(0 10px 18px rgba(20, 16, 12, 0.14));
  }

  .hero:not(.is-ready) .hero-copy h1 {
    opacity: 1;
    transform: none;
  }

  .faq-accordion {
    gap: 1rem;
  }

  .faq-item {
    border-radius: 1.1rem;
  }

  .faq-item summary {
    font-size: 0.96rem;
    padding: 1rem 1.15rem;
  }

  .faq-icon {
    width: 2.1rem;
  }

  .faq-answer {
    font-size: 0.93rem;
    line-height: 1.8;
    padding: 0.9rem 1.15rem 1.2rem;
  }

  .faq-answer span {
    overflow-wrap: anywhere;
  }

  .pricing-comparison {
    max-width: 100%;
    gap: 1.45rem;
  }

  .pricing-plan-card h3 {
    min-height: 4.3rem;
    padding: 0.9rem 0.75rem;
    text-align: center;
  }

  .pricing-plan-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.75rem 0.7rem;
  }

  .pricing-plan-row::before {
    grid-column: 2;
    margin-bottom: 0.1rem;
  }

  .pricing-plan-row > :last-child {
    grid-column: 2;
  }

  .pricing-row-icon {
    width: 1.8rem;
    font-size: 1.12rem;
  }

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

  .collections-side-label {
    display: none;
  }

  .collections-grid {
    gap: 0.95rem;
    padding-bottom: 0.85rem;
  }

  .collections-item {
    flex-basis: min(82vw, 320px);
  }

  .care-biography {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    width: min(760px, 100%);
    margin-inline: auto;
    gap: clamp(1.4rem, 6vw, 2.2rem);
  }

  .care-biography-images {
    width: min(620px, 100%);
    justify-items: center;
    padding-top: 0;
  }

  .care-biography-image,
  .care-biography-image:first-child,
  .care-biography-image:last-child {
    width: 100%;
    justify-self: center;
  }

  .care-biography-copy {
    max-width: 100%;
    text-align: left;
  }

  .care-biography-name,
  .care-biography-name-en,
  .care-biography h4 {
    text-align: center;
  }

  .care-biography-name {
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
    letter-spacing: 0.08em;
  }

  .care-biography-name-en {
    letter-spacing: 0.12em;
  }

  .process-title {
    font-size: clamp(1.3rem, 6.2vw, 1.9rem);
    letter-spacing: 0.04em;
    gap: 0.65rem;
  }

  .pricing-title {
    font-size: clamp(1.3rem, 6.2vw, 1.9rem);
    letter-spacing: 0.04em;
    gap: 0.65rem;
  }

  .process-title span {
    width: 2.2rem;
  }

  .pricing-title span {
    width: 2.2rem;
  }

  .process-subtitle {
    margin-bottom: 1.85rem;
  }

  .pricing-subtitle {
    margin-bottom: 1.25rem;
  }

  .size-title {
    font-size: clamp(1.3rem, 6.2vw, 1.9rem);
    letter-spacing: 0.04em;
    gap: 0.65rem;
  }

  .size-title span {
    width: 2.2rem;
  }

  .size-chart-image {
    width: min(100%, 560px);
  }

  .size-subtitle {
    margin-bottom: 1.25rem;
  }

  .step-header {
    gap: 0.45rem;
  }

  .step-number {
    font-size: 2.2rem;
  }

  .pattern {
    width: 54px;
  }

  .paw-row span {
    font-size: 1.6rem;
  }

  .cat-layout {
    grid-template-columns: 1fr;
  }

  .delivery-layout {
    flex-wrap: wrap;
  }

  .cat-outline.single,
  .delivery-box {
    width: 118px;
    height: 118px;
    min-height: 118px;
  }

  .delivery-box {
    font-size: 1.2rem;
  }

  .origin-copy h2 {
    font-size: clamp(1.25rem, 6.2vw, 1.75rem);
    white-space: normal;
    line-height: 1.45;
    text-align: center;
  }

  .origin-subtext span {
    white-space: normal;
  }

  .origin-map-image {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 0.9rem;
  }

  .footer-email {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }

  .footer-social {
    width: 2.75rem;
  }

  .footer-social svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}
