/* ============================================================
   さくら福祉訓練所・さくら作業所 - Static HTML Unified Styles
   React版のビジュアルを完全再現。全ページこの1本で完結。
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --background-50: #fdfcfb;
  --background-100: #f5f3f0;
  --background-200: #e8e4df;
  --background-300: #d6d1cb;

  --primary-50: #fef5f4;
  --primary-100: #fde8e7;
  --primary-200: #fbd0ce;
  --primary-300: #f5a8a4;
  --primary-500: #c86f6a;
  --primary-600: #a85955;
  --primary-700: #8a4744;

  --accent-50: #fef5f6;
  --accent-100: #fde8ea;
  --accent-200: #fbd0d5;
  --accent-500: #cf7a88;
  --accent-600: #b0616e;

  --foreground-500: #8a8681;
  --foreground-600: #706c68;
  --foreground-700: #575450;
  --foreground-800: #3e3b38;
  --foreground-900: #252321;

  --font-heading: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--foreground-900);
  background: var(--background-50);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253,252,251,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

.header-inner {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .header-inner { padding: 0 2rem; height: 5rem; }
}
@media (min-width: 1024px) {
  .header-inner { padding: 0 3rem; }
}

.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo img { height: 2rem; width: auto; }
@media (min-width: 768px) {
  .header-logo img { height: 2.5rem; }
}

.header-nav { display: none; }
@media (min-width: 1024px) {
  .header-nav { display: flex; align-items: center; gap: 1.5rem; }
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-700);
  transition: color 0.3s;
}
.header-nav a:hover { color: var(--primary-500); }

.header-buttons { display: none; }
@media (min-width: 768px) {
  .header-buttons { display: flex; align-items: center; gap: 0.5rem; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--primary-500);
  color: #fff;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-600); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
  border-radius: 9999px;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary-500); color: #fff; }

/* ---------- Page Header ---------- */
.page-header {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: var(--background-100);
  text-align: center;
}
@media (min-width: 768px) {
  .page-header { padding-top: 8rem; padding-bottom: 3rem; }
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .page-header h1 { font-size: 1.875rem; }
}
.page-header .subtitle { font-size: 0.875rem; color: var(--foreground-500); }

/* ---------- Content Wrappers ---------- */
.content-wrapper {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .content-wrapper { padding: 4rem 2rem; }
}
@media (min-width: 1024px) {
  .content-wrapper { padding: 4rem 3rem; }
}

.content-wrapper-sm {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .content-wrapper-sm { padding: 4rem 2rem; }
}
@media (min-width: 1024px) {
  .content-wrapper-sm { padding: 4rem 3rem; }
}

.content-wrapper-md {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .content-wrapper-md { padding: 4rem 2rem; }
}
@media (min-width: 1024px) {
  .content-wrapper-md { padding: 4rem 3rem; }
}

/* ---------- Sections ---------- */
.section { margin-bottom: 4rem; }
@media (min-width: 768px) {
  .section { margin-bottom: 5rem; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground-800);
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-title { font-size: 1.5rem; }
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--foreground-500);
  text-align: center;
  margin-bottom: 2rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.card:hover { border-color: var(--primary-300); }
.card-accent:hover { border-color: var(--accent-500); }

.card-body { padding: 1rem; }
@media (min-width: 768px) {
  .card-body { padding: 1.25rem; }
}

.card-image {
  width: 100%;
  height: 10rem;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-image img { transform: scale(1.05); }

/* ---------- Grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ---------- Info Boxes ---------- */
.info-box {
  background: var(--background-100);
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-size: 0.875rem;
}
.info-box dl { display: flex; flex-direction: column; gap: 0.5rem; }
.info-box .info-row { display: flex; gap: 0.5rem; }
.info-box .info-label { color: var(--foreground-500); flex-shrink: 0; width: 4rem; }
.info-box .info-value { color: var(--foreground-800); }

.cta-box {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .cta-box { padding: 2rem; }
}

.accent-box {
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .accent-box { padding: 1.5rem; }
}

.catchphrase-box {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}
.catchphrase-box p {
  font-size: 0.875rem;
  color: var(--primary-600);
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .catchphrase-box p { font-size: 1rem; }
}

/* ---------- Tables ---------- */
.info-table {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--background-100);
  font-size: 0.875rem;
}
.info-table tbody tr:nth-child(even) { background: var(--background-50); }
.info-table tbody tr:nth-child(odd) { background: var(--background-100); }
.info-table td, .info-table th {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}
.info-table .time-cell {
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid var(--background-200);
}
.info-table .label-cell { color: var(--foreground-700); }

