/* ========================================
   いちごの雪どけ LP
   ======================================== */

:root {
  --primary: #D94F6B;
  --primary-dark: #C03D58;
  --primary-soft: #F2A0B3;
  --primary-pale: #FFF0F3;
  --primary-mist: #FFF7F9;
  --rose: #FADADD;
  --snow: #FFFAFA;
  --cream: #FFF8F2;
  --gold: #C9956B;
  --gold-light: #E8C9A8;
  --star: #F0B429;
  --text: #3A2328;
  --text-body: #5C3D45;
  --text-muted: #9C7880;
  --white: #FFFFFF;
  --footer-bg: #3D1523;
  --footer-text: #F2D9E0;
  --font-serif: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1080px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(217,79,107,0.06);
  --shadow-md: 0 8px 32px rgba(217,79,107,0.08);
  --shadow-lg: 0 16px 48px rgba(217,79,107,0.10);
  --section-py: clamp(64px, 10vw, 120px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; color: var(--primary); }
em { font-style: normal; color: var(--primary); font-weight: 500; }

.sp-only { display: inline; }
.pc-only { display: none; }
@media (min-width: 768px) { .sp-only { display: none; } .pc-only { display: inline; } }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header__en {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 300;
  color: var(--primary-soft);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header__ja {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.12em;
  display: inline-block;
}
.section-header__ja::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
  margin: 18px auto 0;
}

/* --- Product Button (card style) --- */
.product-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid rgba(217,79,107,0.15);
  color: var(--text);
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s;
  width: 100%;
  max-width: 280px;
}
.product-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.product-btn__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.product-btn__name {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}
.product-btn__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.product-btn__tax {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}
.product-btn__save {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--primary-pale);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 2px;
}
.product-btn--set {
  border-color: var(--primary);
  background: var(--primary-mist);
}

