:root {
  --ink: #1d1714;
  --muted: #766b60;
  --paper: #f8f1e7;
  --paper-alt: #eee3d3;
  --white: #fffaf2;
  --green: #314b3c;
  --green-deep: #121b17;
  --charcoal: #15110f;
  --wine: #6e2131;
  --rose: #bd6d75;
  --peach: #e5aa8e;
  --gold: #c9a35a;
  --champagne: #e7d5b4;
  --line: rgba(29, 23, 20, 0.13);
  --line-light: rgba(255, 250, 242, 0.16);
  --shadow: 0 28px 78px rgba(21, 17, 15, 0.2);
  --font-sans: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
}

body,
button,
input {
  font: inherit;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 40px;
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 241, 231, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(21, 17, 15, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 106px;
  height: 46px;
  overflow: visible;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand__logo,
.site-header.is-open .brand__logo {
  filter: none;
}

.footer .brand {
  width: 132px;
  height: 58px;
}

.footer .brand__logo {
  filter: invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  min-height: 42px;
  border: 1px solid currentColor;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.app-store-badge {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 8px 15px 8px 13px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: #050505;
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.app-store-badge svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.app-store-badge span {
  display: grid;
  line-height: 1.1;
}

.app-store-badge small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.app-store-badge strong {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.04);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 11, 9, 0.92), rgba(14, 11, 9, 0.64) 42%, rgba(14, 11, 9, 0.12) 72%),
    linear-gradient(0deg, rgba(14, 11, 9, 0.62), rgba(14, 11, 9, 0.04) 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  padding-top: 188px;
  margin-left: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.line-set > span {
  display: block;
}

/* BudouX で <wbr> が入った文の中で「折れてはいけない意味のかたまり」を保護する。
   D-019 補完: BudouXが文節境界に <wbr> を入れた結果、鉤括弧句や主語述語が
   読み手の意味の塊と異なる位置で折れることがある。.nobr を付けたインラインspan
   内ではwbrが無効化されるため、保護したいフレーズ単位で囲う。 */
.nobr {
  white-space: nowrap;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 60px;
  line-height: 1.28;
}

h2 {
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1.46;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.45;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 18px;
  line-height: 2;
  text-wrap: pretty;
}

.hero__lead span {
  display: inline;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 15px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-assurance span {
  position: relative;
}

.cta-assurance span + span::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(231, 213, 180, 0.7);
  content: "";
  transform: translateY(-50%);
}

.button--primary {
  border: 1px solid var(--wine);
  background: linear-gradient(135deg, var(--wine), #3f111d);
  color: #fff;
  box-shadow: 0 18px 36px rgba(74, 18, 30, 0.28);
}

.button:focus-visible,
.header-action:focus-visible,
.app-store-badge:focus-visible,
.floating-cta:focus-visible {
  outline: 3px solid rgba(216, 178, 76, 0.9);
  outline-offset: 3px;
}

/* D-038 / S3: intro-strip base
   軸別 background は draft-overrides.css 側 (data-lp-variant ごと) で定義する。
   ここでは構造 (display / padding / border / typography) のみ持つ。
   旧: background: linear-gradient(135deg, #14110f, var(--green-deep)); (削除) */
.intro-strip {
  display: block;
  padding: 24px;
  background: transparent;
}

.intro-strip p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.intro-strip p span {
  display: inline-block;
}

.section {
  padding: 112px 56px;
}

.section-copy {
  max-width: 760px;
}

.section-copy p,
.photo-story__copy p,
.how__copy > p,
.proof__copy > p,
.trust__copy > p,
.download__content > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  text-wrap: pretty;
}

.copy-line {
  display: block;
}

.copy-line + .copy-line {
  margin-top: 2px;
}

.section-copy--center {
  margin: 0 auto 42px;
  text-align: center;
}

/* D-038 / S4: concept base
   背景多重半透明 + style-luxe.png 装飾を撤廃。軸別背景は draft-overrides.css 側で。
   旧: background linear-gradient (paper 半透明 ×2) + ::before url(style-luxe.png)
       + ::after の右側装飾 → 全削除 */
.concept {
  position: relative;
  isolation: isolate;
  background: transparent;
}

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

.concept .section-copy {
  padding-left: 22px;
  border-left: 1px solid rgba(110, 33, 49, 0.22);
}

.concept-experience {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  max-width: 1180px;
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(29, 23, 20, 0.12);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 34px 86px rgba(21, 17, 15, 0.18);
}

.concept-experience__photo {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: #120f0c;
}

.concept-experience__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.06), rgba(17, 12, 10, 0.62)),
    linear-gradient(0deg, rgba(17, 12, 10, 0.72), rgba(17, 12, 10, 0.08) 56%);
  content: "";
}

.concept-experience__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.concept-experience__photo figcaption {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  color: #fff;
}

.concept-experience__photo figcaption span,
.concept-reasons span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-experience__photo figcaption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45;
}

.concept-experience__body {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 163, 90, 0.18), transparent 30%),
    linear-gradient(145deg, #17120f 0%, #1b2a22 100%);
  color: #fff;
}

.concept-reasons {
  display: grid;
  gap: 12px;
}