.org-table {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--background-200);
  background: var(--background-50);
  font-size: 0.875rem;
}
.org-table tbody tr:nth-child(even) { background: var(--background-50); }
.org-table tbody tr:nth-child(odd) { background: var(--background-100); }
.org-table th {
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  color: var(--foreground-600);
  text-align: left;
  white-space: nowrap;
  border-right: 1px solid var(--background-200);
  font-size: 0.875rem;
}
.org-table td {
  padding: 0.75rem 1.25rem;
  color: var(--foreground-800);
  font-size: 0.875rem;
}

/* ---------- Comparison Table (for blog) ---------- */
.comparison-table {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--background-200);
  background: var(--background-50);
  font-size: 0.8125rem;
  border-collapse: collapse;
}
.comparison-table thead th {
  padding: 0.75rem 1rem;
  background: var(--background-100);
  font-weight: 500;
  color: var(--foreground-700);
  border-bottom: 1px solid var(--background-200);
  text-align: left;
  font-size: 0.8125rem;
}
.comparison-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--background-100);
  color: var(--foreground-800);
  vertical-align: top;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:nth-child(even) { background: var(--background-50); }
.comparison-table tbody tr:nth-child(odd) { background: rgba(245,243,240,0.4); }
.overflow-x-auto { overflow-x: auto; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--primary-200);
}
@media (min-width: 768px) {
  .timeline-line { left: 1.5rem; }
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .timeline-item { padding-left: 4rem; }
}

.timeline-dot {
  position: absolute;
  left: 0.625rem;
  top: 0.375rem;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
  background: var(--primary-500);
  border: 2px solid var(--background-50);
}
@media (min-width: 768px) {
  .timeline-dot { left: 1.125rem; }
}

.timeline-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: border-color 0.3s;
}
.timeline-card:hover { border-color: var(--primary-300); }

.timeline-year {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.timeline-card h3 { font-size: 0.875rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.25rem; }
.timeline-card p { font-size: 0.75rem; color: var(--foreground-600); line-height: 1.6; }

/* ---------- Quick Nav Pills ---------- */
.quick-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--background-100);
  border: 1px solid var(--background-200);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--foreground-600);
  white-space: nowrap;
  transition: all 0.3s;
  text-decoration: none;
}
.quick-nav a:hover { background: var(--primary-100); color: var(--primary-600); }

/* ---------- Event Cards ---------- */
.event-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: var(--primary-300); }
.event-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-icon i { color: var(--primary-500); font-size: 1.125rem; }
.event-card h4 { font-size: 0.875rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.25rem; }
.event-card p { font-size: 0.75rem; color: var(--foreground-500); }

/* ---------- Group Home Cards ---------- */
.gh-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.gh-card:hover { border-color: var(--primary-300); }
.gh-image {
  height: 9rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gh-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gh-card:hover .gh-image img { transform: scale(1.05); }
.gh-image-placeholder {
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253,232,231,0.7);
}
.gh-image-placeholder i { font-size: 3rem; color: var(--primary-300); }
.gh-card .gh-body { padding: 1rem; }
.gh-card .gh-body h3 { font-size: 0.875rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.25rem; }
.gh-card .gh-body .gh-location { font-size: 0.75rem; color: var(--foreground-500); margin-bottom: 0.5rem; }
.gh-card .gh-body .gh-desc { font-size: 0.75rem; color: var(--foreground-600); line-height: 1.6; }