/* Hero Coupon */
.hero__coupon {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 1.5px;
  border-radius: 14px;
  background: linear-gradient(135deg, #D9B87A 0%, var(--gold-light) 30%, var(--gold) 50%, var(--gold-light) 70%, #D9B87A 100%);
  box-shadow: 0 2px 12px rgba(160,116,48,0.12);
}
.hero__coupon-inner {
  background: linear-gradient(175deg, #FFFEF9 0%, #FFF9EF 100%);
  border-radius: 13px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__coupon-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.hero__coupon-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-bottom: 2px;
}
.hero__coupon-off {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #8A6320;
  background: linear-gradient(160deg, #7A5518 0%, #A07030 30%, #C49A50 50%, #A07030 70%, #7A5518 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.hero__coupon-percent {
  font-size: 1rem;
  font-weight: 700;
}
.hero__coupon-off-text {
  font-size: 0.9rem;
  font-weight: 600;
}
.hero__coupon-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  flex-shrink: 0;
}
.hero__coupon-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero__coupon-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hero__coupon-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__coupon-code {
  font-family: "SF Mono", "Courier New", monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  background: none;
  user-select: all;
}
.hero__coupon-copy {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(160deg, #B8894A 0%, var(--gold) 50%, #B8894A 100%);
  border: none;
  border-radius: 4px;
  padding: 4px 12px;
  cursor: pointer;
  transition: filter 0.2s;
  white-space: nowrap;
}
.hero__coupon-copy:hover { filter: brightness(1.08); }
.hero__coupon-copy.is-copied { background: linear-gradient(160deg, #B8894A 0%, var(--gold) 50%, #B8894A 100%); }

/* CTA lead text */
.hero__cta-lead {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  opacity: 0.6;
}

/* Closing image */
.closing__image {
  max-width: 640px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  overflow: hidden;
}
.closing__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons layout */
.hero__products, .closing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.closing__cta {
  margin-bottom: clamp(40px, 6vw, 56px);
}

/* --- Scroll Fade-in --- */
.experience__step,
.experience__closing,
.experience__gallery,
.secret__step,
.secret__badges,
.review-card,
.reviews__stats,
.scene-card,
.coupon,
.closing__cta {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.experience__step.is-visible,
.experience__closing.is-visible,
.experience__gallery.is-visible,
.secret__step.is-visible,
.secret__badges.is-visible,
.review-card.is-visible,
.reviews__stats.is-visible,
.scene-card.is-visible,
.coupon.is-visible,
.closing__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.experience__step:nth-of-type(2) { transition-delay: 0.15s; }
.experience__step:nth-of-type(3) { transition-delay: 0.3s; }
.experience__closing { transition-delay: 0.45s; }
.review-card:nth-of-type(2) { transition-delay: 0.1s; }
.review-card:nth-of-type(3) { transition-delay: 0.2s; }
.secret__step:nth-of-type(2) { transition-delay: 0.15s; }
.secret__step:nth-of-type(3) { transition-delay: 0.3s; }
.review-card:nth-of-type(4) { transition-delay: 0.3s; }
.review-card:nth-of-type(5) { transition-delay: 0.1s; }
.review-card:nth-of-type(6) { transition-delay: 0.2s; }
.scene-card:nth-of-type(2) { transition-delay: 0.08s; }
.scene-card:nth-of-type(3) { transition-delay: 0.16s; }
.scene-card:nth-of-type(4) { transition-delay: 0.24s; }

/* ========================================
   1. HERO
   ======================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(175deg, #FCEAEE 0%, #FFF2F4 30%, #FFF8F9 60%, var(--snow) 100%);
  overflow: hidden;
  padding: 48px 24px 120px;
}
.hero__bg-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__circle { position: absolute; border-radius: 50%; opacity: 0.35; filter: blur(60px); }
.hero__circle--1 { width: 500px; height: 500px; background: radial-gradient(circle, #F9C4CF 0%, transparent 70%); top: -10%; right: -10%; animation: cf1 12s ease-in-out infinite; }
.hero__circle--2 { width: 400px; height: 400px; background: radial-gradient(circle, #FADADD 0%, transparent 70%); bottom: 10%; left: -5%; animation: cf2 15s ease-in-out infinite; }
.hero__circle--3 { width: 250px; height: 250px; background: radial-gradient(circle, #FDE8D0 0%, transparent 70%); top: 40%; left: 50%; animation: cf3 10s ease-in-out infinite; }
@keyframes cf1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes cf2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes cf3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-15px,15px)} }

.hero__petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.petal { position: absolute; width: 12px; height: 12px; background: radial-gradient(ellipse at 30% 30%, #F5B8C4 0%, #FADADD 60%, transparent 100%); border-radius: 50% 0 50% 0; opacity: 0; animation: pf linear infinite; }
.petal--1 { left: 8%;  animation-duration: 10s; animation-delay: 0s;   width: 10px; height: 10px; }
.petal--2 { left: 18%; animation-duration: 13s; animation-delay: 1.5s; width: 14px; height: 14px; }
.petal--3 { left: 32%; animation-duration: 11s; animation-delay: 3s;   width: 8px;  height: 8px; }
.petal--4 { left: 48%; animation-duration: 14s; animation-delay: 0.8s; width: 11px; height: 11px; }
.petal--5 { left: 58%; animation-duration: 9s;  animation-delay: 4s;   width: 13px; height: 13px; }
.petal--6 { left: 72%; animation-duration: 12s; animation-delay: 2s;   width: 9px;  height: 9px; }
.petal--7 { left: 85%; animation-duration: 15s; animation-delay: 5s;   width: 12px; height: 12px; }
.petal--8 { left: 93%; animation-duration: 10s; animation-delay: 3.5s; width: 7px;  height: 7px; }
@keyframes pf {
  0%   { top: -5%; opacity: 0; transform: rotate(0deg) translateX(0); }
  8%   { opacity: 0.6; }
  50%  { transform: rotate(180deg) translateX(30px); }
  85%  { opacity: 0.5; }
  100% { top: 105%; opacity: 0; transform: rotate(360deg) translateX(-20px); }
}

.hero__inner { text-align: center; position: relative; z-index: 2; width: 100%; max-width: 1100px; }
.hero__text { max-width: 560px; margin: 0 auto; }

.hero__ribbon { display: inline-block; position: relative; margin-bottom: 24px; }
.hero__ribbon span {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #D4A574 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 28px;
  letter-spacing: 0.18em;
  position: relative;
}
.hero__ribbon span::before, .hero__ribbon span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 100%;
  transform: translateY(-50%);
}
.hero__ribbon span::before { left: -16px; background: linear-gradient(135deg, var(--gold) 0%, #D4A574 100%); clip-path: polygon(100% 0, 100% 100%, 0 50%); }
.hero__ribbon span::after  { right: -16px; background: linear-gradient(135deg, var(--gold) 0%, #D4A574 100%); clip-path: polygon(0 0, 100% 50%, 0 100%); }

.hero__title { margin-bottom: 12px; }
.hero__title-main {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  display: block;
  background: linear-gradient(180deg, var(--primary) 20%, #E8697F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__catch {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: clamp(0.82rem, 2.2vw, 0.92rem);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-bottom: 24px;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.hero__proof-item { display: flex; align-items: center; gap: 4px; }
.hero__proof-stars { color: var(--star); font-size: 0.85rem; letter-spacing: 1px; display: inline-flex; gap: 1px; }
.hero__proof-number { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.hero__proof-text { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }
.hero__proof-sep { width: 1px; height: 16px; background: rgba(217,79,107,0.2); }
.hero__proof-note { font-size: 0.8rem; color: #000000; text-align: center; margin-top: 2px; margin-bottom: 24px; letter-spacing: 0.02em; opacity: 0.6; }

.hero__image {
  position: relative;
  margin: 0 auto 36px;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(217,79,107,0.12), 0 2px 12px rgba(0,0,0,0.04);
}
.hero__image img { width: 100%; height: auto; display: block; }

.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }
.hero__wave svg { width: 100%; height: 60px; }

/* ========================================
   2. EXPERIENCE
   ======================================== */
.experience {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-pale) 100%);
}

.experience__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.experience__story {
  width: 100%;
  text-align: center;
}

.experience__step {
  margin-bottom: 32px;
}

.experience__sound {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.experience__text {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--text-body);
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.experience__closing {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.experience__image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.experience__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Gallery */
.experience__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: clamp(40px, 6vw, 64px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.experience__gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.experience__gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.experience__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* ========================================
   3. SECRET (フリーズドライの秘密)
   ======================================== */
.secret {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--cream) 50%, var(--white) 100%);
}

.secret__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.secret__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.secret__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.secret__step-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-soft);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.secret__step-content {
  flex: 1;
}

.secret__step-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.secret__step-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.9;
}

.secret__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.secret__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.secret__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.secret__badge {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.secret__badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.secret__badge-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.secret__badge-value {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.secret__badge-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.secret__badge-cert {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 3px 12px;
  letter-spacing: 0.04em;
}

.secret__badge-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ========================================
   4. REVIEWS
   ======================================== */
.reviews {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--white) 100%);
}

.reviews__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.stat-badge { text-align: center; padding: 16px 24px; }
.stat-badge__inner { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.stat-badge__number { font-family: var(--font-serif); font-size: clamp(2rem, 6vw, 3rem); font-weight: 700; color: var(--primary); line-height: 1; }
.stat-badge__unit { font-size: 1rem; color: var(--primary); font-weight: 500; }
.stat-badge__score { font-family: var(--font-serif); font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; color: var(--primary); line-height: 1; margin-left: 6px; }
.stat-badge__stars { display: flex; gap: 2px; }
.star { color: var(--star); font-size: clamp(1.1rem, 3vw, 1.4rem); }
.star--half {
  position: relative;
  color: #e0d0d0;
}
.star--half::before {
  content: "\2605";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--star);
}
.stat-badge__label { display: block; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 6px; }
.stat-badge__divider { width: 1px; height: 48px; background: rgba(217,79,107,0.15); }
.reviews__stats-note { font-size: 0.8rem; color: #000000; text-align: center; margin-top: 2px; margin-bottom: clamp(32px, 6vw, 52px); opacity: 0.6; letter-spacing: 0.02em; }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__theme {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--white);
  background: var(--primary);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.review-card__quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary-soft);
  position: absolute;
  top: 8px;
  left: 20px;
  opacity: 0.15;
  pointer-events: none;
}
.review-card__text { font-size: 0.93rem; line-height: 2; color: var(--text-body); position: relative; z-index: 1; }
.review-card__footer { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.review-card__stars { color: var(--star); font-size: 0.85rem; letter-spacing: 3px; }
.review-card__attr { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; opacity: 0.7; }

/* ========================================
   4. SCENES
   ======================================== */
.scenes {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-pale) 100%);
}

.scenes__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}