.concept-reasons article {
  position: relative;
  padding: 20px 20px 20px 74px;
  border: 1px solid rgba(231, 213, 180, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.concept-reasons span {
  position: absolute;
  top: 22px;
  left: 20px;
  color: var(--gold);
}

.concept-reasons h3 {
  margin-bottom: 5px;
  color: #fff;
}

.concept-reasons p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 13.5px;
  line-height: 1.85;
}

.concept-confidence {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(201, 163, 90, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 163, 90, 0.15), rgba(255, 250, 242, 0.06)),
    rgba(255, 250, 242, 0.07);
  color: rgba(255, 250, 242, 0.9);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.65;
}

.concept-style-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.concept-style-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(231, 213, 180, 0.16);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 62%;
}

.concept-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  max-width: 1180px;
  margin: 46px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 24px 62px rgba(21, 17, 15, 0.08);
}

.concept-visual__photo {
  position: relative;
  min-height: 342px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.concept-visual__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.18), rgba(17, 12, 10, 0.5)),
    linear-gradient(0deg, rgba(17, 12, 10, 0.36), rgba(17, 12, 10, 0.04) 58%);
  content: "";
}

.concept-visual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.concept-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1.15fr) 42px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 30px;
  background:
    radial-gradient(circle at 74% 16%, rgba(201, 163, 90, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(238, 227, 211, 0.72));
}

.concept-flow__node {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.82);
}

.concept-flow__node--main {
  border-color: rgba(231, 213, 180, 0.22);
  background:
    radial-gradient(circle at 14% 10%, rgba(201, 163, 90, 0.2), transparent 36%),
    linear-gradient(145deg, var(--green-deep), #1a1210);
  box-shadow: 0 20px 44px rgba(21, 17, 15, 0.16);
  color: #fff;
}

.concept-flow__node span {
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-flow__node--main span {
  color: var(--champagne);
}

.concept-flow__node strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.concept-flow__node p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.85;
}

.concept-flow__node--main p {
  color: rgba(255, 250, 242, 0.76);
}

.concept-flow > i {
  position: relative;
  display: block;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 163, 90, 0.28), rgba(110, 33, 49, 0.38));
}

.concept-flow > i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(110, 33, 49, 0.55);
  border-right: 1px solid rgba(110, 33, 49, 0.55);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 42px auto 0;
}

.concept-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  backdrop-filter: blur(8px);
}

.concept-card {
  min-height: 248px;
  padding: 28px;
}

.concept-card span {
  color: var(--wine);
  font-weight: 900;
}

.concept-card p,
.style-tile p,
.steps p,
.solution-card p,
.situation-card p,
.trust-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.result {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.9), rgba(24, 37, 30, 0.94)),
    url("./assets/gift-moment-luxury.png") center 42% / cover;
  color: #fff;
}

.result .section-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.result h2 {
  color: #fff;
}

.result-journey {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 48px auto 0;
}

.result-path {
  --result-bg: url("./assets/hero-caquehin-atelier.png");
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(150px, 220px) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(231, 213, 180, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.94), rgba(17, 12, 10, 0.76) 48%, rgba(17, 12, 10, 0.9)),
    var(--result-bg) center / cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.result-path--quick {
  --result-bg: url("./assets/style-luxe.png");
}

.result-path--map {
  --result-bg: url("./assets/style-breath.png");
}

.result-path::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201, 163, 90, 0.08), transparent 42%, rgba(110, 33, 49, 0.12)),
    linear-gradient(0deg, rgba(255, 250, 242, 0.04), rgba(255, 250, 242, 0));
  content: "";
}

.result-path > * {
  position: relative;
  z-index: 1;
}

.result-path__issue,
.result-path__outcome {
  padding: 24px;
  border: 1px solid rgba(231, 213, 180, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(12px);
}

.result-path__issue {
  min-height: 210px;
}

.result-path__issue span,
.result-path__outcome span {
  display: block;
  margin-bottom: 12px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-path__issue h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}

.result-path__issue p,
.result-path__outcome p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
}

.result-path__screen {
  justify-self: center;
  width: min(190px, 100%);
  max-height: 300px;
  margin: 0;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(231, 213, 180, 0.2);
  border-radius: 28px;
  background: #080706;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.result-path__screen img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  border-radius: 22px;
  object-fit: cover;
  object-position: top center;
}

.result-path__outcome {
  border-color: rgba(201, 163, 90, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.06)),
    rgba(18, 27, 23, 0.52);
}

.result-path__outcome strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.45;
}

.result-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 18px;
  border: 1px solid rgba(29, 23, 20, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.72), rgba(255, 250, 242, 0.42)),
    rgba(255, 250, 242, 0.44);
  box-shadow: 0 20px 54px rgba(21, 17, 15, 0.08);
}

.result-map article {
  display: grid;
  min-height: 196px;
  grid-template-rows: minmax(48px, auto) 32px auto auto;
  align-content: center;
  justify-items: center;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  text-align: center;
}

.result-map__issue {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: balance;
}

.result-map__connector {
  position: relative;
  display: block;
  width: 1px;
  height: 30px;
  margin: 2px 0;
  background: linear-gradient(180deg, rgba(110, 33, 49, 0.12), rgba(201, 163, 90, 0.54));
}

.result-map__connector::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.result-map strong {
  display: inline-grid;
  min-width: 116px;
  min-height: 42px;
  place-items: center;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--green-deep);
  color: rgba(255, 250, 242, 0.92);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.result-map p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.solution-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 46px rgba(21, 17, 15, 0.08);
  backdrop-filter: blur(10px);
}