/* ---------- Contact Info Cards ---------- */
.contact-card {
  background: var(--background-100);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-card dl { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.contact-card .c-row { display: flex; gap: 0.5rem; }
.contact-card .c-label { color: var(--foreground-500); flex-shrink: 0; width: 4rem; }
.contact-card .c-value { color: var(--foreground-800); }

/* ---------- LINE Section ---------- */
.line-section {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .line-section { padding: 2rem; }
}
.line-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .line-section-inner { flex-direction: row; gap: 2rem; }
}
.line-icon-wrap { flex-shrink: 0; }
.line-icon-circle {
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .line-icon-circle { width: 5rem; height: 5rem; }
}
.line-icon-circle i { font-size: 1.875rem; color: #fff; }
@media (min-width: 768px) {
  .line-icon-circle i { font-size: 2.5rem; }
}
.line-body { flex: 1; text-align: center; }
@media (min-width: 768px) {
  .line-body { text-align: left; }
}
.line-body h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.5rem; }
.line-body p { font-size: 1rem; color: var(--foreground-600); margin-bottom: 1rem; }
.line-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) {
  .line-features { justify-content: flex-start; }
}
.line-feature { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: #166534; }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #22c55e;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-green:hover { background: #16a34a; }

/* ---------- Form ---------- */
.form-card {
  background: var(--background-100);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .form-card { padding: 2rem; }
}
.form-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 1.5rem; text-align: center; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground-700); margin-bottom: 0.25rem; }
.form-group label .required { color: var(--primary-500); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--background-300);
  border-radius: 0.5rem;
  background: var(--background-50);
  color: var(--foreground-800);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: box-shadow 0.2s;
}
.form-control:focus { box-shadow: 0 0 0 3px var(--primary-300); }
textarea.form-control { resize: none; }
.form-hint { font-size: 0.75rem; color: var(--foreground-500); margin-top: 0.25rem; text-align: right; }

.form-success { text-align: center; padding: 2rem 0; }
.form-success i { font-size: 2.5rem; color: var(--primary-500); margin-bottom: 1rem; }
.form-success p { color: var(--foreground-800); font-weight: 500; }
.form-success .sub { font-size: 0.875rem; color: var(--foreground-500); margin-top: 0.5rem; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-500);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--primary-600); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* ---------- FAQ Accordion ---------- */
.faq-section { margin-top: 3rem; margin-bottom: 4rem; }

.faq-item {
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--background-50);
  border: none;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground-800);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--background-100); }
.faq-question i { font-size: 1.25rem; color: var(--primary-500); transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 20rem;
  padding: 0 1.25rem 1rem;
}
.faq-answer-inner {
  font-size: 0.875rem;
  color: var(--foreground-700);
  line-height: 1.8;
}

/* ============================================================
   BLOG LIST PAGE (blog.html / blog/index.html)
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--foreground-500);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--foreground-500);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--primary-500); }
.breadcrumb span { color: var(--background-300); }

/* ---------- Blog List Page ---------- */
.blog-list-lead {
  font-size: 0.9375rem;
  color: var(--foreground-700);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 48rem;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ---------- Blog Card (list) ---------- */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.blog-card:hover { border-color: var(--primary-300); }
@media (min-width: 768px) {
  .blog-card { flex-direction: row; }
}

.blog-card-image {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .blog-card-image { width: 14rem; }
}
.blog-card-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .blog-card-image img { height: 100%; }
}

.blog-card-body { padding: 1.25rem; }
@media (min-width: 768px) {
  .blog-card-body { padding: 1.5rem; }
}

.blog-card-body .blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-body .blog-card-date {
  font-size: 0.75rem;
  color: var(--foreground-500);
  display: block;
  margin-bottom: 0.75rem;
}
.blog-card-body .blog-card-excerpt {
  font-size: 0.9375rem;
  color: var(--foreground-700);
  line-height: 1.7;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   BLOG ARTICLE PAGE
   ============================================================ */

/* ---------- Article Header ---------- */
.article-header {
  margin-bottom: 1.5rem;
}
.article-header .article-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--foreground-800);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .article-header .article-title { font-size: 1.5rem; }
}
.article-header .article-date {
  font-size: 0.8125rem;
  color: var(--foreground-500);
}

