/* ==========================================================================
   この道福祉会 × Heartful Education 共創ウェブサイト デザインシステム
   Based on Craft Japan UI & Happy Note (HN) Warm Caring Palette
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

:root {
  /* HN & Craft Japan Warm Color Palette */
  --hn-cream:          #FFFDF9; /* Background Canvas */
  --hn-bg-subtle:      #FFF8EE; /* Section & Card Soft Amber */
  --hn-bg-accent:      #FEF3C7; /* Highlight Pill & Tag Background */
  --hn-orange-main:    #E97E2D; /* Primary Accent / Craft Japan Orange */
  --hn-orange-hover:   #D96B1E; /* Button Hover State */
  --hn-orange-deep:    #B45309; /* Deep Orange for subheadings */
  --hn-amber-dark:     #78350F; /* High-contrast Titles */
  --hn-mustard:        #F59E0B; /* Badges & Star Accents */
  --hn-text-main:      #3D2C1E; /* Primary Warm Dark Brown */
  --hn-text-body:      #4A3B32; /* Readable Body Text */
  --hn-text-muted:     #786C64; /* Captions & Subtext */
  --hn-border-light:   #F3E8D8; /* Gentle Dividers */
  --hn-card-border:    #FDE68A; /* Warm Card Borders */
  --hn-green-accent:   #3B7A57; /* Nature / Peace Sage Green */
  --hn-green-subtle:   #EAF4EC; /* Light Green Tag */
  --hn-white:          #FFFFFF;
  --hn-shadow-sm:      0 2px 8px rgba(61, 44, 30, 0.04);
  --hn-shadow-md:      0 8px 24px rgba(61, 44, 30, 0.08);
  --hn-shadow-lg:      0 16px 40px rgba(61, 44, 30, 0.12);
  --hn-radius-sm:      8px;
  --hn-radius-md:      16px;
  --hn-radius-lg:      24px;
  --hn-radius-full:    9999px;

  /* Typography */
  --font-base: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-en:   'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-base);
  color: var(--hn-text-body);
  background-color: var(--hn-cream);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

/* Utility Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hn-border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--hn-shadow-sm);
  background: rgba(255, 253, 249, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 52px;
  width: auto;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hn-text-main);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--hn-orange-main);
  border-radius: var(--hn-radius-full);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--hn-orange-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.header-tel .tel-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--hn-orange-deep);
  letter-spacing: 0.5px;
}

.header-tel .tel-num {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hn-amber-dark);
  line-height: 1.1;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--hn-radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--hn-shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--hn-orange-main) 0%, #E36D19 100%);
  color: var(--hn-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E36D19 0%, #CC5B0F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 126, 45, 0.35);
}

.btn-outline {
  background: var(--hn-white);
  color: var(--hn-orange-main);
  border: 2px solid var(--hn-orange-main);
}

.btn-outline:hover {
  background: var(--hn-bg-subtle);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--hn-text-main);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--hn-radius-full);
  background: var(--hn-bg-accent);
  color: var(--hn-orange-deep);
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--hn-amber-dark);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--hn-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--hn-bg-subtle) 0%, var(--hn-cream) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #FFF;
  border: 1px solid var(--hn-card-border);
  border-radius: var(--hn-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hn-orange-deep);
  box-shadow: var(--hn-shadow-sm);
}

.hero-title {
  font-size: 2.65rem;
  font-weight: 900;
  color: var(--hn-amber-dark);
  line-height: 1.28;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--hn-orange-main);
  background: linear-gradient(transparent 65%, #FDE68A 65%);
  display: inline;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--hn-text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hn-border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hn-text-main);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EAF4EC;
  color: var(--hn-green-accent);
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--hn-radius-lg);
  overflow: hidden;
  box-shadow: var(--hn-shadow-lg);
  border: 4px solid var(--hn-white);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--hn-radius-md);
  box-shadow: var(--hn-shadow-md);
  border: 1px solid var(--hn-card-border);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.floating-icon {
  width: 44px;
  height: 44px;
  background: var(--hn-bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-orange-main);
  flex-shrink: 0;
}

.floating-text h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
}

.floating-text p {
  font-size: 0.78rem;
  color: var(--hn-text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   3つの強み (Core Strengths)
   ========================================================================== */
