/* ================================================================
   Beauty Salon — Luxury Esthetic Landing Page
   "True luxury is almost invisible — felt, not seen."
   ================================================================ */

/* ----------------------------------------------------------------
   0. CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  /* Color Palette — Rose Luxury */
  --color-primary: #C4A0A0;
  --color-primary-deep: #815760;
  --color-primary-soft: #E9D5D8;
  --color-secondary: #B76E79;
  --color-accent: #D4AF37;
  --color-accent-soft: #F1E1B4;
  --color-bg: #FDFBF7;
  --color-bg-rose: #FFF6F4;
  --color-surface: #FFF5F5;
  --color-text: #2D2D2D;
  --color-ink: #23191B;
  --color-text-secondary: #6B6060;
  --color-cta: #A0616A;
  --color-cta-hover: #8B4F57;

  /* Supplementary Colors */
  --color-white: #FFFFFF;
  --color-lilac-mist: #D8CAEA;
  --color-border: rgba(196, 160, 160, 0.2);
  --color-border-subtle: rgba(196, 160, 160, 0.12);
  --color-overlay: rgba(45, 35, 35, 0.4);
  --color-glass: rgba(255, 255, 255, 0.58);
  --color-glass-strong: rgba(255, 255, 255, 0.72);
  --color-glass-border: rgba(255, 255, 255, 0.5);
  --color-focus-ring: rgba(212, 175, 55, 0.28);

  /* Typography — Font Families */
  --font-serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-serif-jp: "Noto Serif JP", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;

  /* Typography — Font Sizes (Desktop) */
  --fs-hero-main: 56px;
  --fs-hero-sub: 18px;
  --fs-section-title-en: 48px;
  --fs-section-title-jp: 14px;
  --fs-card-title: 20px;
  --fs-body: 16px;
  --fs-caption: 13px;
  --fs-cta-button: 15px;

  /* Spacing — 8px Grid */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-section: 140px;

  /* Container Widths */
  --container-wide: 1200px;
  --container-normal: 1000px;
  --container-narrow: 720px;

  /* Header */
  --header-height: 80px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-reveal: 800ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 35, 35, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 35, 35, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 35, 35, 0.12);
  --shadow-hover: 0 12px 40px rgba(45, 35, 35, 0.14);
  --shadow-glass: 0 24px 60px rgba(45, 35, 35, 0.1);
}

/* ----------------------------------------------------------------
   1. Reset & Base
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(240, 219, 224, 0.9) 0%, rgba(240, 219, 224, 0) 30%),
    radial-gradient(circle at top right, rgba(216, 202, 234, 0.34) 0%, rgba(216, 202, 234, 0) 24%),
    linear-gradient(180deg, #fffaf8 0%, #fff6f2 52%, #fffbf8 100%);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 82% 8%, rgba(244, 231, 234, 0.65) 0%, rgba(244, 231, 234, 0) 18%);
  z-index: -2;
}

body::after {
  background-image:
    radial-gradient(rgba(115, 86, 94, 0.06) 0.6px, transparent 0.6px),
    radial-gradient(rgba(212, 175, 55, 0.05) 0.6px, transparent 0.6px);
  background-position: 0 0, 11px 11px;
  background-size: 22px 22px;
  opacity: 0.35;
  z-index: -1;
}

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

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

::selection {
  background-color: rgba(212, 175, 55, 0.2);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

ul,
ol {
  list-style: none;
}

/* Utility: sp-only */
.sp-only {
  display: none;
}

/* Utility: overflow hidden (body scroll lock) */
.overflow-hidden {
  overflow: hidden;
}

/* Lenis smooth scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 4px;
}


/* ----------------------------------------------------------------
   2. Container
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-normal);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}


/* ----------------------------------------------------------------
   3. Header & Navigation
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1100;
  background: linear-gradient(180deg, rgba(255, 250, 248, 0.6) 0%, rgba(255, 250, 248, 0) 100%);
  transition: background-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.header--scrolled {
  background-color: rgba(255, 250, 248, 0.7);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 18px 40px rgba(45, 35, 35, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
}

.header__inner::after {
  content: "";
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 160, 160, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.header--scrolled .header__inner::after {
  opacity: 1;
}

/* Scroll Progress Bar */
.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-accent));
  transition: none;
  z-index: 10;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.header--scrolled .header__progress {
  opacity: 1;
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 1200;
}

.header__logo-en {
  font-family: var(--font-serif-en);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--color-text);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header:not(.header--scrolled) .header__logo-en {
  color: var(--color-ink);
}

/* Navigation */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.header:not(.header--scrolled) .header__nav-link {
  color: var(--color-text-secondary);
}

.header:not(.header--scrolled) .header__nav-link:hover {
  color: var(--color-ink);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width var(--duration-normal) var(--ease-smooth);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-link.is-active {
  color: var(--color-cta);
}

.header__nav-link.is-active::after {
  width: 100%;
}

.header--scrolled .header__nav-link.is-active {
  color: var(--color-cta);
}

.header__nav-link--cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: linear-gradient(135deg, #b66d79 0%, #8b4f57 100%);
  color: var(--color-white) !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background-color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
  box-shadow: 0 12px 26px rgba(160, 97, 106, 0.28);
}

.header__nav-link--cta::after {
  display: none;
}

.header__nav-link--cta:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  z-index: 1200;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform var(--duration-normal) var(--ease-smooth),
              opacity var(--duration-fast) var(--ease-smooth);
}

.header:not(.header--scrolled) .header__hamburger span {
  background-color: var(--color-text);
}

.header__hamburger span:nth-child(1) {
  transform: translateY(-4px);
}

.header__hamburger span:nth-child(3) {
  transform: translateY(4px);
}

/* Hamburger open state */
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.header__hamburger.is-open span {
  background-color: var(--color-text);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(45, 35, 35, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-smooth),
              visibility var(--duration-normal) var(--ease-smooth);
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


/* ----------------------------------------------------------------
   4. Hero Section — Dark Luxury Cinematic
   ---------------------------------------------------------------- */
.hero--old-removed {
  display: none; /* placeholder - old hero styles removed */
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll-offset: 0px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 12% auto auto -8%;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 219, 224, 0.3) 0%, rgba(240, 219, 224, 0) 70%);
  filter: blur(12px);
  opacity: 0.8;
  z-index: 0;
}

.hero::after {
  right: -10%;
  bottom: -18%;
  width: min(36vw, 500px);
  height: min(36vw, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 202, 234, 0.25) 0%, rgba(216, 202, 234, 0) 72%);
  filter: blur(20px);
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 219, 224, 0.9) 0%, rgba(240, 219, 224, 0) 30%),
    radial-gradient(circle at top right, rgba(216, 202, 234, 0.34) 0%, rgba(216, 202, 234, 0) 24%),
    linear-gradient(180deg, #fffaf8 0%, #fff6f2 52%, #fffbf8 100%);
  background-size: cover;
  background-position: center;
  transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-offset)), 0) scale(1.06);
  transition: transform 700ms var(--ease-smooth);
  animation: none;
}

@keyframes heroKenBurns {
  0%   { transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-offset)), 0) scale(1.06); }
  100% { transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-offset)), 0) scale(1.12); }
}

/* Hero Floating Orbs */
.hero__floating {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero__float-orb--1 {
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  top: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(196, 160, 160, 0.15) 0%, rgba(196, 160, 160, 0) 70%);
  filter: blur(40px);
  animation: floatOrb1 10s ease-in-out infinite;
}

.hero__float-orb--2 {
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  top: 8%;
  right: -6%;
  background: radial-gradient(circle, rgba(216, 202, 234, 0.2) 0%, rgba(216, 202, 234, 0) 70%);
  filter: blur(50px);
  animation: floatOrb2 12s ease-in-out infinite;
}

.hero__float-orb--3 {
  width: min(26vw, 340px);
  height: min(26vw, 340px);
  bottom: 8%;
  right: 5%;
  background: radial-gradient(circle, rgba(241, 225, 180, 0.12) 0%, rgba(241, 225, 180, 0) 70%);
  filter: blur(45px);
  animation: floatOrb3 9s ease-in-out infinite;
}

.hero__float-orb--4 {
  width: min(24vw, 300px);
  height: min(24vw, 300px);
  bottom: 12%;
  left: 15%;
  background: radial-gradient(circle, rgba(233, 213, 216, 0.18) 0%, rgba(233, 213, 216, 0) 70%);
  filter: blur(35px);
  animation: floatOrb4 8s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.08); }
  66%      { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(-25px, 20px) scale(1.1); }
  75%      { transform: translate(20px, -30px) scale(0.92); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(35px, -25px) scale(1.15); }
}

@keyframes floatOrb4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-20px, 30px) scale(1.12); }
  80%      { transform: translate(15px, -10px) scale(0.9); }
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg::before {
  top: 6%;
  left: 10%;
  width: min(30vw, 320px);
  height: min(30vw, 320px);
  background: radial-gradient(circle, rgba(240, 219, 224, 0.2) 0%, rgba(240, 219, 224, 0) 72%);
}

.hero__bg::after {
  right: 5%;
  bottom: 14%;
  width: min(28vw, 300px);
  height: min(28vw, 300px);
  background: radial-gradient(circle, rgba(241, 225, 180, 0.15) 0%, rgba(241, 225, 180, 0) 72%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: none;
}

/* --- Split Layout Container --- */
.hero__split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 100px);
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-xl);
  margin: 0 auto;
}

/* --- Left: Text Content --- */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--color-ink);
  flex: 1;
  max-width: 580px;
}