.scenes__image {
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,21,35,0.1);
}
.scenes__image img {
  width: 100%;
  height: auto;
  display: block;
}

.scenes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 800px;
}

.scene-card {
  background: var(--primary-mist);
  border: 1px solid rgba(217,79,107,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.scene-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.scene-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.scene-card__copy {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.scene-card__voice {
  font-size: 0.82rem;
  color: var(--primary);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ========================================
   5. TRUST
   ======================================== */
.trust {
  padding: clamp(40px, 6vw, 64px) 0;
  background: linear-gradient(180deg, var(--primary-pale) 0%, var(--primary-mist) 100%);
}

.trust__items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.trust__item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.trust__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust__unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.trust__badge {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 4px 14px;
  letter-spacing: 0.05em;
}
.trust__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ========================================
   6. CLOSING (Coupon + Info + CTA)
   ======================================== */
.closing {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--primary-mist) 0%, var(--primary-pale) 100%);
}

/* Coupon - elegant */
.coupon {
  max-width: 480px;
  margin: 0 auto clamp(40px, 6vw, 56px);
  padding: 2px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #D9B87A 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, #D9B87A 100%);
  box-shadow:
    0 2px 8px rgba(160,116,48,0.06),
    0 16px 56px rgba(160,116,48,0.07);
}
.coupon__inner {
  background: linear-gradient(175deg, #FFFEF9 0%, #FFFBF4 40%, #FFF9EF 100%);
  border-radius: calc(var(--radius) - 1px);
  padding: 48px 44px 40px;
  text-align: center;
  position: relative;
}

/* Corner ornaments */
.coupon__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.35;
}
.coupon__corner::before,
.coupon__corner::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.coupon__corner::before { width: 20px; height: 1px; }
.coupon__corner::after  { width: 1px; height: 20px; }
.coupon__corner--tl { top: 16px; left: 16px; }
.coupon__corner--tl::before { top: 0; left: 0; }
.coupon__corner--tl::after  { top: 0; left: 0; }
.coupon__corner--tr { top: 16px; right: 16px; }
.coupon__corner--tr::before { top: 0; right: 0; }
.coupon__corner--tr::after  { top: 0; right: 0; }
.coupon__corner--bl { bottom: 16px; left: 16px; }
.coupon__corner--bl::before { bottom: 0; left: 0; }
.coupon__corner--bl::after  { bottom: 0; left: 0; }
.coupon__corner--br { bottom: 16px; right: 16px; }
.coupon__corner--br::before { bottom: 0; right: 0; }
.coupon__corner--br::after  { bottom: 0; right: 0; }

.coupon__eyebrow {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

/* Ornament divider (line - diamond - line) */
.coupon__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  max-width: 200px;
}
.coupon__ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.coupon__ornament-line:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.coupon__ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.coupon__title { line-height: 1; margin-bottom: 6px; }
.coupon__off {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 11vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(160deg, #8A6320 0%, #B8894A 20%, #DCBA7A 40%, #E8CFA0 50%, #DCBA7A 60%, #B8894A 80%, #8A6320 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.coupon__percent {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 600;
  background: linear-gradient(160deg, #8A6320 0%, #B8894A 20%, #DCBA7A 40%, #E8CFA0 50%, #DCBA7A 60%, #B8894A 80%, #8A6320 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 3px;
}
.coupon__sub {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.coupon__instruction {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.coupon__code-wrap {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(185,137,74,0.2);
  box-shadow: 0 2px 8px rgba(160,116,48,0.04);
}
.coupon__code {
  font-family: "SF Mono", "Courier New", monospace;
  font-size: clamp(1.05rem, 3.8vw, 1.3rem);
  font-weight: 700;
  color: #7A5C1E;
  letter-spacing: 0.24em;
  padding: 12px 24px;
  user-select: all;
  background: rgba(255,255,255,0.8);
}
.coupon__copy {
  padding: 12px 20px;
  background: linear-gradient(160deg, #B8894A 0%, var(--gold) 50%, #B8894A 100%);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: filter 0.3s;
  white-space: nowrap;
}
.coupon__copy:hover { filter: brightness(1.08); }
.coupon__note {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Product info (compact) */
.product-info__inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.product-table { width: 100%; border-collapse: collapse; }
.product-table th, .product-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(217,79,107,0.06);
}
.product-table tr:last-child th, .product-table tr:last-child td { border-bottom: none; }
.product-table th { width: 28%; min-width: 80px; font-weight: 600; color: var(--text); white-space: nowrap; background: var(--primary-mist); }
.product-table td { color: var(--text-body); }
.product-table__sub { font-size: 0.72rem; font-weight: 400; color: var(--text-muted); }
.product-table__note { font-size: 0.75rem; color: var(--text-muted); }

.product-info__shipping {
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.product-info__contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { position: relative; background: var(--footer-bg); }
.footer__wave { position: relative; top: -1px; line-height: 0; }
.footer__wave svg { width: 100%; height: 40px; }
.footer__inner { padding: 40px 24px 48px; text-align: center; color: var(--footer-text); }
.footer__company { font-family: var(--font-serif); font-size: 1rem; font-weight: 500; margin-bottom: 8px; letter-spacing: 0.1em; }
.footer__site { margin-bottom: 28px; }
.footer__site a { font-size: 0.85rem; opacity: 0.6; transition: opacity 0.3s; letter-spacing: 0.05em; border-bottom: 1px solid transparent; }
.footer__site a:hover { opacity: 1; border-bottom-color: rgba(255,255,255,0.3); }
.footer__sns { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; }
.footer__sns-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--footer-text);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out-back);
}
.footer__sns-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.footer__copy { font-size: 0.72rem; opacity: 0.35; letter-spacing: 0.08em; }

/* ========================================
   STICKY CTA BAR
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
}
.sticky-cta__top {
  background: var(--primary-pale);
  padding: 6px 16px;
}
.sticky-cta__coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-cta__coupon-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sticky-cta__coupon-code {
  font-family: "SF Mono", "Courier New", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  background: var(--white);
  padding: 3px 12px;
  border-radius: 4px;
  border: 1.5px dashed var(--primary-soft);
}
.sticky-cta__coupon-copy {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: 4px;
  padding: 3px 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.sticky-cta__coupon-copy:active,
.sticky-cta__coupon-copy.is-copied {
  background: var(--primary);
  color: var(--white);
}
.sticky-cta__buttons {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
}
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 12px 8px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.sticky-cta__btn:active { opacity: 0.85; }
.sticky-cta__btn-name {
  font-size: 0.72rem;
  opacity: 0.85;
}
.sticky-cta__btn-price {
  font-size: 1rem;
  font-family: var(--font-serif);
}
.sticky-cta__btn--main {
  background: linear-gradient(135deg, var(--primary) 0%, #E8697F 100%);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(217,79,107,0.3);
}
.sticky-cta__btn--set {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  flex: 1.3;
}
.sticky-cta__btn--set .sticky-cta__btn-name {
  opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
  .container { padding: 0 48px; }
  .hero { padding: 64px 40px 140px; }
  .hero__wave svg { height: 80px; }
  .hero__image { max-width: 800px; }
  .hero__products, .closing__cta { flex-direction: row; justify-content: center; }

  .experience__body { flex-direction: row; gap: 56px; text-align: left; }
  .experience__story { flex: 1; text-align: left; }
  .experience__image { flex: 0 0 280px; max-width: 280px; align-self: center; }
  .experience__gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .secret__body { flex-direction: row; gap: 48px; align-items: center; }
  .secret__steps { flex: 1; }
  .secret__image { flex: 0 0 300px; max-width: 300px; margin: 0; }
  .secret__badges { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .scenes__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .scenes__image {
    flex: 0 0 42%;
    max-width: 420px;
    position: sticky;
    top: 40px;
  }
  .scenes__grid {
    flex: 1;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 1024px) {
  .hero { padding: 80px 48px 160px; }
  .hero__image { max-width: 900px; }
  .hero__wave svg { height: 120px; }

  .experience__image { flex: 0 0 360px; max-width: 360px; }

  .secret__image { flex: 0 0 360px; max-width: 360px; }

  .review-card { padding: 36px 32px 28px; }
  .product-table th, .product-table td { padding: 16px 28px; }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .petal, .hero__circle { animation: none; }
  .experience__step, .experience__closing, .experience__gallery,
  .secret__step, .secret__badges,
  .review-card, .reviews__stats,
  .scene-card, .coupon, .closing__cta {
    opacity: 1; transform: none; transition: none;
  }
}
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