.solution-card__tag {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.solution-card__answer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.solution-card__answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 20px;
}

.luxury-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 0;
  align-items: stretch;
  background: var(--charcoal);
  color: #fff;
}

.luxury-moment__photo {
  position: relative;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #0f0c0a;
}

.luxury-moment__photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.04), rgba(15, 12, 10, 0.48) 100%),
    linear-gradient(0deg, rgba(15, 12, 10, 0.56), transparent 42%);
  content: "";
}

.luxury-moment__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.luxury-moment__copy {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
  border-left: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 163, 90, 0.18), transparent 28%),
    linear-gradient(160deg, #1a1411, #111915 72%);
}

.luxury-moment__copy h2 {
  color: #fff;
}

.luxury-moment__copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.74);
  font-size: 16px;
  line-height: 2.05;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  grid-template-rows: auto auto;
  gap: 18px;
  padding: 0 56px 104px;
  background: var(--paper);
}

.photo-story figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #14110f;
  box-shadow: var(--shadow);
}

.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-story__main {
  position: relative;
  min-height: 640px;
  grid-row: span 2;
}

.photo-story__main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.72), rgba(20, 17, 15, 0.04) 56%);
  content: "";
}

.photo-story__main figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  color: #fff;
}

.photo-story__main figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.photo-story__main figcaption strong {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.photo-story__copy {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.photo-story__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.photo-story__sub {
  min-height: 304px;
}

.photo-story__sub--tall img {
  object-position: center 36%;
}

.how {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
  background: var(--paper-alt);
}

.proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 163, 90, 0.2), transparent 28%),
    linear-gradient(135deg, #14100e 0%, #18251e 100%);
  color: #fff;
}

.proof::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 213, 180, 0.5));
  content: "";
}

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

.proof h2,
.proof h3 {
  color: #fff;
}

.proof__copy > p,
.proof .steps p {
  color: rgba(255, 250, 242, 0.74);
}

.proof .steps li > span {
  border: 1px solid rgba(231, 213, 180, 0.26);
  background: rgba(255, 250, 242, 0.08);
  color: var(--champagne);
}

.app-showcase {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  padding: 34px 28px 90px;
  border: 1px solid rgba(231, 213, 180, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.11), rgba(255, 250, 242, 0.03)),
    rgba(12, 10, 9, 0.44);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.3);
}

.app-showcase__glow {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(110, 33, 49, 0.28);
  filter: blur(60px);
}

.proof-screens {
  position: relative;
  height: 620px;
}

.proof-screen {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(231, 213, 180, 0.18);
  border-radius: 34px;
  background: #080706;
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.36);
}

.proof-screen img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: top center;
}

.proof-screen figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 11px 12px;
  border: 1px solid rgba(231, 213, 180, 0.18);
  border-radius: 8px;
  background: rgba(12, 10, 9, 0.82);
  color: #fff;
  backdrop-filter: blur(12px);
}

.proof-screen figcaption span,
.proof-order-tabs span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-screen figcaption strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.35;
}

.proof-screen--quick {
  top: 8px;
  left: 50%;
  z-index: 4;
  width: min(282px, 60%);
  aspect-ratio: 1242 / 2688;
  transform: translateX(-50%);
}

.proof-screen--styling,
.proof-screen--map {
  top: 70px;
  width: min(230px, 48%);
  aspect-ratio: 1242 / 2688;
  opacity: 0.86;
}

.proof-screen--styling {
  left: 0;
  transform: rotate(-5deg);
}

.proof-screen--map {
  right: 0;
  transform: rotate(5deg);
}