/* ---------- Thumb (Article Featured Image) ---------- */
.thumb {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

/* ---------- Article Content ---------- */
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--background-200);
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-content p {
  font-size: 1rem;
  color: var(--foreground-700);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.article-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
}
.article-content ul li {
  font-size: 1rem;
  color: var(--foreground-700);
  line-height: 1.8;
  margin-bottom: 0.375rem;
}
.article-content strong {
  color: var(--foreground-800);
  font-weight: 600;
}
.article-content a {
  color: var(--primary-500);
  transition: color 0.3s;
}
.article-content a:hover { color: var(--primary-600); }

/* ---------- Box (Article Info Box) ---------- */
.article-content .box {
  background: var(--background-100);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .article-content .box { padding: 1.5rem; }
}
.article-content .box h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.article-content .box p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
.article-content .box ul {
  margin-bottom: 0.5rem;
}
.article-content .box ul li {
  font-size: 0.9375rem;
}
.article-content .box strong {
  color: var(--foreground-800);
}

/* ---------- Note (Source Citation) ---------- */
.article-content .note {
  background: var(--background-100);
  border-left: 3px solid var(--primary-300);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  color: var(--foreground-600);
  line-height: 1.7;
  margin: 2rem 0;
}

/* ---------- Article Links ---------- */
.article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.article-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.article-links a:first-child {
  background: #22c55e;
  color: #fff;
}
.article-links a:first-child:hover { background: #16a34a; }
.article-links a:last-child {
  background: var(--primary-500);
  color: #fff;
}
.article-links a:last-child:hover { background: var(--primary-600); }

/* ---------- Back Link ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--primary-500);
  margin-top: 2rem;
  transition: color 0.3s;
}
.back-link:hover { color: var(--primary-600); }

/* ---------- Location Badge ---------- */
.location-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.location-badge-primary { background: var(--primary-500); }
.location-badge-accent { background: var(--accent-500); }

/* ---------- Service Tags ---------- */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.service-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--background-100);
  color: var(--foreground-700);
  border: 1px solid var(--background-200);
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* ---------- Office Cards ---------- */
.office-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: border-color 0.3s;
}
.office-card:hover { border-color: var(--primary-300); }
.office-card h3 { font-size: 0.875rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.5rem; }
.office-card .oc-row { display: flex; align-items: flex-start; gap: 0.375rem; font-size: 0.75rem; color: var(--foreground-600); margin-bottom: 0.25rem; }
.office-card .oc-row i { color: var(--primary-500); margin-top: 0.125rem; flex-shrink: 0; }
.office-card a { color: var(--foreground-800); }
.office-card a:hover { color: var(--primary-500); }
.office-type-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 9999px;
  font-size: 0.625rem;
  margin-top: 0.5rem;
}

/* ---------- 2-column Layout ---------- */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .layout-2col { grid-template-columns: 1fr 1fr; }
}

/* ---------- Gallery Image Grid ---------- */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .gallery-row { grid-template-columns: repeat(3, 1fr); }
}
.gallery-row img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* ---------- Work Card ---------- */
.work-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.work-card:hover { border-color: var(--primary-300); }
.work-card-accent:hover { border-color: var(--accent-500); }
.work-card .wc-image { height: 10rem; overflow: hidden; }
.work-card .wc-image img { width: 100%; height: 100%; object-fit: cover; }
.work-card .wc-body { padding: 0.75rem; }
.work-card .wc-body h4 { font-size: 0.875rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 0.25rem; }
.work-card .wc-body p { font-size: 0.75rem; color: var(--foreground-600); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--background-200);
  padding: 4rem 1rem 2rem;
}
@media (min-width: 768px) {
  .site-footer { padding: 5rem 2rem 2rem; }
}

.footer-inner { width: 100%; max-width: 72rem; margin: 0 auto; }

.footer-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-banners { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.footer-banner {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
}
.footer-banner img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}
.footer-banner:hover img { transform: scale(1.05); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--foreground-700);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--primary-500); }

.footer-info { text-align: center; margin-bottom: 2rem; }
.footer-info img { height: 2rem; width: auto; margin: 0 auto 1rem; }
.footer-info p {
  font-size: 0.875rem;
  color: var(--foreground-700);
  line-height: 1.7;
}
.footer-info a { color: var(--foreground-700); }
.footer-info a:hover { color: var(--primary-500); }

.footer-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .footer-ctas { flex-direction: row; }
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid var(--background-300);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--foreground-500);
}