.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif-en);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0.85;
  color: var(--color-primary-deep);
}

.hero__subtitle-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary));
}

.hero__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-bottom: var(--space-md);
  text-shadow: none;
  color: var(--color-ink);
  -webkit-text-fill-color: var(--color-ink);
  background: none;
  animation: none;
}

@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__description {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  opacity: 0.82;
  max-width: 440px;
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

/* --- Stats Row --- */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--space-lg);
  padding: 16px 0;
  border-top: 1px solid rgba(196, 160, 160, 0.2);
  border-bottom: 1px solid rgba(196, 160, 160, 0.2);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero__stat-number {
  font-family: var(--font-serif-en);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary-deep);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero__stat-unit {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary-deep);
  margin-left: 2px;
}

.hero__stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(196, 160, 160, 0.2);
}

/* --- CTA Group --- */
.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__cta svg {
  flex-shrink: 0;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-smooth);
  cursor: pointer;
}

.hero__cta-secondary:hover {
  color: var(--color-cta);
}

/* --- Right: Portrait --- */
.hero__portrait {
  position: relative;
  flex-shrink: 0;
  width: clamp(280px, 30vw, 420px);
}

/* Portrait Frame — arch shape with blended background */
.hero__portrait-frame {
  position: relative;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

/* Outer glow — large ambient light behind portrait */
.hero__portrait-glow {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(196, 160, 160, 0.45) 0%,
    rgba(162, 103, 114, 0.3) 25%,
    rgba(111, 73, 87, 0.2) 45%,
    transparent 70%
  );
  z-index: -1;
  animation: portraitGlow 5s ease-in-out infinite alternate;
  filter: blur(20px);
}

@keyframes portraitGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Inner gradient overlay — blends photo edges into hero bg */
.hero__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 45%, rgba(111, 73, 87, 0.5) 85%, rgba(36, 24, 29, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Gold accent ring */
.hero__portrait-ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1.5px solid transparent;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.5) 0%, rgba(183, 110, 121, 0.3) 50%, transparent 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}

@media (hover: hover) and (pointer: fine) {
  .hero__portrait:hover .hero__portrait-img {
    transform: scale(1.04);
  }
}

/* Portrait Badge — high-contrast glass card */
.hero__portrait-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(36, 24, 29, 0.82), rgba(111, 73, 87, 0.7));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  z-index: 4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero__portrait-badge-label {
  font-family: var(--font-serif-en);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 600;
}

.hero__portrait-badge-title {
  font-family: var(--font-serif-jp);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Sparkle decorations around portrait */
.hero__portrait::before,
.hero__portrait::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  z-index: 3;
  animation: sparkle 3s ease-in-out infinite;
  box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.4);
}

.hero__portrait::before {
  top: 12%;
  right: -8px;
  animation-delay: 0s;
}

.hero__portrait::after {
  bottom: 20%;
  left: -12px;
  width: 4px;
  height: 4px;
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* --- Decorative flowing SVG lines --- */
.hero__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__deco-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__deco-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 4s var(--ease-out) forwards;
}

.hero__deco-path--1 { animation-delay: 0.8s; }
.hero__deco-path--2 { animation-delay: 1.4s; }
.hero__deco-path--3 { animation-delay: 2.0s; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  color: var(--color-primary);
}

.hero__scroll-indicator span {
  font-family: var(--font-serif-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(196, 160, 160, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(196, 160, 160, 0.6);
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}


/* ----------------------------------------------------------------
   4b. Hero — Elegant Bloom Light Theme
   ---------------------------------------------------------------- */

/* Light background */
.hero {
  background: transparent;
  height: 100dvh;
}

.hero__bg {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(240, 219, 224, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(216, 202, 234, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(241, 225, 180, 0.15) 0%, transparent 40%),
    linear-gradient(160deg, #fffaf8 0%, #fff4f0 30%, #fef8f6 60%, #fffbf8 100%);
  animation: heroBgShift 20s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Remove dark overlay */
.hero__overlay {
  display: none;
}

/* Rose accent line */
.has-gsap .hero__accent-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(196, 160, 160, 0.25) 30%, rgba(216, 202, 234, 0.2) 70%, transparent 95%);
  z-index: 3;
  transform: translateY(-50%) scaleX(0);
  opacity: 0;
}

/* Floating orbs — enhanced for Elegant Bloom */
.hero__float-orb--1 {
  width: min(36vw, 480px);
  height: min(36vw, 480px);
  top: -5%;
  left: -10%;
  background: radial-gradient(circle, rgba(240, 219, 224, 0.35) 0%, rgba(240, 219, 224, 0) 70%);
  filter: blur(60px);
  animation: floatOrb1 10s ease-in-out infinite;
}

.hero__float-orb--2 {
  width: min(30vw, 400px);
  height: min(30vw, 400px);
  top: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(216, 202, 234, 0.3) 0%, rgba(216, 202, 234, 0) 70%);
  filter: blur(50px);
  animation: floatOrb2 12s ease-in-out infinite;
}

.hero__float-orb--3 {
  width: min(28vw, 380px);
  height: min(28vw, 380px);
  bottom: 5%;
  right: 15%;
  background: radial-gradient(circle, rgba(241, 225, 180, 0.2) 0%, rgba(241, 225, 180, 0) 70%);
  filter: blur(45px);
  animation: floatOrb3 9s ease-in-out infinite;
}

.hero__float-orb--4 {
  width: min(22vw, 280px);
  height: min(22vw, 280px);
  bottom: 20%;
  left: 8%;
  background: radial-gradient(circle, rgba(233, 213, 216, 0.25) 0%, rgba(233, 213, 216, 0) 70%);
  filter: blur(35px);
  animation: floatOrb4 8s ease-in-out infinite;
}

/* === Content — left-aligned within split layout === */
.hero__content {
  position: relative;
  z-index: 5;
  text-align: left;
  color: var(--color-ink);
  flex: 1;
  max-width: 580px;
  padding: 0;
}

/* Subtitle — deep rose */
.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif-en);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: var(--space-md);
  opacity: 1;
  text-shadow: none;
}

.hero__subtitle-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary));
}

/* Title — elegant dark ink with decorative underline */
.hero__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  letter-spacing: 0.08em;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--color-ink) !important;
  animation: none !important;
  text-shadow: none;
  white-space: normal;
}

.hero__title-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 4px;
}

.hero__title-line {
  display: block;
}

/* Description — secondary text */
.hero__description {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
  opacity: 1;
  text-shadow: none;
  text-align: left;
  white-space: normal;
  max-width: 440px;
}

/* Stats — left-aligned */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: var(--space-lg);
  padding: 16px 0;
  border-top: 1px solid rgba(196, 160, 160, 0.2);
  border-bottom: 1px solid rgba(196, 160, 160, 0.2);
  opacity: 1;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-serif-en);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--color-primary-deep);
  letter-spacing: 0.02em;
  text-shadow: none;
}

.hero__stat-unit {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-primary-deep);
  margin-left: 2px;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-top: 3px;
  letter-spacing: 0.1em;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(196, 160, 160, 0.2);
}

/* CTA group — left-aligned */
.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 1;
  margin-top: 0;
}

/* Rose CTA button */
.btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-serif-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--color-cta) 0%, #c4808a 50%, var(--color-cta) 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-position 400ms var(--ease-smooth), box-shadow 400ms var(--ease-smooth), transform 300ms var(--ease-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(160, 97, 106, 0.22);
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 40px rgba(160, 97, 106, 0.35);
  transform: translateY(-2px);
}

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  background-size: 250% 100%;
  background-position: -100% 0;
  transition: background-position 600ms var(--ease-smooth);
}

.btn--gold:hover::before {
  background-position: 200% 0;
}

/* Secondary CTA */
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  transition: color 300ms var(--ease-smooth);
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 160, 160, 0.3);
  padding-bottom: 2px;
  white-space: nowrap;
}

.hero__cta-secondary:hover {
  color: var(--color-cta);
}

.hero__cta-secondary svg {
  transition: transform 300ms var(--ease-smooth);
}

.hero__cta-secondary:hover svg {
  transform: translateY(3px);
}

/* === Portrait — Light Theme === */
.hero__portrait {
  opacity: 0;
}

.hero__portrait-glow {
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(240, 219, 224, 0.6) 0%,
    rgba(233, 213, 216, 0.4) 25%,
    rgba(216, 202, 234, 0.25) 45%,
    transparent 70%
  );
  filter: blur(30px);
}

@keyframes portraitGlow {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* Portrait frame — light theme overlay */
.hero__portrait-frame {
  background: linear-gradient(180deg, #fff4f0 0%, #fef0ec 50%, #f8e8e4 100%);
}

.hero__portrait-frame::after {
  background:
    radial-gradient(ellipse at 50% 35%, transparent 50%, rgba(240, 219, 224, 0.4) 80%, rgba(253, 251, 247, 0.9) 100%);
}

/* Rose accent ring instead of gold */
.hero__portrait-ring {
  background: linear-gradient(180deg, rgba(196, 160, 160, 0.5) 0%, rgba(216, 202, 234, 0.3) 50%, transparent 100%) border-box;
}

/* Badge — light glassmorphism */
.hero__portrait-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 245, 245, 0.75));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 160, 160, 0.25);
  box-shadow: 0 8px 32px rgba(45, 35, 35, 0.08);
}

.hero__portrait-badge-label {
  color: var(--color-primary);
}

.hero__portrait-badge-title {
  color: var(--color-ink);
  text-shadow: none;
}

