    :root {
      color-scheme: light;
      --ink: #352d2a;
      --ink-soft: #6b5f59;
      --ink-faint: #9f9088;
      --line: rgba(95, 73, 57, 0.11);
      --line-strong: rgba(95, 73, 57, 0.18);
      --gold: #c39b73;
      --charcoal: #44352f;
      --panel: rgba(255, 249, 244, 0.9);
      --placeholder-top: #f7eee7;
      --placeholder-bottom: #f2e7df;
      --shadow-soft: 0 20px 42px rgba(97, 73, 58, 0.06);
      --radius-xl: 36px;
      --radius-lg: 28px;
      --radius-md: 22px;
      --shell: min(1180px, calc(100% - 32px));
      --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
      --font-serif: "Shippori Mincho", "Yu Mincho", serif;
      --section-space: clamp(88px, 10vw, 124px);
      --content-gap: clamp(36px, 4vw, 56px);
      --card-gap: clamp(20px, 2.8vw, 28px);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background:
        radial-gradient(circle at 0 0, rgba(209, 179, 159, 0.14), transparent 26%),
        radial-gradient(circle at 100% 8%, rgba(171, 145, 125, 0.08), transparent 24%),
        linear-gradient(180deg, #fffdfa 0%, #fbf4ee 42%, #f6eee7 100%);
      font-family: var(--font-sans);
      line-height: 1.84;
      letter-spacing: 0.01em;
      overflow-x: hidden;
    }

    body::before {
      position: fixed;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(74, 61, 50, 0.02) 1px, transparent 1px),
        linear-gradient(180deg, rgba(74, 61, 50, 0.016) 1px, transparent 1px);
      background-size: 44px 44px;
      mask: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55) 12%, rgba(0, 0, 0, 0.55) 90%, transparent);
      content: "";
      pointer-events: none;
      z-index: -2;
    }

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

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

    h1,
    h2,
    h3,
    p,
    ul,
    ol,
    li {
      margin: 0;
    }

    ul,
    ol {
      padding: 0;
    }

    .shell {
      width: var(--shell);
      margin: 0 auto;
    }

    .page {
      position: relative;
    }

    .topbar {
      --menu-topbar-bg: transparent;
      --menu-line: rgba(71, 55, 42, 0.12);
      --menu-line-strong: rgba(71, 55, 42, 0.2);
      --menu-active-color: #231b16;
      --menu-brand-color: #231b16;
      --menu-sub-color: rgba(35, 27, 22, 0.66);
      --menu-page-bg: rgba(255, 255, 255, 0.54);
      --menu-page-color: #5a493d;
      --menu-page-hover-color: #231b16;
      --menu-page-current-bg: #231b16;
      --menu-page-current-color: #fffdfa;
      --menu-nav-color: #5a493d;
      --menu-nav-active-color: #231b16;
      --menu-nav-indicator: #231b16;

      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      border-bottom: 1px solid rgba(122, 101, 90, 0.08);
      background:
        linear-gradient(90deg, rgba(252, 248, 243, 0.84) 0%, rgba(252, 248, 243, 0.8) 34%, rgba(252, 248, 243, 0.44) 58%, rgba(252, 248, 243, 0.14) 82%, rgba(252, 248, 243, 0.04) 100%);
      backdrop-filter: blur(14px) saturate(1.04);
    }

    .hero,
    .section {
      position: relative;
    }

    .hero {
      padding: 0;
    }

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

    .hero::before {
      top: 18px;
      right: -120px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 244, 236, 0.86) 0%, rgba(255, 244, 236, 0.22) 42%, rgba(255, 244, 236, 0) 74%);
      filter: blur(18px);
    }

    .hero::after {
      bottom: -110px;
      left: -130px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(236, 220, 219, 0.44) 0%, rgba(236, 220, 219, 0.12) 38%, rgba(236, 220, 219, 0) 72%);
      filter: blur(22px);
    }

    .hero--split {
      --hero-min-height: max(760px, 90svh);
      --hero-outer-pad: clamp(132px, 14vh, 176px);
      min-height: var(--hero-min-height);
      padding-block: var(--hero-outer-pad);
      overflow: hidden;
      isolation: isolate;
      --hero-image-position: 74% 47%;
      --hero-image-position-mobile: 78% 42%;
      background:
        radial-gradient(circle at 14% 18%, rgba(250, 244, 239, 0.96) 0%, rgba(250, 244, 239, 0.72) 24%, transparent 56%),
        radial-gradient(circle at 74% 18%, rgba(233, 216, 206, 0.34) 0%, rgba(233, 216, 206, 0.12) 28%, transparent 56%),
        radial-gradient(circle at 84% 82%, rgba(205, 184, 170, 0.18) 0%, rgba(205, 184, 170, 0.06) 28%, transparent 60%),
        linear-gradient(135deg, #f8f1eb 0%, #eadfd6 44%, #d8c7ba 100%);
    }

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

    .hero--split::before {
      inset: 0;
      background:
        radial-gradient(circle at 18% 22%, rgba(248, 242, 237, 0.56) 0%, rgba(248, 242, 237, 0.24) 24%, rgba(248, 242, 237, 0.06) 48%, transparent 72%),
        radial-gradient(circle at 84% 24%, rgba(224, 213, 205, 0.22) 0%, rgba(224, 213, 205, 0.06) 28%, transparent 56%),
        linear-gradient(180deg, rgba(244, 237, 231, 0.12) 0%, rgba(244, 237, 231, 0.02) 38%, rgba(221, 208, 198, 0.14) 100%);
      filter: blur(2px);
      opacity: 1;
      z-index: 2;
    }

    .hero--split::after {
      inset: 0;
      background:
        radial-gradient(circle at 66% 46%, rgba(245, 239, 233, 0.14) 0%, rgba(245, 239, 233, 0.04) 24%, rgba(245, 239, 233, 0) 44%),
        linear-gradient(90deg, rgba(251, 246, 241, 0.82) 0%, rgba(246, 239, 233, 0.64) 32%, rgba(232, 222, 214, 0.28) 60%, rgba(232, 222, 214, 0.08) 100%),
        radial-gradient(circle at 24% 34%, rgba(244, 236, 231, 0.18) 0%, rgba(244, 236, 231, 0.05) 28%, transparent 58%);
      opacity: 1;
      z-index: 3;
    }

    .section {
      padding: var(--section-space) 0;
      isolation: isolate;
    }

    .section::before {
      top: 12px;
      right: calc(50% - 50vw);
      bottom: 12px;
      left: calc(50% - 50vw);
      background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.46), rgba(246, 239, 231, 0.24)),
        linear-gradient(90deg, rgba(74, 61, 50, 0.008) 1px, transparent 1px),
        linear-gradient(180deg, rgba(74, 61, 50, 0.007) 1px, transparent 1px);
      background-size: auto, 48px 48px, 48px 48px;
      z-index: -2;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-serif);
      line-height: 1.24;
      letter-spacing: 0.03em;
    }

    h1 {
      font-size: clamp(3rem, 7.2vw, 5.4rem);
      line-height: 1.06;
      text-wrap: balance;
    }

    h2 {
      font-size: clamp(2rem, 3.5vw, 3.1rem);
      text-wrap: balance;
    }

    h3 {
      font-size: 1.12rem;
      line-height: 1.46;
    }

    .section__head p,
    .service-panel__lead,
    .service-panel__body,
    .step-card p {
      color: var(--ink-soft);
    }

    .hero__layout {
      min-height: calc(var(--hero-min-height) - (var(--hero-outer-pad) * 2));
      position: relative;
      z-index: 4;
      display: flex;
      align-items: center;
      isolation: isolate;
      padding-left: clamp(0px, 0.7vw, 10px);
    }

    .hero__layout::before {
      position: absolute;
      inset: -14% 12% -26% -4%;
      background:
        linear-gradient(90deg, rgba(252, 248, 244, 0.8) 0%, rgba(252, 248, 244, 0.72) 15%, rgba(252, 248, 244, 0.56) 30%, rgba(252, 248, 244, 0.36) 42%, rgba(252, 248, 244, 0.18) 52%, rgba(252, 248, 244, 0.08) 60%, rgba(252, 248, 244, 0.02) 68%, rgba(252, 248, 244, 0) 76%),
        radial-gradient(circle at 18% 34%, rgba(255, 251, 247, 0.5) 0%, rgba(255, 251, 247, 0.2) 34%, rgba(255, 251, 247, 0) 64%),
        radial-gradient(ellipse at 12% 88%, rgba(255, 250, 246, 0.46) 0%, rgba(255, 250, 246, 0.24) 24%, rgba(255, 250, 246, 0.08) 42%, rgba(255, 250, 246, 0) 66%);
      content: "";
      pointer-events: none;
      z-index: 1;
      backdrop-filter: blur(9px) saturate(0.94);
      -webkit-backdrop-filter: blur(9px) saturate(0.94);
      -webkit-mask-image: radial-gradient(ellipse 108% 156% at 0% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 24%, rgba(0, 0, 0, 0.92) 38%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
      mask-image: radial-gradient(ellipse 108% 156% at 0% 22%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 24%, rgba(0, 0, 0, 0.92) 38%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
    }

    .hero__layout::after {
      position: absolute;
      inset: -16% 28% -30% 30%;
      background:
        radial-gradient(ellipse at 0 50%, rgba(251, 246, 241, 0.34) 0%, rgba(251, 246, 241, 0.22) 16%, rgba(251, 246, 241, 0.11) 28%, rgba(251, 246, 241, 0.03) 42%, rgba(251, 246, 241, 0) 58%),
        radial-gradient(ellipse at 18% 34%, rgba(255, 250, 246, 0.16) 0%, rgba(255, 250, 246, 0.06) 18%, rgba(255, 250, 246, 0) 42%),
        radial-gradient(ellipse at 6% 88%, rgba(251, 246, 241, 0.24) 0%, rgba(251, 246, 241, 0.12) 18%, rgba(251, 246, 241, 0.04) 32%, rgba(251, 246, 241, 0) 50%);
      content: "";
      pointer-events: none;
      z-index: 1;
      filter: blur(28px);
      opacity: 0.76;
      -webkit-mask-image: radial-gradient(ellipse 104% 164% at 0% 46%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 24%, rgba(0, 0, 0, 0.54) 40%, rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.08) 70%, transparent 84%);
      mask-image: radial-gradient(ellipse 104% 164% at 0% 46%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 24%, rgba(0, 0, 0, 0.54) 40%, rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.08) 70%, transparent 84%);
    }

    .hero__content {
      --hero-content-shift: clamp(18px, 2.8vh, 34px);
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      width: min(43%, 520px);
      max-width: 520px;
      padding-left: clamp(28px, 3.8vw, 74px);
      padding-right: clamp(16px, 2vw, 26px);
      padding-block: clamp(108px, 14vh, 146px) clamp(92px, 11vh, 124px);
      transform: translateY(var(--hero-content-shift));
    }

    .hero__content::before {
      position: absolute;
      inset: -108px -86px -172px -132px;
      background:
        radial-gradient(circle at 18% 28%, rgba(251, 246, 241, 0.92) 0%, rgba(251, 246, 241, 0.72) 22%, rgba(251, 246, 241, 0.28) 54%, transparent 80%),
        radial-gradient(circle at 56% 46%, rgba(233, 220, 213, 0.16) 0%, rgba(233, 220, 213, 0.04) 20%, rgba(233, 220, 213, 0) 44%),
        radial-gradient(ellipse at 10% 92%, rgba(251, 246, 241, 0.46) 0%, rgba(251, 246, 241, 0.22) 24%, rgba(251, 246, 241, 0.08) 42%, rgba(251, 246, 241, 0) 66%);
      filter: blur(24px);
      content: "";
      pointer-events: none;
      z-index: -1;
    }

    .hero__kicker {
      margin: 0 0 clamp(28px, 3vw, 38px);
      color: rgba(100, 83, 72, 0.62);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.3em;
      opacity: 0.72;
      text-transform: uppercase;
    }

    .hero__title {
      margin: 0 0 clamp(30px, 3.2vw, 42px);
      color: rgba(70, 55, 47, 0.86);
      font-family: 'Shippori Mincho', serif;
      font-weight: 500;
      font-size: clamp(3.55rem, 5.2vw, 5.15rem);
      line-height: 1.13;
      letter-spacing: 0.064em;
      font-feature-settings: "palt" 1;
      writing-mode: horizontal-tb;
      text-orientation: mixed;
      inline-size: fit-content;
      max-width: 100%;
    }

    .hero__title-line {
      display: block;
      line-height: 1.13;
    }

    .hero__title-phrase {
      display: inline-block;
      white-space: nowrap;
      word-break: keep-all;
      line-break: strict;
    }

    .hero__title-line--intro {
      font-size: 0.34em;
      letter-spacing: 0.18em;
      opacity: 0.74;
    }

    .hero__title-line--main {
      font-size: 0.98em;
      white-space: nowrap;
      letter-spacing: 0.1em;
    }

    .hero__title-line + .hero__title-line {
      margin-top: clamp(12px, 1.4vw, 20px);
    }

    .hero__lead {
      max-width: min(31em, 100%);
      margin: 0 0 clamp(26px, 3vw, 36px);
      color: rgba(84, 71, 64, 0.82);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
      font-size: clamp(1rem, 1.06vw, 1.08rem);
      font-weight: 400;
      line-height: 1.98;
      letter-spacing: 0.09em;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    .hero__lead-line {
      display: block;
    }

    .hero__lead-line--primary {
      white-space: nowrap;
      word-break: keep-all;
      line-break: strict;
    }

    .hero__detail {
      max-width: 31ch;
      margin: 0 0 clamp(42px, 4.2vw, 56px);
      color: rgba(96, 81, 73, 0.76);
      font-size: 0.86rem;
      line-height: 1.92;
      letter-spacing: 0.08em;
    }

    .hero__detail::before {
      display: block;
      width: 52px;
      height: 1px;
      margin: 0 0 16px;
      background: linear-gradient(90deg, rgba(195, 155, 115, 0.8), rgba(195, 155, 115, 0));
      content: "";
    }

    .service-panel {
      background: var(--panel);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow-soft);
    }

    .service-panel__eyebrow {
      display: block;
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .hero__actions {
      margin-top: 0;
      align-self: flex-start;
    }

    .hero__visual {
      position: absolute;
      isolation: isolate;
      inset: 0;
      z-index: 1;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: none;
      padding: 0;
      overflow: hidden;
      pointer-events: none;
      transform: translateX(clamp(46px, 3.8vw, 72px));
    }

    .hero__visual--carousel {
      display: block;
    }

    .hero__visual::before {
      position: absolute;
      inset: -12% 42% 10% -12%;
      content: "";
      background:
        radial-gradient(circle at 34% 28%, rgba(248, 242, 238, 0.38) 0%, rgba(248, 242, 238, 0.14) 24%, rgba(248, 242, 238, 0.03) 48%, transparent 68%),
        radial-gradient(circle at 58% 54%, rgba(226, 211, 203, 0.14) 0%, rgba(226, 211, 203, 0.04) 28%, rgba(226, 211, 203, 0) 54%);
      filter: blur(14px);
      opacity: 0.84;
      transform: none;
      z-index: 0;
    }

    .hero__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(118deg, rgba(251, 247, 242, 0.06) 0%, rgba(251, 247, 242, 0.02) 16%, rgba(232, 221, 214, 0.05) 36%, rgba(196, 176, 164, 0.02) 62%, rgba(196, 176, 164, 0) 78%),
        linear-gradient(90deg, rgba(252, 248, 244, 0.16) 0%, rgba(252, 248, 244, 0.12) 12%, rgba(252, 248, 244, 0.08) 24%, rgba(252, 248, 244, 0.04) 36%, rgba(252, 248, 244, 0.015) 48%, rgba(252, 248, 244, 0) 60%),
        radial-gradient(ellipse at 40% 52%, rgba(249, 243, 238, 0.12) 0%, rgba(249, 243, 238, 0.05) 16%, rgba(249, 243, 238, 0.015) 28%, rgba(249, 243, 238, 0) 40%);
      filter: none;
      opacity: 0.38;
    }

    .hero-carousel {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      max-height: none;
      background: transparent;
      overflow: hidden;
    }

    .hero-carousel::before {
      content: "";
      position: absolute;
      inset: -12% 30% -22% 20%;
      background:
        radial-gradient(ellipse at 0 50%, rgba(248, 241, 236, 0.22) 0%, rgba(248, 241, 236, 0.14) 14%, rgba(248, 241, 236, 0.07) 26%, rgba(248, 241, 236, 0.02) 38%, rgba(248, 241, 236, 0) 52%),
        radial-gradient(ellipse at 18% 30%, rgba(255, 248, 243, 0.1) 0%, rgba(255, 248, 243, 0.03) 18%, rgba(255, 248, 243, 0) 38%),
        radial-gradient(ellipse at 6% 88%, rgba(248, 241, 236, 0.2) 0%, rgba(248, 241, 236, 0.1) 16%, rgba(248, 241, 236, 0.04) 28%, rgba(248, 241, 236, 0.015) 40%, rgba(248, 241, 236, 0) 56%);
      filter: blur(24px);
      opacity: 0.56;
      pointer-events: none;
      z-index: 1;
      -webkit-mask-image: radial-gradient(ellipse 102% 168% at 0% 50%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 24%, rgba(0, 0, 0, 0.52) 40%, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.07) 66%, transparent 80%);
      mask-image: radial-gradient(ellipse 102% 168% at 0% 50%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 24%, rgba(0, 0, 0, 0.52) 40%, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.07) 66%, transparent 80%);
    }

    .hero-carousel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(248, 241, 236, 0.03) 0%, rgba(248, 241, 236, 0.02) 54%, rgba(248, 241, 236, 0.01) 74%, rgba(248, 241, 236, 0) 100%),
        linear-gradient(90deg, rgba(248, 241, 236, 0.16) 0%, rgba(248, 241, 236, 0.11) 16%, rgba(248, 241, 236, 0.07) 28%, rgba(248, 241, 236, 0.03) 40%, rgba(248, 241, 236, 0.01) 50%, rgba(248, 241, 236, 0) 60%),
        linear-gradient(180deg, rgba(245, 239, 234, 0.03) 0%, rgba(245, 239, 234, 0.015) 28%, rgba(214, 201, 192, 0.03) 100%),
        radial-gradient(ellipse at 14% 86%, rgba(247, 240, 235, 0.15) 0%, rgba(247, 240, 235, 0.07) 20%, rgba(247, 240, 235, 0.02) 34%, rgba(247, 240, 235, 0) 50%);
      opacity: 0.3;
      pointer-events: none;
    }

    .hero-carousel__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--hero-image-position, 72% 48%);
      opacity: 1;
      filter: saturate(0.94) brightness(0.98);
      transform: none;
      transition: none;
      will-change: auto;
      image-rendering: auto;
      backface-visibility: hidden;
    }

    .hero-carousel__image--salon {
      object-position: 90% 46%;
      transform: scale(1.05);
      filter: saturate(0.97) brightness(1) contrast(1.01);
    }

    .hero-carousel__image.is-active {
      opacity: 1;
    }

    .js .hero__content {
      opacity: 0;
      transform: translateY(calc(var(--hero-content-shift) + 14px));
      transition: opacity 0.95s ease 0.4s, transform 0.95s ease 0.4s;
    }

    .js .hero--ready .hero__content {
      opacity: 1;
      transform: translateY(var(--hero-content-shift));
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition:
        transform 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease;
    }

    .button:hover,
    .button:focus-visible {
      outline: none;
      transform: translateY(-1px);
    }

    .button--primary {
      background: var(--charcoal);
      color: #fffdfa;
      box-shadow: var(--shadow-soft);
    }

    .button--primary:hover,
    .button--primary:focus-visible {
      background: #27221f;
    }

    .hero__actions .button {
      min-height: 44px;
      padding: 0 28px;
      border: 1px solid rgba(123, 98, 81, 0.18);
      border-radius: 999px;
      background: rgba(253, 247, 241, 0.76);
      color: rgba(80, 62, 51, 0.86);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.11em;
      box-shadow: 0 12px 26px rgba(98, 74, 60, 0.08);
      backdrop-filter: blur(12px) saturate(1.02);
    }

    .hero__actions .button:hover,
    .hero__actions .button:focus-visible {
      border-color: rgba(123, 98, 81, 0.26);
      background: rgba(255, 250, 245, 0.88);
      box-shadow: 0 14px 30px rgba(98, 74, 60, 0.1);
      transform: translateY(-0.5px);
    }

    .hero__actions .button--primary {
      background: rgba(255, 248, 242, 0.82);
      color: rgba(76, 57, 47, 0.88);
    }

    .hero__actions .button--primary:hover,
    .hero__actions .button--primary:focus-visible {
      background: rgba(255, 250, 245, 0.94);
      color: rgba(76, 57, 47, 0.94);
    }

    .button--secondary {
      border: 1px solid var(--line-strong);
      background: rgba(255, 252, 247, 0.78);
      color: var(--charcoal);
    }

    .button--secondary:hover,
    .button--secondary:focus-visible {
      border-color: rgba(74, 61, 50, 0.28);
      background: rgba(255, 252, 247, 0.94);
    }

    .section__head {
      display: grid;
      gap: 14px;
    }

    .section__head--narrow {
      max-width: 760px;
    }

    #products {
      padding-bottom: clamp(64px, 8vw, 92px);
      background: linear-gradient(180deg, #fffbf6 0%, #f8f1e8 100%);
    }

    #products .section__head h2 {
      color: rgba(70, 55, 47, 0.86);
      font-family: "Shippori Mincho", "Yu Mincho", serif;
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: 0.052em;
      font-feature-settings: "palt" 1;
    }

    #products .section__head p {
      color: rgba(84, 71, 64, 0.82);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.96;
      letter-spacing: 0.08em;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    #products::before {
      top: 0;
      bottom: 0;
      background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.34), rgba(246, 239, 231, 0.14)),
        linear-gradient(90deg, rgba(74, 61, 50, 0.008) 1px, transparent 1px),
        linear-gradient(180deg, rgba(74, 61, 50, 0.007) 1px, transparent 1px);
      background-size: auto, 48px 48px, 48px 48px;
    }

    #flow {
      padding-top: clamp(116px, 11vw, 140px);
      padding-bottom: clamp(116px, 11vw, 140px);
      background: linear-gradient(180deg, #f8f2e8 0%, #fdfaf5 100%);
    }

    #flow::before {
      top: 0;
      right: calc(50% - 50vw);
      bottom: 0;
      left: calc(50% - 50vw);
      background:
        radial-gradient(circle at 82% 28%, rgba(196, 167, 129, 0.18) 0%, rgba(196, 167, 129, 0.04) 28%, transparent 58%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.32), rgba(239, 229, 217, 0.16)),
        linear-gradient(90deg, rgba(74, 61, 50, 0.008) 1px, transparent 1px),
        linear-gradient(180deg, rgba(74, 61, 50, 0.007) 1px, transparent 1px);
      background-size: auto, auto, 48px 48px, 48px 48px;
    }

    #cta {
      padding-top: clamp(88px, 8.8vw, 106px);
      padding-bottom: clamp(68px, 7.2vw, 84px);
      background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 249, 242, 0.96) 56%, rgba(252, 245, 237, 0.94) 100%);
    }

    #cta::before {
      top: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.12) 34%, transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 250, 243, 0.12)),
        linear-gradient(90deg, rgba(74, 61, 50, 0.005) 1px, transparent 1px),
        linear-gradient(180deg, rgba(74, 61, 50, 0.004) 1px, transparent 1px);
      background-size: auto, auto, 52px 52px, 52px 52px;
    }

    .step-grid {
      display: grid;
      gap: clamp(20px, 2.8vw, 30px);
      margin-top: clamp(42px, 4.6vw, 58px);
      grid-template-columns: repeat(2, minmax(0, 1fr));
      list-style: none;
    }

    .step-card {
      position: relative;
      background: var(--panel);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow-soft);
    }

    .step-card span {
      display: block;
      color: var(--ink-faint);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
    }

    .service-stack {
      display: grid;
      gap: clamp(28px, 4vw, 44px);
      margin-top: var(--content-gap);
    }

    .service-panel {
      display: grid;
      grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
      gap: clamp(24px, 4vw, 42px);
      align-items: center;
      padding: clamp(24px, 4vw, 36px);
      border-radius: var(--radius-xl);
    }

    .service-panel--reverse .service-panel__visual {
      order: 2;
    }

    .service-panel--reverse .service-panel__content {
      order: 1;
    }

    .service-panel__visual {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      min-height: 420px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #15110f;
      transform: translateY(18px);
    }

    .service-panel:nth-of-type(even) .service-panel__visual {
      transform: translateY(-18px);
    }

    .service-panel__visual--space {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 0;
      aspect-ratio: auto;
      overflow: visible;
      border-radius: 0;
      background: transparent;
    }

    .service-panel__visual > .placeholder {
      display: none;
    }

    .service-panel__image {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .service-panel__image--perfume14 {
      position: static;
      inset: auto;
      width: 88%;
      max-width: 88%;
      height: auto;
      max-height: 400px;
      object-fit: contain;
      object-position: center center;
      display: block;
      border-radius: 24px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      margin-inline: auto;
    }

    .service-panel__image--perfume15 {
      object-fit: cover;
      object-position: center center;
    }

    .service-panel__content {
      display: grid;
      gap: 14px;
    }

    .service-panel__lead {
      color: var(--charcoal);
      font-size: 1.02rem;
      line-height: 1.74;
    }

    .service-panel__body {
      font-size: 0.96rem;
    }

    .service-panel__uses {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
      margin-top: 4px;
      list-style: none;
    }

    .service-panel__uses li {
      padding: 10px 14px;
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.54);
      color: var(--charcoal);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      line-height: 1.4;
    }

    .journey-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
      gap: clamp(32px, 5vw, 68px);
      align-items: start;
    }

    .journey-layout__content {
      max-width: 680px;
    }

    .journey-layout__visual {
      position: relative;
      isolation: isolate;
      width: min(100%, 468px);
      min-height: 590px;
      justify-self: end;
      aspect-ratio: 2 / 3;
      overflow: visible;
      transform: translateY(40px);
    }

    .journey-layout__visual::before {
      position: absolute;
      inset: 28px -10px 18px 14%;
      border-radius: 44px;
      background:
        radial-gradient(circle at 36% 24%, rgba(255, 251, 246, 0.64) 0%, rgba(255, 251, 246, 0.18) 34%, transparent 68%),
        linear-gradient(180deg, rgba(232, 219, 203, 0.34), rgba(232, 219, 203, 0.08));
      content: "";
      z-index: 0;
    }

    .journey-layout__visual::after {
      position: absolute;
      inset: 0;
      border-radius: 40px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 248, 240, 0.04) 44%, rgba(225, 211, 196, 0.1));
      content: "";
      pointer-events: none;
      z-index: 2;
    }

    .journey-layout__image {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 46%;
      border-radius: 40px;
      display: block;
      box-shadow: 0 40px 100px rgba(90, 70, 50, 0.14);
      filter: saturate(0.92) contrast(0.98) brightness(1.02);
    }

    .step-card {
      display: grid;
      gap: 12px;
      padding: 28px 24px 26px 28px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(12px);
      box-shadow: 0 24px 60px rgba(80, 60, 40, 0.08);
    }

    .step-card::before {
      position: absolute;
      top: 22px;
      bottom: 22px;
      left: 24px;
      width: 1px;
      background: linear-gradient(180deg, rgba(180, 150, 110, 0.36), rgba(180, 150, 110, 0.08));
      content: "";
    }

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

    .step-card h3 {
      font-size: 1.02rem;
      padding-left: 22px;
    }

    .step-card p {
      padding-left: 22px;
    }

    .step-card span {
      position: relative;
      padding-left: 22px;
      color: rgba(150, 120, 80, 0.72);
    }

    .step-card span::before {
      position: absolute;
      top: 50%;
      left: 0;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: linear-gradient(180deg, #d7be97 0%, #b59874 100%);
      box-shadow: 0 0 0 6px rgba(255, 250, 242, 0.9);
      content: "";
      transform: translateY(-50%);
    }

    .cta-actions {
      display: flex;
      justify-content: center;
    }

    #cta .shell {
      display: grid;
      justify-items: center;
    }

    #cta .button {
      min-height: 52px;
      padding: 0 32px;
      border: 1px solid rgba(112, 91, 78, 0.16);
      border-radius: 999px;
      background: rgba(255, 252, 247, 0.88);
      color: rgba(73, 58, 50, 0.84);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      box-shadow: 0 8px 18px rgba(67, 50, 39, 0.05);
    }

    #cta .button--primary {
      min-width: min(100%, 368px);
    }

    #cta .button:hover,
    #cta .button:focus-visible {
      transform: translateY(-0.5px);
      border-color: rgba(112, 91, 78, 0.22);
      background: rgba(255, 253, 249, 0.96);
      color: rgba(67, 53, 46, 0.9);
      box-shadow: 0 10px 20px rgba(67, 50, 39, 0.06);
    }

    .cta-closing {
      width: 100%;
      display: grid;
      justify-items: center;
      gap: 8px;
      max-width: 920px;
      margin: 0 auto clamp(34px, 4vw, 42px);
      text-align: center;
    }

    .cta-closing__line {
      display: block;
      width: 100%;
      text-align: center;
      color: rgba(84, 71, 64, 0.82);
      font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      white-space: nowrap;
    }

    .cta-closing__line--intro {
      font-size: clamp(1.12rem, 1.45vw, 1.28rem);
      font-weight: 400;
      letter-spacing: 0.12em;
      line-height: 1.46;
      margin-left: 0;
      padding-left: 0;
      transform: none;
    }

    .cta-closing__line--main {
      color: rgba(68, 54, 46, 0.9);
      font-size: clamp(2.16rem, 3.2vw, 2.72rem);
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.42;
    }

    .placeholder {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.54), rgba(239, 230, 220, 0.92)),
        linear-gradient(135deg, var(--placeholder-top), var(--placeholder-bottom));
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        inset 0 -22px 44px rgba(112, 88, 69, 0.05),
        var(--shadow-soft);
    }

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

    .placeholder::before {
      inset: 0;
      background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.3), transparent 22%),
        radial-gradient(circle at 82% 74%, rgba(226, 214, 201, 0.38), transparent 28%);
      mix-blend-mode: screen;
    }

    .placeholder::after {
      inset: 18px;
      border-radius: inherit;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 72%, rgba(74, 61, 50, 0.04)),
        linear-gradient(90deg, rgba(180, 154, 114, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(180, 154, 114, 0.034) 1px, transparent 1px);
      background-size: auto, 26px 26px, 26px 26px;
      opacity: 0.66;
    }

    .placeholder--hero {
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-xl);
    }

    .placeholder--service {
      aspect-ratio: 4 / 3;
      border-radius: var(--radius-lg);
    }

    .page-footer {
      width: var(--shell);
      margin: 0 auto;
      padding: 12px 0 42px;
    }

    #cta + .page-footer {
      padding-top: 0;
    }

    @media (max-width: 900px) {
      .journey-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .service-panel {
        grid-template-columns: minmax(0, 1fr);
      }

      .service-panel__visual {
        min-height: 320px;
        transform: none;
      }

      .service-panel__visual--space {
        min-height: 0;
      }

      .service-panel--reverse .service-panel__visual,
      .service-panel--reverse .service-panel__content {
        order: initial;
      }

      .journey-layout__visual {
        justify-self: stretch;
        width: 100%;
        max-width: min(100%, 540px);
        min-height: 0;
        height: clamp(340px, 72vw, 460px);
        margin-inline: auto;
        aspect-ratio: auto;
        transform: translateY(16px);
      }

      .hero__layout {
        min-height: calc(var(--hero-min-height) - (var(--hero-outer-pad) * 2));
        display: flex;
      }

      .hero__content {
        max-width: 100%;
        padding-left: clamp(12px, 1.8vw, 24px);
        padding-right: clamp(18px, 2.4vw, 28px);
      }

      .hero__visual {
        width: clamp(52%, 58vw, 62%);
      }

      .step-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 1040px) {
      .hero--split {
        --hero-outer-pad: clamp(100px, 11vh, 134px);
        min-height: 0;
      }

      .hero--split::before {
        opacity: 1;
      }

      .hero--split::after {
        background:
          radial-gradient(circle at 58% 44%, rgba(244, 238, 232, 0.16) 0%, rgba(244, 238, 232, 0.05) 22%, rgba(244, 238, 232, 0) 42%),
          linear-gradient(180deg, rgba(247, 241, 236, 0.78) 0%, rgba(247, 241, 236, 0.5) 30%, rgba(235, 225, 217, 0.18) 58%, rgba(235, 225, 217, 0.06) 100%),
          linear-gradient(90deg, rgba(247, 241, 236, 0.76) 0%, rgba(241, 233, 226, 0.58) 22%, rgba(231, 220, 211, 0.36) 38%, rgba(220, 208, 198, 0.16) 56%, rgba(220, 208, 198, 0.05) 74%, transparent 88%);
        opacity: 1;
      }

      .hero__layout {
        min-height: calc(var(--hero-min-height) - (var(--hero-outer-pad) * 2));
        display: flex;
        align-items: center;
        padding-left: 0;
      }

      .hero__layout::before {
        inset: -12% 10% -24% -2%;
        background:
          linear-gradient(90deg, rgba(252, 248, 244, 0.74) 0%, rgba(252, 248, 244, 0.64) 16%, rgba(252, 248, 244, 0.48) 30%, rgba(252, 248, 244, 0.28) 42%, rgba(252, 248, 244, 0.12) 52%, rgba(252, 248, 244, 0.04) 60%, rgba(252, 248, 244, 0) 72%),
          radial-gradient(circle at 18% 34%, rgba(255, 251, 247, 0.42) 0%, rgba(255, 251, 247, 0.14) 34%, rgba(255, 251, 247, 0) 62%),
          radial-gradient(ellipse at 12% 88%, rgba(255, 250, 246, 0.38) 0%, rgba(255, 250, 246, 0.18) 22%, rgba(255, 250, 246, 0.06) 40%, rgba(255, 250, 246, 0) 64%);
        backdrop-filter: blur(7px) saturate(0.94);
        -webkit-backdrop-filter: blur(7px) saturate(0.94);
        -webkit-mask-image: radial-gradient(ellipse 110% 158% at 0% 24%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 22%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
        mask-image: radial-gradient(ellipse 110% 158% at 0% 24%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 22%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.42) 62%, rgba(0, 0, 0, 0.16) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
      }

      .hero__layout::after {
        inset: -14% 26% -26% 24%;
        filter: blur(24px);
        opacity: 0.72;
        -webkit-mask-image: radial-gradient(ellipse 104% 160% at 0% 46%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 24%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.06) 70%, transparent 84%);
        mask-image: radial-gradient(ellipse 104% 160% at 0% 46%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 24%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0.06) 70%, transparent 84%);
      }

      .hero__content {
        --hero-content-shift: 16px;
        gap: 0;
        width: min(100%, 456px);
        max-width: 456px;
        padding-left: clamp(16px, 2.2vw, 30px);
        padding-right: clamp(8px, 1.6vw, 14px);
        padding-block: clamp(118px, 15vw, 150px) clamp(84px, 10vw, 108px);
      }

      .hero__content::before {
        inset: -108px -62px -172px -132px;
        opacity: 0.86;
      }

      .hero__visual {
        inset: 0;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
        display: flex;
        overflow: hidden;
        pointer-events: none;
        transform: translateX(clamp(24px, 2.4vw, 38px));
      }

      .hero__visual::before {
        inset: -8% 38% 12% -10%;
        transform: none;
      }

      .hero__visual::after {
        inset: 0;
        filter: none;
        opacity: 0.34;
      }

      .hero__visual--carousel {
        display: block;
      }

      .hero-carousel {
        width: 100%;
        height: 100%;
      }

      .hero-carousel__image {
        object-position: var(--hero-image-position-mobile, var(--hero-image-position, 66% 46%));
        filter: none;
      }

      .hero-carousel__image--salon {
        object-position: 89% 43%;
        transform: scale(1.035);
        filter: saturate(0.98) brightness(1) contrast(1.01);
      }
    }

    @media (max-width: 768px) {
      :root {
        --shell: min(100% - 24px, 1180px);
        --section-space: clamp(80px, 18vw, 108px);
      }

      .hero--split {
        --hero-min-height: max(660px, 86svh);
        --hero-outer-pad: clamp(92px, 11vh, 118px);
        min-height: var(--hero-min-height);
        background:
          radial-gradient(circle at 40% 10%, rgba(247, 241, 236, 0.5) 0%, rgba(247, 241, 236, 0.16) 24%, transparent 46%),
          radial-gradient(circle at 78% 74%, rgba(187, 165, 151, 0.12) 0%, rgba(187, 165, 151, 0.04) 28%, transparent 58%),
          linear-gradient(160deg, #f5ede7 0%, #e7dace 54%, #d4c1b4 100%);
      }

      .hero--split::before {
        opacity: 1;
      }

      .hero--split::after {
        background:
          radial-gradient(circle at 58% 44%, rgba(244, 238, 232, 0.16) 0%, rgba(244, 238, 232, 0.05) 20%, rgba(244, 238, 232, 0) 40%),
          linear-gradient(180deg, rgba(248, 242, 237, 0.84) 0%, rgba(248, 242, 237, 0.66) 18%, rgba(238, 228, 220, 0.42) 38%, rgba(224, 213, 205, 0.22) 62%, rgba(224, 213, 205, 0.08) 82%, rgba(224, 213, 205, 0.03) 100%),
          linear-gradient(90deg, rgba(248, 242, 237, 0.84) 0%, rgba(244, 236, 229, 0.7) 34%, rgba(233, 223, 214, 0.4) 52%, rgba(220, 208, 198, 0.16) 72%, rgba(220, 208, 198, 0.04) 90%, transparent 100%);
        opacity: 1;
      }

      .topbar {
        background: rgba(246, 238, 230, 0.9);
      }

      h1 {
        font-size: clamp(2.5rem, 12.8vw, 4rem);
      }

      h2 {
        font-size: clamp(1.78rem, 8vw, 2.4rem);
      }

      .hero__lead,
      .section__head p,
      .service-panel__lead,
      .service-panel__body,
      .step-card p {
        font-size: 0.96rem;
      }

      #products .section__head h2 {
        line-height: 1.2;
        letter-spacing: 0.048em;
      }

      #products .section__head p {
        line-height: 1.92;
        letter-spacing: 0.072em;
      }

      .hero__layout {
        min-height: calc(var(--hero-min-height) - (var(--hero-outer-pad) * 2));
        display: flex;
        align-items: center;
        padding-left: 0;
      }

      .hero__layout::before {
        inset: -10% 8% -20% -6%;
        background:
          linear-gradient(90deg, rgba(252, 248, 244, 0.7) 0%, rgba(252, 248, 244, 0.6) 16%, rgba(252, 248, 244, 0.42) 30%, rgba(252, 248, 244, 0.24) 42%, rgba(252, 248, 244, 0.1) 52%, rgba(252, 248, 244, 0.03) 60%, rgba(252, 248, 244, 0) 72%),
          radial-gradient(circle at 20% 30%, rgba(255, 251, 247, 0.32) 0%, rgba(255, 251, 247, 0.1) 30%, rgba(255, 251, 247, 0) 58%),
          radial-gradient(ellipse at 12% 90%, rgba(255, 250, 246, 0.3) 0%, rgba(255, 250, 246, 0.14) 22%, rgba(255, 250, 246, 0.05) 38%, rgba(255, 250, 246, 0) 62%);
        backdrop-filter: blur(6px) saturate(0.94);
        -webkit-backdrop-filter: blur(6px) saturate(0.94);
        -webkit-mask-image: radial-gradient(ellipse 112% 166% at 0% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 22%, rgba(0, 0, 0, 0.86) 38%, rgba(0, 0, 0, 0.64) 50%, rgba(0, 0, 0, 0.38) 62%, rgba(0, 0, 0, 0.14) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
        mask-image: radial-gradient(ellipse 112% 166% at 0% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 22%, rgba(0, 0, 0, 0.86) 38%, rgba(0, 0, 0, 0.64) 50%, rgba(0, 0, 0, 0.38) 62%, rgba(0, 0, 0, 0.14) 74%, rgba(0, 0, 0, 0.03) 82%, transparent 90%);
      }

      .hero__layout::after {
        inset: -12% 18% -22% 20%;
        filter: blur(18px);
        opacity: 0.66;
        -webkit-mask-image: radial-gradient(ellipse 104% 164% at 0% 48%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 24%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.05) 66%, transparent 80%);
        mask-image: radial-gradient(ellipse 104% 164% at 0% 48%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.76) 24%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.05) 66%, transparent 80%);
      }

      .hero__content {
        --hero-content-shift: 14px;
        gap: 0;
        width: min(100%, 380px);
        max-width: 380px;
        padding-left: 8px;
        padding-right: 0;
        padding-block: clamp(128px, 24vw, 160px) clamp(72px, 14vw, 98px);
      }

      .hero__content::before {
        inset: -58px -20px -70px -44px;
        opacity: 0.72;
      }

      .hero__title {
        margin-bottom: 34px;
        font-size: clamp(2.72rem, 11.2vw, 4rem);
        line-height: 1.14;
        letter-spacing: 0.048em;
      }

      .hero__title-line--main {
        font-size: 0.97em;
        white-space: nowrap;
      }

      .hero__title-line + .hero__title-line {
        margin-top: 14px;
      }

      .hero__kicker {
        margin-bottom: 26px;
        font-size: 9.25px;
        letter-spacing: 0.26em;
        opacity: 0.66;
      }

      .hero__lead {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: clamp(0.84rem, 3.4vw, 0.98rem);
        line-height: 1.94;
        letter-spacing: 0.04em;
      }

      .hero__detail {
        max-width: 25ch;
        margin-bottom: 42px;
        font-size: 0.82rem;
        line-height: 1.82;
        letter-spacing: 0.06em;
      }

      .hero__detail::before {
        width: 42px;
        margin-bottom: 14px;
      }

      .hero__actions {
        margin-top: 0;
      }

      .hero__actions .button {
        min-height: 44px;
        padding: 0 24px;
        font-size: 11.75px;
      }

      .hero__visual {
        inset: 0;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0;
        transform: translateX(6px);
      }

      .hero__visual::before {
        inset: -6% 30% 14% -20%;
        filter: none;
        opacity: 0.24;
      }

      .hero__visual::after {
        inset: 0;
        opacity: 0.22;
        filter: none;
      }

      .hero-carousel {
        width: 100%;
        height: 100%;
      }

      .hero-carousel__image {
        object-position: var(--hero-image-position-mobile, 60% 44%);
        filter: none;
      }

      .hero-carousel__image--salon {
        object-position: 88% 42%;
        transform: scale(1.05);
        filter: saturate(1) brightness(1) contrast(1.02);
      }

      .step-card,
      .service-panel {
        padding: 24px 20px;
      }

      .step-card {
        padding: 24px 20px 22px 24px;
      }

      .step-card::before {
        left: 20px;
      }

      .service-panel__visual--space {
        min-height: 0;
      }

      .service-panel__image--perfume14 {
        width: 84%;
        max-width: 84%;
        max-height: 280px;
      }

      .cta-actions {
        width: 100%;
      }

      .cta-actions .button {
        width: 100%;
      }

      .cta-closing {
        gap: 7px;
        margin-bottom: 30px;
      }

      .cta-closing__line--intro {
        font-size: 1rem;
        letter-spacing: 0.1em;
        transform: none;
      }

      .cta-closing__line--main {
        font-size: clamp(1.34rem, 5.9vw, 1.46rem);
        line-height: 1.44;
        letter-spacing: 0.03em;
      }

      #cta {
        padding-top: 72px;
        padding-bottom: 58px;
      }

      #cta .button {
        min-height: 52px;
        padding-inline: 22px;
        font-size: 0.78rem;
        letter-spacing: 0.05em;
      }
    }

    @media (max-width: 380px) {
      .hero__lead {
        font-size: 0.82rem;
        letter-spacing: 0.03em;
      }

      .hero__title {
        font-size: clamp(2.6rem, 11vw, 3.4rem);
        letter-spacing: 0.04em;
      }

      .hero__title-line--main {
        transform: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-carousel__image {
        transition: none;
      }

      .js .hero__content {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
