:root {
  --black: #101010;
  --black-soft: #181715;
  --white: #fff;
  --off-white: #f5f2ed;
  --wine: #741b2b;
  --wine-dark: #54111d;
  --line-light: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(16, 16, 16, 0.18);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --section-pad: clamp(112px, 12vw, 200px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--off-white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid #d899a4;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--wine);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 48px;
  color: var(--white);
  background: rgba(16, 16, 16, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transform: translateY(-110%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-visible {
  transform: translateY(0);
}

.site-header__logo {
  display: block;
  width: 132px;
}

.site-header__logo img,
.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer__meta a {
  position: relative;
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.site-nav a::after,
.site-footer__meta a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-footer__meta a:hover {
  opacity: 1;
}

.site-nav a:hover::after,
.site-footer__meta a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 clamp(48px, 10vw, 180px) rgba(0, 0, 0, 0.22);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__loading {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.hero__loading.is-hidden {
  opacity: 0;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 64px;
  place-items: start center;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: top;
  animation: scroll-line 2.2s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.eyebrow--light {
  color: #e7b8c0;
}

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5.4vw, 6.3rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.display-heading span {
  display: block;
  white-space: nowrap;
}

.concept__copy .display-heading {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.display-heading--light {
  color: var(--white);
}

.lead {
  margin: 44px 0 0;
  color: rgba(16, 16, 16, 0.72);
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.lead--light {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 56px;
  color: var(--wine);
}

.concept {
  background: var(--off-white);
}

.concept__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(56px, 9vw, 150px);
}

.concept__visual {
  margin: 0;
  overflow: hidden;
}

.concept__visual img {
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.concept__visual:hover img {
  transform: scale(1.015);
}

.section--wine {
  color: var(--white);
  background: var(--wine-dark);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  column-gap: 80px;
  margin-bottom: 96px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro .lead {
  margin: 0 0 9px;
}

.flavor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flavor-card {
  min-width: 0;
}

.flavor-card__image {
  aspect-ratio: 0.87;
  overflow: hidden;
  background: #2c1718;
}

.flavor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flavor-card:hover .flavor-card__image img {
  transform: scale(1.035);
}

.flavor-card__meta {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.flavor-card__meta span,
.package-card__caption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.flavor-card__meta h3,
.package-card__caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.flavor-card__meta p {
  grid-column: 2;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.7;
}

.packages {
  background: var(--white);
}

.packages__intro {
  max-width: 1110px;
  margin-bottom: 112px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px 28px;
}

.package-card__image {
  aspect-ratio: 561 / 701;
  overflow: hidden;
  background: #f7f7f7;
}

.package-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.package-card:hover .package-card__image img {
  transform: scale(1.025);
}

.package-card__caption {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.package-card__caption span {
  color: rgba(16, 16, 16, 0.44);
}

.package-card__caption h3 {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
}

.gift {
  color: var(--white);
  background: var(--wine);
}

.gift__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(64px, 10vw, 160px);
}

.gift__visual {
  margin: 0;
}

.gift__visual img {
  width: 100%;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 18px 32px;
  border: 1px solid currentColor;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.button--light {
  margin-top: 48px;
  color: var(--white);
}

.button--light:hover {
  color: var(--wine);
  background: var(--white);
}

.contact {
  color: var(--white);
  background: var(--black);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 9vw, 140px);
}

.contact__intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.contact__intro .display-heading {
  font-size: clamp(2.35rem, 3.7vw, 4.5rem);
}

.contact__email {
  display: inline-block;
  margin-top: 44px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

.contact__email:hover {
  color: var(--white);
}

.contact__form-wrap {
  padding: clamp(28px, 4vw, 56px);
  color: var(--black);
  background: var(--off-white);
}

.form-row {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row label > span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.form-row b {
  color: var(--wine);
  font-size: 0.6rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.28);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.form-row input,
.form-row select {
  min-height: 48px;
}

.form-row textarea {
  padding: 14px 0;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--wine);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 30px;
  color: rgba(16, 16, 16, 0.68);
  font-size: 0.73rem;
  line-height: 1.6;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.form-consent a {
  color: var(--black);
  border-bottom: 1px solid currentColor;
}

.button--submit {
  width: 100%;
  justify-content: space-between;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.button--submit:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: var(--wine);
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-status.is-success {
  color: #2e6340;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  padding: 42px 0 46px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner,
.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-page {
  min-height: 100vh;
  color: var(--black);
  background: var(--off-white);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 48px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-header__logo {
  display: block;
  width: 132px;
}

.legal-header__logo img {
  width: 100%;
  height: auto;
}

.legal-header__back {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.legal-main {
  width: min(880px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(88px, 10vw, 148px) 0;
}

.legal-main h1 {
  margin: 0 0 56px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.legal-lead,
.legal-section p,
.legal-section li {
  color: rgba(16, 16, 16, 0.72);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 2;
}

.legal-lead {
  margin: 0 0 72px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-section h2 {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.4em;
}

.legal-section a {
  border-bottom: 1px solid currentColor;
}

.legal-footer {
  padding: 34px 24px;
  color: rgba(255, 255, 255, 0.52);
  background: var(--black);
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.site-footer__logo {
  display: block;
  width: 112px;
}

.site-footer__meta {
  gap: 32px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--delay-2 {
  transition-delay: 240ms;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); }
  35% { opacity: 1; transform: scaleY(1); }
  75%, 100% { opacity: 0; transform: scaleY(1) translateY(12px); }
}

.advantages {
  background: var(--white);
}

.info-heading {
  max-width: 980px;
  margin-bottom: 88px;
}

.info-heading .lead {
  max-width: 620px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.advantage-card {
  min-width: 0;
  padding: 36px 34px 46px;
  border-right: 1px solid var(--line-dark);
}

.advantage-card:last-child {
  border-right: 0;
}

.advantage-card__number {
  display: block;
  margin-bottom: 72px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.advantage-card__en {
  margin: 0 0 18px;
  color: rgba(16, 16, 16, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.advantage-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}

.advantage-card > p:last-child {
  margin: 0;
  color: rgba(16, 16, 16, 0.65);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 2;
}

.small-lot {
  overflow: hidden;
  background: #ebe6de;
}

.small-lot__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(56px, 8vw, 128px);
}

.small-lot__number {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11rem, 25vw, 25rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.11em;
  -webkit-text-stroke: 1px rgba(116, 27, 43, 0.62);
}

.small-lot__copy .display-heading {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.small-lot__facts {
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.small-lot__facts div {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.small-lot__facts span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.small-lot__facts strong {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
}

.scenes {
  background: var(--white);
}

.scene-list {
  border-top: 1px solid var(--black);
}

.scene-list article {
  display: grid;
  grid-template-columns: 72px minmax(210px, 0.7fr) 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line-dark);
}

.scene-list article > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1rem;
}

.scene-list h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scene-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.98rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 9vw, 140px);
}

.info-grid__heading {
  align-self: start;
}

.info-grid__heading .display-heading {
  font-size: clamp(2.35rem, 3.6vw, 3.8rem);
}

.spec {
  background: var(--off-white);
}

.spec-table {
  margin: 0;
  border-top: 1px solid var(--black);
}

.spec-table div {
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line-dark);
}

.spec-table dt {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.spec-table dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.94rem;
}

.flow {
  color: var(--white);
  background: var(--black);
}

.flow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line-light);
}

.flow-list span {
  color: #e7b8c0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.flow-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.faq {
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  min-height: 86px;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 0.94rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
}

.faq-list summary i {
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 42px 28px 54px;
  color: rgba(16, 16, 16, 0.66);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 2;
}

@media (max-width: 1024px) {
  .small-lot__grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .small-lot__number {
    font-size: clamp(11rem, 45vw, 23rem);
  }

  .info-grid__heading {
    max-width: 760px;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 56px, 960px);
  }

  .concept__grid,
  .gift__grid,
  .contact__grid {
    gap: 64px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-intro .lead {
    margin: 0;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 40px);
    --section-pad: 96px;
  }

  .site-header {
    min-height: 68px;
    padding: 16px 20px;
  }

  .site-header__logo {
    position: relative;
    z-index: 2;
    width: 104px;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 36px;
    padding: 10px 6px;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100svh;
    gap: 30px;
    color: var(--white);
    background: var(--black);
    font-family: var(--serif);
    font-size: 2rem;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 520px;
  }

  .hero__video {
    inset: auto;
    top: 50%;
    left: 50%;
    width: min(190vw, 178svh);
    max-width: none;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.28)),
      radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.22) 100%);
    box-shadow: none;
  }

  .display-heading,
  .concept__copy .display-heading,
  .contact__intro .display-heading {
    font-size: clamp(1.75rem, 8.4vw, 4rem);
    line-height: 1.32;
  }

  .lead {
    margin-top: 32px;
    line-height: 2;
  }

  .lead br {
    display: none;
  }

  .concept__grid,
  .gift__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .concept__copy {
    order: 1;
  }

  .concept__visual {
    order: 2;
    margin-top: 12px;
  }

  .section-intro {
    margin-bottom: 56px;
  }

  .flavor-list {
    display: flex;
    width: calc(100vw - 20px);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .flavor-list::-webkit-scrollbar {
    display: none;
  }

  .flavor-card {
    flex: 0 0 min(78vw, 330px);
    scroll-snap-align: start;
  }

  .packages__intro {
    margin-bottom: 70px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .package-card:nth-child(even) {
    width: 88%;
    margin-left: auto;
  }

  .package-card__image {
    aspect-ratio: 561 / 701;
  }

  .gift__grid {
    gap: 52px;
  }

  .gift__visual {
    order: 2;
  }

  .gift__copy {
    order: 1;
  }

  .contact__grid {
    gap: 56px;
  }

  .contact__intro {
    position: static;
  }

  .contact__form-wrap {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .site-footer__inner,
  .site-footer__meta {
    align-items: flex-start;
  }

  .site-footer__meta {
    flex-direction: column;
    gap: 18px;
  }

  .legal-header {
    min-height: 68px;
    padding: 16px 20px;
  }

  .legal-header__logo {
    width: 104px;
  }

  .legal-main {
    width: calc(100% - 40px);
    padding: 72px 0 88px;
  }

  .legal-main h1 {
    margin-bottom: 40px;
  }

  .legal-lead {
    margin-bottom: 52px;
  }

  .info-heading {
    margin-bottom: 56px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    padding: 28px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .advantage-card:last-child {
    border-bottom: 0;
  }

  .advantage-card__number {
    margin-bottom: 34px;
  }

  .small-lot__grid {
    gap: 44px;
  }

  .small-lot__number {
    font-size: 54vw;
  }

  .small-lot__copy .display-heading,
  .info-grid__heading .display-heading {
    font-size: clamp(1.75rem, 8.4vw, 4rem);
  }

  .scene-list article {
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 4px 12px;
    padding: 22px 0;
  }

  .scene-list h3 {
    padding-top: 3px;
  }

  .scene-list p {
    grid-column: 2;
  }

  .info-grid {
    gap: 52px;
  }

  .spec-table div {
    grid-template-columns: 42% 1fr;
  }

  .flow-list li {
    grid-template-columns: 86px 1fr;
  }

  .faq-list summary {
    grid-template-columns: 42px 1fr auto;
    font-size: 0.84rem;
  }

  .faq-list details p {
    padding-left: 42px;
  }
}

@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;
  }
}