/* Sparkle — rose instead of gold */
.hero__portrait::before,
.hero__portrait::after {
  background: var(--color-primary);
  box-shadow: 0 0 10px 2px rgba(196, 160, 160, 0.3);
}

/* Decorative SVG — rose/lavender strokes */
.hero__deco-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 4s var(--ease-out) forwards;
}

/* Scroll indicator — rose */
.hero__scroll-indicator span {
  color: var(--color-primary);
}

.hero__scroll-line {
  background-color: rgba(196, 160, 160, 0.2);
}

.hero__scroll-line::after {
  background-color: rgba(196, 160, 160, 0.6);
}


/* ----------------------------------------------------------------
   4c. Hero — POLA-Style Clean White Redesign
   ---------------------------------------------------------------- */

/* Clean white background — remove all gradients and animated bg */
.hero {
  background: #ffffff;
}

.hero__bg {
  background: #ffffff !important;
  animation: none !important;
  transform: none !important;
}

/* Hide the pseudo-element ambient glows on .hero */
.hero::before,
.hero::after {
  display: none !important;
}

/* Hide the bg pseudo-element glows */
.hero__bg::before,
.hero__bg::after {
  display: none;
}

/* Hide floating orbs */
.hero__floating {
  display: none !important;
}

/* Hide decorative SVG lines */
.hero__deco {
  display: none !important;
}

/* Hide rose accent line */
.hero__accent-line {
  display: none !important;
}

/* === Split layout — more breathing room === */
.hero__split {
  max-width: 1080px;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  justify-content: center;
}

/* === Left: Text Content === */
.hero__content {
  flex: 1;
  max-width: 560px;
  padding-left: clamp(16px, 3vw, 48px);
}

.hero__subtitle {
  color: #9a7a7a;
  letter-spacing: 0.22em;
  font-size: clamp(10px, 1.1vw, 13px);
}

