/*
Theme Name: Value Up Factory
Theme URI: https://value-up-factory.jp/
Author: Value Up Factory, Inc.
Author URI: https://value-up-factory.jp/
Description: 株式会社バリューアップファクトリー 公式テーマ - 事業承継・M&A 企業価値最大化（磨き上げ）専門ファーム
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vuf
*/



/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy-dark: #141e2e;
  --navy: #1c2a3e;
  --navy-light: #243448;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-dark: #a8893e;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray-100: #f8f7f5;
  --gray-200: #e8e6e1;
  --gray-300: #d0cdc6;
  --gray-500: #8a8680;
  --gray-700: #4a4740;
  --gray-900: #1a1815;
  --font-serif: 'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
}

.section-title--center {
  text-align: center;
}

.section-title--white {
  color: var(--white);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Global Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(20, 30, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(20, 30, 46, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-icon {
  width: auto;
  height: 44px;
  border-radius: 2px;
}

.header__logo-text {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.header__logo-text span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: 400;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: var(--white);
}

.header__nav-link:hover::after {
  width: 60%;
}

.header__nav-link.active {
  color: var(--white);
}

.header__nav-link.active::after {
  width: 60%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  margin-left: 16px;
  transition: var(--transition);
}

.header__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 162, 101, 0.3);
}

/* Dropdown Menu */
.header__dropdown {
  position: relative;
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--navy-dark);
  border: 1px solid rgba(196,162,101,0.15);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.header__dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.header__dropdown-link:hover {
  background: rgba(196,162,101,0.1);
  color: var(--gold);
}

/* Mobile menu */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.header__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(28, 42, 62, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196, 162, 101, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-dark) 0%, #0f1720 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a265' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--header-height);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.hero__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(196, 162, 101, 0.2);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--white-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-300);
}

.btn--white-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- About Section --- */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.about__text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--navy);
}

.about__text p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.about__text .btn {
  margin-top: 16px;
}

/* --- Pain Points Section --- */
.pain-points {
  padding: 100px 0;
  background: var(--gray-100);
}

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pain-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.pain-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.pain-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}

.pain-card__list {
  list-style: none;
}

.pain-card__list li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.pain-card__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --- CTA Band --- */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.05) 0%, transparent 50%);
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-band__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.9;
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* --- Services Section --- */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.service-card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-card__body {
  padding: 28px 24px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-card__desc {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.services__more {
  text-align: center;
}

/* --- Features Section --- */
.features {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(196, 162, 101, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(196, 162, 101, 0.03) 0%, transparent 50%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.feature-item {
  text-align: center;
}

.feature-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.feature-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.feature-item__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.feature-item__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

/* --- News Section --- */
.news {
  padding: 100px 0;
  background: var(--gray-100);
}

.news__list {
  border-top: 1px solid var(--gray-200);
}

.news__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.news__item:hover {
  padding-left: 8px;
}

.news__date {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.news__tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 1px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.news__title {
  font-size: 0.9rem;
  color: var(--gray-900);
}

.news__more {
  text-align: center;
  margin-top: 40px;
}

/* --- Flow Section --- */
.flow {
  padding: 100px 0;
  background: var(--white);
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-step::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 40px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.flow-step:last-child::after {
  display: none;
}

.flow-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.flow-step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.flow-step__desc {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* --- Contact CTA Section --- */
.contact-cta {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.06) 0%, transparent 40%);
}

.contact-cta__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.contact-cta__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  position: relative;
}

.contact-cta .btn {
  position: relative;
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.78rem;
  line-height: 1.9;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* --- Page Header (for subpages) --- */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(196, 162, 101, 0.06) 0%, transparent 50%);
}

.page-header__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  position: relative;
}

.page-header__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* --- About Detail Page --- */
.about-detail {
  padding: 100px 0;
}

.about-detail__profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.about-detail__photo {
  aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.about-detail__photo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.about-detail__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

.about-detail__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-detail__position {
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.about-detail__bio p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.about-detail__career {
  margin-top: 32px;
}

.about-detail__career h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.about-detail__career-list {
  list-style: none;
}

.about-detail__career-list li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 8px 0 8px 20px;
  position: relative;
  line-height: 1.6;
}

.about-detail__career-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* --- Service Detail Page --- */
.service-detail {
  padding: 100px 0;
}

.service-detail__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail__item:nth-child(even) {
  direction: rtl;
}

.service-detail__item:nth-child(even) > * {
  direction: ltr;
}

.service-detail__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.service-detail__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.service-detail__content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-detail__content p {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--gray-700);
}

/* --- Cases Page --- */
.cases {
  padding: 100px 0;
}

.case-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-200);
}

