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

  :root {
    --cream: #fefcf6;
    --cream-deep: #f8f3e8;
    --cream-warm: #faf5e9;
    --text-dark: #2d2622;
    --text-soft: #5a4a3f;
    --text-muted: #8a7d72;
    --sky: #a8c4d0;
    --sky-light: #dfeaef;
    --sky-deep: #7fa4b3;
    --butter: #f0d990;
    --butter-light: #faeec6;
    --butter-deep: #d4b85a;
    --line: #ebe5d8;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    background: var(--cream);
    color: var(--text-dark);
    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(168, 196, 208, 0.4); }

  /* ---------- Common ---------- */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section {
    padding: 110px 0;
    position: relative;
  }

  .eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 22px;
    text-transform: uppercase;
    display: inline-block;
  }

  .section-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(24px, 3.6vw, 32px);
    line-height: 1.8;
    letter-spacing: 0.12em;
    color: var(--text-dark);
  }

  .divider-line {
    width: 30px;
    height: 1px;
    background: var(--sky-deep);
    margin: 28px auto;
    opacity: 0.6;
  }

  /* ---------- Header ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: all 0.5s ease;
    background: transparent;
  }
  header.scrolled {
    background: rgba(254, 252, 246, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(235, 229, 216, 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: 21px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--text-dark);
  }
  .header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .header-nav a:not(.header-cta) {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    transition: opacity 0.3s ease;
  }
  .header-nav a:hover { opacity: 0.65; }
  .header-cta {
    background: var(--sky-deep);
    color: white !important;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 12.5px;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
  }
  .header-cta:hover {
    background: var(--text-dark);
    opacity: 1 !important;
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse at top right, rgba(168, 196, 208, 0.2) 0%, transparent 50%),
      radial-gradient(ellipse at bottom left, rgba(240, 217, 144, 0.2) 0%, transparent 55%),
      linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: var(--sky-light);
    border-radius: 50%;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -180px;
    width: 580px;
    height: 580px;
    background: var(--butter-light);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
  }
  .hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .hero-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5em;
    color: var(--sky-deep);
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: fadeUp 1.4s ease 0.2s both;
  }
  .hero-eyebrow::before { content: '— '; }
  .hero h1 {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(32px, 5.5vw, 54px);
    line-height: 1.55;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 36px;
    animation: fadeUp 1.4s ease 0.4s both;
  }
  .hero h1 .accent-text {
    display: inline-block;
    position: relative;
  }
  .hero h1 .accent-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--butter-light);
    z-index: -1;
    border-radius: 4px;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 2.4;
    color: var(--text-soft);
    margin-bottom: 50px;
    animation: fadeUp 1.4s ease 0.6s both;
  }
  .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease 0.8s both;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 36px;
    font-family: "Shippori Mincho", serif;
    font-size: 13.5px;
    letter-spacing: 0.18em;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--text-dark);
    background: var(--text-dark);
    color: var(--cream);
    border-radius: 32px;
  }
  .btn:hover {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
  }
  .btn .arrow { transition: transform 0.4s ease; }
  .btn:hover .arrow { transform: translateX(6px); }

  .btn-sky {
    background: var(--sky-deep);
    border-color: var(--sky-deep);
  }
  .btn-sky:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
  }
  .btn-butter {
    background: var(--butter-deep);
    border-color: var(--butter-deep);
    color: var(--text-dark);
  }
  .btn-butter:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--cream);
  }
  .btn-line {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
  }
  .btn-line:hover {
    background: var(--text-dark);
    color: var(--cream);
  }

  /* ---------- Empathy ---------- */
  .empathy {
    background: var(--cream);
    text-align: center;
  }
  .empathy-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .empathy p {
    font-size: 16px;
    line-height: 2.5;
    color: var(--text-soft);
    margin-bottom: 26px;
  }
  .empathy-quotes {
    background: white;
    border-radius: 16px;
    padding: 42px 36px;
    margin: 50px 0;
    border-left: 3px solid var(--sky);
    text-align: left;
    box-shadow: 0 20px 50px -30px rgba(125, 100, 80, 0.1);
  }
  .empathy-quotes p {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    color: var(--text-soft);
    margin-bottom: 14px;
    line-height: 2;
    padding-left: 22px;
    position: relative;
  }
  .empathy-quotes p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95em;
    width: 12px;
    height: 1px;
    background: var(--sky-deep);
  }
  .empathy-quotes p:last-child { margin-bottom: 0; }

  /* ---------- Message Block ---------- */
  .message-block {
    background: var(--sky-light);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .message-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    background: var(--butter-light);
    border-radius: 50%;
    opacity: 0.5;
  }
  .message-block::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
  }
  .message-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .message-block h2 {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(22px, 3.4vw, 30px);
    line-height: 1.9;
    margin-bottom: 50px;
    color: var(--text-dark);
    letter-spacing: 0.1em;
  }
  .message-block p {
    font-size: 16px;
    line-height: 2.5;
    color: var(--text-soft);
    margin-bottom: 26px;
  }

  /* ---------- Worries ---------- */
  .worries {
    background: var(--cream);
    text-align: center;
  }
  .worries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 60px auto 50px;
    text-align: left;
  }
  .worry-item {
    background: white;
    padding: 22px 26px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }
  .worry-item:hover {
    border-color: var(--sky);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -15px rgba(125, 100, 80, 0.12);
  }
  .worry-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sky-deep);
    font-size: 11px;
    font-weight: bold;
    margin-top: 4px;
  }
  .worry-item p {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-soft);
  }
  .worries-footer {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    color: var(--text-dark);
    margin-top: 50px;
    font-weight: 500;
    line-height: 2.2;
    letter-spacing: 0.08em;
  }

  /* ---------- Mama Services ---------- */
  .mama-services {
    background: var(--cream-deep);
    position: relative;
  }
  .mama-services-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .mama-services-head .lead {
    font-size: 15.5px;
    color: var(--text-soft);
    max-width: 560px;
    margin: 30px auto 0;
    line-height: 2.3;
  }
  .mama-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .mama-service-card {
    background: white;
    padding: 54px 42px 44px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .mama-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px rgba(125, 100, 80, 0.18);
  }
  .mama-service-card.sky::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--sky);
    border-radius: 16px 16px 0 0;
  }
  .mama-service-card.butter::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--butter);
    border-radius: 16px 16px 0 0;
  }
  .mama-service-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .mama-service-title {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .mama-service-lead {
    font-size: 14.5px;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    line-height: 1.95;
    font-weight: 500;
  }
  .mama-service-desc {
    margin-bottom: 30px;
  }
  .mama-service-desc p {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--text-soft);
    margin-bottom: 14px;
  }
  .ms-quote {
    background: var(--cream-warm);
    padding: 20px 24px;
    border-radius: 10px;
    font-style: italic;
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 18px;
    color: var(--text-soft);
  }

  .mama-list-block {
    margin-bottom: 26px;
  }
  .mama-list-title {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.1em;
  }
  .mama-service-card ul {
    list-style: none;
  }
  .mama-service-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.95;
    color: var(--text-soft);
  }
  .mama-service-card.sky li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 10px;
    height: 1px;
    background: var(--sky-deep);
  }
  .mama-service-card.butter li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 10px;
    height: 1px;
    background: var(--butter-deep);
  }
  .mama-service-cta {
    margin-top: auto;
    text-align: center;
    padding-top: 26px;
  }

  /* ---------- Values ---------- */
  .values {
    background: var(--cream);
    text-align: center;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 70px auto 0;
  }
  .value-card {
    padding: 50px 32px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.4s ease;
  }
  .value-card:hover { transform: translateY(-4px); }
  .value-card:nth-child(1) { background: var(--sky-light); }
  .value-card:nth-child(2) { background: var(--cream-deep); }
  .value-card:nth-child(3) { background: var(--butter-light); }
  .value-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 36px;
    color: var(--text-dark);
    opacity: 0.4;
    margin-bottom: 14px;
    line-height: 1;
  }
  .value-title {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 22px;
    line-height: 1.7;
  }
  .value-desc {
    font-size: 14.5px;
    line-height: 2.1;
    color: var(--text-soft);
  }

  /* ---------- Steps ---------- */
  .steps {
    background: var(--cream-deep);
    text-align: center;
  }
  .steps-list {
    max-width: 720px;
    margin: 70px auto 0;
    text-align: left;
    position: relative;
  }
  .steps-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: var(--sky);
    opacity: 0.5;
  }
  .step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
    position: relative;
    align-items: flex-start;
  }
  .step-item:last-child { margin-bottom: 0; }
  .step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--sky);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
  }
  .step-num .step-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
  }
  .step-num .step-number {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--sky-deep);
    line-height: 1;
  }
  .step-content {
    flex: 1;
    background: white;
    padding: 26px 30px;
    border-radius: 12px;
    margin-top: 4px;
  }
  .step-title {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.08em;
  }
  .step-desc {
    font-size: 14.5px;
    line-height: 2;
    color: var(--text-soft);
  }

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

  /* ---------- Closing ---------- */
  .closing-mama {
    background: var(--text-dark);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .closing-mama::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: var(--sky-deep);
    border-radius: 50%;
    opacity: 0.12;
  }
  .closing-mama::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 420px;
    height: 420px;
    background: var(--butter);
    border-radius: 50%;
    opacity: 0.08;
  }
  .closing-inner-mama {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .closing-mama .eyebrow {
    color: var(--butter-light);
    opacity: 0.7;
  }
  .closing-mama h2 {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 3.4vw, 30px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.9;
    margin-bottom: 50px;
    color: var(--cream);
  }
  .closing-mama p {
    font-size: 16px;
    line-height: 2.5;
    color: rgba(254, 252, 246, 0.85);
    margin-bottom: 26px;
    font-weight: 300;
  }

  /* ---------- Final CTA ---------- */
  .final-cta {
    background: var(--cream-deep);
    text-align: center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--sky-light);
    border-radius: 50%;
    opacity: 0.6;
  }
  .final-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: var(--butter-light);
    border-radius: 50%;
    opacity: 0.55;
  }
  .final-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }
  .final-cta h2 {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.9;
    margin-bottom: 40px;
    color: var(--text-dark);
  }
  .final-cta p {
    font-size: 15.5px;
    line-height: 2.4;
    color: var(--text-soft);
    margin-bottom: 28px;
  }
  .final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .final-email {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .final-email-label {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .final-email-link {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    border-bottom: 1px solid var(--sky-deep);
    padding-bottom: 4px;
    transition: all 0.3s ease;
  }
  .final-email-link:hover {
    color: var(--sky-deep);
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--text-dark);
    color: rgba(254, 252, 246, 0.7);
    padding: 70px 0 40px;
    text-align: center;
  }
  .footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
  }
  footer .logo {
    color: var(--cream);
    font-size: 24px;
    margin-bottom: 14px;
    display: inline-block;
  }
  .footer-tag-mama {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: rgba(254, 252, 246, 0.5);
    margin-bottom: 40px;
  }
  .footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .footer-links a {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(254, 252, 246, 0.7);
    transition: color 0.3s ease;
  }
  .footer-links a:hover { color: var(--cream); }
  .footer-copy {
    padding-top: 30px;
    border-top: 1px solid rgba(254, 252, 246, 0.1);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(254, 252, 246, 0.4);
  }

  /* ---------- Animations ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px) {
    .section { padding: 80px 0; }
    .header-inner { padding: 0 24px; }
    .header-nav { gap: 14px; }
    .header-nav a:not(.header-cta) { display: none; }

    .hero { min-height: auto; padding: 130px 0 80px; }
    .hero-inner { padding: 0 24px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    .empathy-quotes { padding: 30px 24px; }

    .worries-grid { grid-template-columns: 1fr; }
    .worry-item { padding: 18px 22px; }

    .mama-services-grid { grid-template-columns: 1fr; }
    .mama-service-card { padding: 42px 28px; }

    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card { padding: 40px 28px; }

    .steps-list::before { left: 25px; }
    .step-item { gap: 16px; }
    .step-num { width: 50px; height: 50px; }
    .step-num .step-number { font-size: 16px; }
    .step-num .step-label { font-size: 8px; }
    .step-content { padding: 22px 22px; }

    .faq-item { padding: 26px 24px; }
    .faq-a { padding-left: 0; }

    .final-cta-buttons { flex-direction: column; gap: 14px; }
    .final-cta-buttons .btn { width: 100%; justify-content: center; }

    .footer-links { gap: 20px; flex-wrap: wrap; }
    .footer-inner { padding: 0 24px; }
  }

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

  /* ---------- Form CTA (consult form invitation) ---------- */
  .form-cta {
    background: var(--cream-deep);
    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(--sky-deep);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .form-cta-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.12em;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
  }
  .form-cta-divider {
    width: 30px;
    height: 1px;
    background: var(--sky-deep);
    margin: 26px auto 30px;
    opacity: 0.6;
  }
  .form-cta-text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text-soft);
    margin-bottom: 44px;
  }
  .form-cta .btn {
    background: var(--sky-deep);
    color: var(--white);
    border: 1px solid var(--sky-deep);
  }
  .form-cta .btn:hover {
    background: transparent;
    color: var(--sky-deep);
  }

  @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; }
  }

  /* ---------- Mama Price Section (cream themed) ---------- */
  .mama-price {
    background: var(--cream);
    padding: 100px 0;
    position: relative;
  }
  .mama-price-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
  }
  .mama-price-eyebrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--sky-deep);
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .mama-price-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: clamp(22px, 2.6vw, 26px);
    letter-spacing: 0.12em;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  .mama-price-lead {
    font-family: "Shippori Mincho", serif;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    margin-bottom: 44px;
  }
  .mama-price-list {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
  }
  .mama-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 26px;
    background: var(--white);
    border: 1px solid var(--cream-deep);
    border-radius: 4px;
    gap: 16px;
  }
  .mama-price-label {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--sky-deep);
    text-transform: uppercase;
  }
  .mama-price-amount {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    white-space: nowrap;
  }
  .mama-price-note {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
  }
  .mama-price-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  @media (max-width: 900px) {
    .mama-price { padding: 70px 0; }
    .mama-price-inner { padding: 0 24px; }
    .mama-price-title { font-size: 20px; }
    .mama-price-row { padding: 16px 20px; }
    .mama-price-amount { font-size: 17px; }
    .mama-price-cta { flex-direction: column; }
    .mama-price-cta .btn { width: 100%; justify-content: center; }
  }