.hero__subtitle-line {
  background: linear-gradient(90deg, transparent, #c4a0a0);
}

.hero__title {
  color: var(--color-ink) !important;
  -webkit-text-fill-color: var(--color-ink) !important;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.04em;
}

.hero__description {
  color: #6b6060;
}

/* Stats — more subtle borders for clean look */
.hero__stats {
  border-top: 1px solid rgba(196, 160, 160, 0.12);
  border-bottom: 1px solid rgba(196, 160, 160, 0.12);
}

.hero__stat-divider {
  background: rgba(196, 160, 160, 0.12);
}

/* ======================================================
   Hero Portrait — Editorial Arch-Mask (Beauty Industry Standard)
   Pattern 1 (Asymmetric Split) × Pattern 3 (Arch Mask) hybrid
   Reference: Kate Somerville, Medical Brows, Alicia Artmake
   ====================================================== */
.hero__portrait {
  flex-shrink: 0;
  width: clamp(280px, 28vw, 400px);
  position: relative;
  opacity: 1;
  isolation: isolate;
  padding-bottom: 0;
}

/* Hide all portrait decorations — rank label, nameplate card, credential pills */
.hero__portrait-rank,
.hero__portrait-nameplate,
.hero__portrait-pills {
  display: none !important;
}

/* Wipe all legacy decorations from earlier cascade blocks */
.hero__portrait::before,
.hero__portrait::after,
.hero__portrait-glow,
.hero__portrait-ring,
.hero__portrait-frame {
  display: none !important;
}

/* -- Soft aurora backdrop behind the arch -------------- */
.hero__portrait-aura {
  display: none;
}

@keyframes auraBreathe {
  0%   { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* -- Botanical line-art flanking the arch -------------- */
.hero__portrait-botanical {
  display: none;
}

.hero__portrait-botanical--l {
  top: 8%;
  left: -10%;
  animation: botanicalSway 9s ease-in-out infinite alternate;
}

.hero__portrait-botanical--r {
  top: 18%;
  right: -8%;
  animation: botanicalSway 11s ease-in-out 1s infinite alternate-reverse;
}

@keyframes botanicalSway {
  0%   { transform: rotate(-2deg) translateY(0); }
  100% { transform: rotate(3deg) translateY(-6px); }
}

/* -- Frameless container: transparent PNG floats free -- */
.hero__portrait-arch {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

/* Arch backdrop removed — keep rule for legacy markup but render nothing */
.hero__portrait-arch-bg {
  display: none;
}

/* Transparent PNG subject sits bottom-centered, fits cleanly inside the arch */
.hero__portrait-arch .hero__portrait-img {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  z-index: 1;
}

/* Inner hairline removed along with the arch frame */
.hero__portrait-arch-hairline {
  display: none;
}

/* Rank label at top of arch */
.hero__portrait-rank {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif-en, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(120, 80, 85, 0.75);
  white-space: nowrap;
  text-transform: none;
}

.hero__portrait-rank-star {
  color: rgba(201, 169, 110, 0.85);
  font-size: 9px;
  font-style: normal;
}

/* -- Editorial nameplate — sits cleanly below the arch */
.hero__portrait-nameplate {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  padding: 12px 26px 10px;
  background: rgba(255, 252, 249, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px -14px rgba(120, 80, 85, 0.22);
}

.hero__portrait-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.8), transparent);
}

.hero__portrait-rule--top { margin-bottom: 6px; }
.hero__portrait-rule--bottom { margin-top: 6px; }

.hero__portrait-name-en {
  font-family: var(--font-serif-en, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #9a7a7a;
  line-height: 1;
}

.hero__portrait-name-jp {
  font-family: var(--font-serif-jp, 'Noto Serif JP', serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-ink, #2d2323);
  line-height: 1.1;
}

.hero__portrait-role {
  font-family: var(--font-serif-en, 'Cormorant Garamond', serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(120, 80, 85, 0.65);
  font-weight: 400;
  white-space: nowrap;
}

/* -- Credential pills — floating around the arch ------- */
.hero__portrait-pills {
  position: absolute;
  right: -8%;
  top: 46%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__portrait-pill {
  padding: 7px 14px;
  background: rgba(255, 252, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  font-family: var(--font-serif-jp, 'Noto Serif JP', serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #6f4957;
  box-shadow: 0 4px 14px -4px rgba(120, 80, 85, 0.18);
  white-space: nowrap;
}

.hero__portrait-pill:nth-child(1) { transform: translateX(-6px); }
.hero__portrait-pill:nth-child(2) { transform: translateX(2px); }
.hero__portrait-pill:nth-child(3) { transform: translateX(-4px); }

@media (hover: hover) and (pointer: fine) {
  .hero__portrait:hover .hero__portrait-img {
    transform: scale(1.015);
  }
}

/* Scroll indicator — subtle on white */
.hero__scroll-indicator span {
  color: #c4a0a0;
  opacity: 0.5;
}

.hero__scroll-line {
  background-color: rgba(196, 160, 160, 0.15);
}

.hero__scroll-line::after {
  background-color: rgba(196, 160, 160, 0.4);
}

.has-gsap .hero__accent-line,
.has-gsap .hero__subtitle,
.has-gsap .hero__description,
.has-gsap .hero__stats,
.has-gsap .hero__cta-group,
.has-gsap .hero__cta-secondary,
.has-gsap .hero__scroll-indicator {
  opacity: 0;
}


/* ----------------------------------------------------------------
   5. Sections — Common
   ---------------------------------------------------------------- */
.section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: clip;
}

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

.section--white {
  background-color: var(--color-white);
}

.section--pink {
  background-color: var(--color-surface);
}

.section--cta {
  background: linear-gradient(160deg, #8d5966 0%, #6b3f4c 50%, #3d2430 100%);
  color: var(--color-white);
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.section__title-en {
  display: block;
  font-family: var(--font-serif-en);
  font-size: var(--fs-section-title-en);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.section__title-jp {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-section-title-jp);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.section__title-line {
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  margin: var(--space-sm) auto 0;
}


/* ----------------------------------------------------------------
   6. About / Profile
   ---------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about__image-wrap {
  position: relative;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 250, 249, 0.62) 100%);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

.about__image-wrap::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -10%;
  width: 48%;
  height: 42%;
  background: radial-gradient(circle, rgba(241, 225, 180, 0.38) 0%, rgba(241, 225, 180, 0) 72%);
  pointer-events: none;
}

.about__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about__label {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.about__content {
  padding: clamp(22px, 3vw, 36px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 248, 247, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about__name {
  font-family: var(--font-serif-jp);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

.about__subtitle {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
}

.about__text p {
  margin-bottom: var(--space-sm);
  line-height: 2;
}

.about__text p:last-child {
  margin-bottom: var(--space-lg);
}

/* Credentials */
.about__credentials {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: 0;
  border: none;
}

.about__credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 249, 248, 0.6) 100%);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 16px 30px rgba(45, 35, 35, 0.06);
}

.about__credential-number {
  font-family: var(--font-serif-en);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.about__credential-label {
  font-size: var(--fs-caption);
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* SNS Links */
.about__sns {
  display: flex;
  gap: var(--space-sm);
}

.about__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(45, 35, 35, 0.06);
  transition: color var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth),
              background-color var(--duration-normal) var(--ease-smooth);
}

.about__sns-link:hover {
  color: var(--color-cta);
  border-color: var(--color-cta);
  background-color: rgba(160, 97, 106, 0.05);
}

/* ----------------------------------------------------------------
   6b. About / Profile — Text-Only Override
   ---------------------------------------------------------------- */
.about.about--text-only {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.about--text-only .about__content {
  padding: clamp(32px, 5vw, 56px) clamp(28px, 5vw, 52px);
  border-radius: 32px;
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 250, 248, 0.72) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 24px 60px rgba(45, 35, 35, 0.06),
    0 2px 8px rgba(45, 35, 35, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  position: relative;
}

/* Decorative top accent line */
.about--text-only .about__accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  margin: 0 auto var(--space-lg);
  border-radius: 1px;
}

/* Label with wider tracking for elegance */
.about--text-only .about__label {
  font-family: var(--font-serif-en);
  font-size: var(--fs-caption);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

/* Name — larger serif treatment as visual anchor */
.about--text-only .about__name {
  font-family: var(--font-serif-jp);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

/* Subtitle */
.about--text-only .about__subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xl);
}

/* Bio text — comfortable reading */
.about--text-only .about__text {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.about--text-only .about__text p {
  line-height: 2.1;
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
}

.about--text-only .about__text p:last-child {
  margin-bottom: var(--space-xl);
}

/* Credentials — bigger numbers, more visual presence */
.about--text-only .about__credentials {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: 0;
  border: none;
  justify-content: center;
}

.about--text-only .about__credential {
  flex: 1;
  max-width: 200px;
  min-width: 0;
  padding: 24px 20px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 249, 248, 0.7) 100%
  );
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 16px 36px rgba(45, 35, 35, 0.06);
  text-align: center;
  transition: transform 400ms var(--ease-smooth),
              box-shadow 400ms var(--ease-smooth);
}

.about--text-only .about__credential:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(45, 35, 35, 0.1);
}

.about--text-only .about__credential-number {
  font-family: var(--font-serif-en);
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.about--text-only .about__credential-label {
  font-size: var(--fs-caption);
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* SNS — centered row */
.about--text-only .about__sns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.about--text-only .about__sns-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(45, 35, 35, 0.06);
  transition: color var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth),
              background-color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth);
}

.about--text-only .about__sns-link:hover {
  color: var(--color-cta);
  border-color: var(--color-cta);
  background-color: rgba(160, 97, 106, 0.06);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   6c. About / Profile — Editorial Magazine Redesign
   Overrides 6b glass-card styles with a premium editorial layout.
   ---------------------------------------------------------------- */

/* Remove glass card — transparent editorial canvas */
.about--text-only .about__content {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: min(820px, 100%);
  margin: 0 auto;
  position: relative;
}

/* Hide accent line if it still exists in markup */
.about--text-only .about__accent-line {
  display: none;
}

/* Wider container for editorial breathing room */
.about.about--text-only {
  max-width: 980px;
}

/* Label — editorial uppercase treatment with bottom rule */
.about--text-only .about__label {
  width: fit-content;
  text-align: center;
  font-family: var(--font-serif-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b5896e;
  margin: 0 auto 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(181, 137, 110, 0.2);
}

/* Name — hero serif typography, visually dominant */
.about--text-only .about__name {
  text-align: center;
  font-family: var(--font-serif-jp);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-ink, #1a1a1a);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Subtitle — lighter weight with wider tracking */
.about--text-only .about__subtitle {
  text-align: center;
  font-size: var(--fs-body);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* Bio text */
.about--text-only .about__text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about--text-only .about__text p {
  padding: 0 0 20px;
  border-left: none;
  border-bottom: 1px solid rgba(181, 137, 110, 0.16);
  line-height: 2.05;
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.about--text-only .about__text p:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: var(--space-xl);
}

/* Credentials */
.about--text-only .about__credentials {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: 0;
  border: none;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.about--text-only .about__credential {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(181, 137, 110, 0.14);
  box-shadow: 0 12px 30px rgba(45, 35, 35, 0.04);
  border-radius: 22px;
  padding: 24px 20px;
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: none;
}

.about--text-only .about__credential:hover {
  transform: none;
  box-shadow: none;
}

/* Credential numbers — large serif, accent color */
.about--text-only .about__credential-number {
  font-family: var(--font-serif-en);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  color: #b5896e;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* Credential labels — small, muted, sans-serif */
.about--text-only .about__credential-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* SNS — centered row */
.about--text-only .about__sns {
  justify-content: center;
  width: 100%;
}

.about--text-only .about__sns-link {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(181, 137, 110, 0.2);
  color: var(--color-text-secondary);
  box-shadow: 0 10px 24px rgba(45, 35, 35, 0.04);
}

.about--text-only .about__sns-link:hover {
  color: #b5896e;
  border-color: #b5896e;
  background-color: rgba(181, 137, 110, 0.05);
}

/* Final alignment pass so the profile section reads from a centered axis */
#about .container {
  display: grid;
  justify-items: center;
}

.about.about--text-only {
  width: min(100%, 860px);
  margin: 0 auto;
}

.about--text-only .about__content {
  width: 100%;
  padding-inline: clamp(18px, 4vw, 28px);
  row-gap: 18px;
  justify-items: center;
}

.about--text-only .about__label,
.about--text-only .about__name,
.about--text-only .about__subtitle,
.about--text-only .about__text,
.about--text-only .about__credentials,
.about--text-only .about__sns {
  margin-left: auto;
  margin-right: auto;
}

.about--text-only .about__subtitle {
  max-width: 36ch;
}

.about--text-only .about__text {
  display: grid;
  justify-items: center;
  max-width: min(640px, 100%);
}

.about--text-only .about__text p {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.about--text-only .about__credentials {
  max-width: 720px;
}

.about--text-only .about__sns {
  width: auto;
}


/* ----------------------------------------------------------------
   7. Achievements
   ---------------------------------------------------------------- */
#achievements .container--wide {
  max-width: min(1340px, calc(100vw - var(--space-lg) * 2));
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 1292px;
  margin: 0 auto;
}

.achievements__item {
  overflow: hidden;
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 250, 249, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 46px rgba(45, 35, 35, 0.06);
}

.achievements__image {
  aspect-ratio: 9 / 14;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform var(--duration-slow) var(--ease-smooth);
  isolation: isolate;
}

.achievements__item:hover .achievements__image {
  transform: scale(1.03);
}

.achievements__caption {
  text-align: center;
  font-size: var(--fs-caption);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
}

.achievements__feature {
  max-width: 1292px;
  margin: var(--space-lg) auto 0;
}

.achievements__feature-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 250, 249, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 46px rgba(45, 35, 35, 0.06);
}

.achievements__feature-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 20 / 9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}


/* ----------------------------------------------------------------
   8. CTA Band
   ---------------------------------------------------------------- */
.cta-band {
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
  background-color: var(--color-bg);
  position: relative;
}

.cta-band .container {
  position: relative;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 249, 247, 0.85) 40%,
    rgba(253, 245, 240, 0.78) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow:
    0 4px 24px rgba(45, 35, 35, 0.04),
    0 20px 60px rgba(45, 35, 35, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

/* Ambient glow — top-left gold */
.cta-band .container::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Ambient glow — bottom-right rose */
.cta-band .container::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Inner layout */
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

/* Decorative SVGs */
.cta-band__deco {
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.cta-band__deco svg {
  display: block;
}

.cta-band:hover .cta-band__deco {
  opacity: 1;
}

/* Content block */
.cta-band__content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.cta-band__label {
  display: inline-block;
  font-family: var(--font-serif-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.cta-band__label::before,
.cta-band__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.4;
}

.cta-band__label::before { left: 0; }
.cta-band__label::after { right: 0; }

.cta-band__text {
  font-family: var(--font-serif-jp);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--color-text);
  white-space: nowrap;
}

.cta-band__sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Action area */
.cta-band__action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* LINE-style CTA button */
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  background: linear-gradient(135deg, #A0616A 0%, #8B4F57 100%);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(160, 97, 106, 0.25);
}

.cta-band__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-band__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(160, 97, 106, 0.35);
}

.cta-band__btn:hover::before {
  opacity: 1;
}

.cta-band__btn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.cta-band__btn-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-band__btn:hover .cta-band__btn-arrow {
  transform: translateX(3px);
}

/* LINE green variant */
.cta-band__btn--line {
  background: linear-gradient(135deg, #06C755 0%, #04a648 100%);
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.25);
}

.cta-band__btn--line:hover {
  box-shadow: 0 8px 32px rgba(6, 199, 85, 0.35);
}

/* Trust badges */
.cta-band__trust {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-band__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
}

.cta-band__trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ---- Rose variant ---- */
.cta-band--rose {
  background: linear-gradient(180deg,
    rgba(183, 110, 121, 0.04) 0%,
    rgba(183, 110, 121, 0.08) 50%,
    rgba(183, 110, 121, 0.04) 100%);
}

.cta-band--rose .container {
  background: linear-gradient(135deg,
    rgba(255, 249, 247, 0.95) 0%,
    rgba(255, 240, 238, 0.88) 40%,
    rgba(248, 230, 228, 0.82) 100%);
  border-color: rgba(183, 110, 121, 0.12);
}

.cta-band--rose .container::before {
  background: radial-gradient(ellipse, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
}

.cta-band--rose .container::after {
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.cta-band--rose .cta-band__label {
  color: var(--color-secondary);
}

.cta-band--rose .cta-band__label::before,
.cta-band--rose .cta-band__label::after {
  background: var(--color-secondary);
}


/* ----------------------------------------------------------------
   9. Menu
   ---------------------------------------------------------------- */
.menu__lead {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  margin: -8px auto var(--space-xl);
  max-width: 680px;
}

/* ----------------------------------------------------------------
   9b. Menu — Bento Grid
   ---------------------------------------------------------------- */
.menu-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card Base */
.menu-bento__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
  transition:
    transform 400ms var(--ease-smooth),
    box-shadow 400ms var(--ease-smooth);
  box-shadow: 0 8px 32px rgba(45, 35, 35, 0.08);
}

.menu-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45, 35, 35, 0.16);
}

/* Featured card — spans 2 columns */
.menu-bento__card--featured {
  grid-column: span 2;
  min-height: 420px;
}

/* Wide card — spans 2 columns */
.menu-bento__card--wide {
  grid-column: 1 / -1;
}

.menu-bento__card--removal .menu-bento__image img {
  object-position: center 20%;
}

.menu-bento__image--soft-mask {
  isolation: isolate;
  overflow: hidden;
}

.menu-bento__image--soft-mask::before,
.menu-bento__image--soft-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu-bento__image--soft-mask::before {
  top: 38%;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 249, 0) 0%,
      rgba(255, 248, 246, 0.5) 30%,
      rgba(255, 248, 246, 0.88) 76%,
      rgba(255, 248, 246, 0.98) 100%
    );
}

.menu-bento__image--soft-mask::after {
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 253, 252, 0) 36%,
      rgba(255, 251, 249, 0.16) 56%,
      rgba(255, 248, 246, 0.48) 100%
    );
}

/* Image layer */
.menu-bento__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.menu-bento__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}

.menu-bento__card:hover .menu-bento__image img {
  transform: scale(1.06);
}

@supports ((mask-image: linear-gradient(180deg, transparent, black)) or (-webkit-mask-image: linear-gradient(180deg, transparent, black))) {
  .menu-bento__image--soft-mask::before {
    top: 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 40%, black 54%, black 100%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 40%, black 54%, black 100%);
  }
}

@supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
  .menu-bento__image--soft-mask::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 249, 0.03) 0%,
        rgba(255, 248, 246, 0.22) 28%,
        rgba(255, 248, 246, 0.64) 72%,
        rgba(255, 248, 246, 0.92) 100%
      );
    -webkit-backdrop-filter: blur(22px) saturate(112%);
    backdrop-filter: blur(22px) saturate(112%);
  }
}