.case-item:last-child {
  border-bottom: none;
}

.case-item__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--navy);
}

.case-item__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.case-item__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.case-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.6;
}

.case-item__section {
  margin-bottom: 20px;
}

.case-item__section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-item__section p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--gray-700);
}

/* --- Diagnosis Page --- */
.diagnosis {
  padding: 100px 0;
}

.diagnosis__intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.diagnosis__intro p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.9;
}

.diagnosis__form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.form-section {
  margin-bottom: 48px;
}

.form-section__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #c0392b;
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8680' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  transition: var(--transition);
}

.radio-group label:hover {
  border-color: var(--gold);
}

.radio-group input[type="radio"] {
  accent-color: var(--gold);
}

.radio-group input[type="radio"]:checked + span {
  color: var(--gold-dark);
  font-weight: 500;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit .btn {
  min-width: 280px;
  padding: 16px 40px;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
  text-align: center;
}

/* --- Pricing Section in Diagnosis --- */
.pricing {
  padding: 80px 0;
  background: var(--gray-100);
}

.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  text-align: center;
}

.pricing-card--highlight {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--highlight::before {
  content: 'キラーオファー';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 16px;
  letter-spacing: 0.1em;
}

.pricing-card__label {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price small {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card__note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* --- Trust Badges --- */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge {
  text-align: center;
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--navy);
}

.trust-badge__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.trust-badge__title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-badge__desc {
  font-size: 0.78rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* --- Contact Page --- */
.contact-page {
  padding: 100px 0;
}

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-page__info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-page__info p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 2;
  margin-bottom: 32px;
}

.contact-page__detail {
  margin-bottom: 24px;
}

.contact-page__detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.contact-page__detail-value {
  font-size: 0.9rem;
  color: var(--gray-900);
}

.contact-form {
  background: var(--gray-100);
  padding: 48px;
  border-radius: 2px;
}

.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 32px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header__inner { padding: 0 24px; }
  .hero__title { font-size: 2.2rem; }
  .pain-points__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; }
  .service-detail__item { grid-template-columns: 1fr; }
  .service-detail__item:nth-child(even) { direction: ltr; }
  .case-item { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .about-detail__profile { grid-template-columns: 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  
  .header__nav { 
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 40px;
    gap: 8px;
  }
  
  .header__nav.active { display: flex; }
  
  .header__nav-link {
    font-size: 1rem;
    padding: 12px 0;
  }
  
  .header__cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .header__hamburger { display: flex; }
  
  .header__dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: rgba(255,255,255,0.03);
    border: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    margin-left: 16px;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .header__dropdown.open .header__dropdown-menu { display: block; }
  
  .header__dropdown-link { padding: 8px 20px; font-size: 0.9rem; }
  
  .hero { min-height: 80vh; }
  .hero__title { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  
  .services__grid { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: 1fr; }
  .flow-step::after { display: none; }
  .trust-badges { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .diagnosis__form { padding: 32px 20px; }
  .contact-form { padding: 32px 20px; }
  
  .section-title { font-size: 1.4rem; }
}

/* ============================================================
   WordPress Admin Bar Offset (logged-in users)
   ============================================================ */
body.admin-bar .header {
  top: 32px;
}
body.admin-bar .hero {
  padding-top: 32px;
}
body.admin-bar .page-header {
  padding-top: 192px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
  body.admin-bar .hero {
    padding-top: 46px;
  }
  body.admin-bar .page-header {
    padding-top: 206px;
  }
}

/* ============================================================
   NEWS PAGE (page-news.php)
   ============================================================ */
.news-page {
  padding: 80px 0 100px;
}

.news-page__item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}

.news-page__item:first-child {
  padding-top: 0;
}

.news-page__date {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  padding-top: 4px;
  min-width: 110px;
}

.news-page__body {
  flex: 1;
}

.news-page__body .news__tag {
  margin-bottom: 10px;
  display: inline-block;
}

.news-page__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.7;
}

.news-page__desc {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 10px;
}

.news-page__link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.news-page__link:hover {
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .news-page__item {
    flex-direction: column;
    gap: 8px;
  }
  .news-page__date {
    min-width: auto;
  }
}

/* --- News Title Links --- */
.news-page__title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.news-page__title a:hover {
  color: var(--gold);
}

/* --- News Pagination --- */
.news-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.news-page__pagination a,
.news-page__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  transition: var(--transition);
}

.news-page__pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.news-page__pagination .current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- News Single Page --- */
.news-single {
  padding: 80px 0;
}

.news-single__inner {
  max-width: 760px;
  margin: 0 auto;
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.news-single__date {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

.news-single__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--gray-900);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.news-single__thumbnail {
  margin-bottom: 40px;
}

.news-single__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.news-single__content {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--gray-700);
  margin-bottom: 40px;
}

.news-single__content p {
  margin-bottom: 1.5em;
}

.news-single__link {
  margin-bottom: 60px;
}

.news-single__back {
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.news-page__empty {
  text-align: center;
  color: var(--gray-500);
  padding: 60px 0;
}

/* --- Front page news item link style --- */
a.news__item {
  text-decoration: none;
  color: inherit;
}

a.news__item:hover .news__title {
  color: var(--gold);
}

@media (max-width: 768px) {
  .news-single__title {
    font-size: 1.2rem;
  }
}

/* ============================================================
   COMPANY INFO (About Page)
   ============================================================ */
.company-info {
  padding: 80px 0;
  background: var(--white);
}

.company-info__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 40px auto 0;
}

.company-info__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.company-info__photo {
  max-width: 180px;
}

.company-info__photo img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.company-info__address {
  text-align: center;
}

.company-info__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.company-info__addr {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--gray-600);
}

