/* =============================================
   株式会社医療経営 prototype2 — 共通スタイル
   ターゲット：医療機関の経営者（理事長・院長）
   トーン：品格・信頼・誠実
============================================= */

/* ---- Variables ---- */
:root {
  --navy:       #0c1e38;
  --navy-mid:   #1a3358;
  --navy-light: #234070;
  --gold:       #9a7b35;
  --gold-light: #c4a44e;
  --gold-pale:  #f5efe0;
  --white:      #ffffff;
  --off-white:  #f7f5f2;
  --gray-50:    #f2f0ed;
  --gray-100:   #e8e5e0;
  --gray-400:   #9a9590;
  --gray-600:   #5a5650;
  --text:       #1c1c1a;
  --text-mid:   #4a4845;
  --r:          8px;
  --max:        1020px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: opacity .2s; }
img { max-width: 100%; display: block; }

/* ---- Draft bar ---- */
.draft-bar {
  background: #f6ad55;
  color: #7b341e;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 0;
  letter-spacing: .06em;
  position: relative; z-index: 200;
}

/* ==============================================
   Header
============================================== */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--navy);
  height: 64px;
  display: flex; align-items: center;
  transition: box-shadow .3s;
}
.site-header.shadow { box-shadow: 0 2px 20px rgba(0,0,0,.22); }

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

.site-logo {
  font-size: 14px; font-weight: 700;
  color: var(--white);
  letter-spacing: .05em; line-height: 1.4;
}
.site-logo small {
  display: block; font-size: 10px;
  font-weight: 400; opacity: .55;
  letter-spacing: .1em; margin-top: 1px;
}

.site-nav {
  display: flex; align-items: center; gap: 18px;
}
.site-nav a {
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  border-color: var(--gold-light);
  opacity: 1;
}
.nav-contact {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-contact:hover {
  background: var(--gold-light) !important;
  border-color: transparent !important;
  transform: translateY(-1px);
}

/* ==============================================
   Layout Helpers
============================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section       { padding: 88px 0; }
.section--gray { background: var(--off-white); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy-mid { background: var(--navy-mid); color: var(--white); }

/* ==============================================
   Section Typography
============================================== */
.sec-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--gold);
}

.sec-title {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section--navy .sec-title,
.section--navy-mid .sec-title { color: var(--white); }
.section--navy .sec-label,
.section--navy-mid .sec-label { color: var(--gold-light); }
.section--navy .sec-label::before,
.section--navy-mid .sec-label::before { background: var(--gold-light); }

.sec-title--center { text-align: center; }
.sec-title--center ~ .sec-label { justify-content: center; }

.sec-lead {
  font-size: 15.5px; line-height: 2;
  color: var(--text-mid);
  max-width: 640px;
}
.section--navy .sec-lead,
.section--navy-mid .sec-lead { color: rgba(255,255,255,.72); }

/* 見出し下の金線 */
.title-underline {
  display: inline-block;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* ==============================================
   Scroll Reveal
============================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ==============================================
   Hero
============================================== */
.hero {
  min-height: 82vh;
  position: relative;
  display: flex; align-items: center;
  background-color: var(--navy);
  background-image: url('shutterstock_Dr_and2.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,44,.56) 0%,
    rgba(12,30,56,.42) 55%,
    rgba(18,42,75,.26) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto; padding: 120px 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-light); text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .7s .1s both;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 700; line-height: 1.35;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 24px;
  animation: fadeUp .7s .25s both;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.75);
  margin-bottom: 48px;
  max-width: 500px; line-height: 1.8;
  animation: fadeUp .7s .4s both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .7s .55s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s 1.2s both;
  z-index: 2;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: .16em;
  color: rgba(255,255,255,.38);
}
.scroll-mouse {
  width: 20px; height: 32px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute;
  width: 3px; height: 5px;
  background: rgba(255,255,255,.45);
  border-radius: 2px;
  top: 5px; left: 50%; transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollDown {
  0%   { opacity:1; transform:translateX(-50%) translateY(0); }
  100% { opacity:0; transform:translateX(-50%) translateY(12px); }
}

/* ==============================================
   Buttons
============================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  transition: all .22s;
}
.btn--gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 2px 12px rgba(154,123,53,.3);
}
.btn--gold:hover {
  background: var(--gold-light); opacity:1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154,123,53,.4);
}
.btn--ghost-white {
  background: transparent; color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.35);
}
.btn--ghost-white:hover {
  border-color: rgba(255,255,255,.75);
  color: var(--white); opacity: 1;
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy); color: var(--white);
}
.btn--navy:hover { background: var(--navy-mid); opacity:1; transform: translateY(-1px); }

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

.btn--full { width: 100%; justify-content: center; }

/* ==============================================
   Page Header (サブページ用)
============================================== */
.page-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  color: var(--gold-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-light);
}
.page-hero-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  color: var(--white); letter-spacing: .03em; margin-bottom: 14px;
}
.page-hero-lead {
  font-size: 15px; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.9;
}