/* Gradient overlay */
.menu-bento__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(35, 25, 27, 0.0) 0%,
    rgba(35, 25, 27, 0.08) 30%,
    rgba(35, 25, 27, 0.55) 65%,
    rgba(35, 25, 27, 0.82) 100%
  );
  transition: background 400ms var(--ease-smooth);
}

.menu-bento__card:hover .menu-bento__overlay {
  background: linear-gradient(
    180deg,
    rgba(35, 25, 27, 0.0) 0%,
    rgba(35, 25, 27, 0.12) 30%,
    rgba(35, 25, 27, 0.6) 60%,
    rgba(35, 25, 27, 0.88) 100%
  );
}

/* Content — pinned to bottom */
.menu-bento__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Popular badge */
.menu-bento__badge {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-accent), #c99b2e);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

/* Category */
.menu-bento__category {
  font-family: var(--font-serif-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Title */
.menu-bento__title {
  font-family: var(--font-serif-jp);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* Description */
.menu-bento__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-bento__card--featured .menu-bento__desc {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* Highlights — featured card only */
.menu-bento__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0;
}

.menu-bento__highlights li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.menu-bento__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Meta — time + price */
.menu-bento__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-bento__time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.menu-bento__time svg {
  opacity: 0.6;
}

.menu-bento__price {
  font-family: var(--font-serif-en);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent-soft);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Inner border glow */
.menu-bento__card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 3;
  pointer-events: none;
  transition: border-color 400ms var(--ease-smooth);
}

.menu-bento__card:hover::before {
  border-color: rgba(212, 175, 55, 0.25);
}


/* ----------------------------------------------------------------
   10. Before & After
   ---------------------------------------------------------------- */
.ba__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.ba__item {
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 248, 246, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 62px rgba(45, 35, 35, 0.08);
  transition: transform 400ms var(--ease-smooth), box-shadow 400ms var(--ease-smooth);
}

.ba__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(45, 35, 35, 0.14);
}

.ba__slider {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: grab;
  border-radius: 18px;
}

.ba__slider:active {
  cursor: grabbing;
}

.ba__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.ba__image--after {
  clip-path: inset(0 50% 0 0);
}

.ba__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(32, 24, 18, 0.64);
  color: var(--color-white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ba__image--after .ba__badge {
  left: auto;
  right: 12px;
}

/* Divider */
.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba__divider-line {
  position: absolute;
  inset: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.ba__divider-handle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 18px 36px rgba(45, 35, 35, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  pointer-events: auto;
  cursor: grab;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.ba__divider-handle:active {
  cursor: grabbing;
}

.ba__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 2px;
}

.ba__label {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ba__period {
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

.ba__note {
  text-align: center;
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-top: var(--space-lg);
}


/* ----------------------------------------------------------------
   11. Testimonials
   ---------------------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial__card {
  background-color: var(--color-white);
  padding: 40px;
  border: 1px solid var(--color-border-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 248, 247, 0.7) 100%);
  box-shadow: 0 22px 48px rgba(45, 35, 35, 0.08);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.testimonial__card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0));
  opacity: 0.8;
}

.testimonial__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(45, 35, 35, 0.12);
}

.testimonial__stars {
  margin-bottom: var(--space-sm);
}

.testimonial__stars span {
  color: var(--color-accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: var(--fs-body);
  line-height: 2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  padding-top: var(--space-lg);
}

.testimonial__text::before {
  content: "\201C";
  position: absolute;
  top: -16px;
  left: -4px;
  font-family: var(--font-serif-en);
  font-size: 120px;
  color: rgba(196, 160, 160, 0.15);
  line-height: 1;
  pointer-events: none;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-xs);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(196, 160, 160, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonial__meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-top: 2px;
}


/* ----------------------------------------------------------------
   12. Price Section — Tabbed Category Cards
   ---------------------------------------------------------------- */

/* --- Consultation Fee Notice --- */
.price-consultation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(253, 248, 245, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(183, 110, 121, 0.22);
  border-radius: 18px;
  box-shadow:
    0 2px 10px rgba(45, 35, 35, 0.04),
    0 14px 42px rgba(129, 87, 96, 0.08);
}

.price-consultation__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--color-primary-deep);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.price-consultation__text {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.price-consultation__text strong {
  display: inline-block;
  margin: 0 4px;
  color: var(--color-cta);
  font-family: var(--font-serif-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: -0.03em;
}

/* --- Tab Navigation --- */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  position: relative;
}

.price-tabs__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: 60px;
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
}

/* Pill background — slides in on active */
.price-tabs__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(135deg, rgba(196, 160, 160, 0.1) 0%, rgba(183, 110, 121, 0.06) 100%);
  border: 1px solid rgba(196, 160, 160, 0.15);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.35s var(--ease-smooth),
    transform 0.35s var(--ease-smooth);
}

.price-tabs__btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

.price-tabs__btn:hover {
  color: var(--color-primary-deep);
}

/* Active state — prominent pill */
.price-tabs__btn.is-active {
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(129, 87, 96, 0.2);
}

.price-tabs__btn.is-active::before {
  background: linear-gradient(135deg, var(--color-primary-deep) 0%, var(--color-secondary) 100%);
  border-color: transparent;
  opacity: 1;
  transform: scale(1);
}

/* Active icon glow */
.price-tabs__btn.is-active .price-tabs__icon {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.price-tabs__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Subtle underline indicator on active */
.price-tabs__btn::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-smooth);
}

.price-tabs__btn.is-active::after {
  width: 24px;
  background: rgba(255, 255, 255, 0.6);
}

.price-tabs__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-smooth);
}

.price-tabs__btn.is-active .price-tabs__icon {
  transform: scale(1.1);
}

.price-tabs__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* --- Tab Panels --- */
.price-panel {
  display: none;
  animation: pricePanelIn 0.4s var(--ease-out) both;
}

.price-panel.is-active {
  display: block;
}

@keyframes pricePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Price Cards Grid --- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* --- Individual Price Card --- */
.price-card {
  background: var(--color-white);
  border: 1px solid rgba(196, 160, 160, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(45, 35, 35, 0.04),
    0 12px 40px rgba(45, 35, 35, 0.06);
  transition:
    box-shadow var(--duration-normal) var(--ease-smooth),
    transform var(--duration-normal) var(--ease-smooth);
}

.price-card:hover {
  box-shadow:
    0 4px 16px rgba(45, 35, 35, 0.06),
    0 20px 56px rgba(45, 35, 35, 0.1);
  transform: translateY(-3px);
}

.price-card__header {
  padding: var(--space-md) var(--space-lg) var(--space-sm);
  background: linear-gradient(135deg, rgba(129, 87, 96, 0.04) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-bottom: 1px solid rgba(196, 160, 160, 0.1);
  position: relative;
}

.price-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

.price-card__category {
  display: inline-block;
  font-family: var(--font-serif-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.price-card__title {
  font-family: var(--font-serif-jp);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.price-card__title small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.price-card__body {
  padding: var(--space-sm) var(--space-lg) var(--space-lg);
}

.price-card__note {
  padding: 0 var(--space-lg) var(--space-sm);
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.price-card__sub {
  margin: 0 var(--space-lg) var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(253, 248, 245, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(196, 160, 160, 0.1);
}

.price-card__sub-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-xs);
}

/* --- Price Row --- */
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196, 160, 160, 0.1);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row--compact {
  padding: 8px 0;
}

.price-row__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.4;
  min-width: 5em;
}

.price-row__label small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
}

.price-row__dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted rgba(196, 160, 160, 0.25);
  margin-bottom: 2px;
}

.price-row__value {
  font-family: var(--font-serif-en);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-row__value--set {
  color: var(--color-primary-deep);
  font-weight: 700;
  font-size: 22px;
}

.price-row__value--monitor {
  color: var(--color-cta);
  font-weight: 700;
  font-size: 22px;
}

.price-row__tax {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-left: 2px;
}

.price-row__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(160, 97, 106, 0.12), rgba(183, 110, 121, 0.12));
  color: var(--color-cta);
  border: 1px solid rgba(183, 110, 121, 0.18);
}