.strengths-section {
  padding: 80px 0;
  background: var(--hn-cream);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  background: var(--hn-white);
  border-radius: var(--hn-radius-md);
  padding: 36px 28px;
  border: 1px solid var(--hn-border-light);
  box-shadow: var(--hn-shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hn-shadow-md);
  border-color: var(--hn-card-border);
}

.strength-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hn-orange-main);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.strength-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.strength-desc {
  font-size: 0.95rem;
  color: var(--hn-text-body);
  line-height: 1.7;
  flex-grow: 1;
}

.strength-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hn-orange-deep);
  background: var(--hn-bg-subtle);
  padding: 4px 10px;
  border-radius: var(--hn-radius-sm);
}

/* ==========================================================================
   事業所・サービス紹介セクション
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background: var(--hn-bg-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--hn-white);
  border-radius: var(--hn-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hn-border-light);
  box-shadow: var(--hn-shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.service-card:hover .service-thumb img {
  transform: scale(1.04);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--hn-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hn-orange-deep);
  border: 1px solid var(--hn-card-border);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header {
  margin-bottom: 14px;
}

.service-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
  line-height: 1.4;
  margin-bottom: 6px;
}

.service-category {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hn-orange-main);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--hn-text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.meta-pill {
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--hn-radius-sm);
  background: var(--hn-bg-subtle);
  color: var(--hn-text-main);
  font-weight: 600;
  border: 1px solid #F3E8D8;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--hn-border-light);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hn-orange-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--hn-orange-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   受入れ認定機関 & Heartful Education 特集セクション
   ========================================================================== */
.global-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF4E5 100%);
  position: relative;
  overflow: hidden;
}

.global-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}

.global-content .section-tag {
  background: #FEF3C7;
  color: #B45309;
}

.global-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--hn-amber-dark);
  line-height: 1.35;
  margin-bottom: 20px;
}

.global-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--hn-text-body);
  margin-bottom: 28px;
}

.feature-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--hn-white);
  padding: 16px 20px;
  border-radius: var(--hn-radius-md);
  border: 1px solid var(--hn-card-border);
  box-shadow: var(--hn-shadow-sm);
}

.step-icon {
  width: 36px;
  height: 36px;
  background: var(--hn-bg-accent);
  color: var(--hn-orange-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.step-text h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
  margin-bottom: 4px;
}

.step-text p {
  font-size: 0.88rem;
  color: var(--hn-text-muted);
  line-height: 1.5;
}

.global-visual {
  position: relative;
}

.global-visual-card {
  border-radius: var(--hn-radius-lg);
  overflow: hidden;
  box-shadow: var(--hn-shadow-lg);
  border: 4px solid var(--hn-white);
}

.global-visual-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   お知らせ・入札公告セクション
   ========================================================================== */
.news-section {
  padding: 80px 0;
  background: var(--hn-cream);
}

.news-card-wrapper {
  background: var(--hn-white);
  border-radius: var(--hn-radius-lg);
  padding: 36px;
  border: 1px solid var(--hn-border-light);
  box-shadow: var(--hn-shadow-sm);
}

.news-list {
  display: flex;
  flex-direction: column;
  divide-y: 1px solid var(--hn-border-light);
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hn-border-light);
  transition: var(--transition);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.news-date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hn-text-muted);
  min-width: 100px;
}

.news-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--hn-radius-sm);
  background: var(--hn-bg-subtle);
  color: var(--hn-orange-deep);
  border: 1px solid var(--hn-card-border);
  white-space: nowrap;
}

.news-badge.important {
  background: #FEE2E2;
  color: #DC2626;
  border-color: #FECACA;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hn-text-main);
  flex-grow: 1;
}

.news-item:hover .news-title {
  color: var(--hn-orange-main);
}

.news-arrow {
  color: var(--hn-text-muted);
  transition: var(--transition);
}

.news-item:hover .news-arrow {
  color: var(--hn-orange-main);
  transform: translateX(4px);
}

/* ==========================================================================
   CTA Banner (無料相談・お問い合わせ)
   ========================================================================== */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--hn-amber-dark) 0%, #451A03 100%);
  color: var(--hn-white);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 126, 45, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #FFFDF9;
}

.cta-text p {
  font-size: 1.05rem;
  color: #FDE68A;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-buttons .btn-primary {
  background: var(--hn-orange-main);
  color: var(--hn-white);
}

.cta-buttons .btn-primary:hover {
  background: #F59E0B;
}