/* ==============================================
   Cards
============================================== */
.card-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.card-grid-2 {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px; padding: 36px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(10,22,44,.1);
  transform: translateY(-3px);
  border-color: rgba(154,123,53,.3);
}

.card__num {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: var(--gold); margin-bottom: 16px;
}
.card__icon {
  font-size: 28px; margin-bottom: 18px; line-height: 1;
}
.card__title {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.45;
}
.card__body {
  font-size: 14px; color: var(--text-mid); line-height: 1.9;
}

/* ==============================================
   Pillar Section (3つの柱)
============================================== */
.pillar-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 36px 0; border-bottom: 1px solid var(--gray-100);
}
.pillar-item:first-child { border-top: 1px solid var(--gray-100); }
.pillar-num {
  font-size: 28px; font-weight: 700; color: var(--gold);
  line-height: 1; padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.pillar-title {
  font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.pillar-body { font-size: 15px; color: var(--text-mid); line-height: 2; }

/* ==============================================
   Quote / Statement Block
============================================== */
.statement {
  padding: 48px 56px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 24px rgba(10,22,44,.07);
}
.statement p {
  font-size: 16px; line-height: 2.1; color: var(--text);
}
.statement-author {
  margin-top: 20px; font-size: 13px;
  color: var(--gray-600); font-weight: 600;
}

/* ==============================================
   Profile Block
============================================== */
.profile-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start;
}
.profile-photo-wrap {
  position: relative;
}
.profile-photo-wrap::before {
  content: '';
  position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--gold); border-radius: 4px;
  opacity: .4;
}
.profile-photo {
  width: 100%; border-radius: 4px; position: relative; z-index: 1;
}
.profile-name {
  font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.profile-name-kana { font-size: 13px; color: var(--gray-400); margin-bottom: 6px; }
.profile-role { font-size: 13px; color: var(--text-mid); margin-bottom: 28px; }
.profile-text { font-size: 15px; line-height: 2; color: var(--text-mid); }

/* ==============================================
   Steps (3段階)
============================================== */
.step-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}
.step-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 10px; overflow: hidden; margin-bottom: 16px;
  transition: box-shadow .25s;
}
.step-item:hover { box-shadow: 0 8px 32px rgba(10,22,44,.08); }
.step-num {
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  flex-direction: column; gap: 4px;
  padding: 24px 16px;
}
.step-num em { font-size: 22px; font-style: normal; font-weight: 700; }
.step-body { padding: 28px 32px; background: var(--white); }
.step-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-text { font-size: 14px; color: var(--text-mid); line-height: 1.9; }
.step-item--highlight .step-num { background: var(--gold); }

/* ==============================================
   Table (会社概要)
============================================== */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td {
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}
.info-table th {
  width: 200px; font-weight: 600;
  color: var(--gray-600); background: var(--off-white);
  white-space: nowrap;
}
.info-table td { color: var(--text); }

