/*
Theme Name: サチシロ
Theme URI: https://sachishiro.example.com
Author: サチシロ
Author URI: https://sachishiro.example.com
Description: サチシロ（子育て支援・食育・東洋医学コンサルティング）のオリジナルWordPressテーマ。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sachishiro
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --bg: oklch(97.5% 0.012 75);
  --bg-alt: oklch(93.5% 0.018 70);
  --cream: oklch(98% 0.008 80);
  --ink: oklch(23% 0.02 50);
  --ink-soft: oklch(46% 0.02 55);
  --line: oklch(85% 0.02 70);

  --accent: oklch(60% 0.12 231);
  --accent-soft: oklch(93% 0.025 231);
  --accent-deep: oklch(40% 0.10 234);

  --white: oklch(99% 0 0);
  --container: 1312px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Zen Old Mincho', 'Hiragino Mincho ProN', serif;
  margin: 0;
  font-weight: 600;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 88px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-header .brand span {
  font-family: 'Zen Old Mincho', serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--accent);
}

.main-nav .cta-link a,
.cta-pill {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  padding: 8px 20px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  gap: 2px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  padding: 14px 4px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  display: block;
}

.mobile-nav .cta-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 14px;
  border-bottom: none;
}

/* ==========================================================================
   Page title banner (used on interior pages)
   ========================================================================== */
.page-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
}

.page-banner .ghost-kanji {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  font-size: 280px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  pointer-events: none;
  user-select: none;
}

.page-banner .banner-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 64px 0;
}

.banner-bar {
  width: 44px;
  height: 3px;
  background: var(--accent);
}

.banner-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-deep);
  font-weight: 700;
}

.page-banner h1 {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
}

.banner-subtitle {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ==========================================================================
   Section helpers
   ========================================================================== */
.section {
  padding: clamp(64px, 10vw, 150px) 64px;
}

.section-alt { background: var(--cream); }

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  margin-top: 4px;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  padding: clamp(64px, 9vw, 130px) 64px;
  background: var(--accent-deep);
  text-align: center;
}

.cta-band .cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.6;
  color: var(--white);
}

.cta-band p {
  font-size: 15px;
  line-height: 1.9;
  color: oklch(96% 0 0 / 0.85);
}

.cta-band .cta-btn {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 40px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--white);
  color: var(--accent-deep);
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 72px 64px 40px;
  background: var(--ink);
}

.site-footer .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand .brand-row span {
  font-family: 'Zen Old Mincho', serif;
  font-size: 19px;
  color: oklch(98% 0 0);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  color: oklch(80% 0.01 60);
}

.footer-cols {
  display: flex;
  gap: 88px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col .col-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: oklch(65% 0.01 60);
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: oklch(92% 0 0);
}

.footer-col .social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid oklch(38% 0.02 55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 12px;
  color: oklch(60% 0.01 55);
}

/* ==========================================================================
   Utility card / grid patterns reused across pages
   ========================================================================== */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 { font-size: 18px; color: var(--ink); }
.card p { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }
.card .card-num { font-family: 'Zen Old Mincho', serif; font-size: 15px; color: var(--accent); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.price-table {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 48px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child { border-bottom: none; }

.price-row.is-trial { background: var(--accent-soft); }

.price-row h3 { font-size: 16px; color: var(--ink); }
.price-row .price-meta { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.price-row .price-amount {
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  color: var(--accent-deep);
  white-space: nowrap;
}

.badge {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==========================================================================
   Contact form (Contact Form 7)
   ========================================================================== */
.contact-form-card {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 48px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid var(--line);
}

.contact-form-card .wpcf7-form p { margin-bottom: 22px; }
.contact-form-card .wpcf7-form label { display: block; font-size: 13px; color: var(--ink-soft); }
.contact-form-card .wpcf7-form label span.req,
.contact-form-card .wpcf7-form label .required { color: var(--accent); }
.contact-form-card .wpcf7-form-control-wrap { display: block; margin-top: 6px; }

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="date"],
.contact-form-card textarea {
  width: 100%;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  margin-top: 6px;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: oklch(65% 0.01 55); }

.contact-form-card .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
}

.contact-form-card .wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; }
.contact-form-card .wpcf7-response-output { border-radius: 10px; font-size: 13px; margin-top: 16px; }

/* ==========================================================================
   Profile page
   ========================================================================== */
.profile-detail {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 96px;
  align-items: flex-start;
  padding: 150px 64px;
}

.profile-aside {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.profile-aside img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.profile-aside .name-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-aside .name-jp {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.profile-aside .name-en {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.profile-dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%;
  text-align: left;
}

.profile-dl dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.profile-dl dd {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}

.profile-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.profile-main p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}

.career-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.career-card.is-current {
  background: var(--cream);
  border: 1.5px solid var(--accent);
}

.career-notes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.career-notes p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
}

.vision-section {
  position: relative;
  padding: 140px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

.vision-section .vision-kanji {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Zen Old Mincho', serif;
  font-size: 420px;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.5;
  pointer-events: none;
}

.vision-section .vision-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.vision-section .vision-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.vision-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.7;
  color: var(--ink);
}

@media (max-width: 960px) {
  .profile-detail { flex-direction: column; gap: 40px; padding: 88px 24px; }
  .profile-aside { width: 100%; }
  .vision-section { padding: 88px 24px; }
  .vision-section .vision-kanji { font-size: 220px; }
}

/* ==========================================================================
   Service detail page
   ========================================================================== */
.breadcrumb {
  padding: 24px 64px 0;
  max-width: var(--container);
  margin: 0 auto;
}

.breadcrumb .crumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--ink-soft); }
.breadcrumb .current { color: var(--ink); }