.price-row__badge--popular {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(241, 225, 180, 0.3));
  color: #8B6914;
  border-color: rgba(212, 175, 55, 0.25);
}

/* --- Popular Row Highlight --- */
.price-row--popular {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
  margin: 0 calc(-1 * var(--space-lg));
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  border-radius: 10px;
}

/* --- Monitor Row Subtle Highlight --- */
.price-row--monitor {
  background: linear-gradient(90deg, rgba(160, 97, 106, 0.04), transparent);
  margin: 0 calc(-1 * var(--space-lg));
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  border-radius: 10px;
}

/* Badge rows: hide dots for cleaner layout */
.price-row--monitor .price-row__dots,
.price-row--popular .price-row__dots {
  display: none;
}

/* --- Footnotes --- */
.price-footnotes {
  padding: var(--space-sm) 0;
}

.price-footnote.price-footnote--monitor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 0 var(--space-md);
  padding: clamp(18px, 2.5vw, 28px) var(--space-md);
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 4px;
  background: var(--color-primary-deep);
  color: var(--color-white);
  font-family: var(--font-serif-jp);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}

.price-footnote--monitor strong {
  color: #F4E6BD;
  font-family: var(--font-serif-en);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  font-variant-numeric: lining-nums;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.price-footnote {
  font-size: 12px;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* --- Card Notes (bottom area) --- */
.price-card__notes {
  padding: var(--space-sm) var(--space-lg);
  background: rgba(253, 248, 245, 0.6);
  border-top: 1px solid rgba(196, 160, 160, 0.08);
}

.price__global-note {
  text-align: center;
  font-size: var(--fs-caption);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
}


/* ----------------------------------------------------------------
   13. Flow
   ---------------------------------------------------------------- */
.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  counter-reset: flow-step;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 210px;
  position: relative;
  padding: 0 16px 28px;
}

/* Card background */
.flow__step::before {
  content: "";
  position: absolute;
  inset: 56px 6px 0;
  border-radius: 20px;
  background: var(--color-white);
  border: 1px solid rgba(196, 160, 160, 0.12);
  box-shadow:
    0 4px 16px rgba(45, 35, 35, 0.04),
    0 16px 40px rgba(45, 35, 35, 0.06);
  z-index: -1;
  transition: box-shadow 0.3s var(--ease-smooth);
}

.flow__step:hover::before {
  box-shadow:
    0 6px 24px rgba(45, 35, 35, 0.06),
    0 24px 56px rgba(45, 35, 35, 0.1);
}

/* Step number — floating badge */
.flow__step-number {
  font-family: var(--font-serif-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c9a96e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 2;
}

/* Icon circle */
.flow__step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 249, 247, 1) 0%, rgba(253, 245, 240, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  border: 1px solid rgba(196, 160, 160, 0.15);
  box-shadow: 0 8px 24px rgba(45, 35, 35, 0.06);
  position: relative;
  transition: transform 0.3s var(--ease-smooth);
}

.flow__step:hover .flow__step-icon {
  transform: scale(1.06);
}

/* Subtle outer ring */
.flow__step-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s ease;
}

.flow__step:hover .flow__step-icon::after {
  border-color: rgba(212, 175, 55, 0.4);
}

.flow__step-icon svg {
  stroke: var(--color-primary-deep);
  transition: stroke 0.3s ease;
}

.flow__step:hover .flow__step-icon svg {
  stroke: var(--color-secondary);
}

.flow__step-title {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.flow__step-desc {
  font-size: var(--fs-caption);
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.75;
  padding: 0 4px;
}

/* Step Connector — arrow style */
.flow__step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  margin-top: 72px;
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.5;
}

.flow__step-connector::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.flow__step-connector::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(-45deg);
  margin-left: -4px;
}


/* ----------------------------------------------------------------
   14. FAQ
   ---------------------------------------------------------------- */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 0 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 248, 247, 0.68) 100%);
  box-shadow: 0 18px 44px rgba(45, 35, 35, 0.06);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth),
              border-color var(--duration-normal) var(--ease-smooth);
}

.faq__item:hover,
.faq__item.is-open {
  transform: translateY(-2px);
  border-color: rgba(183, 110, 121, 0.26);
  box-shadow: 0 24px 54px rgba(45, 35, 35, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.faq__question:hover {
  color: var(--color-cta);
}

.faq__icon {
  font-family: var(--font-serif-en);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 236, 236, 0.92);
  transition: transform 400ms var(--ease-smooth);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms var(--ease-smooth),
              opacity 400ms var(--ease-smooth);
}

.faq__item.is-open .faq__answer {
  opacity: 1;
}

.faq__answer p {
  padding-bottom: var(--space-md);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 2;
}


/* ----------------------------------------------------------------
   15. Blog
   ---------------------------------------------------------------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog__item {
  width: 100%;
}

.blog__card {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 248, 247, 0.7) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 46px rgba(45, 35, 35, 0.08);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

iframe.blog__card {
  border: 0;
}

.blog__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(45, 35, 35, 0.12);
}

.blog__card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-smooth);
  border-radius: 22px 22px 0 0;
}

.blog__card:hover .blog__card-image {
  transform: scale(1.03);
}

.blog__item.is-note-fallback .note-embed.blog__card {
  display: none;
}

.blog__fallback {
  display: none;
  width: 100%;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 247, 0.82) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--color-text-secondary);
  box-shadow: 0 16px 36px rgba(45, 35, 35, 0.06);
}

.blog__fallback a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.blog__fallback a:hover {
  text-decoration: underline;
}

.blog__item.is-note-fallback .blog__fallback {
  display: flex;
}

.blog__card-body {
  padding: var(--space-md);
}

.blog__card-date {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.blog__card-title {
  font-family: var(--font-serif-jp);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.blog__card:hover .blog__card-title {
  color: var(--color-cta);
}

.blog__card-excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}


/* ----------------------------------------------------------------
   16. Final CTA
   ---------------------------------------------------------------- */
.final-cta {
  text-align: center;
  position: relative;
}

.final-cta__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 12px;
}

.final-cta__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-lg);
}

/* Actions row — button + sns inline */
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* LINE CTA button */
.final-cta__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 60px;
  background: var(--color-white);
  color: var(--color-primary-deep);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}

.final-cta__line-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
}

/* SNS icons — compact */
.final-cta__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.final-cta__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    color 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    transform 0.3s var(--ease-smooth);
}

.final-cta__sns a:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}


/* ----------------------------------------------------------------
   17. Footer
   ---------------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, rgba(253, 248, 245, 1) 0%, rgba(248, 240, 237, 1) 100%);
  color: var(--color-text-secondary);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(196, 160, 160, 0.12);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-serif-en);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-primary-deep);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
}

.footer__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
}

.footer__nav a {
  font-family: var(--font-serif-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  transition: color var(--duration-normal) var(--ease-smooth);
}

.footer__nav a:hover {
  color: var(--color-primary-deep);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(196, 160, 160, 0.12);
  padding-top: var(--space-md);
  text-align: center;
}

.footer__copyright {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  opacity: 0.6;
}


/* ----------------------------------------------------------------
   18. Sticky CTA (Mobile)
   ---------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-smooth);
  display: none;
  padding: 0 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(253, 251, 247, 0.94) 72%);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 15px 18px;
  background: linear-gradient(135deg, #b66d79 0%, #8b4f57 100%);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(160, 97, 106, 0.28);
  transition: background-color var(--duration-normal) var(--ease-smooth);
}

.sticky-cta__btn:hover {
  background-color: var(--color-cta-hover);
}


/* ----------------------------------------------------------------
   19. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: var(--fs-cta-button);
  font-weight: 500;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  transition: background-color var(--duration-normal) var(--ease-smooth),
              color var(--duration-normal) var(--ease-smooth),
              transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 700ms var(--ease-smooth);
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn--primary {
  background: linear-gradient(135deg, #b66d79 0%, #8b4f57 100%);
  color: var(--color-white);
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(160, 97, 106, 0.25);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 97, 106, 0.35);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-cta);
  padding: 16px 48px;
  box-shadow: 0 18px 36px rgba(45, 35, 35, 0.12);
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  padding: 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-cta);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 56px;
}


/* ----------------------------------------------------------------
   20. Placeholder Images
   ---------------------------------------------------------------- */
.placeholder-image {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, rgba(196, 160, 160, 0.32) 0%, rgba(253, 251, 247, 0.62) 50%, rgba(212, 175, 55, 0.22) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image::before {
  content: "";
  position: absolute;
  inset: -30% 24% 46% -18%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: rotate(10deg);
}

.placeholder-image::after {
  content: attr(data-placeholder);
  font-size: var(--fs-caption);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  opacity: 0.6;
}


/* ----------------------------------------------------------------
   21. Animations
   ---------------------------------------------------------------- */

/* Fade Up */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
}


/* Generic Scroll-Triggered */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
}


/* Slide from Right */
.animate-on-scroll.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
}

/* Slide from Left */
.animate-on-scroll.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
}

