@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Serif+Display:ital@0;1&family=Noto+Sans+JP:wght@400;500;600&display=swap");

:root {
  --ink: #27352f;
  --cream: #f5f1e9;
  --moss: #a4ad96;
  --line: rgba(39, 53, 47, 0.22);
  --page-height: calc(100svh - 78px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  padding: 0 4.7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 233, 0.96);
  backdrop-filter: blur(12px);
  font: 12px "DM Mono", monospace;
  letter-spacing: 0.09em;
}

.logo {
  display: block;
  flex: 0 0 auto;
  width: 150px;
  height: 51px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

nav {
  grid-column: 2;
  display: flex;
  gap: 34px;
}

nav a {
  position: relative;
  padding: 8px 0;
  margin: -8px 0;
  transition: color 180ms ease;
}

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

@media (hover: hover) {
  nav a:hover {
    color: #8e493a;
  }

  nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

nav a:focus-visible {
  outline: 2px solid #8e493a;
  outline-offset: 5px;
}

section[id] {
  scroll-margin-top: 78px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 53% 47%;
  height: var(--page-height);
  min-height: var(--page-height);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 14.5vh 8vw 11vh;
}

.eyebrow {
  margin: 0 0 24px;
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.13em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.1vw, 82px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.07em;
}

h1 em,
h2 i {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 38px 0 30px;
  font-size: 14px;
  line-height: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 16px 19px;
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.07em;
  transition: 0.25s;
}

button.button {
  color: inherit;
  cursor: pointer;
}

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

.button-dark:hover {
  background: #57655c;
  transform: translateY(-2px);
}

.button-light {
  border: 1px solid var(--ink);
  background: transparent;
}

.button-light:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(115deg, rgba(44, 30, 26, 0.12), rgba(25, 38, 32, 0.22)),
    url("./images/0リカバリーウェア着用イメージ.webp") center / cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(25, 38, 32, 0.28), transparent 54%);
}

.vertical {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 6%;
  color: #fff;
  font: 10px "DM Mono", monospace;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.photo-note {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 5%;
  color: #fff;
  font: 10px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  bottom: 23px;
  left: 4.7vw;
  font: 10px "DM Mono", monospace;
  letter-spacing: 0.12em;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: var(--page-height);
  min-height: var(--page-height);
  background: #e6ded0;
}

.intro-image {
  min-height: 0;
  overflow: hidden;
}

.intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 138px 9vw 125px;
}

.intro h2,
.collection h2,
.guide h2,
.faq h2 {
  margin-bottom: 74px;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.07em;
}

.intro h2 {
  white-space: nowrap;
}

.intro-grid {
  display: block;
  font-size: 14px;
  line-height: 2.05;
}

.intro-grid p {
  margin-bottom: 0;
}