.proof-order-tabs {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.proof-order-tabs span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(231, 213, 180, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(10px);
}

.device {
  position: relative;
  z-index: 2;
  width: min(340px, 100%);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 36px;
  background: linear-gradient(145deg, #0d0b0a, #24201c);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.device__bar {
  width: 92px;
  height: 5px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.28);
}

.screen {
  min-height: 620px;
  overflow: hidden;
  padding: 26px 20px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fffaf2 0%, #efe5d5 100%);
  color: var(--ink);
}

.screen__label {
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen h3 {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(29, 23, 20, 0.1);
  border-radius: 8px;
  background: rgba(29, 23, 20, 0.05);
}

.mode-tabs span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.mode-tabs .is-active {
  background: var(--green);
  color: #fff;
}

.screen-visual {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  margin: 18px 0;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(20, 16, 14, 0.72), rgba(20, 16, 14, 0.04) 62%),
    url("./assets/gift-moment-luxury.png") center 64% / cover;
  color: #fff;
}

.screen-visual span {
  margin-bottom: 4px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.screen-visual strong {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.style-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.style-pills span {
  min-height: 42px;
  padding: 10px;
  border: 1px solid rgba(29, 23, 20, 0.12);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.style-pills .is-active {
  border-color: var(--wine);
  background: rgba(110, 33, 49, 0.1);
  color: var(--wine);
}

.screen button {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wine), #45121f);
  color: #fff;
  font-weight: 900;
}

.device-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 18px;
  border: 1px solid rgba(231, 213, 180, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  color: var(--ink);
}

.device-card--stylist {
  top: 78px;
  right: 24px;
}

.device-card--map {
  bottom: 82px;
  left: 24px;
}

.device-card p {
  margin-bottom: 4px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 19px;
}

.stylist-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}

.stylist-row > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(0deg, rgba(20, 16, 14, 0.28), rgba(20, 16, 14, 0)),
    url("./assets/hero-quiet-luxury.png") center / cover;
}

.stylist-row b,
.stylist-row small,
.device-card small {
  display: block;
}

.stylist-row b {
  font-size: 13px;
  line-height: 1.3;
}

.stylist-row small,
.device-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.rating-line {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.rating-line span {
  height: 7px;
  border-radius: 999px;
  background: rgba(49, 75, 60, 0.14);
}

.rating-line span:nth-child(1) {
  width: 100%;
}

.rating-line span:nth-child(2) {
  width: 76%;
}

.rating-line span:nth-child(3) {
  width: 58%;
}

.map-lines {
  position: relative;
  height: 106px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(49, 75, 60, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(49, 75, 60, 0.12) 1px, transparent 1px),
    #f5ebdc;
  background-size: 34px 34px;
}

.map-lines span {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(110, 33, 49, 0.7);
  transform-origin: left center;
}

.map-lines span:nth-child(1) {
  top: 34px;
  left: 16px;
  width: 136px;
  transform: rotate(14deg);
}

.map-lines span:nth-child(2) {
  top: 72px;
  left: 48px;
  width: 118px;
  transform: rotate(-18deg);
}

.map-lines i {
  position: absolute;
  top: 46px;
  left: 96px;
  width: 18px;
  height: 18px;
  border: 4px solid #fffaf2;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 8px 18px rgba(110, 33, 49, 0.28);
}

.phone {
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background: #17130f;
  box-shadow: var(--shadow);
}

.phone__bar {
  width: 88px;
  height: 5px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.phone__screen {
  min-height: 640px;
  overflow: hidden;
  padding: 28px 22px;
  border-radius: 24px;
  background: var(--white);
}

.phone__label {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone__screen h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}

.mood-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.mood-list span {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.mood-list .is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.order-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.order-list article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.order-list article.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.order-list strong,
.order-list span {
  display: block;
}

.order-list strong {
  font-size: 17px;
}

.order-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
}

.order-list article.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.phone__image {
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

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

.phone__screen button {
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  border-radius: 8px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.styles {
  background:
    radial-gradient(circle at 18% 16%, rgba(110, 33, 49, 0.08), transparent 28%),
    var(--white);
}

.style-language {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.style-genre {
  min-width: 0;
}

.style-genre h3 {
  display: grid;
  min-height: 48px;
  margin: 0 0 14px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-deep);
  color: rgba(255, 250, 242, 0.88);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.style-gallery {
  display: grid;
  gap: 14px;
}

.style-tile {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  border: 1px solid rgba(29, 23, 20, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(17, 12, 10, 0.48), rgba(17, 12, 10, 0.04) 62%),
    var(--style-image, url("./assets/hero-quiet-luxury.png")) var(--style-position, center center) / cover no-repeat;
  box-shadow: 0 16px 36px rgba(21, 17, 15, 0.09);
  isolation: isolate;
}

.style-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--style-wash, transparent);
  content: "";
  mix-blend-mode: multiply;
}

.style-tile div {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: calc(100% - 20px);
  padding: 7px 10px 8px;
  border-top-right-radius: 6px;
  background: rgba(18, 27, 23, 0.95);
  color: #fff;
  box-shadow: 0 8px 18px rgba(21, 17, 15, 0.2);
}

.style-tile strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.style-tile p {
  margin: 3px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.35;
}

.style-tile--luxe {
  --style-image: url("./assets/style-luxe.png");
  --style-position: center 66%;
  --style-wash: linear-gradient(90deg, rgba(255, 250, 242, 0.18), rgba(255, 250, 242, 0));
}

.style-tile--ardent {
  --style-image: url("./assets/style-ardent.png");
  --style-position: 28% 56%;
  --style-wash: linear-gradient(90deg, rgba(62, 13, 24, 0.28), rgba(8, 7, 7, 0.12));
}

.style-tile--royal {
  --style-image: url("./assets/style-royal.png");
  --style-position: 24% 62%;
  --style-wash: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(255, 255, 255, 0.12));
}

.style-tile--romance {
  --style-image: url("./assets/style-romance.png");
  --style-position: 78% 50%;
  --style-wash: linear-gradient(90deg, rgba(189, 109, 117, 0.18), rgba(255, 238, 231, 0.04));
}

.style-tile--tropic {
  --style-image: url("./assets/style-tropic.png");
  --style-position: center 64%;
  --style-wash: linear-gradient(90deg, rgba(219, 115, 53, 0.2), rgba(57, 115, 67, 0.1));
}

.style-tile--joy {
  --style-image: url("./assets/style-joy.png");
  --style-position: 70% 62%;
  --style-wash: linear-gradient(90deg, rgba(216, 178, 76, 0.24), rgba(229, 170, 142, 0.08));
}

.style-tile--underground {
  --style-image: url("./assets/style-underground.png");
  --style-position: center 55%;
  --style-wash: linear-gradient(90deg, rgba(7, 6, 6, 0.5), rgba(110, 33, 49, 0.16));
}

.style-tile--underground strong {
  font-size: 18px;
}

.style-tile--breath {
  --style-image: url("./assets/style-breath.png");
  --style-position: center 66%;
  --style-wash: linear-gradient(90deg, rgba(49, 75, 60, 0.2), rgba(255, 250, 242, 0.08));
}

.style-tile--terra {
  --style-image: url("./assets/style-terra.png");
  --style-position: center 62%;
  --style-wash: linear-gradient(90deg, rgba(108, 72, 42, 0.24), rgba(49, 75, 60, 0.08));
}

.mid-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 52px 56px;
  border-top: 1px solid rgba(231, 213, 180, 0.2);
  border-bottom: 1px solid rgba(231, 213, 180, 0.2);
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.86), rgba(20, 17, 15, 0.54)),
    url("./assets/hero-quiet-luxury.png") center 42% / cover;
  color: #fff;
}