/* ---------- Heading with icon ---------- */
.heading-icon {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.heading-icon i { font-size: 1.125rem; }

/* ---------- Volunteer / Recreation Box ---------- */
.volunteer-box {
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .volunteer-box { flex-direction: row; padding: 1.5rem; }
}
.volunteer-box img { width: 100%; max-width: 200px; height: auto; border-radius: 0.5rem; flex-shrink: 0; }

/* ---------- Support Message Box ---------- */
.support-msg {
  background: var(--background-100);
  border-radius: 0.5rem;
  padding: 1.25rem;
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .support-msg { padding: 1.5rem; }
}

/* ---------- Representative Greeting ---------- */
.greeting-card {
  background: var(--background-100);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .greeting-card { padding: 2rem; }
}
.greeting-quote {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.7;
}
.greeting-card .greeting-body { font-size: 1rem; color: var(--foreground-700); line-height: 1.7; }
.greeting-card .greeting-body p { margin-bottom: 1rem; }
.greeting-signature { text-align: right; font-size: 1rem; font-weight: 500; color: var(--foreground-800); margin-top: 1.5rem; }

/* ---------- Instagram Link ---------- */
.insta-link {
  text-align: center;
  margin-bottom: 1.5rem;
}
.insta-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background-100);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--foreground-600);
  transition: background 0.3s;
  text-decoration: none;
}
.insta-link a:hover { background: var(--background-200); }
.insta-link a i { font-size: 1.125rem; }

/* ---------- Mission Statement ---------- */
.mission-box {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 48rem;
  margin: 4rem auto 0;
}
@media (min-width: 768px) {
  .mission-box { padding: 2rem; }
}
.mission-box h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 500; color: var(--foreground-800); margin-bottom: 1rem; }
.mission-box p { font-size: 1rem; color: var(--foreground-700); line-height: 1.7; }

/* ---------- Workshop highlight box ---------- */
.highlight-box {
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-radius: 0.5rem;
  padding: 1rem;
}
.highlight-box p { font-size: 0.75rem; color: var(--foreground-600); text-align: center; }

/* ---------- Recreation Box ---------- */
.recreation-box {
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.recreation-box h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.recreation-box p { font-size: 0.875rem; color: var(--foreground-700); }

/* ---------- CTA Section (for blog articles) ---------- */
.cta-section {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .cta-section { padding: 2rem; }
}
.cta-section .cta-section-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 1rem;
}
.cta-section-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .cta-section-cards { grid-template-columns: 1fr 1fr; }
}
.cta-section-card {
  background: var(--background-50);
  border: 1px solid var(--background-200);
  border-radius: 0.5rem;
  padding: 1rem;
}
.cta-section-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-800);
  margin-bottom: 0.375rem;
}
.cta-section-card .tel-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-500);
  margin-bottom: 0.25rem;
  display: block;
}
.cta-section-card .hours {
  font-size: 0.75rem;
  color: var(--foreground-500);
}
.cta-section-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .cta-section-buttons { flex-direction: row; justify-content: center; }
}
.cta-section-buttons .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #22c55e;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.cta-section-buttons .btn-cta-primary:hover { background: #16a34a; }
.cta-section-buttons .btn-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.cta-section-buttons .btn-cta-outline:hover { background: var(--primary-500); color: #fff; }
.cta-section-faq-link {
  font-size: 0.8125rem;
  color: var(--primary-500);
  transition: color 0.3s;
}
.cta-section-faq-link:hover { color: var(--primary-600); }

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.w-full { width: 100%; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.7; }
.whitespace-nowrap { white-space: nowrap; }
.text-primary-500 { color: var(--primary-500); }
.text-accent-500 { color: var(--accent-500); }
.text-foreground-500 { color: var(--foreground-500); }
.text-foreground-600 { color: var(--foreground-600); }
.text-foreground-700 { color: var(--foreground-700); }
.text-foreground-800 { color: var(--foreground-800); }
.rounded-md { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.list-disc { list-style-type: disc; }
.ml-4 { margin-left: 1rem; }
.border { border: 1px solid var(--background-200); }
.list-none { list-style: none; }
.transition-colors { transition: color 0.3s; }
.object-cover { object-fit: cover; }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}