/* Scale Up */
.animate-on-scroll.animate-scale-up {
  opacity: 0;
  transform: scale(0.85);
}

/* Blur In */
.animate-on-scroll.animate-blur-in {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(14px);
}

/* Clip Reveal */
.animate-on-scroll.animate-clip-reveal {
  opacity: 1;
  transform: none;
  clip-path: inset(0 100% 0 0);
}

/* 3D Tilt Card */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Magnetic Button */
.magnetic-btn {
  position: relative;
  transition: transform 300ms var(--ease-smooth);
}

/* Section Divider Decoration */
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  pointer-events: none;
  transition: width 1200ms var(--ease-smooth);
}

.section.section-visible::after {
  width: min(80%, 600px);
}

/* Enhanced card hover glow */
.menu-bento__card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(183, 110, 121, 0.1), rgba(212, 175, 55, 0.15));
  opacity: 0;
  z-index: -1;
  transition: opacity 400ms var(--ease-smooth);
  filter: blur(12px);
  pointer-events: none;
}

.menu-bento__card:hover::after {
  opacity: 1;
}

/* Credential number animation */
.about__credential-number {
  display: inline-block;
  transition: transform 300ms var(--ease-smooth);
}

.about__credential:hover .about__credential-number {
  transform: scale(1.1);
}



/* ----------------------------------------------------------------
   22. Awwwards-Level Animations
   ---------------------------------------------------------------- */

/* Text char split */
.section__title-en {
  overflow: hidden;
  display: block;
}

.section__title-en .char {
  display: inline-block;
  will-change: transform;
}

/* Marquee */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-xl) 0;
  background: var(--color-cream);
  position: relative;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-serif-en);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  flex-shrink: 0;
  transition: opacity 400ms var(--ease-smooth);
}

.marquee__item--outline {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--color-primary-deep);
  opacity: 0.45;
}

.marquee:hover .marquee__item {
  opacity: 0.9;
}

.marquee:hover .marquee__item--outline {
  opacity: 0.6;
}

.marquee__sep {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  opacity: 0.4;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Image parallax container */
.about__image img,
.menu-bento__image img {
  will-change: transform;
}

/* Hero scroll-away */
.hero__content,
.hero__portrait {
  will-change: transform, opacity;
}

/* CTA band animation hints */
.cta-band__text,
.cta-band__btn,
.cta-band__label,
.cta-band__deco {
  will-change: transform, opacity;
}

/* Enhanced section transitions */
.section__title-jp {
  overflow: hidden;
}


@media screen and (min-width: 768px) and (max-height: 900px) {
  .hero {
    min-height: max(560px, 100svh);
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 4vh);
    max-width: min(92vw, 900px);
  }

  .hero__title {
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.3;
    white-space: normal;
  }

  .hero__description {
    margin-bottom: var(--space-md);
    white-space: normal;
  }

  .hero__stats {
    gap: clamp(16px, 2vw, 32px);
    margin-bottom: var(--space-sm);
    padding: 12px 0;
  }

  .hero__stat-number {
    font-size: clamp(20px, 2.4vw, 30px);
  }

  .hero__cta-group {
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-sm);
  }

  .btn--gold {
    padding: 16px 32px;
    font-size: 15px;
  }

  .hero__scroll-indicator {
    bottom: 24px;
  }
}

