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

  :root {
    --white: #ffffff;
    --off-white: #fafaf8;
    --ink: #1a1a1a;
    --ink-soft: #333333;
    --gray: #767676;
    --gray-light: #b8b8b8;
    --line: #e5e3df;
    --footer: #3d3631;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    background: var(--white);
    color: var(--ink);
    line-height: 2;
    font-size: 15.5px;
    font-weight: 400;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  ::selection { background: rgba(26,26,26,0.15); }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 0;
    transition: all 0.5s ease;
    background: transparent;
  }
  header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(229,227,223,0.6);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--white);
    transition: color 0.5s ease;
  }
  header.scrolled .logo { color: var(--ink); }

  nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
  }
  nav a {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--white);
    transition: opacity 0.3s ease, color 0.5s ease;
    position: relative;
  }
  header.scrolled nav a { color: var(--ink); }
  nav a:hover { opacity: 0.65; }
  nav a.current::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    width: 16px;
    height: 1px;
    background: currentColor;
    transform: translateX(-50%);
    opacity: 0.7;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: 0.3s;
  }
  header.scrolled .menu-toggle span { background: var(--ink); }

  /* ---------- Page Hero (compact) ---------- */
  .page-hero {
    position: relative;
    min-height: 62vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    z-index: 1;
  }
  .page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 32px 0;
    color: var(--white);
    animation: fadeUp 1.4s ease 0.3s both;
  }
  .page-hero-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5em;
    margin-bottom: 30px;
    opacity: 0.9;
    text-transform: uppercase;
  }
  .page-hero h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(34px, 6vw, 60px);
    letter-spacing: 0.18em;
    margin-bottom: 40px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
  }
  .page-hero-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    margin: 0 auto 36px;
  }
  .page-hero-sub {
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 0.12em;
    opacity: 0.92;
    font-weight: 300;
  }

  /* ---------- Page Intro ---------- */
  .page-intro {
    padding: 120px 0 80px;
    background: var(--white);
    text-align: center;
  }
  .page-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .page-intro-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .page-intro h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.14em;
    margin-bottom: 50px;
    line-height: 1.8;
  }
  .page-intro p {
    font-size: 16px;
    line-height: 2.5;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .page-intro p:last-child { margin-bottom: 0; }

  /* ---------- Service Block ---------- */
  .service-block {
    padding: 130px 0;
    position: relative;
  }
  .service-block:nth-of-type(even) {
    background: var(--off-white);
  }

  .block-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .block-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--gray);
    margin-bottom: 22px;
    letter-spacing: 0.1em;
  }
  .block-title {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(26px, 3.8vw, 34px);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--ink);
    margin-bottom: 26px;
    line-height: 1.5;
  }
  .block-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 16.5px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    line-height: 2;
    max-width: 640px;
    margin: 0 auto;
  }
  .block-divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
    margin: 30px auto 0;
  }

  .block-desc {
    max-width: 720px;
    margin: 0 auto 90px;
    text-align: center;
  }
  .block-desc p {
    font-size: 15.5px;
    line-height: 2.4;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .block-desc p:last-child { margin-bottom: 0; }
  .block-desc .quote {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    color: var(--ink);
    line-height: 2.3;
    margin-bottom: 36px;
    letter-spacing: 0.06em;
  }

  /* ---------- Lists Grid ---------- */
  .block-lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    max-width: 1000px;
    margin: 0 auto 80px;
  }
  .block-lists.two-col {
    grid-template-columns: 1fr 1fr;
    max-width: 720px;
  }

  .list-col {
    display: flex;
    flex-direction: column;
  }
  .list-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .list-title {
    font-family: "Shippori Mincho", serif;
    font-size: 17.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.14em;
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .list-col ul {
    list-style: none;
  }
  .list-col li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--ink-soft);
  }
  .list-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 12px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
  }

  /* ---------- Sub Block (for Mama section) ---------- */
  .sub-block {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 70px 50px;
    margin-bottom: 28px;
  }
  .service-block:nth-of-type(even) .sub-block {
    background: var(--off-white);
  }
  .sub-block-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .sub-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .sub-title {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .sub-lead {
    font-size: 14.5px;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    line-height: 1.9;
  }

  /* ---------- Block CTA ---------- */
  .block-cta {
    text-align: center;
    margin-top: 20px;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
  }
  .btn:hover {
    background: transparent;
    color: var(--ink);
  }
  .btn .arrow { transition: transform 0.4s ease; }
  .btn:hover .arrow { transform: translateX(6px); }

  .btn-line {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-line:hover {
    background: var(--ink);
    color: var(--white);
  }

  /* ---------- Closing ---------- */
  .closing {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .closing::before {
    content: 'RE:START';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(120px, 22vw, 280px);
    color: rgba(255,255,255,0.03);
    letter-spacing: 0.05em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .closing-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .closing-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .closing h2 {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.14em;
    color: var(--white);
    line-height: 1.8;
  }
  .closing p {
    font-size: 15.5px;
    line-height: 2.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 26px;
    font-weight: 300;
  }
  .closing-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  .closing .btn {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }
  .closing .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
  }
  .closing .btn.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
  }
  .closing .btn.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
  }

  .closing-email {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }
  .closing-email-label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .closing-email-link {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .closing-email-link:hover {
    border-color: var(--white);
    opacity: 0.85;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--footer);
    color: rgba(255,255,255,0.85);
    padding: 90px 0 40px;
  }
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }
  .footer-brand .logo {
    color: var(--white) !important;
    font-size: 26px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .footer-tag-line {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
  }
  .footer-brand p {
    font-size: 13.5px;
    line-height: 2.1;
    color: rgba(255,255,255,0.6);
  }
  .footer-col h4 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 26px;
    text-transform: uppercase;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    letter-spacing: 0.08em;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
  }

  /* ---------- Animations ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .header-inner { padding: 0 24px; }
    nav { display: none; }
    nav.open {
      display: block;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #1a1a1a;
      padding: 100px 30px 30px;
      z-index: 150;
    }
    nav.open ul {
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
    nav.open a { color: var(--white) !important; font-size: 16px; }
    .menu-toggle { display: flex; z-index: 200; position: relative; }
    .menu-toggle.open span { background: var(--white) !important; }
    .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    body.menu-open header,
    body.menu-open header.scrolled {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: transparent;
    }
    body.menu-open header.scrolled .logo { color: var(--white); }
    body.menu-open { overflow: hidden; }

    .page-hero { min-height: 55vh; }
    .page-hero-inner { padding: 80px 24px 0; }
    .page-hero h1 {
      font-size: clamp(26px, 7vw, 38px);
      letter-spacing: 0.1em;
      line-height: 1.6;
    }
    .page-hero-tag { font-size: 12px; letter-spacing: 0.4em; margin-bottom: 22px; }
    .page-hero-sub { font-size: 13.5px; line-height: 2.0; }

    .page-intro { padding: 80px 0 60px; }

    .service-block { padding: 80px 0; }
    .block-header { margin-bottom: 50px; }
    .block-desc { margin-bottom: 60px; }
    .block-lists, .block-lists.two-col {
      grid-template-columns: 1fr;
      gap: 50px;
      margin-bottom: 60px;
    }
    .sub-block { padding: 50px 28px; }

    .block-cta {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: stretch;
    }
    .block-cta .btn { width: 100%; justify-content: center; }

    .closing { padding: 90px 0; }
    .closing-cta { flex-direction: column; gap: 14px; }
    .closing-cta .btn { width: 100%; justify-content: center; }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
    .footer-inner { padding: 0 24px; }
  }

  @media (max-width: 480px) {
    body { font-size: 14.5px; }
    .btn { padding: 16px 28px; font-size: 13px; }
    .block-inner { padding: 0 24px; }
  }

  /* ---------- For-whom / outcomes list ---------- */
  .target-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
  }
  .target-list li {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 20px 24px;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--ink-soft);
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
  }
  .target-list li::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 32px;
    width: 10px;
    height: 1px;
    background: var(--ink);
    opacity: 0.5;
  }
  .target-list li:hover {
    border-color: var(--ink);
  }

  .outcomes-list {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    gap: 14px;
  }
  .outcomes-list li {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px 28px 22px 50px;
    font-size: 15px;
    line-height: 1.95;
    color: var(--ink-soft);
    position: relative;
  }
  .outcomes-list li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 34px;
    width: 14px;
    height: 1px;
    background: var(--ink);
    opacity: 0.6;
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px 36px;
    transition: all 0.3s ease;
  }
  .faq-item:hover {
    border-color: var(--ink);
  }
  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
  }
  .faq-q-mark {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gray);
    line-height: 1.3;
    flex-shrink: 0;
    font-weight: 500;
  }
  .faq-q-text {
    font-family: "Shippori Mincho", serif;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
  .faq-a {
    padding-left: 36px;
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
  }

  /* ---------- Value card (大切にしていること) ---------- */
  .value-blocks {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
  }
  .value-block {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 40px 44px;
  }
  .value-block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .value-block h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: 0.1em;
    line-height: 1.7;
  }
  .value-block p {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .value-block p:last-child { margin-bottom: 0; }

  /* ---------- "見つめること" sub-blocks variant ---------- */
  .look-blocks {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
  }
  .look-block {
    border-left: 1px solid var(--line);
    padding: 8px 0 8px 36px;
  }
  .look-block-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .look-block h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: 0.1em;
    line-height: 1.65;
  }
  .look-block p {
    font-size: 14.5px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .look-block p:last-child { margin-bottom: 0; }

  /* ---------- Steps as flow with line ---------- */
  .flow-list {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }
  .flow-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: var(--line);
  }
  .flow-step {
    display: flex;
    gap: 28px;
    margin-bottom: 24px;
    align-items: flex-start;
    position: relative;
  }
  .flow-step:last-child { margin-bottom: 0; }
  .flow-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
  }
  .flow-num .flow-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
  }
  .flow-num .flow-number {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--ink);
    line-height: 1;
  }
  .flow-content {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px 28px;
    margin-top: 4px;
  }
  .flow-content h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 16.5px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
  }
  .flow-content p {
    font-size: 14.5px;
    line-height: 2;
    color: var(--ink-soft);
  }

  /* ---------- Section style override for service detail pages ---------- */
  .service-block.alt { background: var(--off-white); }

  /* ---------- Big intro narrative ---------- */
  .narrative {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
  }
  .narrative p {
    font-size: 15.5px;
    line-height: 2.45;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .narrative p:last-child { margin-bottom: 0; }
  .narrative .emphasis {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    line-height: 2.2;
    margin: 32px 0;
    letter-spacing: 0.06em;
  }

  /* ---------- Responsive additions ---------- */
  @media (max-width: 900px) {
    .target-list { grid-template-columns: 1fr; }
    .value-block { padding: 32px 28px; }
    .look-block { padding: 6px 0 6px 24px; }
    .flow-list::before { left: 25px; }
    .flow-step { gap: 18px; }
    .flow-num { width: 50px; height: 50px; }
    .flow-num .flow-number { font-size: 16px; }
    .flow-content { padding: 22px 22px; }
    .faq-item { padding: 26px 24px; }
    .faq-a { padding-left: 0; }
  }


  /* ---------- Form CTA (consult form invitation) ---------- */
  .form-cta {
    background: var(--off-white);
    padding: 110px 0;
    text-align: center;
    position: relative;
  }
  .form-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .form-cta-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .form-cta-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.14em;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 0;
  }
  .form-cta-divider {
    width: 30px;
    height: 1px;
    background: var(--ink);
    margin: 26px auto 30px;
    opacity: 0.5;
  }
  .form-cta-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--ink-soft);
    margin-bottom: 44px;
  }
  .form-cta .btn {
    background: var(--ink);
    color: var(--white);
    border: 1px solid var(--ink);
  }
  .form-cta .btn:hover {
    background: transparent;
    color: var(--ink);
  }

  @media (max-width: 900px) {
    .form-cta { padding: 70px 0; }
    .form-cta-inner { padding: 0 24px; }
    .form-cta-title { font-size: 20px; }
    .form-cta-text { font-size: 14px; line-height: 2.0; margin-bottom: 36px; }
    .form-cta .btn { width: 100%; justify-content: center; }
  }

  /* ---------- Price Detail Block (per-service) ---------- */
  .price-detail {
    max-width: 720px;
    margin: 0 auto;
  }
  .price-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 22px 28px;
    border: 1px solid var(--line);
    background: var(--white);
    margin-bottom: 12px;
    gap: 16px;
  }
  .service-block.alt .price-detail-row {
    background: var(--off-white);
  }
  .price-detail-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
  }
  .price-detail-label small {
    display: block;
    font-style: normal;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
    font-family: "Shippori Mincho", serif;
  }
  .price-detail-amount {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink);
    white-space: nowrap;
  }
  .price-detail-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 26px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  @media (max-width: 900px) {
    .price-detail-row { padding: 18px 22px; }
    .price-detail-amount { font-size: 18px; }
  }