/* ==============================================
   Pain Points
============================================== */
.pain-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
.pain-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-left: 3px solid var(--gold);
  padding: 20px 22px; border-radius: 0 8px 8px 0;
  font-size: 15px; color: var(--text);
  transition: box-shadow .2s;
}
.pain-item:hover { box-shadow: 0 4px 16px rgba(10,22,44,.08); }

/* ==============================================
   Testimonials
============================================== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.testimonial {
  background: var(--white); border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial::before {
  content: '「';
  position: absolute; top: 16px; left: 18px;
  font-size: 40px; color: var(--gold); opacity: .3;
  font-family: serif; line-height: 1;
}
.testimonial p {
  font-size: 15px; line-height: 1.9; color: var(--text);
  padding-top: 12px;
}

/* ==============================================
   Policy (プライバシーポリシー)
============================================== */
.policy-item {
  border-left: 3px solid var(--gold);
  padding: 0 0 0 20px;
  margin-bottom: 36px;
}
.policy-heading {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.6;
}
.policy-body {
  font-size: 15px; color: var(--text-mid); line-height: 2;
}

/* ==============================================
   Book Grid (著作物)
============================================== */
.book-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.book-item {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px; padding: 28px;
  box-shadow: 0 2px 12px rgba(10,22,44,.05);
}
.book-cover {
  width: 110px; flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 4px 4px 16px rgba(10,22,44,.15);
}
.book-info { flex: 1; }
.book-title {
  font-size: 15px; font-weight: 700; line-height: 1.65;
  color: var(--navy); margin-bottom: 12px;
}
.book-meta {
  font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px;
}
.book-publisher {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); border: 1px solid var(--gold);
  border-radius: 3px; padding: 2px 8px;
}

/* ==============================================
   CTA Banner
============================================== */
.cta-section {
  padding: 88px 0;
  background: var(--navy);
  text-align: center;
}
.cta-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--white);
  margin-bottom: 14px;
}
.cta-body {
  font-size: 15px; color: rgba(255,255,255,.7);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.9;
}
.cta-tel {
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.cta-tel-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==============================================
   Contact Form
============================================== */
.form-wrap { max-width: 680px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.form-req {
  font-size: 11px; color: #c0392b; font-weight: 700; margin-left: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-100); border-radius: var(--r);
  font-size: 15px; font-family: inherit; color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154,123,53,.12);
}
.form-textarea { min-height: 150px; resize: vertical; }

.form-tel-box {
  background: var(--off-white); border-radius: 10px; padding: 24px 28px;
  margin-bottom: 40px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.form-tel-num { font-size: 22px; font-weight: 700; color: var(--navy); }
.form-tel-hours { font-size: 12px; color: var(--gray-600); margin-top: 2px; }

/* ==============================================
   Case Study
============================================== */
.case-study {
  background: var(--off-white); border-radius: 12px; padding: 48px;
  border-left: 4px solid var(--gold);
  position: relative; overflow: hidden;
}
.case-study::before {
  content: 'CASE';
  position: absolute; top: 20px; right: 28px;
  font-size: 72px; font-weight: 700;
  color: var(--gold); opacity: .07; line-height: 1;
  letter-spacing: .06em;
}
.case-study-title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px;
}
.case-study p {
  font-size: 15px; color: var(--text-mid); line-height: 2; margin-bottom: 16px;
}

/* ==============================================
   Columns
============================================== */
.column-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
}
.column-list--grid,
.column-list--featured {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.column-list--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.column-card {
  display: block;
  min-width: 0;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  padding: 32px;
  overflow-wrap: anywhere;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.column-card:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: rgba(154,123,53,.35);
  box-shadow: 0 14px 32px rgba(10,22,44,.08);
}
.column-card--featured {
  border-color: rgba(154,123,53,.3);
  box-shadow: 0 10px 28px rgba(10,22,44,.06);
}
.column-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.column-card__meta span {
  color: var(--gray-600);
  letter-spacing: 0;
  font-weight: 500;
  font-size: 11px;
  overflow-wrap: anywhere;
}
.column-card__title {
  font-size: 19px;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.column-card__lead {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
}
.column-article {
  max-width: 760px;
  margin: 0 auto;
}
.column-article__subtitle {
  font-size: 20px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.column-article p {
  font-size: 16px;
  line-height: 2.15;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.column-article blockquote {
  margin: 28px 0;
  padding: 28px 34px;
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-weight: 500;
  line-height: 2;
}
.column-article h2 {
  font-size: 24px;
  line-height: 1.55;
  color: var(--navy);
  margin: 48px 0 18px;
  padding-top: 8px;
}
.column-article ul {
  padding-left: 1.2em;
  margin: 18px 0 30px;
  color: var(--text-mid);
  line-height: 2;
}
.column-article li {
  margin-bottom: 8px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 12px;
  color: var(--gray-600);
}
.breadcrumb a {
  color: var(--gold);
  font-weight: 700;
}
.breadcrumb span::before {
  content: '>';
  margin-right: 8px;
  color: var(--gray-400);
}
.article-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.article-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
}
.article-meta span {
  background: var(--navy);
  color: var(--white);
}
.tag-row span {
  background: var(--gold-pale);
  color: var(--navy);
}
.category-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.category-filter {
  appearance: none;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}
.category-filter.active,
.category-filter:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-pale);
}
.author-box {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  margin: 56px 0 32px;
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
}
.author-box__photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}
.author-box__label {
  font-size: 12px !important;
  margin-bottom: 4px !important;
  color: var(--gold) !important;
  font-weight: 700;
}
.author-box__name {
  font-size: 20px !important;
  color: var(--navy) !important;
  font-weight: 700;
  margin-bottom: 8px !important;
}
.author-box__body {
  font-size: 14px !important;
  line-height: 1.8 !important;
  margin-bottom: 10px !important;
}
.text-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.article-cta {
  margin: 36px 0;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
}
.article-cta p {
  color: rgba(255,255,255,.82);
  margin-bottom: 20px;
}
.related-section {
  margin-top: 48px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.related-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  background: var(--white);
}
.related-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.related-card strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.7;
}
.column-link-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding: 42px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
}
.column-link-panel__list {
  display: grid;
  gap: 12px;
}
.column-link-panel__item {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

/* ==============================================
   Stats Row
============================================== */
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--navy-mid);
  border-radius: 12px; overflow: hidden;
}
.stat-box {
  padding: 44px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(255,255,255,.04); }