@media screen and (min-width: 768px) and (max-height: 760px) {
  .hero__content {
    padding-top: calc(var(--header-height) + 20px);
  }

  .hero__subtitle {
    margin-bottom: var(--space-sm);
  }

  .hero__title {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: var(--space-md);
  }

  .hero__description {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero__stats {
    gap: 14px;
    margin-bottom: 12px;
  }

  .hero__stat-divider {
    height: 28px;
  }

  .hero__cta-group {
    gap: 12px;
  }

  .btn--gold {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hero__cta-secondary {
    font-size: 14px;
  }
}

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

  .animate-fade-up,
  .animate-on-scroll,
  .section__title-en .char,
  .section__title-jp,
  .final-cta,
  .final-cta__title,
  .final-cta__desc,
  .final-cta__actions,
  .final-cta__sns,
  .cta-band__text,
  .cta-band__label,
  .cta-band__sub,
  .cta-band__btn,
  .cta-band__deco,
  .cta-band__trust,
  .cta-band .container,
  .cta-band .btn,
  .hero__accent-line,
  .hero__subtitle,
  .hero__description,
  .hero__stats,
  .hero__cta-group,
  .hero__cta-secondary,
  .hero__scroll-indicator,
  .hero__title-line,
  .flow__step,
  .flow__step-number,
  .flow__step-icon,
  .flow__step-connector,
  .menu-bento__card,
  .testimonial__card,
  .achievements__item,
  .blog__card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .marquee__track {
    animation: none !important;
  }

  .section__title-line {
    width: 60px;
  }

  .hero__scroll-line::after {
    animation: none;
  }

  .hero__bg {
    transform: none;
    animation: none;
  }

  .hero__float-orb {
    display: none;
  }

  .hero__title {
    background: none;
    -webkit-text-fill-color: var(--color-ink);
    animation: none;
  }

  .section::after {
    width: min(80%, 600px);
  }

  .btn::before {
    display: none;
  }
}


/* ================================================================
   RESPONSIVE — Tablet (768px - 1023px)
   ================================================================ */
@media screen and (max-width: 1023px) {

  :root {
    --fs-hero-main: 42px;
    --fs-hero-sub: 16px;
    --fs-section-title-en: 38px;
    --fs-card-title: 18px;
    --space-section: 100px;
  }

  /* Header — show hamburger */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 1100;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-smooth);
    overflow-y: auto;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header__nav-list li {
    width: 100%;
  }

  .header__nav-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 15px;
    color: var(--color-text) !important;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .header__nav-link.is-active {
    color: var(--color-cta) !important;
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-link--cta {
    margin-top: var(--space-sm);
    text-align: center;
    border-bottom: none;
  }

  /* About */
  .about {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
  }

  .about.about--text-only {
    display: block;
    max-width: 100%;
    padding: 0 var(--space-md);
  }

  .about--text-only .about__content {
    max-width: 720px;
  }

  .about--text-only .about__text {
    max-width: min(620px, 100%);
  }

  /* Achievements — keep 3 cols on tablet */

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial__card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Before/After — tablet: 2-column layout */
  .ba__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba__list .ba__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Blog */
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid .blog__card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Flow */
  .flow__steps {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .flow__step-connector {
    display: none;
  }

  .flow__step {
    flex-basis: calc(33.333% - var(--space-md));
    max-width: none;
  }

  .flow__step::before {
    inset: 50px 4px 0;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__nav ul {
    justify-content: center;
  }

  /* Sticky CTA — show on tablet */
  .sticky-cta {
    display: block;
  }
}

/* ================================================================
   RESPONSIVE — Mobile (up to 767px)
   ================================================================ */
@media screen and (max-width: 767px) {

  :root {
    --fs-hero-main: 32px;
    --fs-hero-sub: 14px;
    --fs-section-title-en: 28px;
    --fs-section-title-jp: 12px;
    --fs-card-title: 17px;
    --fs-body: 15px;
    --fs-caption: 12px;
    --fs-cta-button: 14px;
    --space-section: 64px;
  }

  .sp-only {
    display: inline;
  }

  /* Container */
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  /* Header */
  .header__inner {
    padding: 0 var(--space-sm);
  }

  .header__logo-en {
    font-size: 20px;
  }

  .header__nav {
    width: 100%;
  }

  /* Section Header */
  .section__header {
    margin-bottom: 40px;
  }

  /* Hero — POLA clean style mobile */
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    overflow: clip;
  }

  .hero__split {
    flex-direction: column;
    text-align: center;
    gap: clamp(20px, 4svh, 32px);
    padding: 0 var(--space-sm);
    padding-top: clamp(12px, 2.5svh, 24px);
    padding-bottom: clamp(64px, 10svh, 96px);
  }

  .hero__content {
    text-align: center;
    order: 2;
    padding-left: 0;
    max-width: 100%;
  }

  .hero__subtitle {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.4;
    white-space: normal;
  }

  .hero__description {
    font-size: 13px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }

  .hero__stats {
    justify-content: center;
    gap: 16px;
    padding: 14px 0;
  }

  .hero__stat {
    align-items: center;
  }

  .hero__stat-number {
    font-size: 20px;
  }

  .hero__stat-label {
    font-size: 10px;
  }

  .hero__cta-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .btn--gold {
    padding: 16px 32px;
    font-size: 14px;
  }

  .hero__cta-secondary {
    font-size: 13px;
  }

  /* Portrait stacks on top — convert to flow layout on mobile */
  .hero__portrait {
    order: 1;
    width: min(78vw, 360px);
    margin: 0 auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__portrait-aura {
    bottom: 30%;
  }

  .hero__portrait-botanical {
    width: clamp(36px, 10vw, 54px);
  }

  .hero__portrait-botanical--l {
    left: -8%;
    top: 6%;
  }

  .hero__portrait-botanical--r {
    right: -6%;
    top: 14%;
  }

  .hero__portrait-arch {
    width: 100%;
  }

  .hero__portrait-rank {
    top: 12px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  /* Nameplate flows below arch (no longer absolute) */
  .hero__portrait-nameplate {
    position: static;
    transform: none;
    margin-top: -24px;
    padding: 10px 20px 9px;
    z-index: 5;
  }

  .hero__portrait-name-en {
    font-size: 13px;
  }

  .hero__portrait-name-jp {
    font-size: 17px;
  }

  .hero__portrait-role {
    font-size: 9px;
  }

  /* Pills flow in a horizontal row under the nameplate */
  .hero__portrait-pills {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }

  .hero__portrait-pill {
    padding: 5px 11px;
    font-size: 10px;
  }

  .hero__portrait-pill:nth-child(n) {
    transform: none;
  }

  .hero__scroll-indicator {
    bottom: 20px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__image {
    aspect-ratio: 4 / 3;
    max-width: 400px;
    margin: 0 auto;
  }

  .about__content {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .about__name {
    font-size: 24px;
  }

  .about__credentials {
    gap: 12px;
    justify-content: center;
  }

  .about__credential {
    padding: 16px 10px;
  }

  .about__credential-number {
    font-size: 28px;
  }

  /* About — text-only mobile (editorial layout) */
  .about.about--text-only {
    display: block;
    max-width: 100%;
    padding: 0;
  }

  .about--text-only .about__content {
    padding: 0;
    max-width: 100%;
    justify-items: center;
  }

  .about--text-only .about__subtitle {
    max-width: 100%;
  }

  .about--text-only .about__name {
    text-align: center;
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: 0.08em;
  }

  .about--text-only .about__subtitle {
    text-align: center;
  }

  .about--text-only .about__text {
    max-width: 100%;
    text-align: center;
  }

  .about--text-only .about__text p {
    padding: 0 0 16px;
  }

  .about--text-only .about__credentials {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 100%;
  }

  .about--text-only .about__credential {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 18px 14px;
    border-top: none;
  }

  .about--text-only .about__credential-number {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* Achievements — horizontal scroll on mobile */
  .achievements__grid {
    grid-template-columns: repeat(4, 72vw);
    gap: var(--space-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }
  .achievements__item {
    scroll-snap-align: center;
  }

  /* CTA Band */
  .cta-band {
    padding: 40px 0;
  }

  .cta-band .container {
    border-radius: 20px;
    padding: 32px 20px;
  }

  .cta-band__inner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-band__deco {
    display: none;
  }

  .cta-band__content {
    text-align: center;
  }

  .cta-band__text {
    font-size: 17px;
    white-space: normal;
  }

  .cta-band__btn {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .cta-band__trust {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  /* Menu — Bento Grid Mobile */
  .menu__lead {
    font-size: 12px;
    margin-bottom: var(--space-md);
  }

  .menu-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .menu-bento__card {
    min-height: 240px;
    border-radius: 18px;
  }

  .menu-bento__card--featured {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .menu-bento__card--wide {
    grid-column: 1 / -1;
  }

  .menu-bento__content {
    padding: 14px;
    gap: 4px;
  }

  .menu-bento__category {
    font-size: 9px;
  }

  .menu-bento__title {
    font-size: 16px;
  }

  .menu-bento__desc {
    font-size: 11px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .menu-bento__card--featured .menu-bento__desc {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .menu-bento__highlights {
    display: none;
  }

  .menu-bento__price {
    font-size: 14px;
  }

  .menu-bento__time {
    font-size: 11px;
  }

  .menu-bento__badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* Before/After */
  .ba__list {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 400px;
    margin: 0 auto;
  }

  .ba__slider {
    aspect-ratio: 3 / 4;
  }

  .ba__item {
    padding: 12px;
    border-radius: 22px;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials__grid .testimonial__card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .testimonial__card {
    padding: var(--space-md);
  }

  .testimonial__text::before {
    font-size: 80px;
    top: -12px;
  }

  /* Price Section — Mobile */
  .price-consultation {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: var(--space-md);
    padding: 14px 16px;
    border-radius: 14px;
  }

  .price-consultation__label {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .price-consultation__text {
    font-size: 13px;
    line-height: 1.65;
  }

  .price-consultation__text strong {
    font-size: 20px;
  }

  .price-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: var(--space-lg);
  }

  .price-tabs__btn {
    justify-content: center;
    width: 100%;
    padding: 10px 18px;
    border-radius: 40px;
    min-width: 0;
    gap: 6px;
  }

  .price-tabs__icon {
    width: 16px;
    height: 16px;
  }

  .price-tabs__label {
    font-size: 11px;
  }

  .price-cards {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .price-card {
    border-radius: 16px;
  }

  .price-card__header {
    padding: var(--space-md) var(--space-md) var(--space-sm);
  }

  .price-card__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

  .price-card__title {
    font-size: 17px;
  }

  .price-card__note {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .price-card__sub {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .price-row {
    padding: 12px 0;
    gap: 8px;
  }

  .price-row__label {
    font-size: 13px;
  }

  .price-row__value {
    font-size: 17px;
  }

  .price-row__value--set,
  .price-row__value--monitor {
    font-size: 18px;
  }

  .price-row--monitor,
  .price-row--popular {
    margin: 0 calc(-1 * var(--space-md));
    padding-left: var(--space-md);
    padding-right: var(--space-sm);
  }

  /* Flow — Vertical */
  .flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .flow__step {
    flex-basis: auto;
    max-width: 300px;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
  }

  .flow__step::before {
    inset: 44px 0 0;
  }

  .flow__step-connector {
    display: flex;
    flex-direction: column;
    width: auto;
    height: 28px;
    margin-top: 0;
  }

  .flow__step-connector::before {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  }

  .flow__step-connector::after {
    border-right: 1.5px solid var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
    transform: rotate(45deg);
    margin-left: 0;
    margin-top: -2px;
  }

  .flow__step-icon {
    width: 56px;
    height: 56px;
  }

  .flow__step-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* Blog */
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog__grid .blog__card:last-child {
    grid-column: auto;
    max-width: none;
  }

  /* Final CTA */
  .final-cta__title {
    font-size: 24px;
  }

  .final-cta__actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .final-cta__line-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
  }

  .final-cta {
    padding: 0 var(--space-sm);
  }

  /* Footer */
  .footer {
    padding: var(--space-lg) 0 100px; /* Extra bottom padding for sticky CTA */
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__nav ul {
    justify-content: center;
    gap: var(--space-sm);
  }

  /* Buttons */
  .btn--primary,
  .btn--white,
  .btn--outline-white {
    padding: 14px 36px;
  }

  .btn--large {
    padding: 16px 40px;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
    padding: 0 12px 12px;
  }

  .sticky-cta__btn {
    border-radius: 16px;
  }
}

@media screen and (max-width: 420px) {
  .menu-bento {
    grid-template-columns: 1fr;
  }

  .menu-bento__card--featured,
  .menu-bento__card--wide {
    grid-column: 1;
  }
}

/* Keep the portrait's full head-and-shoulders crop visible on short landscape screens. */
@media screen and (orientation: landscape) and (max-width: 1024px) and (max-height: 500px) {
  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    overflow: clip;
  }

  .hero__split {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(16px, 3vw, 32px);
    padding: clamp(10px, 3svh, 18px) var(--space-sm) 28px;
    text-align: left;
  }

  .hero__content {
    order: 1;
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .hero__subtitle {
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .hero__title {
    font-size: clamp(22px, 4vw, 30px);
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .hero__description {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }

  .hero__stats {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    padding: 6px 0;
  }

  .hero__stat {
    align-items: flex-start;
  }

  .hero__stat-number {
    font-size: 18px;
  }

  .hero__cta-group {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero .btn--gold {
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero__portrait {
    order: 2;
    width: clamp(150px, 26vw, 220px);
    margin: 0;
  }

  .hero__scroll-indicator {
    display: none;
  }
}


/* ----------------------------------------------------------------
   Real Media Assets
   ---------------------------------------------------------------- */

/* Achievements real media */
.achievements__image img,
.achievements__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blur and visually suppress the lower half of achievement videos without duplicating media layers. */
.achievements__image--soft-mask::before,
.achievements__image--soft-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.achievements__image--soft-mask::before {
  top: 48%;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 249, 0) 0%,
      rgba(255, 248, 246, 0.44) 28%,
      rgba(255, 248, 246, 0.84) 74%,
      rgba(255, 248, 246, 0.98) 100%
    );
}

.achievements__image--soft-mask::after {
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 253, 252, 0) 42%,
      rgba(255, 251, 249, 0.14) 58%,
      rgba(255, 248, 246, 0.42) 100%
    );
}

@supports ((mask-image: linear-gradient(180deg, transparent, black)) or (-webkit-mask-image: linear-gradient(180deg, transparent, black))) {
  .achievements__image--soft-mask::before {
    top: 0;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 47%, black 60%, black 100%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 47%, black 60%, black 100%);
  }
}

@supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
  .achievements__image--soft-mask::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 249, 0.02) 0%,
        rgba(255, 248, 246, 0.18) 26%,
        rgba(255, 248, 246, 0.56) 72%,
        rgba(255, 248, 246, 0.9) 100%
      );
    -webkit-backdrop-filter: blur(20px) saturate(112%);
    backdrop-filter: blur(20px) saturate(112%);
  }
}

/* BA card layout (replacing slider) */
.ba__card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.ba__card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.ba__card--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}

.ba__card-half {
  position: relative;
  overflow: hidden;
}

.ba__card-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.ba__card-half .ba__badge {
  top: 8px;
  left: 8px;
}

.ba__card-half:last-child .ba__badge {
  left: auto;
  right: 8px;
}

/* About portrait */
.about__portrait {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-lg);
}

.about__portrait-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .about__portrait {
    text-align: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .about__portrait-img {
    max-width: 200px;
    margin: 0 auto;
  }
}

/* Menu video */
.menu-bento__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}

.menu-bento__card:hover .menu-bento__image video {
  transform: scale(1.06);
}