.mid-cta h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.mid-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.resonance {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.situation-card {
  overflow: hidden;
  border: 1px solid rgba(29, 23, 20, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 18px 44px rgba(21, 17, 15, 0.08);
}

.situation-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.situation-card:nth-child(1) img {
  object-position: center 62%;
}

.situation-card:nth-child(2) img {
  object-position: center 44%;
}

.situation-card div {
  padding: 24px;
}

.trust {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 8%, rgba(201, 163, 90, 0.16), transparent 30%),
    linear-gradient(135deg, var(--green-deep), #15110f);
  color: #fff;
}

.trust__media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
}

.trust__media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 58%;
}

.trust__copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.trust-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(231, 213, 180, 0.18);
}

.trust-list strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
}

.trust-list p {
  color: rgba(255, 255, 255, 0.74);
}

.florist {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}

.florist > img,
.florist__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.florist > img {
  object-fit: cover;
  object-position: center 48%;
}

.florist__shade {
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.94), rgba(17, 12, 10, 0.62) 48%, rgba(17, 12, 10, 0.08)),
    linear-gradient(0deg, rgba(17, 12, 10, 0.52), transparent 52%);
}

.florist__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 126px 56px;
}

.florist__content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 2;
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 163, 90, 0.14), transparent 28%),
    linear-gradient(135deg, #17110f 0%, #18241d 100%);
  color: #fff;
}

.download__content {
  max-width: 680px;
}

.download__content > p {
  color: rgba(255, 250, 242, 0.74);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.download__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #17130f;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
}

.download__photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 58%;
}

.ps-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 28px 56px;
  border-top: 1px solid rgba(231, 213, 180, 0.18);
  border-bottom: 1px solid rgba(231, 213, 180, 0.18);
  background: linear-gradient(135deg, #15110f, #1d2a23);
  color: rgba(255, 250, 242, 0.9);
}

.ps-section p {
  max-width: 840px;
  margin: 0;
  font-weight: 600;
  line-height: 1.85;
}

.ps-section p span {
  display: block;
}

.ps-section a {
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--champagne);
}

.footer p span {
  display: inline-block;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  max-width: min(360px, calc(100vw - 32px));
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(231, 213, 180, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wine), #3f111d);
  box-shadow: 0 18px 42px rgba(21, 17, 15, 0.26);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  opacity: 1;
  transform: translateY(0);
  transition: transform 220ms ease, opacity 220ms ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
}

.footer {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 58px 24px 34px;
  border-top: 1px solid var(--line);
  background: var(--green-deep);
  color: #fff;
  text-align: center;
}