.company-info__access {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.company-info__map {
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.company-info__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .company-info__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-info__photo {
    max-width: 140px;
  }

  .company-info__map {
    aspect-ratio: 16/10;
  }
}

/* ============================================================
   MEMBER CARDS (About Page)
   ============================================================ */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 40px auto 0;
}

.member-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  min-width: 0;
}

.member-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.member-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}

.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.member-card__role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.member-card__bio {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--gray-500);
  text-align: left;
}

@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .member-card {
    padding: 28px 20px;
  }

  .member-card__photo {
    width: 120px;
    height: 120px;
  }
}

/* ============================================================
   RELATED PAGES (Internal Linking)
   ============================================================ */
.related-pages {
  padding: 80px 0;
  background: var(--gray-100);
}

.related-pages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.related-pages__card {
  display: block;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.related-pages__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-pages__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.related-pages__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 8px 0;
  line-height: 1.6;
}

.related-pages__desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.related-pages__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.related-pages__card:hover .related-pages__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-pages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-pages__card {
    padding: 24px;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item::after {
  content: '›';
  margin: 0 10px;
  color: var(--gray-300);
  font-size: 0.9rem;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb__item a {
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb__item a:hover {
  color: var(--gold);
}

.breadcrumb__item--current span {
  color: var(--gray-700);
  font-weight: 500;
}

/* ============================================================
   BOOKS PAGE
   ============================================================ */
.books-intro {
  padding: 60px 0 0;
}

.books-intro__text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--gray-500);
}

.books-page {
  padding: 60px 0 100px;
}

.books-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.book-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.book-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.book-card__cover {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.book-card__cover img {
  width: 100%;
  max-width: 180px;
  height: auto;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.book-card__cover a:hover img {
  transform: translateY(-4px);
  box-shadow: 4px 10px 30px rgba(0,0,0,0.2);
}

.book-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.book-card__author {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 16px;
}

.book-card__desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.book-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  align-self: flex-start;
}

.book-card__btn:hover {
  background: var(--gold);
  color: var(--white);
}

.book-card__btn svg {
  transition: var(--transition);
}

.book-card__btn:hover svg {
  stroke: var(--white);
}

.books-page__empty {
  text-align: center;
  color: var(--gray-500);
  padding: 60px 0;
}

@media (max-width: 768px) {
  .book-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .book-card__cover {
    justify-content: center;
  }

  .book-card__cover img {
    max-width: 160px;
  }

  .book-card__title {
    font-size: 1rem;
  }

  .book-card__btn {
    align-self: center;
  }
}

/* ============================================================
   DIAGNOSIS QUESTION STYLES
   ============================================================ */
.form-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.diag-question {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.diag-question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.diag-question__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.6;
}

.radio-group--vertical {
  flex-direction: column;
  gap: 10px;
}

.radio-group--vertical label {
  width: 100%;
}

/* ============================================================
   TPM LANDING PAGE — Premium
   ============================================================ */

/* --- TPM Foundations --- */
.tp-container{max-width:1200px;margin:0 auto;padding:0 64px}
.tp-eyebrow{font-family:'Cormorant Garamond','Noto Serif JP',serif;font-size:11px;letter-spacing:0.4em;text-transform:uppercase;color:#b8956a;font-weight:400}
.tp-heading-lg{font-family:var(--font-serif);font-weight:400;font-size:clamp(2rem,4.5vw,3.2rem);line-height:1.5;color:rgba(255,255,255,0.88)}
.tp-heading-md{font-family:var(--font-serif);font-weight:400;font-size:clamp(1.3rem,2.5vw,1.8rem);line-height:1.55}
.tp-body-text{font-size:14px;line-height:2.1;font-weight:300;letter-spacing:0.02em}
.tp-body-text p{margin-bottom:24px;color:rgba(255,255,255,0.5)}
.tp-body-text p:last-child{margin-bottom:0}
.tp-body-text strong{color:rgba(255,255,255,0.88);font-weight:500}
.tp-gold-line{width:40px;height:1px;background:#b8956a;display:block}

/* --- TPM Sections --- */
.tp-sec--pad{padding:140px 0}
.tp-sec--dark{background:#090c10}
.tp-sec--dark2{background:#0e1218}
.tp-sec--dark3{background:#13171f}
.tp-sec--cream{background:#f4f1ec}

/* --- TPM Hero --- */
.tp-hero{
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding-bottom:120px;
  position:relative;
  background:#090c10;
}
.tp-hero::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,#b8956a 30%,#b8956a 70%,transparent);opacity:0.2;
}
.tp-hero .tp-container{width:100%}
.tp-hero__grid{
  display:grid;
  grid-template-columns:1fr 440px;
  gap:80px;
  align-items:end;
}
.tp-hero__label{margin-bottom:40px}
.tp-hero__title{margin-bottom:32px}
.tp-hero__title em{
  font-style:normal;
  background:linear-gradient(135deg,#b8956a,#d4b87a);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.tp-hero__lead{
  max-width:480px;margin-bottom:56px;
  font-size:13px;line-height:2.2;color:rgba(255,255,255,0.28);
}
.tp-hero__cta{
  display:inline-flex;align-items:center;gap:16px;
  color:#b8956a;text-decoration:none;
  font-family:'Cormorant Garamond','Noto Serif JP',serif;
  font-size:14px;letter-spacing:0.15em;text-transform:uppercase;
  padding-bottom:8px;border-bottom:1px solid rgba(184,149,106,0.3);
  transition:all 0.4s;
}
.tp-hero__cta:hover{border-bottom-color:#b8956a;letter-spacing:0.2em}
.tp-hero__cta svg{transition:transform 0.4s}
.tp-hero__cta:hover svg{transform:translateX(4px)}

.tp-hero__side{
  position:relative;padding:48px;
  background:rgba(255,255,255,0.025);border:1px solid rgba(255,255,255,0.06);
}
.tp-hero__side::before{
  content:'';position:absolute;top:-1px;left:48px;right:48px;height:1px;background:#b8956a;
}
.tp-hero__stat{margin-bottom:40px}
.tp-hero__stat:last-child{margin-bottom:0}
.tp-hero__stat-value{
  font-family:'Cormorant Garamond','Noto Serif JP',serif;
  font-size:56px;font-weight:300;color:rgba(255,255,255,0.88);line-height:1;margin-bottom:4px;
}
.tp-hero__stat-value small{font-size:20px;color:#b8956a;margin-left:2px}
.tp-hero__stat-label{font-size:11px;color:rgba(255,255,255,0.28);letter-spacing:0.1em}

/* --- TPM About --- */
.tp-about__grid{display:grid;grid-template-columns:280px 1fr;gap:80px}
.tp-about__right{max-width:600px}

/* --- TPM Table --- */
.tp-tbl{width:100%;max-width:720px;border-collapse:collapse}
.tp-tbl th{
  font-size:10px;letter-spacing:0.2em;text-transform:uppercase;
  color:rgba(255,255,255,0.28);font-weight:400;text-align:left;
  padding:0 20px 16px;border-bottom:1px solid rgba(184,149,106,0.12);
}
.tp-tbl td{
  padding:16px 20px;font-size:13px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.28);font-weight:300;
}
.tp-tbl tr:last-child td{border-bottom:none}
.tp-tbl__hl{color:rgba(255,255,255,0.8)}
.tp-tbl__hl strong{color:#b8956a;font-weight:500}

/* --- TPM Benefits --- */
.tp-benefits{max-width:640px}
.tp-benefits__item{
  display:grid;grid-template-columns:48px 1fr;gap:24px;
  padding:36px 0;border-bottom:1px solid #ebe7e0;align-items:baseline;
}
.tp-benefits__item:last-child{border-bottom:none}
.tp-benefits__num{
  font-family:'Cormorant Garamond','Noto Serif JP',serif;
  font-size:24px;font-weight:300;color:#b8956a;line-height:1.2;
}
.tp-benefits__item h3{
  font-family:var(--font-serif);font-size:15px;font-weight:500;
  color:#1a1a1a;margin-bottom:8px;line-height:1.6;
}
.tp-benefits__item p{font-size:13px;color:#555;line-height:2;font-weight:300}

/* --- TPM Approach --- */
.tp-approach__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(255,255,255,0.06);
}
.tp-approach__card{background:#13171f;padding:48px 40px}
.tp-approach__idx{
  font-family:'Cormorant Garamond','Noto Serif JP',serif;
  font-size:36px;font-weight:300;color:rgba(184,149,106,0.2);margin-bottom:24px;line-height:1;
}
.tp-approach__card h3{
  font-family:var(--font-serif);font-size:15px;font-weight:500;
  color:rgba(255,255,255,0.88);margin-bottom:16px;line-height:1.7;
}
.tp-approach__card p{font-size:13px;color:rgba(255,255,255,0.28);line-height:2.1;font-weight:300}

/* --- TPM Roadmap --- */
.tp-roadmap{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;max-width:900px;margin:0 auto}
.tp-roadmap__step{background:#ebe7e0;padding:40px 32px;position:relative}
.tp-roadmap__step::before{content:'';position:absolute;top:0;left:0;width:100%;height:2px;background:#b8956a;opacity:0.4}
.tp-roadmap__badge{
  font-family:'Cormorant Garamond','Noto Serif JP',serif;
  font-size:11px;letter-spacing:0.3em;text-transform:uppercase;color:#b8956a;margin-bottom:20px;
}
.tp-roadmap__step h3{font-family:var(--font-serif);font-size:16px;font-weight:500;color:#1a1a1a;margin-bottom:12px}
.tp-roadmap__step p{font-size:12px;color:#555;line-height:2;font-weight:300}

/* --- TPM Book --- */
.tp-book{
  padding:140px 0;background:#090c10;position:relative;overflow:hidden;
}
.tp-book::before{
  content:'';position:absolute;top:50%;left:50%;width:800px;height:800px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(184,149,106,0.02),transparent 60%);pointer-events:none;
}
.tp-book__grid{
  display:grid;grid-template-columns:200px 1fr;gap:72px;
  align-items:center;max-width:740px;margin:0 auto;position:relative;
}
.tp-book__cover{box-shadow:0 40px 80px rgba(0,0,0,0.5),0 0 0 1px rgba(255,255,255,0.03)}
.tp-book__cover img{width:100%;display:block}
.tp-book__title{
  font-family:var(--font-serif);font-size:clamp(1.1rem,2vw,1.4rem);font-weight:500;
  color:rgba(255,255,255,0.88);line-height:1.8;margin:24px 0 16px;
}
.tp-book__sub{font-size:13px;color:#b8956a;margin-bottom:24px;font-weight:300}
.tp-book__desc{font-size:13px;color:rgba(255,255,255,0.28);line-height:2.1;margin-bottom:20px;font-weight:300}
.tp-book__author{font-family:var(--font-serif);font-size:13px;color:rgba(255,255,255,0.5);font-weight:400}

/* --- TPM FAQ --- */
.tp-faq{max-width:640px}
.tp-faq__item{padding:28px 0;border-bottom:1px solid #ebe7e0}
.tp-faq__item:last-child{border-bottom:none}
.tp-faq__item h3{font-family:var(--font-serif);font-size:14px;font-weight:500;color:#1a1a1a;margin-bottom:12px;line-height:1.7}
.tp-faq__item p{font-size:13px;color:#555;line-height:2;font-weight:300;padding-left:16px;border-left:1px solid #b8956a}

/* --- TPM CTA --- */
.tp-cta{
  padding:160px 64px;background:#090c10;text-align:center;
  position:relative;border-top:1px solid rgba(255,255,255,0.06);
}
.tp-cta::before{
  content:'';position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  width:60px;height:1px;background:#b8956a;
}
.tp-cta__title{
  font-family:var(--font-serif);font-size:clamp(1.2rem,2vw,1.5rem);font-weight:400;
  color:rgba(255,255,255,0.88);margin:32px 0 16px;
}
.tp-cta__text{font-size:13px;color:rgba(255,255,255,0.28);line-height:2;margin-bottom:8px}
.tp-cta__note{font-size:11px;color:rgba(255,255,255,0.28);opacity:0.5;margin-bottom:48px}
.tp-cta__buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.tp-btn-gold{
  display:inline-flex;align-items:center;gap:12px;
  background:#b8956a;color:#090c10;
  padding:15px 40px;font-size:12px;font-weight:500;
  text-decoration:none;letter-spacing:0.1em;transition:all 0.4s;
}
.tp-btn-gold:hover{background:#c9a274;transform:translateY(-2px);box-shadow:0 8px 24px rgba(184,149,106,0.2)}
.tp-btn-ghost{
  display:inline-flex;align-items:center;gap:12px;
  border:1px solid rgba(255,255,255,0.06);color:rgba(255,255,255,0.5);
  padding:15px 40px;font-size:12px;font-weight:400;
  text-decoration:none;letter-spacing:0.1em;transition:all 0.4s;
}
.tp-btn-ghost:hover{border-color:#b8956a;color:#b8956a}

/* --- TPM Responsive --- */
@media(max-width:900px){
  .tp-container{padding:0 32px}
  .tp-hero{padding-bottom:80px;min-height:auto;padding-top:120px}
  .tp-hero__grid{grid-template-columns:1fr;gap:48px}
  .tp-hero__side{padding:32px}
  .tp-hero__stat-value{font-size:40px}
  .tp-about__grid{grid-template-columns:1fr;gap:32px}
  .tp-approach__grid{grid-template-columns:1fr;gap:0}
  .tp-roadmap{grid-template-columns:1fr;gap:0}
  .tp-book__grid{grid-template-columns:1fr;gap:40px;text-align:center}
  .tp-book__cover{max-width:160px;margin:0 auto}
  .tp-cta{padding:100px 32px}
  .tp-sec--pad{padding:100px 0}
}
@media(max-width:600px){
  .tp-hero__title{font-size:1.6rem}
  .tp-tbl th,.tp-tbl td{padding:12px 10px;font-size:12px}
  .sp-hide{display:none}
}

/* ============================================================
   CFO LP PAGE
   ============================================================ */
.cfo-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cfo-pain__item {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  background: rgba(255,255,255,0.04);
  transition: all .3s ease;
}

.cfo-pain__item:hover {
  border-color: #c5a55a;
  background: rgba(255,255,255,0.08);
}

.cfo-pain__icon {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #c5a55a;
  margin-bottom: 20px;
}

.cfo-pain__item p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}

.cfo-pain__item strong {
  color: #fff;
  font-weight: 600;
}

/* Service Cards */
.cfo-service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cfo-service__card {
  padding: 36px 28px;
  border: 1px solid #e0dcd4;
  background: #fff;
  transition: all .3s ease;
}

.cfo-service__card:hover {
  border-color: #c5a55a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.cfo-service__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #c5a55a;
  margin-bottom: 20px;
}

.cfo-service__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 2px solid #c5a55a;
  display: inline-block;
}

.cfo-service__desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece6;
}

/* Why Us */
.cfo-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cfo-why__item {
  padding: 36px;
  border-left: 3px solid #c5a55a;
  background: #fafaf7;
}

.cfo-why__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #c5a55a;
  margin-bottom: 16px;
}

.cfo-why__item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.6;
}

.cfo-why__item p {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
}

/* Pricing */
.cfo-pricing {
  display: flex;
  justify-content: center;
}

.cfo-pricing__card {
  max-width: 560px;
  width: 100%;
  padding: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.cfo-pricing__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #c5a55a;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cfo-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}

.cfo-pricing__yen {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}

.cfo-pricing__amount {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.cfo-pricing__unit {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}

.cfo-pricing__unit small {
  font-size: 0.9rem;
}

.cfo-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.cfo-pricing__features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding-left: 28px;
  position: relative;
}

.cfo-pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c5a55a;
  font-weight: 600;
}

.cfo-pricing__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* Flow */
.cfo-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cfo-flow__step {
  padding: 32px 24px;
  border: 1px solid #e0dcd4;
  background: #fff;
  text-align: center;
}

.cfo-flow__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #c5a55a;
  margin-bottom: 20px;
  font-weight: 500;
}

.cfo-flow__step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.cfo-flow__step p {
  font-size: 1rem;
  line-height: 1.85;
  color: #666;
}

/* CFO LP Responsive */
@media (max-width: 900px) {
  .cfo-pain__grid { grid-template-columns: repeat(2, 1fr); }
  .cfo-service__grid { grid-template-columns: repeat(2, 1fr); }
  .cfo-why__grid { grid-template-columns: 1fr; }
  .cfo-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cfo-pain__grid { grid-template-columns: 1fr; }
  .cfo-service__grid { grid-template-columns: 1fr; }
  .cfo-flow { grid-template-columns: 1fr; }
  .cfo-pricing__amount { font-size: 3rem; }
  .cfo-pricing__card { padding: 32px 24px; }
}

/* Featured Service Item */
.service-detail__item--featured {
  border: 2px solid var(--gold);
  padding: 48px;
  background: linear-gradient(135deg, #fafaf7 0%, #fff 100%);
  margin-bottom: 32px;
}

.service-detail__item--featured .service-detail__content h3 {
  font-size: 1.4rem;
}

/* ============================================================
   CFO LP - HERO TAGS
   ============================================================ */
.cfo-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.cfo-hero__tags span {
  padding: 6px 14px;
  font-size: 0.78rem;
  border: 1px solid rgba(197,165,90,0.4);
  color: rgba(255,255,255,0.8);
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* ============================================================
   CFO LP - POSSIBLE SECTION
   ============================================================ */
.cfo-possible {
  background: #fff;
  padding: 48px;
  border: 1px solid #e0dcd4;
}

.cfo-possible__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 32px;
  text-align: center;
}

.cfo-possible__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cfo-possible__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cfo-possible__item p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #666;
}

/* ============================================================
   CFO LP - SERVICE LIST ITEMS
   ============================================================ */
.cfo-service__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cfo-service__list li {
  padding: 7px 0 7px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  position: relative;
  border-bottom: 1px solid #f0ece6;
}

.cfo-service__list li:last-child {
  border-bottom: none;
}

.cfo-service__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c5a55a;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================================
   CFO LP - COMPARISON TABLE
   ============================================================ */
.cfo-pricing__compare {
  margin-top: 36px;
  text-align: left;
}

.cfo-pricing__compare h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.cfo-pricing__compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cfo-pricing__compare thead th {
  padding: 12px 10px;
  border-bottom: 2px solid rgba(197,165,90,0.4);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: center;
  font-size: 0.82rem;
}

.cfo-pricing__compare thead th:first-child {
  text-align: left;
}

.cfo-pricing__compare tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  text-align: center;
  font-size: 0.85rem;
}

.cfo-pricing__compare tbody td:first-child {
  text-align: left;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.cfo-pricing__hl {
  color: #c5a55a !important;
  font-weight: 600 !important;
}

/* ============================================================
   CFO LP - RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .cfo-possible__grid { grid-template-columns: 1fr; }
  .cfo-possible { padding: 32px 24px; }
  .cfo-why__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 600px) {
  .cfo-hero__tags { gap: 6px; }
  .cfo-hero__tags span { font-size: 0.7rem; padding: 4px 10px; }
  .cfo-pricing__compare { overflow-x: auto; }
  .cfo-pricing__compare table { min-width: 480px; }
}

/* ============================================================
   3-AXIS SERVICES PAGE
   ============================================================ */
.svc-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 2.2;
  color: var(--gray-600);
}

.svc-intro strong {
  color: var(--gray-900);
}

.svc-axis {
  padding: 80px 0 100px;
}

.svc-axis--light {
  background: var(--white);
}

.svc-axis--cream {
  background: var(--gray-100);
}

.svc-axis__header {
  max-width: 800px;
  margin-bottom: 40px;
}

.svc-axis__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.svc-axis__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.4;
}

.svc-axis__lead {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--gray-600);
}

.svc-axis__image {
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 48px;
}

.svc-axis__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.svc-sub {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.svc-axis--cream .svc-sub {
  background: #fff;
}

.svc-sub:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.svc-sub h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.svc-sub p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--gray-500);
}

.svc-sub__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.svc-sub__link:hover {
  color: var(--gold-dark);
}

/* Front page 3-col services */
.services__grid--3col {
  grid-template-columns: repeat(3, 1fr) !important;
}

.service-card__axis {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

/* Pain card link to axis */
.pain-card__link {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.pain-card__link a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.pain-card__link a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid--3col { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .svc-sub__grid { grid-template-columns: 1fr; }
  .svc-axis__title { font-size: 1.4rem; }
  .svc-axis__image { aspect-ratio: 16/9; }
  .services__grid--3col { grid-template-columns: 1fr !important; }
}