.cta-buttons .btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--hn-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #2B1D12;
  color: #D6CEC7;
  padding: 70px 0 30px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #E6DFD9;
}

.footer-nav-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFDF9;
  margin-bottom: 20px;
  border-left: 3px solid var(--hn-orange-main);
  padding-left: 10px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: #B8ADA4;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--hn-orange-main);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #9C8F85;
}

/* ==========================================================================
   Page Specific: Services / Hakaze / Timeline
   ========================================================================== */
.page-hero {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, var(--hn-bg-subtle) 0%, var(--hn-cream) 100%);
  text-align: center;
  border-bottom: 1px solid var(--hn-border-light);
}

.page-hero .section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.facility-spotlight {
  padding: 80px 0;
  background: var(--hn-white);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.spotlight-visual img {
  border-radius: var(--hn-radius-lg);
  box-shadow: var(--hn-shadow-lg);
  border: 4px solid var(--hn-bg-subtle);
}

.spotlight-info h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--hn-amber-dark);
  margin-bottom: 16px;
}

.spotlight-meta-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}

.spotlight-meta-table th, .spotlight-meta-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--hn-border-light);
  font-size: 0.92rem;
}

.spotlight-meta-table th {
  width: 120px;
  background: var(--hn-bg-subtle);
  color: var(--hn-amber-dark);
  font-weight: 700;
  text-align: left;
}

/* Timeline */
.timeline-section {
  background: var(--hn-bg-subtle);
  padding: 70px 0;
}

.timeline-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 110px;
  width: 3px;
  background: var(--hn-card-border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-time {
  width: 90px;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hn-orange-deep);
  text-align: right;
  flex-shrink: 0;
  padding-top: 6px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--hn-orange-main);
  border: 4px solid var(--hn-white);
  box-shadow: 0 0 0 2px var(--hn-orange-main);
  flex-shrink: 0;
  z-index: 2;
  margin-top: 8px;
}

.timeline-content {
  background: var(--hn-white);
  padding: 16px 22px;
  border-radius: var(--hn-radius-md);
  border: 1px solid var(--hn-border-light);
  box-shadow: var(--hn-shadow-sm);
  flex-grow: 1;
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--hn-text-muted);
}

/* ==========================================================================
   Page Specific: About / Heartful Education / Network
   ========================================================================== */
.about-leaders-section {
  padding: 80px 0;
  background: var(--hn-cream);
}

.leader-card {
  background: var(--hn-white);
  border-radius: var(--hn-radius-lg);
  padding: 44px;
  border: 1px solid var(--hn-border-light);
  box-shadow: var(--hn-shadow-sm);
  margin-bottom: 40px;
}

.leader-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--hn-bg-subtle);
}

.leader-role-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--hn-radius-full);
  background: var(--hn-bg-accent);
  color: var(--hn-orange-deep);
}

.leader-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--hn-amber-dark);
}

.leader-quote {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hn-orange-main);
  margin-bottom: 18px;
  line-height: 1.5;
}

.leader-body {
  font-size: 1rem;
  color: var(--hn-text-body);
  line-height: 1.85;
}

/* Heartful Education Matrix */
.education-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}

.matrix-card {
  background: var(--hn-bg-subtle);
  border: 1px solid var(--hn-card-border);
  border-radius: var(--hn-radius-md);
  padding: 24px;
  transition: var(--transition);
}

.matrix-card:hover {
  background: var(--hn-white);
  box-shadow: var(--hn-shadow-md);
  transform: translateY(-4px);
}

.matrix-stage {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hn-orange-deep);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.matrix-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hn-amber-dark);
  margin-bottom: 10px;
}

.matrix-desc {
  font-size: 0.88rem;
  color: var(--hn-text-body);
  line-height: 1.6;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 29, 18, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content {
  background: var(--hn-white);
  border-radius: var(--hn-radius-lg);
  padding: 40px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--hn-shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--hn-bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hn-text-muted);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hn-text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--hn-border-light);
  border-radius: var(--hn-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--hn-bg-subtle);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--hn-orange-main);
  background: var(--hn-white);
  box-shadow: 0 0 0 3px rgba(233, 126, 45, 0.15);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .global-grid, .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .strengths-grid, .services-grid, .education-matrix {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header-tel {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .timeline-wrap::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 44px;
  }

  .timeline-time {
    width: auto;
    text-align: left;
    padding-top: 0;
  }

  .timeline-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    margin-top: 0;
  }
}
