:root {
  --ivory: #faf7f0; --honey: #d4952b; --honey-light: #e0a94a; --honey-pale: rgba(212,149,43,0.08);
  --walnut: #5c4033; --cream: #f0e8d8; --cream-deep: #e8dece; --charcoal: #3a3530;
  --text: #3a3530; --text-light: #7a7268; --text-lighter: #a09888; --white: #ffffff; --border: #e5ddd0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-ui: 'DM Sans', 'Noto Sans JP', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); --max-width: 1200px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--ivory); line-height: 1.8; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,247,240,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: border-color 0.4s, box-shadow 0.4s; }
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 24px rgba(92,64,51,0.05); }
.nav-logo { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--walnut); letter-spacing: 3px; transition: color 0.3s; }
.nav-logo:hover { color: var(--honey); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-family: var(--font-ui); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); position: relative; transition: color 0.3s; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--honey); transition: width 0.3s var(--ease-out); }
.nav-link:hover { color: var(--walnut); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--walnut); }
.nav-link.active::after { width: 100%; }
.nav-cta { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); background: var(--walnut); padding: 10px 24px; border-radius: 4px; transition: background 0.3s, transform 0.2s; }
.nav-cta:hover { background: var(--charcoal); transform: translateY(-1px); }
.nav-toggle { display: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--walnut); margin: 5px 0; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.page-hero { padding: 160px 48px 100px; background: linear-gradient(165deg, var(--ivory) 0%, var(--cream) 100%); text-align: center; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.page-hero-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--honey); margin-bottom: 16px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 500; color: var(--walnut); margin-bottom: 20px; }
.page-hero-desc { font-size: 15px; color: var(--text-light); max-width: 560px; margin: 0 auto; line-height: 2; }

.section { padding: 120px 48px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--honey); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--walnut); line-height: 1.3; margin-bottom: 20px; }
.section-desc { font-size: 15px; line-height: 2; color: var(--text-light); max-width: 600px; }

/* 4 Services */
.services { background: var(--ivory); }
.services-list { margin-top: 64px; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block:nth-child(even) .service-img { order: -1; }
.service-num { font-family: var(--font-display); font-size: 56px; font-weight: 600; color: var(--honey); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.service-block h3 { font-size: 22px; font-weight: 700; color: var(--walnut); margin-bottom: 16px; }
.service-block p { font-size: 14px; line-height: 2; color: var(--text-light); }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.service-tag { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 20px; border: 1px solid var(--border); color: var(--text-light); }
.service-img { aspect-ratio: 4/3; background: var(--cream-deep); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-lighter); font-family: var(--font-ui); }

/* Strength */
.strength { background: var(--cream); }
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.strength-card { background: var(--ivory); border-radius: 12px; padding: 40px 32px; text-align: center; border: 1px solid var(--border); transition: transform 0.4s var(--ease-out), box-shadow 0.4s; }
.strength-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(92,64,51,0.08); }
.strength-num { font-family: var(--font-ui); font-size: 40px; font-weight: 700; color: var(--honey); line-height: 1; margin-bottom: 8px; }
.strength-num span { font-size: 18px; color: var(--text-lighter); }
.strength-card h3 { font-size: 16px; font-weight: 700; color: var(--walnut); margin-bottom: 10px; }
.strength-card p { font-size: 13px; line-height: 1.8; color: var(--text-light); }

/* Consult CTA */
.consult { background: var(--ivory); }
.consult-box { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: 16px; padding: 56px 48px; text-align: center; border: 2px solid var(--honey); box-shadow: 0 8px 40px rgba(212,149,43,0.08); }
.consult-box h2 { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 32px); font-weight: 500; color: var(--walnut); margin-bottom: 16px; }
.consult-box p { font-size: 15px; color: var(--text-light); line-height: 2; margin-bottom: 32px; }
.btn-primary { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--white); background: var(--walnut); padding: 16px 40px; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; }
.btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,64,51,0.2); }
.btn-primary .arrow { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* Flow */
.flow { background: var(--cream); }
.flow-steps { display: flex; gap: 0; margin-top: 56px; position: relative; }
.flow-steps::before { content: ''; position: absolute; top: 36px; left: 60px; right: 60px; height: 2px; background: var(--border); }
.flow-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.flow-step-num { width: 72px; height: 72px; margin: 0 auto 20px; background: var(--ivory); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-size: 20px; font-weight: 700; color: var(--walnut); transition: border-color 0.3s, background 0.3s; }
.flow-step:hover .flow-step-num { border-color: var(--honey); background: var(--honey-pale); }
.flow-step h3 { font-size: 15px; font-weight: 700; color: var(--walnut); margin-bottom: 8px; }
.flow-step p { font-size: 12px; color: var(--text-light); line-height: 1.7; padding: 0 12px; }

/* FAQ */
.faq { background: var(--ivory); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { background: var(--white); border-radius: 8px; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--border); }
.faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--walnut); transition: background 0.3s; }
.faq-q:hover { background: var(--cream); }
.faq-q .icon { font-size: 20px; color: var(--honey); transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding 0.4s; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 1000px; padding: 0 24px 20px; }
.faq-a p { font-size: 14px; line-height: 1.9; color: var(--text-light); }

/* CTA */
.cta-section { padding: 100px 48px; background: var(--walnut); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(212,149,43,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta-section .cta-label { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 36px); font-weight: 500; color: var(--ivory); margin-bottom: 16px; }
.cta-section p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 40px; }
.btn-cta-light { font-family: var(--font-ui); font-size: 14px; font-weight: 600; letter-spacing: 1px; color: var(--walnut); background: var(--ivory); padding: 18px 48px; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, box-shadow 0.3s; }
.btn-cta-light:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

.footer { background: var(--charcoal); padding: 64px 48px 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--ivory); letter-spacing: 3px; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-nav { display: flex; gap: 64px; }
.footer-nav-title { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-nav-link { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.3s; }
.footer-nav-link:hover { color: var(--honey-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(255,255,255,0.35); transition: color 0.3s; font-size: 13px; }
.footer-social a:hover { color: var(--honey-light); }

@media (max-width: 1024px) {
  .section, .page-hero { padding-left: 32px; padding-right: 32px; }
  .nav { padding: 0 32px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block:nth-child(even) .service-img { order: 0; }
  .strength-grid { grid-template-columns: 1fr; }
  .flow-steps { flex-direction: column; gap: 32px; }
  .flow-steps::before { display: none; }
  .consult-box { padding: 40px 32px; }
  .footer-top { flex-direction: column; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--ivory); padding: 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); gap: 20px; }
  .nav-toggle { display: block; }
  .service-num { font-size: 40px; }
  .service-block h3 { font-size: 18px; }
  .consult-box { padding: 32px 20px; }
  .cta-section { padding: 56px 20px; }
  .footer { padding: 40px 20px 20px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}