.service-intro .split {
  display: grid;
  grid-template-columns: 42% 58%;
}

.service-intro .panel-left {
  background: var(--cream);
  border-right: 1px solid var(--line);
  padding: 120px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.service-intro .panel-left h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.6;
  color: var(--ink);
}

.service-intro .panel-right {
  padding: 120px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.service-intro .panel-right p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
}

.for-you-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.for-you-item .num-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: oklch(99% 0 0);
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
}

.for-you-item p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}

.flow-step .step-num {
  font-family: 'Zen Old Mincho', serif;
  font-size: 56px;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
}

.flow-step h3 { font-size: 17px; color: var(--ink); }
.flow-step p { font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

.narrow-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.price-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.price-note {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 960px) {
  .breadcrumb { padding: 20px 24px 0; }
  .service-intro .split { grid-template-columns: 1fr; }
  .service-intro .panel-left,
  .service-intro .panel-right { padding: 56px 24px; }
  .for-you-grid { grid-template-columns: 1fr; }
  .flow-step .step-num { font-size: 44px; }
}

/* ==========================================================================
   Company overview page
   ========================================================================== */
.overview-table {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.overview-row {
  display: flex;
  align-items: center;
  padding: 32px 48px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}

.overview-row:last-child { border-bottom: none; }

.overview-row .row-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  font-weight: 700;
}

.overview-row .row-value { font-size: 17px; color: var(--ink); }

@media (max-width: 960px) {
  .overview-row { padding: 24px; }
  .overview-row .row-label { width: 100%; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-section .split {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: stretch;
}

.contact-section .panel-left {
  position: relative;
  background: var(--cream);
  border-right: 1px solid var(--line);
  padding: 130px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  overflow: hidden;
}

.contact-section .panel-left .kanji-watermark {
  position: absolute;
  right: -10px;
  bottom: -90px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 340px;
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
}

.contact-section .panel-left > * { position: relative; }

.contact-section .panel-left h1 { font-size: clamp(32px, 4vw, 56px); line-height: 1.3; color: var(--ink); }
.contact-section .panel-left p { font-size: 15px; line-height: 1.95; color: var(--ink-soft); max-width: 380px; }

.contact-section .panel-left .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.contact-section .panel-right { padding: 130px 64px; }

@media (max-width: 960px) {
  .contact-section .split { grid-template-columns: 1fr; }
  .contact-section .panel-left,
  .contact-section .panel-right { padding: 56px 24px; }
  .contact-form-card { padding: 32px 24px; max-width: none; }
}

/* ==========================================================================
   Responsive breakpoint (matches Mobile.dc.html layout)
   ========================================================================== */
/* ==========================================================================
   Home page — Hero
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, oklch(20% 0.05 240 / 0.74) 0%, oklch(20% 0.05 240 / 0.32) 42%, oklch(18% 0.02 50 / 0.55) 100%);
}

.hero .hero-kanji {
  position: absolute;
  right: 0;
  bottom: -170px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 580px;
  line-height: 1;
  color: oklch(99% 0 0 / 0.09);
  pointer-events: none;
}

.hero .hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 0 64px;
  max-width: 1000px;
}

.hero .hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: oklch(96% 0 0 / 0.85);
}

.hero h1 {
  font-size: clamp(32px, 5.4vw, 78px);
  line-height: 1.3;
  color: oklch(99% 0 0);
  font-weight: 700;
}

.hero p {
  font-size: 17px;
  line-height: 1.95;
  color: oklch(97% 0 0 / 0.9);
  max-width: 520px;
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero .btn-solid,
.hero .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.hero .btn-solid { background: var(--accent); color: oklch(99% 0 0); }
.hero .btn-outline { border: 1px solid oklch(96% 0 0 / 0.7); color: oklch(99% 0 0); }

/* ==========================================================================
   Home page — Philosophy split
   ========================================================================== */
.philosophy {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.philosophy .split {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
}

.philosophy .panel-left {
  background: var(--cream);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 130px 80px;
}

.philosophy .panel-left h2 {
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.55;
  color: var(--ink);
}

.philosophy .panel-left p {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 380px;
}

.philosophy .panel-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 130px 80px;
}

.philosophy .panel-right .lead p {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 2.1;
  color: var(--ink);
}

.philosophy .panel-right .lead p + p { margin-top: 20px; }

.tag-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tag-pill {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Home page — Founder
   ========================================================================== */
.founder-section {
  padding: 150px 64px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founder-section .founder-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 96px;
  align-items: flex-start;
}

.founder-aside {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.founder-aside img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.founder-aside .name-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-aside .name-block .name-jp {
  font-family: 'Zen Old Mincho', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.founder-aside .name-block .name-en {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.founder-aside .tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.founder-aside .tags span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.founder-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.founder-main p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}

.founder-main .vision-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.founder-main .vision-block .vision-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.founder-main .vision-block .vision-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 19px;
  color: var(--ink);
}

/* ==========================================================================
   Home page — Services (alternating bands)
   ========================================================================== */
.services-intro {
  padding: 160px 64px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.service-band {
  display: flex;
  align-items: stretch;
}

.service-band.is-reverse { flex-direction: row-reverse; }
.service-band.is-alt { background: var(--cream); }

.service-band .band-media { flex: 0 0 46%; }

.service-band .band-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.service-band .band-text {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 84px;
}

.service-band.is-reverse .band-text { align-items: flex-end; }

.service-band .band-num {
  position: absolute;
  top: -34px;
  left: 40px;
  font-family: 'Zen Old Mincho', serif;
  font-size: 180px;
  line-height: 1;
  color: var(--accent-soft);
  z-index: 0;
}

.service-band.is-reverse .band-num { left: auto; right: 40px; }

.service-band .band-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}

.service-band.is-reverse .band-content { align-items: flex-end; text-align: right; }

.service-band .band-content .band-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.service-band .band-content h3 { font-size: 28px; color: var(--ink); }

.service-band .band-content p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft);
}

.service-band .band-content .band-link {
  font-size: 14px;
  color: var(--accent);
  margin-top: 6px;
}

@media (max-width: 960px) {
  .hero { height: 640px; }
  .hero .hero-inner { padding: 0 24px; gap: 20px; }
  .hero .hero-actions { flex-direction: column; align-items: stretch; }
  .hero .btn-solid, .hero .btn-outline { height: 50px; }
  .hero .hero-kanji { font-size: 260px; right: -30px; bottom: -70px; }

  .philosophy .split { grid-template-columns: 1fr; }
  .philosophy .panel-left,
  .philosophy .panel-right { padding: 64px 24px; }
  .philosophy .panel-right { padding-bottom: 80px; }

  .founder-section { padding: 88px 24px; }
  .founder-section .founder-inner { flex-direction: column; gap: 32px; }
  .founder-aside { width: 100%; }

  .services-intro { padding: 88px 24px 56px; }

  .service-band,
  .service-band.is-reverse { flex-direction: column; }
  .service-band .band-media img { height: 220px; }
  .service-band .band-text,
  .service-band.is-reverse .band-text { padding: 32px 24px 40px; align-items: flex-start; }
  .service-band .band-num,
  .service-band.is-reverse .band-num { font-size: 110px; top: -20px; left: 20px; right: auto; }
  .service-band .band-content,
  .service-band.is-reverse .band-content { align-items: flex-start; text-align: left; max-width: none; }
}

@media (max-width: 960px) {
  .container,
  .site-header,
  .section,
  .cta-band,
  .site-footer { padding-left: 24px; padding-right: 24px; }

  .main-nav .menu-primary,
  .main-nav .cta-pill { display: none; }
  .menu-toggle { display: block; }

  .page-banner .ghost-kanji { font-size: 180px; }

  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-cols { gap: 48px; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .price-row .price-amount { align-self: flex-end; }
}