.brand-origin {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 28px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.brand-origin-label {
  margin: 4px 0 0;
  font: 11px "DM Mono", monospace;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.brand-origin-copy {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.brand-origin-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.brand-origin-copy i {
  font-family: "DM Serif Display", serif;
  font-size: 1.15em;
}

.reasons {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}

.reasons-stage {
  padding: clamp(32px, 5vh, 64px) 4.7vw;
}

@media (min-width: 721px) {
  .reasons.is-auto-sequenced {
    height: var(--page-height);
    min-height: var(--page-height);
  }

  .reasons.is-auto-sequenced .reasons-stage {
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
  }

  .reasons.is-auto-sequenced .reason-grid {
    margin-top: auto;
  }

  .reasons.is-auto-sequenced .reason-column {
    --reveal: 0;
    opacity: var(--reveal);
    transform: translateY(calc((1 - var(--reveal)) * 70px));
    transition:
      opacity 700ms ease,
      transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
}

.reason-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(16px, 3vh, 32px);
}

.reason-head > p:last-child {
  font-size: 15px;
  line-height: 1.9;
  text-align: right;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.reason-column {
  display: grid;
  grid-template-rows: clamp(172px, 28vh, 280px) minmax(0, 1fr);
  row-gap: 10px;
  min-width: 0;
}

.reason-column article {
  min-height: 180px;
  padding: 28px 3vw 0 0;
  border-top: 1px solid rgba(245, 241, 233, 0.35);
  border-right: 1px solid rgba(245, 241, 233, 0.35);
}

.reason-column + .reason-column article {
  padding-left: 3vw;
}

.reason-column:last-child article {
  border-right: 0;
}

.reason-grid span {
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

.reason-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #eee9df;
  object-fit: contain;
  object-position: center;
}

.reason-column:nth-child(3) .reason-image {
  background: linear-gradient(90deg, #f0ece8 0%, #ddd5c8 100%);
}

.reason-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.06em;
}

.reason-grid p {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.9;
}

.collection {
  display: flex;
  height: var(--page-height);
  min-height: var(--page-height);
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vh, 64px) 1.8vw;
}

.product-overview-heading {
  display: grid;
  width: min(100%, 1320px);
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label description"
    "title description";
  gap: 5px 24px;
  align-items: end;
  margin: 0 auto 14px;
  padding-top: 0;
}

.product-overview-heading > p:first-child {
  grid-area: label;
  align-self: start;
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.product-overview-heading h3 {
  grid-area: title;
  margin: 0;
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.product-overview-heading > p:last-child {
  grid-area: description;
  align-self: end;
  max-width: 290px;
  margin: 0 0 4px auto;
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
  opacity: 0.88;
}

.product-overview {
  display: grid;
  width: min(100%, 1320px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
  flex: 1;
  gap: 1px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  text-align: left;
}

.product-card-image {
  position: relative;
  display: grid;
  min-height: 0;
  width: 100%;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #ece6da;
  color: inherit;
  cursor: pointer;
}

.product-card-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  max-width: 56%;
  max-height: 76%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}

.product-card-meta {
  display: grid;
  grid-template-columns: 58px max-content max-content minmax(0, 1fr) max-content;
  gap: 0;
  align-items: center;
  min-height: 52px;
  padding: 11px 18px;
}

.product-card-meta small {
  font: 10px "DM Mono", monospace;
  letter-spacing: 0.09em;
  opacity: 0.82;
}

.product-card-meta strong {
  font-size: 12px;
  font-weight: 500;
}

.product-card-meta b {
  margin-left: 3ch;
  font: 11px "DM Mono", monospace;
}

.product-card-cta {
  grid-column: 5;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.product-card-image:hover img {
  transform: translate(-50%, -50%) scale(1.035);
}

.product-card.active {
  z-index: 2;
}

.product-card.active::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 2px solid var(--ink);
  content: "";
  pointer-events: none;
}

.product-card-image:focus-visible,
.product-card-cta:focus-visible {
  z-index: 2;
  outline: 3px solid var(--ink);
  outline-offset: -2px;
}

.purchase-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.purchase-modal[hidden] {
  display: none;
}

.purchase-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(24, 31, 28, 0.62);
  cursor: pointer;
}

.purchase-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  border: 1px solid rgba(39, 53, 47, 0.2);
  background: #fbf8f2;
  box-shadow: 0 28px 80px rgba(17, 24, 20, 0.28);
}

.purchase-header {
  position: sticky;
  z-index: 6;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  background: #fbf8f2;
  border-bottom: 1px solid var(--line);
}

.purchase-header p {
  margin: 0;
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.11em;
}

.purchase-header span {
  opacity: 0.8;
}

.purchase-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.purchase-body {
  display: grid;
  grid-template-columns: minmax(330px, 44%) 1fr;
}

.purchase-preview {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  background: #ece6da;
}

.purchase-preview img {
  display: block;
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.purchase-preview p {
  position: absolute;
  right: 18px;
  bottom: 15px;
  margin: 0;
  padding: 7px 10px;
  background: rgba(251, 248, 242, 0.88);
  font-size: 11px;
  letter-spacing: 0.07em;
}

.purchase-config {
  padding: 42px 48px 34px;
}

.purchase-kicker {
  margin: 0 0 8px;
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.purchase-config h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.purchase-price {
  margin: 0 0 18px;
  font: 500 25px "DM Mono", monospace;
}

.purchase-price small {
  font: 10px "Noto Sans JP", sans-serif;
}

.purchase-description {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.8;
}

.purchase-composition {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.8;
  opacity: 0.88;
}

.purchase-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 22px;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.purchase-steps li {
  min-width: 0;
  padding: 9px 8px;
  background: #fbf8f2;
  color: rgba(39, 53, 47, 0.62);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.purchase-steps span {
  display: block;
  margin-bottom: 3px;
  font: 10px "DM Mono", monospace;
}

.purchase-steps .is-complete,
.purchase-steps .is-active {
  color: var(--ink);
}

.purchase-steps .is-active {
  background: #e8e2d7;
  font-weight: 600;
}

.purchase-steps .is-complete span::after {
  margin-left: 3px;
  content: "✓";
}

.purchase-summary {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.5fr;
  gap: 1px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.purchase-summary p {
  min-width: 0;
  margin: 0;
  padding: 10px 11px;
  background: #fbf8f2;
}

.purchase-summary span,
.purchase-summary strong {
  display: block;
}

.purchase-summary span {
  margin-bottom: 4px;
  font: 10px "DM Mono", monospace;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.purchase-summary strong {
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.purchase-fieldset {
  position: relative;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.purchase-fieldset legend {
  width: 100%;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 600;
}

.purchase-fieldset legend strong {
  margin-left: 8px;
  font-weight: 400;
}

.purchase-colors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.color-option {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  padding: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.color-option::before {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1px solid rgba(39, 53, 47, 0.28);
  border-radius: 50%;
  background: var(--swatch);
  content: "";
}

.color-option span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.color-option.active {
  border-color: var(--ink);
}

.purchase-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.purchase-sizes button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 500 12px "DM Mono", monospace;
  cursor: pointer;
}

.purchase-sizes button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.size-guide {
  display: block;
  margin: 10px 0 0 auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  cursor: pointer;
}

.purchase-action-row {
  display: grid;
  grid-template-columns: auto minmax(105px, 0.55fr) minmax(190px, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.quantity {
  display: grid;
  grid-template-columns: 34px 28px 34px;
  align-items: center;
}

.quantity button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.quantity output {
  text-align: center;
  font: 12px "DM Mono", monospace;
}

.purchase-total {
  margin: 0;
  align-self: center;
  text-align: right;
}

.purchase-total span,
.purchase-total strong {
  display: block;
}

.purchase-total span {
  margin-bottom: 2px;
  font-size: 10px;
}

.purchase-total strong {
  font: 500 16px "DM Mono", monospace;
}

.add-to-cart {
  min-height: 46px;
  border: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.add-to-cart:disabled {
  border: 1px solid var(--line);
  background: #e6e0d6;
  color: rgba(39, 53, 47, 0.5);
  cursor: not-allowed;
}

.purchase-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #8e493a;
  font-size: 11px;
  text-align: center;
}

.purchase-status.success {
  color: #3e6653;
}

.purchase-complete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid #3e6653;
  background: #edf3ed;
  color: #284735;
}

.purchase-complete[hidden] {
  display: none;
}

.purchase-complete p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.purchase-complete button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.purchase-footnote {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.purchase-dialog button:focus-visible {
  outline: 2px solid #bd704d;
  outline-offset: 2px;
}

.guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  height: var(--page-height);
  min-height: var(--page-height);
  padding: clamp(64px, 10vh, 120px) 13vw;
  background: var(--moss);
}

.guide h2 {
  margin: 0;
}

.guide ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide li {
  display: flex;
  gap: 28px;
  padding: 23px 0;
  border-top: 1px solid rgba(39, 53, 47, 0.35);
  font-size: 14px;
}

.guide li:last-child {
  border-bottom: 1px solid rgba(39, 53, 47, 0.35);
}

.guide b {
  font: 10px "DM Mono", monospace;
}

.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 10vw;
  padding: 120px 13vw;
  background: var(--cream);
}

.faq h2 {
  margin: 0;
}

.faq-note {
  max-width: 300px;
  margin: 34px 0 0;
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.88;
}

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

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

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.7;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span {
  font: 11px "DM Mono", monospace;
  opacity: 0.82;
}

.faq summary::after {
  content: "+";
  justify-self: end;
  font: 20px "DM Mono", monospace;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > p {
  margin: -4px 42px 26px 48px;
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
}

.faq summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4.7vw;
  border-top: 1px solid var(--line);
  font: 11px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  :root {
    --page-height: auto;
  }

  .site-header {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    height: 63px;
    padding: 0 14px;
  }

  .logo {
    width: 92px;
    height: 34px;
  }

  nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: clamp(5px, 1.5vw, 10px);
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  nav a {
    white-space: nowrap;
  }

  section[id] {
    scroll-margin-top: 63px;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 28px 50px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10.8vw, 42px);
    line-height: 1.32;
    letter-spacing: -0.055em;
  }

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

  .hero-text {
    margin: 30px 0 28px;
    font-size: 13px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-bottom {
    position: static;
    padding: 18px 28px 22px;
    margin: 0;
  }

  .intro {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .intro-image {
    min-height: 430px;
  }

  .intro-content {
    padding: 85px 28px;
  }

  .intro h2,
  .collection h2,
  .guide h2,
  .faq h2 {
    margin-bottom: 42px;
  }

  .brand-origin {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .reasons {
    min-height: 0;
  }

  .reasons-stage {
    height: auto;
    min-height: 0;
    padding: 75px 28px;
  }

  .reason-head {
    display: block;
    margin-bottom: 48px;
  }

  .reason-head > p:last-child {
    text-align: left;
  }

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

  .reason-column {
    display: block;
    row-gap: 0;
  }

  .reason-column article,
  .reason-column + .reason-column article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 233, 0.35);
  }

  .reason-grid h3 {
    margin: 0 0 10px;
  }

  .reason-image {
    height: auto;
    aspect-ratio: 2.2;
    margin: 24px 0 10px;
  }

  .collection {
    height: auto;
    min-height: 0;
    padding: 80px 20px;
  }

  .collection-title {
    display: block;
  }

  .collection h2 {
    max-width: none;
    white-space: normal;
  }

  .product-overview-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "description";
    gap: 10px;
    margin-bottom: 22px;
  }

  .product-overview-heading h3 {
    white-space: normal;
  }

  .product-overview-heading > p:last-child {
    max-width: none;
    margin: 2px 0 0;
    text-align: left;
  }

  .product-overview {
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    margin-right: -20px;
    margin-bottom: 52px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
  }

  .product-card-image {
    height: auto;
    aspect-ratio: 1;
  }

  .product-card {
    display: block;
  }

  .product-card-image img {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 76%;
  }

  .product-card-meta {
    grid-template-columns: 1fr auto;
    gap: 5px 8px;
    padding: 12px 12px 14px;
  }

  .product-card-meta strong {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 11px;
  }

  .product-card-meta b {
    grid-column: 1;
    grid-row: 3;
    margin-left: 0;
    font-size: 10px;
  }

  .product-card-cta {
    grid-column: 2;
    grid-row: 3;
    font-size: 10px;
  }

  .purchase-modal {
    align-items: end;
    padding: 0;
  }

  .purchase-dialog {
    width: 100%;
    max-height: 94vh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .purchase-header {
    padding: 13px 16px;
  }

  .purchase-body {
    grid-template-columns: 1fr;
  }

  .purchase-preview {
    min-height: 250px;
    max-height: 310px;
  }

  .purchase-preview img {
    max-height: none;
  }

  .purchase-config {
    padding: 28px 20px 24px;
  }

  .purchase-summary {
    position: sticky;
    z-index: 4;
    top: 63px;
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
  }

  .purchase-summary p {
    padding: 9px 10px;
  }

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

  .purchase-action-row {
    position: sticky;
    bottom: 0;
    grid-template-columns: auto minmax(84px, 1fr) minmax(150px, 1.4fr);
    padding: 14px 0 8px;
    background: #fbf8f2;
  }

  .purchase-total strong {
    font-size: 14px;
  }


  .guide {
    grid-template-columns: 1fr;
    gap: 32px;
    height: auto;
    min-height: 0;
    padding: 80px 28px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 28px;
  }

  .faq-note {
    margin-top: 24px;
  }

  .faq summary {
    grid-template-columns: 24px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 21px 0;
    font-size: 14px;
  }

  .faq details > p {
    margin: -2px 20px 24px 36px;
    font-size: 13px;
  }

  footer {
    flex-wrap: wrap;
    gap: 12px;
    padding: 22px 20px;
  }

  footer p:last-child {
    width: 100%;
  }
}