.stat-num {
  font-size: 46px; font-weight: 700; line-height: 1;
  color: var(--white); margin-bottom: 10px;
  letter-spacing: -.01em;
}
.stat-num span { font-size: 18px; font-weight: 400; opacity: .7; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ==============================================
   Footer
============================================== */
.site-footer {
  background: #070e1c; padding: 52px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-logo {
  font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.footer-address { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.8; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-nav a { font-size: 12.5px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav a:hover { color: var(--white); opacity:1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,.25);
}
.footer-bottom a {
  color: rgba(255,255,255,.25); text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.55); }

/* ==============================================
   Utilities
============================================== */
.text-center { text-align: center; }
.text-center .sec-lead { margin-left: auto; margin-right: auto; }
.mt-12  { margin-top: 12px; }
.mt-20  { margin-top: 20px; }
.mt-32  { margin-top: 32px; }
.mt-40  { margin-top: 40px; }
.mt-56  { margin-top: 56px; }
.mb-8   { margin-bottom: 8px; }
.mb-40  { margin-bottom: 40px; }
.divider { height: 1px; background: var(--gray-100); }
.gold-text { color: var(--gold); }

/* ==============================================
   Responsive
============================================== */
@media (max-width: 860px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-wrap::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pain-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .step-item { grid-template-columns: 60px 1fr; }
  .column-list--grid,
  .column-list--featured,
  .related-grid,
  .column-link-panel {
    grid-template-columns: 1fr;
  }
  .author-box {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
  .form-tel-box { flex-direction: column; }
  .site-nav { gap: 12px; }
  .hero-title { font-size: 30px; }
  .statement { padding: 32px 28px; }
  .case-study { padding: 32px; }
}