.footer p,
.footer small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 22px;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 80svh;
  }

  .hero__content {
    width: calc(100% - 40px);
    padding-top: 132px;
    margin: 0 auto;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .concept-grid,
  .solution-grid,
  .style-language,
  .proof,
  .how,
  .luxury-moment,
  .download,
  .situation-grid,
  .trust,
  .photo-story {
    grid-template-columns: 1fr;
  }

  .luxury-moment__photo,
  .luxury-moment__copy {
    min-height: auto;
  }

  .luxury-moment__photo {
    aspect-ratio: 4 / 3;
  }

  .luxury-moment__copy {
    padding: 64px 24px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .photo-story {
    padding: 0 24px 80px;
  }

  .photo-story__main {
    min-height: 520px;
  }

  .photo-story__sub {
    min-height: 260px;
  }

  .section {
    padding: 80px 24px;
  }

  .concept::before {
    background:
      linear-gradient(90deg, rgba(248, 241, 231, 0.98) 0%, rgba(248, 241, 231, 0.82) 48%, rgba(248, 241, 231, 0.6) 76%, rgba(248, 241, 231, 0.96) 100%),
      linear-gradient(0deg, rgba(248, 241, 231, 0.96), rgba(248, 241, 231, 0.22) 40%, rgba(248, 241, 231, 0.9)),
      url("./assets/style-luxe.png") center top 4% / min(110vw, 860px) auto no-repeat;
  }

  .concept::after {
    right: 24px;
    width: 42vw;
    opacity: 0.5;
  }

  .concept-visual {
    grid-template-columns: 1fr;
  }

  .concept-experience {
    grid-template-columns: 1fr;
  }

  .concept-experience__photo {
    min-height: 420px;
  }

  .concept-experience__body {
    padding: 32px;
  }

  .concept-visual__photo {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .how,
  .proof,
  .download,
  .mid-cta {
    gap: 42px;
  }

  .app-showcase {
    min-height: auto;
    display: grid;
    gap: 18px;
    padding: 28px 22px 86px;
  }

  .proof-screens {
    height: 660px;
  }

  .proof-screen--quick {
    width: min(300px, 56%);
  }

  .proof-screen--styling,
  .proof-screen--map {
    width: min(238px, 44%);
  }

  .device-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(320px, 100%);
  }

  .device-card--stylist {
    justify-self: end;
    margin-top: -72px;
  }

  .device-card--map {
    justify-self: start;
  }

  .mid-cta {
    display: grid;
    padding: 44px 24px;
  }

  .mid-cta__actions {
    justify-content: flex-start;
  }

  .result-path {
    grid-template-columns: minmax(0, 0.88fr) minmax(140px, 188px) minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .result-path__issue,
  .result-path__outcome {
    padding: 20px;
  }

  .result-path__issue h3 {
    font-size: 22px;
  }

  .result-path__outcome strong {
    font-size: 24px;
  }

  .solution-card {
    min-height: auto;
  }

  .trust__media img {
    height: 420px;
  }

  .florist__content {
    padding: 86px 24px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand {
    width: 92px;
    height: 40px;
  }

  .footer .brand {
    width: 112px;
    height: 50px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero__video {
    position: relative;
    inset: auto;
    height: min(42svh, 420px);
    min-height: 300px;
    object-position: 62% 50%;
  }

  .hero__shade {
    top: 0;
    bottom: auto;
    height: min(42svh, 420px);
    min-height: 300px;
    background:
      linear-gradient(180deg, rgba(17, 13, 11, 0.34), rgba(17, 13, 11, 0.84));
  }

  .hero__content {
    width: 100%;
    padding: 34px 18px 44px;
    margin: 0;
    background: linear-gradient(180deg, #14110f 0%, var(--green-deep) 100%);
  }

  h1 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.38;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  .hero__lead {
    max-width: none;
    margin-bottom: 26px;
    font-size: 14.5px;
    line-height: 1.86;
  }

  .hero__lead span {
    display: block;
  }

  .hero__lead span + span {
    margin-top: 5px;
  }

  .hero__actions,
  .download-actions,
  .mid-cta__actions {
    align-items: flex-start;
  }

  .button,
  .download-actions .button,
  .mid-cta__actions .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .app-store-badge {
    width: fit-content;
    justify-content: center;
  }

  .intro-strip p {
    font-size: 21px;
    line-height: 1.62;
  }

  .section {
    padding: 64px 18px;
  }

  .concept::before {
    background:
      linear-gradient(180deg, rgba(248, 241, 231, 0.96) 0%, rgba(248, 241, 231, 0.82) 26%, rgba(248, 241, 231, 0.98) 54%),
      url("./assets/style-luxe.png") center top / 152% auto no-repeat;
  }

  .concept::after {
    right: 18px;
    width: 52vw;
    opacity: 0.34;
  }

  .concept .section-copy {
    padding-left: 16px;
  }

  .luxury-moment__photo {
    aspect-ratio: 3 / 4;
  }

  .luxury-moment__copy {
    padding: 48px 18px;
  }

  .section-copy--center {
    text-align: left;
  }

  .copy-line {
    display: block;
  }

  .copy-line + .copy-line::before {
    display: none;
    content: none;
  }

  .concept-card,
  .solution-card {
    min-height: auto;
    padding: 22px;
  }

  .concept-visual {
    margin-top: 32px;
  }

  .concept-experience {
    margin-top: 34px;
  }

  .concept-experience__photo {
    min-height: 360px;
  }

  .concept-experience__photo figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .concept-experience__photo figcaption strong {
    font-size: 24px;
  }

  .concept-experience__body {
    gap: 16px;
    padding: 18px;
  }

  .concept-reasons article {
    padding: 18px;
  }

  .concept-confidence {
    padding: 18px;
    font-size: 19px;
  }

  .concept-reasons span {
    position: static;
    margin-bottom: 8px;
  }

  .concept-style-strip {
    gap: 7px;
  }

  .concept-visual__photo {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }

  .concept-flow {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .concept-flow__node {
    min-height: auto;
    padding: 18px;
  }

  .concept-flow__node strong {
    font-size: 20px;
  }

  .concept-flow > i {
    width: 1px;
    height: 26px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(201, 163, 90, 0.28), rgba(110, 33, 49, 0.38));
  }

  .concept-flow > i::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .result-map {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
    padding: 12px;
  }

  .result-map article {
    min-height: auto;
    padding: 20px 18px;
  }

  .result-map__issue {
    font-size: 17px;
  }

  .result-journey {
    margin-top: 34px;
  }

  .result-path {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .result-path__issue {
    min-height: auto;
  }

  .result-path__issue,
  .result-path__outcome {
    padding: 18px;
  }

  .result-path__screen {
    width: min(230px, 72vw);
    max-height: none;
  }

  .result-path__issue h3 {
    font-size: 22px;
  }

  .result-path__outcome strong {
    font-size: 22px;
  }

  .style-language {
    gap: 28px;
  }

  .style-tile {
    min-height: 150px;
  }

  .style-tile div {
    padding: 7px 9px 8px;
  }

  .style-tile strong {
    font-size: 20px;
  }

  .style-tile p {
    font-size: 11px;
  }

  .style-tile--underground strong {
    font-size: 16px;
  }

  .situation-card img {
    height: 280px;
  }

  .trust__media img {
    height: 420px;
  }

  .photo-story {
    padding: 0 18px 64px;
  }

  .photo-story__main {
    min-height: 380px;
  }

  .photo-story__main figcaption strong {
    font-size: 24px;
  }

  .photo-story__copy {
    min-height: auto;
    padding: 26px;
  }

  .phone__screen {
    min-height: 560px;
  }

  .app-showcase {
    padding: 18px;
  }

  .proof-screens {
    display: grid;
    height: auto;
    gap: 14px;
  }

  .proof-screen,
  .proof-screen--quick,
  .proof-screen--styling,
  .proof-screen--map {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(292px, 100%);
    margin: 0 auto;
    transform: none;
    opacity: 1;
  }

  .proof-screen--quick {
    order: 1;
  }

  .proof-screen--styling {
    order: 2;
  }

  .proof-screen--map {
    order: 3;
  }

  .proof-order-tabs {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 14px;
  }

  .device {
    width: min(326px, 100%);
  }

  .screen {
    min-height: 580px;
    padding: 24px 18px 20px;
  }

  .screen-visual {
    min-height: 210px;
  }

  .steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .steps li > span {
    width: 40px;
    height: 40px;
  }

  .florist {
    min-height: 520px;
  }

  .florist__shade {
    background: linear-gradient(180deg, rgba(23, 42, 34, 0.52), rgba(23, 42, 34, 0.94) 58%);
  }

  .download__photo img {
    height: 430px;
  }

  .ps-section {
    display: grid;
    padding: 24px 18px;
    gap: 14px;
  }

  .ps-section p {
    line-height: 1.8;
  }

  .ps-section a {
    justify-self: start;
  }

  .footer p span {
    display: block;
  }

  .floating-cta {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    max-width: none;
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* D-018: モバイルで縦長になるカード群を横スクロールにする。
   ファイル末尾に置いて既存ルールに後勝ちさせる。
   スコープは .result-journey--scroll / .style-gallery--scroll / .situation-grid--scroll のみ。
   横スクロール対象外のセクションには一切影響を与えない。
   横スクロールコンテナは「親の幅にぴったり収める」（はみ出さない）。 */

/* ページ全体の水平スクロールを禁止。横スクロールコンテナの内側でだけ
   水平スクロールが起きるようにする（万一はみ出し要素があっても画面は横に動かない）。 */
html,
body {
  overflow-x: hidden;
}

/* テキストはみ出しの保険:
   長い英語固有名詞・URL・想定外の長句が画面幅を超える場合の保険として、
   どこでも折り返して画面端からはみ出さないようにする。
   .nobr の中では white-space: nowrap が優先されるので保護は維持される。 */
body {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  /* 横スクロールコンテナ本体: 親の幅に収まる箱として固定 */
  .result-journey.result-journey--scroll {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .result-journey.result-journey--scroll::-webkit-scrollbar {
    display: none;
  }
  /* 横スクロール内のカード: 親（コンテナ）の85%幅に固定 */
  .result-journey.result-journey--scroll > .result-path {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 85% !important;
    gap: 14px;
    min-width: 0 !important;
    min-height: auto !important;
    scroll-snap-align: start;
  }
  /* 横スクロール内のスマホ画面プレビュー */
  .result-journey.result-journey--scroll .result-path__screen {
    width: min(180px, 60%);
    margin: 0 auto;
  }

  /* style-gallery: ジャンル単位横スクロール、親幅に収まる */
  .style-gallery.style-gallery--scroll {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .style-gallery.style-gallery--scroll::-webkit-scrollbar {
    display: none;
  }
  .style-gallery.style-gallery--scroll > .style-tile {
    flex: 0 0 70% !important;
    min-width: 0 !important;
    scroll-snap-align: start;
  }

  /* situation-grid: resonance 3カード横スクロール、親幅に収まる */
  .situation-grid.situation-grid--scroll {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .situation-grid.situation-grid--scroll::-webkit-scrollbar {
    display: none;
  }
  .situation-grid.situation-grid--scroll > .situation-card {
    flex: 0 0 85% !important;
    min-width: 0 !important;
    scroll-snap-align: start;
  }
}


/* ============================================================
   D-028 / D-031 Pro Polish CSS（Tokens 経由、2026-05-08）
   全プロパティを tokens.css の Design Tokens 経由で参照。
   ハードコード hex / rgba 直接記述は禁止。
   D-029 鉄則: 新規 position: fixed なし、html/body の overflow 触らず。
   ============================================================ */

@layer components {
  /* ----- 1. CTA バッジ強化（光沢・hover・active） ----- */
  .app-store-badge {
    position: relative;
    transform: translateY(0);
    transition:
      transform var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out);
    box-shadow:
      0 0 0 1px var(--cta-glow),
      0 16px 36px var(--cta-glow);
    will-change: transform;
    background-image: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.04) 0%,
      transparent 30%,
      rgb(0 0 0 / 0.04) 100%
    );
  }
  .app-store-badge:hover {
    transform: translateY(-3px);
    box-shadow:
      0 0 0 1px var(--cta-glow-hover),
      0 24px 56px var(--cta-glow-hover);
  }
  .app-store-badge:active {
    transform: translateY(-1px);
    transition-duration: 80ms;
  }
  /* 光沢層（控えめ） */
  .app-store-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.08) 0%,
      transparent 40%
    );
    pointer-events: none;
  }
  /* バッジ内部の階層強化 */
  .app-store-badge > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
  .app-store-badge small {
    opacity: 0.78;
    font-size: var(--font-overline);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
  }
  .app-store-badge strong {
    font-size: var(--font-body-l);
    letter-spacing: var(--tracking-normal);
    font-weight: 700;
  }

  /* Floating CTA */
  .floating-cta {
    transition:
      transform var(--duration-fast) var(--ease-out),
      box-shadow var(--duration-fast) var(--ease-out);
  }
  .floating-cta:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px var(--cta-glow-hover),
      0 22px 48px rgb(0 0 0 / 0.32);
  }

  /* ----- 2. タイポグラフィ強弱 ----- */
  .hero h1 {
    font-weight: 700;
    letter-spacing: var(--tracking-tight);
    line-height: var(--line-tight);
  }
  .section h2,
  .luxury-moment h2,
  .proof h2,
  .trust h2,
  .florist h2,
  .download h2 {
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: var(--line-snug);
  }

  /* ----- 3. カードホバー浮き上がり ----- */
  .concept-reasons article,
  .trust-list article,
  .situation-card,
  .result-path,
  .style-tile,
  .steps li {
    transition:
      transform var(--duration-base) var(--ease-out),
      box-shadow var(--duration-base) var(--ease-out),
      border-color var(--duration-base) var(--ease-out);
  }
  .concept-reasons article:hover,
  .trust-list article:hover,
  .situation-card:hover,
  .result-path:hover {
    transform: translateY(-4px);
    border-color: var(--border-default);
    box-shadow: 0 18px 36px rgb(0 0 0 / 0.18);
  }
  .style-tile:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 48px rgb(0 0 0 / 0.28);
  }

  /* ----- 4. 見出し左の縦バー（アクセント色面積拡大） ----- */
  .section h2::before,
  .luxury-moment h2::before,
  .proof h2::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.85em;
    margin-right: var(--space-3);
    vertical-align: middle;
    background: var(--accent);
    transform: translateY(-2px);
  }
  .section.qualifier h2::before,
  .florist h2::before {
    display: none;
  }

  /* ----- 5. eyebrow リッチ化 ----- */
  .eyebrow {
    position: relative;
    display: inline-block;
    padding-left: var(--space-7);
    color: var(--text-muted);
    letter-spacing: var(--tracking-wider);
    font-size: var(--font-caption);
  }
  .eyebrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
  }

  /* ----- 6. result-path strong に強調アンダーライン ----- */
  .result-path__outcome strong {
    position: relative;
    display: inline-block;
  }
  .result-path__outcome strong::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
  }
  .result-path:hover .result-path__outcome strong::after {
    transform: scaleX(1);
  }

  /* ----- 7. CTA assurance チェックマーク ----- */
  .cta-assurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-5);
    margin-top: var(--space-5);
  }
  .cta-assurance span {
    position: relative;
    padding-left: var(--space-4);
    color: var(--text-secondary);
    font-size: var(--font-caption);
    letter-spacing: var(--tracking-wide);
  }
  .cta-assurance span::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 0;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    transform: translateY(-50%);
  }

  /* ----- 8. セクション fade-in（IntersectionObserver 連動） ----- */
  [data-lp-section] {
    transition:
      opacity var(--duration-slow) var(--ease-out),
      transform var(--duration-slow) var(--ease-out);
  }
  html.js [data-lp-section]:not(.is-visible):not(.is-immediate):not([data-lp-section="hero"]) {
    opacity: 0;
    transform: translateY(20px);
  }
  html.js [data-lp-section].is-visible {
    opacity: 1;
    transform: none;
  }
  [data-lp-section="hero"],
  [data-lp-section].is-immediate {
    opacity: 1 !important;
    transform: none !important;
  }
  @media (prefers-reduced-motion: reduce) {
    [data-lp-section],
    .app-store-badge,
    .floating-cta,
    .concept-reasons article,
    .trust-list article,
    .situation-card,
    .result-path,
    .style-tile,
    .steps li,
    .result-path__outcome strong::after {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
      animation: none !important;
    }
  }

  /* ----- 9. Closing 直前の金細罫（控えめ装飾） ----- */
  .section.download {
    position: relative;
  }
  .section.download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(120px, 30%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: translateX(-50%);
    pointer-events: none;
  }

  /* ----- 10. モバイル最適化 ----- */
  @media (max-width: 720px) {
    .hero h1 {
      font-size: var(--font-display);
      line-height: var(--line-tight);
    }
    .floating-cta {
      bottom: max(var(--space-4), env(safe-area-inset-bottom));
      right: var(--space-4);
      padding: 0 var(--space-5);
      min-height: 48px;
      font-size: var(--font-body);
    }
    .floating-cta:hover {
      transform: translateY(-1px);
    }
    .cta-assurance {
      gap: var(--space-2) var(--space-4);
    }
    .cta-assurance span {
      font-size: var(--font-overline);
    }
  }
  @media (max-width: 480px) {
    .eyebrow {
      padding-left: 0;
    }
    .eyebrow::before {
      display: none;
    }
  }
}
