

  :root {
    --rose:     #c8786e;
    --rose-lt:  #e8b4af;
    --gold:     #c9a96e;
    --gold-lt:  #e8d5b0;
    --cream:    #faf6f0;
    --ivory:    #f5ede3;
    --blush:    #f9f0ea;
    --deep:     #3d2c28;
    --muted:    #7a6056;
    --white:    #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Serif JP', 'Shippori Mincho', serif;
    background: var(--cream);
    color: var(--deep);
    line-height: 1.85;
    overflow-x: hidden;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
  }
  @keyframes petalSpin {
    from { transform: rotate(0deg); opacity: .18; }
    to   { transform: rotate(360deg); opacity: .18; }
  }

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

  .section { padding: 100px 24px; }
  .container { max-width: 880px; margin: 0 auto; }
  .container-wide { max-width: 1080px; margin: 0 auto; }

  .gold-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 20px;
  }
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--gold);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
  }
  .section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: var(--deep);
    margin-bottom: 12px;
  }
  .section-sub {
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 60px;
    line-height: 1.9;
  }

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: rgba(250,246,240,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,169,110,.2);
    animation: fadeIn .8s ease;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--rose);
    letter-spacing: .06em;
  }
  .nav-cta {
    background: var(--rose);
    color: var(--white);
    font-size: 12px;
    letter-spacing: .15em;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    font-family: 'Noto Serif JP', serif;
  }
  .nav-cta:hover { background: #b56860; transform: translateY(-1px); }

  .hero {
    height: 100vh;
    min-height: 700px;
    max-height: 1080px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch; 
  }

  .hero-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%; 
    display: block;
    filter: brightness(.68) saturate(1.1);
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(20,10,8,.78) 0%, rgba(20,10,8,.50) 45%, rgba(20,10,8,.10) 100%),
      linear-gradient(to top, rgba(20,10,8,.35) 0%, transparent 40%);
    z-index: 1;
  }

  .hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;    
    padding: 0 56px 0 72px;     
    padding-top: 72px;          
    padding-bottom: 120px;
    max-width: 600px;
    width: 55%;
    animation: fadeUp 1.1s ease .1s both;
  }

  .hero-right { display: none; }

  .hero-photo-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(20,12,10,.55);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 20px 48px;
    font-family: 'Noto Serif JP', serif;
    font-size: 12px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease .8s both;
  }
  .hero-photo-badge strong {
    font-size: 20px;
    color: var(--gold-lt);
    font-family: 'Shippori Mincho', serif;
    white-space: nowrap;
  }
  .hero-photo-badge-divider {
    width: 1px; height: 36px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
  }
  .hero-photo-badge-text {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.75);
    letter-spacing: .05em;
  }

  @media (max-width: 680px) {
    .hero-left {
      width: 100%;
      padding: 80px 28px 130px;
    }
    .hero-photo-badge { padding: 16px 24px; gap: 16px; }
    .hero-photo-badge strong { font-size: 16px; }
    .hero-photo-badge-divider { display: none; }
    .hero-photo-badge-text { gap: 12px; font-size: 11px; }
  }

  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: .35em;
    color: var(--gold-lt);
    margin-bottom: 14px;
    display: block;
  }
  .hero-name {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255,255,255,.95);
    margin-bottom: 12px;
  }
  .hero-name em {
    font-style: normal;
    background: linear-gradient(120deg, var(--rose), var(--gold) 60%, var(--rose));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
  }
  .hero-copy {
    font-size: clamp(12px, 1.4vw, 15px);
    color: rgba(255,255,255,.80);
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .hero-stat-item { text-align: left; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--rose-lt);
    line-height: 1;
  }
  .hero-stat-unit { font-size: 13px; color: var(--rose-lt); }
  .hero-stat-label { font-size: 10px; color: rgba(255,255,255,.60); letter-spacing: .1em; margin-top: 3px; }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rose), #b86860);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: .10em;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    box-shadow: 0 8px 28px rgba(200,120,110,.40);
    transition: transform .25s, box-shadow .25s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,120,110,.50); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.45);
    color: rgba(255,255,255,.88);
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: .10em;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    transition: background .25s, transform .25s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
  .hero-scroll {
    display: none;
    margin-top: 40px;
    animation: float 3s ease-in-out infinite;
    opacity: .45;
    font-size: 10px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.7);
  }
  .hero-scroll::before {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(201,169,110,.8), transparent);
    margin: 0 auto 6px;
  }

  .trouble { background: var(--ivory); }
  .trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 0;
  }
  .trouble-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(201,169,110,.2);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 2px 16px rgba(61,44,40,.05);
    transition: transform .3s, box-shadow .3s;
  }
  .trouble-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(200,120,110,.12); }
  .trouble-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
  .trouble-text { font-size: 14px; color: var(--muted); line-height: 1.9; }

  .concept {
    background:
      radial-gradient(ellipse 80% 60% at 10% 50%, rgba(200,120,110,.07) 0%, transparent 60%),
      radial-gradient(ellipse 70% 70% at 90% 50%, rgba(201,169,110,.07) 0%, transparent 60%),
      var(--cream);
  }
  .concept-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 680px) {
    .concept-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  .concept-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 360px;
    margin: 0 auto;
  }
  .concept-circle {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(200,120,110,.25), rgba(201,169,110,.15) 60%, transparent 80%);
    border: 1px solid rgba(201,169,110,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    color: var(--rose);
    letter-spacing: .08em;
  }
  .concept-circle::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px dashed rgba(201,169,110,.25);
  }
  .concept-text-side h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--deep);
  }
  .concept-text-side h2 em {
    font-style: normal;
    color: var(--rose);
  }
  .concept-text-side p {
    font-size: 14px;
    color: var(--muted);
    line-height: 2.1;
    margin-bottom: 20px;
  }
  .concept-quote {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 28px 0;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    line-height: 2;
  }

  .profile {
    background: linear-gradient(160deg, #3d2c28 0%, #5a3d37 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .profile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(201,169,110,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .profile-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 680px) {
    .profile-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  }
  .profile-photo-wrap {
    position: relative;
  }
  .profile-photo-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid rgba(201,169,110,.45);
    overflow: hidden;
    margin: 0 auto;
    box-shadow:
      0 0 0 8px rgba(201,169,110,.08),
      0 0 0 16px rgba(201,169,110,.04),
      0 16px 48px rgba(61,44,40,.18);
    position: relative;
    flex-shrink: 0;
  }
  .profile-photo-frame img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .profile-photo-placeholder {
    font-size: 100px;
    opacity: .3;
  }

  .profile-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--rose);
    color: var(--white);
    font-size: 11px;
    letter-spacing: .05em;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.6;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    box-shadow: 0 4px 20px rgba(200,120,110,.4);
  }
  @media (max-width: 680px) {
    .profile-badge { right: 50%; transform: translateX(50%); }
    .profile-photo-wrap { display: flex; justify-content: center; }
  }
  .profile-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--gold-lt);
    margin-bottom: 16px;
    display: block;
  }
  .profile-name {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .profile-title {
    font-size: 13px;
    color: var(--gold-lt);
    margin-bottom: 32px;
    letter-spacing: .05em;
  }
  .profile-story p {
    font-size: 14px;
    color: rgba(250,246,240,.8);
    line-height: 2.1;
    margin-bottom: 16px;
  }
  .profile-story p strong {
    color: var(--gold-lt);
  }
  .profile-quals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }
  .qual-tag {
    border: 1px solid rgba(201,169,110,.4);
    color: var(--gold-lt);
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: .06em;
  }

  .services { background: var(--blush); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,.18);
    box-shadow: 0 4px 24px rgba(61,44,40,.07);
    transition: transform .35s, box-shadow .35s;
    cursor: default;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(200,120,110,.15); }
  .service-card-header {
    padding: 36px 28px 24px;
    background: linear-gradient(135deg, var(--ivory), var(--blush));
    text-align: center;
  }
  .service-card-icon { font-size: 44px; margin-bottom: 12px; display: block; }
  .service-card-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--deep);
    margin-bottom: 6px;
  }
  .service-card-sub {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: .15em;
    font-family: 'Cormorant Garamond', serif;
  }
  .service-card-body {
    padding: 24px 28px 28px;
  }
  .service-card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 2;
    margin-bottom: 20px;
  }
  .service-card-points {
    list-style: none;
  }
  .service-card-points li {
    font-size: 12px;
    color: var(--muted);
    padding: 5px 0 5px 18px;
    position: relative;
  }
  .service-card-points li::before {
    content: '♡';
    position: absolute;
    left: 0;
    color: var(--rose-lt);
    font-size: 10px;
    top: 7px;
  }

  .service-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--ivory), var(--blush));
    border-radius: 10px;
    border: 1px solid rgba(201,169,110,.2);
  }
  .service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--rose);
    line-height: 1;
  }
  .service-price-inquiry {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
  }
  .service-price-note {
    font-size: 11px;
    color: var(--muted);
    margin-left: auto;
    letter-spacing: .05em;
  }
  .service-detail-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 10px;
    border: 1px solid var(--rose-lt);
    border-radius: 8px;
    font-size: 12px;
    color: var(--rose);
    text-decoration: none;
    letter-spacing: .1em;
    transition: background .2s;
  }
  .service-detail-link:hover { background: rgba(200,120,110,.07); }

  .voice { background: var(--cream); }
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .voice-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(201,169,110,.15);
    box-shadow: 0 2px 16px rgba(61,44,40,.05);
    position: relative;
  }
  .voice-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    color: var(--rose-lt);
    opacity: .4;
    line-height: 1;
    margin-bottom: -16px;
    display: block;
  }
  .voice-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 2.1;
    margin-bottom: 20px;
  }
  .voice-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(201,169,110,.15);
    padding-top: 16px;
  }
  .voice-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .voice-author-name { font-size: 12px; color: var(--deep); font-weight: 500; }
  .voice-author-desc { font-size: 11px; color: var(--gold); }
  .voice-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 12px;
    letter-spacing: .1em;
  }

  .numbers {
    background: linear-gradient(160deg, var(--rose) 0%, #c07060 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
  }
  .numbers-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: .4em;
    opacity: .75;
    margin-bottom: 48px;
  }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 880px;
    margin: 0 auto;
  }
  .number-item {}
  .number-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
  }
  .number-unit { font-size: 20px; opacity: .85; }
  .number-label { font-size: 13px; opacity: .8; margin-top: 10px; letter-spacing: .06em; }

  .faq { background: var(--ivory); }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid rgba(201,169,110,.2);
    padding: 28px 0;
  }
  .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    font-size: 15px;
    color: var(--deep);
    font-weight: 500;
    line-height: 1.7;
  }
  .faq-q-mark {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
  }
  .faq-a {
    margin-top: 16px;
    padding-left: 44px;
    font-size: 14px;
    color: var(--muted);
    line-height: 2;
  }
  .faq-a-mark {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    margin-right: 8px;
  }

  .cta-section {
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,120,110,.1) 0%, transparent 70%),
      var(--cream);
    padding: 120px 24px;
    text-align: center;
  }
  .cta-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: .2em;
    margin-bottom: 32px;
    display: block;
  }
  .cta-heading {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.6;
    color: var(--deep);
    margin-bottom: 24px;
  }
  .cta-heading em {
    font-style: normal;
    color: var(--rose);
  }
  .cta-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 2.1;
    max-width: 520px;
    margin: 0 auto 48px;
  }
  .cta-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #06C755;
    color: var(--white);
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1em;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    box-shadow: 0 8px 32px rgba(6,199,85,.3);
    transition: transform .25s, box-shadow .25s;
    margin-bottom: 16px;
  }
  .cta-line-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(6,199,85,.4); }
  .cta-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 20px;
    letter-spacing: .06em;
  }
  .cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 300px;
    margin: 32px auto;
  }
  .cta-divider::before, .cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201,169,110,.3);
  }
  .cta-divider span { font-size: 12px; color: var(--gold); letter-spacing: .2em; }

  .location-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }
  .loc-tag {
    border: 1px solid rgba(201,169,110,.4);
    color: var(--muted);
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 20px;
    letter-spacing: .06em;
  }

  footer {
    background: var(--deep);
    color: rgba(250,246,240,.6);
    text-align: center;
    padding: 48px 24px;
    font-size: 12px;
    letter-spacing: .08em;
  }
  footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--gold-lt);
    margin-bottom: 12px;
    display: block;
  }
  footer p { margin-top: 12px; opacity: .5; }

  .float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    background: #06C755;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 13px;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    box-shadow: 0 6px 28px rgba(6,199,85,.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    animation: fadeUp .8s ease 1.2s both;
  }
  .float-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(6,199,85,.5); }

  .ornament-divider {
    text-align: center;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: .4em;
    opacity: .5;
    padding: 20px 0;
  }

  @media (max-width: 640px) {
    .section { padding: 72px 20px; }
    .hero-stats { gap: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .voice-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .float-cta { bottom: 20px; right: 16px; font-size: 12px; padding: 12px 18px; }
  }

  .service-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(201,169,110,.25);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 2px 12px rgba(61,44,40,.06);
  }
  .flow-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--rose-lt);
    line-height: 1;
    flex-shrink: 0;
  }
  .flow-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep);
  }
  .flow-sub {
    font-size: 11px;
    color: var(--gold);
    margin-top: 3px;
    letter-spacing: .05em;
  }
  .flow-arrow {
    font-size: 20px;
    color: var(--gold);
    opacity: .6;
    flex-shrink: 0;
  }
  @media (max-width: 640px) {
    .flow-arrow { transform: rotate(90deg); }
    .service-flow { gap: 8px; }
    .flow-step { padding: 12px 16px; }
  }

  .cta-gift-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(200,120,110,.12), rgba(201,169,110,.12));
    border: 1.5px dashed rgba(201,169,110,.5);
    border-radius: 16px;
    padding: 20px 32px;
    margin-bottom: 32px;
    max-width: 480px;
    width: 100%;
  }
  .cta-gift-icon { font-size: 36px; flex-shrink: 0; }
  .cta-gift-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--deep);
    margin-bottom: 4px;
  }
  .cta-gift-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.9;
  }
  .gift-item {
    display: inline-block;
    font-weight: 500;
    color: var(--deep);
  }
  @media (max-width: 480px) {
    .cta-gift-box { padding: 16px 20px; gap: 12px; }
    .cta-gift-icon { font-size: 28px; }
    .cta-gift-title { font-size: 13px; }
  }

  .service-detail-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--rose);
    color: var(--rose);
    font-size: 12px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: background .25s, color .25s, transform .2s;
  }
  .service-detail-btn:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-2px);
  }

  .voice-accordion {
    margin-top: 18px;
    border-top: 1px solid rgba(201,169,110,.2);
    padding-top: 14px;
  }
  .va-toggle {
    width: 100%;
    background: none;
    border: 1px solid rgba(200,120,110,.3);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 12px;
    font-family: 'Noto Serif JP', serif;
    color: var(--rose);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    letter-spacing: .08em;
    transition: background .25s, color .25s;
  }
  .va-toggle:hover {
    background: rgba(200,120,110,.06);
  }
  .va-toggle.open {
    background: rgba(200,120,110,.06);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .va-arrow {
    font-size: 10px;
    transition: transform .3s ease;
    display: inline-block;
  }
  .va-toggle.open .va-arrow {
    transform: rotate(180deg);
  }
  .va-body {
    display: none;
    border: 1px solid rgba(200,120,110,.3);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 16px 18px;
    background: rgba(249,240,234,.5);
    animation: fadeUp .3s ease;
  }
  .va-body.open {
    display: block;
  }
  .va-item {
    padding: 4px 0;
  }
  .va-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.95;
    margin-bottom: 8px;
    font-style: italic;
  }
  .va-author {
    font-size: 11px;
    color: var(--gold);
    text-align: right;
    letter-spacing: .05em;
  }
  .va-divider {
    border: none;
    border-top: 1px dashed rgba(201,169,110,.25);
    margin: 14px 0;
  }

  .faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
  }
  .faq-tab {
    padding: 9px 18px;
    border-radius: 30px;
    border: 1.5px solid rgba(201,169,110,.35);
    background: var(--white);
    color: var(--muted);
    font-size: 12px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: .06em;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
  }
  .faq-tab:hover {
    border-color: var(--rose);
    color: var(--rose);
  }
  .faq-tab.active {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200,120,110,.3);
  }
  .faq-panel { display: none; }
  .faq-panel.active { display: block; }
  @media (max-width: 640px) {
    .faq-tabs { gap: 6px; }
    .faq-tab { font-size: 11px; padding: 8px 14px; }
  }

  .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
  }
  .nav-link {
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    font-family: 'Noto Serif JP', serif;
    transition: background .2s, color .2s;
    white-space: nowrap;
  }
  .nav-link:hover {
    background: rgba(200,120,110,.1);
    color: var(--rose);
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
  }

  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 201;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--deep);
    border-radius: 2px;
    transition: all .3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--cream);
    z-index: 200;
    box-shadow: -8px 0 32px rgba(61,44,40,.15);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 40px;
    overflow-y: auto;
  }
  .nav-drawer.open { right: 0; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30,18,15,.45);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }

  .drawer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--rose);
    margin-bottom: 32px;
    text-decoration: none;
    display: block;
  }
  .drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
  }
  .drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Noto Serif JP', serif;
    color: var(--deep);
    letter-spacing: .05em;
    transition: background .2s;
    border-bottom: 1px solid rgba(201,169,110,.12);
  }
  .drawer-link:last-child { border-bottom: none; }
  .drawer-link:hover { background: rgba(200,120,110,.07); }
  .drawer-link-icon { font-size: 18px; flex-shrink: 0; }
  .drawer-link-text { flex: 1; }
  .drawer-link-arrow { color: var(--gold); font-size: 12px; opacity: .6; }

  .drawer-line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #06C755;
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Noto Serif JP', serif;
    text-decoration: none;
    letter-spacing: .1em;
    box-shadow: 0 4px 20px rgba(6,199,85,.3);
    margin-top: auto;
  }
  .drawer-gift {
    background: rgba(201,169,110,.1);
    border: 1px dashed rgba(201,169,110,.4);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
  }
  .drawer-gift strong { color: var(--deep); display: block; margin-bottom: 4px; font-size: 12px; }

  @media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
  }

