/*
Theme Name: tax-office-theme
Theme URI:
Author: Yamada Taro Tax Accountant Office
Author URI:
Description: 山田太郎税理士事務所 カスタムWordPressテーマ
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tax-office-theme
*/

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #2d6a4f;
  --green-main: #40916c;
  --green-mid: #52b788;
  --green-light: #74c69d;
  --green-pale: #b7e4c7;
  --green-bg: #d8f3dc;
  --green-whisper: #f0faf3;
  --cream: #fefcf6;
  --cream-dark: #f5f0e8;
  --brown-text: #3d3028;
  --brown-light: #6b5d50;
  --brown-muted: #9a8c7f;
  --white: #ffffff;
  --shadow-soft: 0 2px 20px rgba(45, 106, 79, 0.08);
  --shadow-card: 0 4px 24px rgba(45, 106, 79, 0.1);
  --shadow-hover: 0 8px 32px rgba(45, 106, 79, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
  color: var(--brown-text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 252, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--green-dark);
}

.logo-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--brown-muted);
  letter-spacing: 0.08em;
}

/* ===== NAVIGATION ===== */
.nav { display: flex; align-items: center; gap: 0; }

.nav a {
  text-decoration: none;
  color: var(--brown-text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.nav a:hover { background: var(--green-whisper); color: var(--green-dark); }
.nav a.active,
.nav .current-menu-item > a,
.nav .current_page_item > a { color: var(--green-dark); background: var(--green-whisper); }

.nav-en {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  color: var(--green-main);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-blog {
  background: var(--green-main) !important;
  color: var(--white) !important;
  border-radius: 24px !important;
  padding: 10px 20px !important;
  margin-left: 8px;
  font-size: 0.8rem !important;
}

.nav-blog:hover { background: var(--green-dark) !important; }
.nav-blog .nav-en { color: rgba(255,255,255,0.8); }
.nav-blog.active,
.nav .current-menu-item > a.nav-blog { background: var(--green-dark) !important; }

/* WordPress admin bar offset */
body.admin-bar .header { top: 32px !important; }
@media screen and (max-width: 782px) { body.admin-bar .header { top: 46px !important; } }

/* WordPress nav menu reset */
.nav ul { list-style: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.nav li { list-style: none; }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Nav open state */
.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 252, 246, 0.98);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 150;
}

.nav.open ul { flex-direction: column; gap: 16px; }
.nav.open a { font-size: 1.1rem; padding: 12px 32px; }

/* ===== PAGE HERO (Sub pages) ===== */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--green-whisper) 0%, var(--green-bg) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-en {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-main);
  opacity: 0.15;
  letter-spacing: 0.08em;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}

.page-hero-desc {
  font-size: 0.9rem;
  color: var(--brown-light);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ===== HERO (Front page) ===== */
.hero {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-whisper) 0%, var(--cream) 40%, var(--green-bg) 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(116, 198, 157, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183, 228, 199, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: fadeInUp 0.8s ease-out; }

.hero-catchphrase {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-catchphrase em {
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--green-pale) 60%);
  padding: 0 4px;
}

.hero-description {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 2;
  margin-bottom: 36px;
}

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

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--brown-light);
  line-height: 1.5;
}

.hero-badge-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--green-main);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(64, 145, 108, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(64, 145, 108, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--green-main);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--green-light);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--green-whisper);
  border-color: var(--green-main);
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 24px; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-en {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--green-main);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-main), var(--green-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-desc {
  margin-top: 16px;
  color: var(--brown-light);
  font-size: 0.95rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 2;
}

/* ===== BLOG SECTION (Front page) ===== */
.blog-section-home {
  background: var(--green-whisper);
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.blog-card-body { padding: 20px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--brown-muted);
}

.blog-card-tag {
  font-size: 0.7rem;
  background: var(--green-bg);
  color: var(--green-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.blog-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--brown-text);
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--brown-muted);
  line-height: 1.7;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

/* ===== ABOUT SECTION (Front page) ===== */
.about-section { background: var(--cream); }

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image { position: relative; }

.about-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  color: var(--brown-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 2;
}

/* ===== SERVICE SECTION (Front page) ===== */
.service-section-home {
  background: linear-gradient(180deg, var(--green-whisper) 0%, var(--cream) 100%);
}

.service-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 2;
}

.service-grid-home {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card-home {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
}

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

.service-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-pale));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  color: var(--green-main);
  font-weight: 600;
  margin-bottom: 4px;
}

.service-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.service-desc-text {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.7;
}

.service-arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--green-light);
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-card-home:hover .service-arrow {
  color: var(--green-main);
  transform: translateX(4px);
}

/* ===== SERVICE PAGE CARDS ===== */
.service-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-pale);
}

.service-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: var(--green-main);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-pale));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: var(--transition);
}

.service-card:hover .service-card-icon { transform: scale(1.08); }

.service-card-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--green-main);
  font-weight: 500;
  transition: var(--transition);
}

.service-card:hover .service-card-link { color: var(--green-dark); gap: 10px; }

/* ===== CLOUD SECTION ===== */
.cloud-section {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.cloud-section .section-en { color: var(--green-light); }
.cloud-section .section-title { color: var(--white); }
.cloud-section .section-title::after { background: linear-gradient(90deg, var(--green-light), var(--green-pale)); }

.cloud-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cloud-logo-item {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-pale);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.cloud-logo-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.cloud-text {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--green-whisper) 100%);
  text-align: center;
  padding: 80px 24px;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.cta-phone-icon { font-size: 2rem; }

.cta-hours {
  font-size: 0.85rem;
  color: var(--brown-muted);
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-text);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-info { font-size: 0.85rem; line-height: 2; }
.footer-info strong { color: var(--white); font-weight: 500; }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; }

.footer-nav a,
.footer-nav li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav li a::before {
  content: '\203A';
  color: var(--green-light);
  font-weight: bold;
}

.footer-nav a:hover,
.footer-nav li a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT PAGE ===== */
.intro-section { background: var(--cream); }

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.intro-image { position: relative; }

.intro-image-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--green-bg), var(--cream-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.intro-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.intro-text p {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 2.2;
  margin-bottom: 16px;
}

/* Features */
.features-section { background: var(--green-whisper); }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-pale));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.feature-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.9;
}

/* Profile */
.profile-section { background: var(--cream); }

.profile-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.profile-photo-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--green-bg), var(--cream-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.profile-content h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.greeting-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}

.profile-content p {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 2.1;
  margin-bottom: 16px;
}

/* Career Table */
.career-section { background: var(--green-whisper); }
.career-inner { max-width: 900px; margin: 0 auto; }

.career-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.career-table tr { border-bottom: 1px solid var(--green-bg); }
.career-table tr:last-child { border-bottom: none; }

.career-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--brown-light);
  vertical-align: top;
}

.career-table td:first-child {
  width: 180px;
  font-weight: 500;
  color: var(--green-dark);
  background: var(--green-whisper);
  white-space: nowrap;
}

/* Affiliations */
.affiliations {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}

.affiliations h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.affiliations p {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 2;
}

/* ===== FOUNDING PAGE ===== */
.founding-intro {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

.founding-intro-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.founding-intro-text p {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 2.2;
  margin-bottom: 16px;
}

.founding-intro-image {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--green-bg), var(--cream-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* Worry bubbles */
.worry-section { background: var(--green-whisper); }

.worry-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.worry-bubble {
  background: var(--white);
  border-radius: 24px;
  padding: 20px 28px;
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--green-bg);
}

.worry-bubble::before {
  content: '\1F4AD';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 1.2rem;
}

.worry-note {
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.8;
}

/* Target list */
.target-section { background: var(--cream); }

.target-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.target-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}

.target-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.target-text {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 1.8;
}

.target-text em {
  font-style: normal;
  color: var(--green-dark);
  font-weight: 700;
}

/* Service detail */
.detail-section { background: var(--green-whisper); }

.detail-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
}

.detail-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.detail-text {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.9;
}

/* Price */
.price-section { background: var(--cream); }
.price-inner { max-width: 800px; margin: 0 auto; }

.price-highlight {
  text-align: center;
  margin-bottom: 30px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.price-unit {
  font-size: 1rem;
  color: var(--brown-light);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.price-table tr { border-bottom: 1px solid var(--green-bg); }
.price-table tr:last-child { border-bottom: none; }

.price-table td {
  padding: 18px 24px;
  font-size: 0.9rem;
  color: var(--brown-light);
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-whisper);
  width: 200px;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--green-dark);
}

.price-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--brown-muted);
  line-height: 2;
}

/* Flow */
.flow-section { background: var(--green-whisper); }

.flow-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}

.flow-item:last-child { padding-bottom: 0; }

.flow-line {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-num {
  width: 48px;
  height: 48px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow-connector {
  flex: 1;
  width: 2px;
  background: var(--green-pale);
  margin-top: 8px;
}

.flow-item:last-child .flow-connector { display: none; }

.flow-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
}

.flow-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.flow-desc {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.9;
}

/* ===== ACCESS PAGE ===== */
.info-section { background: var(--cream); }
.info-inner { max-width: 800px; margin: 0 auto; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.info-table tr { border-bottom: 1px solid var(--green-bg); }
.info-table tr:last-child { border-bottom: none; }

.info-table td {
  padding: 20px 28px;
  font-size: 0.92rem;
  color: var(--brown-light);
  vertical-align: top;
}

.info-table td:first-child {
  width: 160px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-whisper);
}

.map-section {
  background: var(--green-whisper);
  padding: 80px 24px;
}

.map-inner { max-width: 900px; margin: 0 auto; }

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.directions-section { background: var(--cream); }
.directions-inner { max-width: 800px; margin: 0 auto; }
.directions-block { margin-bottom: 40px; }
.directions-block:last-child { margin-bottom: 0; }

.directions-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-main);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.directions-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.directions-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.step-text {
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.8;
}

.directions-note {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  color: var(--brown-light);
  line-height: 1.8;
  border-left: 4px solid var(--green-main);
}

/* ===== CONTACT PAGE ===== */
.form-section {
  padding: 80px 24px;
  background: var(--cream);
}

.form-inner { max-width: 700px; margin: 0 auto; }

.form-intro {
  text-align: center;
  margin-bottom: 50px;
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 2;
}

/* Contact Form 7 styles */
.form-group,
.wpcf7 .form-group { margin-bottom: 28px; }

.form-label,
.wpcf7 label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-text);
  margin-bottom: 8px;
}

.required {
  background: var(--green-main);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--green-bg);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--brown-text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--brown-muted);
}

.form-textarea,
.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

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

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

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brown-light);
  padding: 10px 20px;
  border: 2px solid var(--green-bg);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}

.radio-label:hover { border-color: var(--green-light); }
.radio-label input { display: none; }
.radio-label input:checked + span { color: var(--green-dark); font-weight: 600; }
.radio-label:has(input:checked) { border-color: var(--green-main); background: var(--green-whisper); }

.radio-dot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-label input:checked ~ .radio-dot { border-color: var(--green-main); background: var(--green-main); }
.radio-label input:checked ~ .radio-dot::after { content: ''; width: 6px; height: 6px; background: var(--white); border-radius: 50%; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--brown-light);
  padding: 12px 20px;
  background: var(--green-whisper);
  border-radius: var(--radius);
  border: 2px solid var(--green-bg);
  transition: var(--transition);
}

.checkbox-label:hover { border-color: var(--green-light); }
.checkbox-label input { display: none; }

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.checkbox-label input:checked ~ .checkbox-box {
  background: var(--green-main);
  border-color: var(--green-main);
}

.checkbox-label input:checked ~ .checkbox-box::after {
  content: '\2713';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

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

.btn-submit,
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 60px;
  background: var(--green-main);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(64, 145, 108, 0.3);
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-submit:hover,
.wpcf7 input[type="submit"]:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(64, 145, 108, 0.4);
}

/* CF7 validation */
.wpcf7-not-valid { border-color: #e74c3c !important; }
.wpcf7-not-valid-tip { color: #e74c3c; font-size: 0.8rem; margin-top: 4px; }
.wpcf7 .wpcf7-response-output {
  margin: 20px 0;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* ===== BLOG ARCHIVE PAGE ===== */
.blog-section {
  padding: 80px 24px;
  background: var(--cream);
}

.blog-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

/* Category filter */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.cat-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--brown-light);
  background: var(--white);
  border: 1px solid var(--green-bg);
  transition: var(--transition);
  cursor: pointer;
}

.cat-tag:hover,
.cat-tag.active,
.cat-tag.current-cat { background: var(--green-main); color: var(--white); border-color: var(--green-main); }

/* Blog list cards (archive) */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card-horizontal {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.blog-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card-horizontal .blog-card-body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Sidebar */
.sidebar-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}

.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--brown-light);
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.sidebar-cat-item:hover { background: var(--green-whisper); color: var(--green-dark); }

.sidebar-cat-count {
  font-size: 0.75rem;
  background: var(--green-bg);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.sidebar-popular-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
  color: var(--brown-light);
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.sidebar-popular-item:hover { background: var(--green-whisper); color: var(--green-dark); }

.sidebar-popular-date {
  font-size: 0.7rem;
  color: var(--brown-muted);
}

.sidebar-popular-title {
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}

.page-btn,
.nav-links a,
.nav-links span.current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--brown-light);
  background: var(--white);
  border: 1px solid var(--green-bg);
  transition: var(--transition);
}

.page-btn:hover,
.nav-links a:hover {
  background: var(--green-whisper);
  border-color: var(--green-light);
}

.page-btn.active,
.nav-links span.current {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}

/* ===== SINGLE POST ===== */
.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.single-content h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 40px;
}

.single-body {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 2.2;
}

.single-body h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}

.single-body h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 32px 0 12px;
}

.single-body p { margin-bottom: 20px; }

.single-body ul, .single-body ol {
  margin: 16px 0 20px 24px;
}

.single-body li { margin-bottom: 8px; }

.single-body blockquote {
  border-left: 4px solid var(--green-main);
  padding: 16px 24px;
  background: var(--green-whisper);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
}

.single-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
}

.post-navigation {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.post-navigation a {
  text-decoration: none;
  color: var(--green-main);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.post-navigation a:hover {
  color: var(--green-dark);
  box-shadow: var(--shadow-card);
}

/* ===== DECORATIVE ===== */
.leaf-deco {
  position: absolute;
  opacity: 0.06;
  font-size: 120px;
  pointer-events: none;
  z-index: 0;
}

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

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero { min-height: auto; }
  .hero-catchphrase { font-size: 1.8rem; }
  .hero-visual { order: -1; }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-grid-home { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .profile-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .founding-intro { grid-template-columns: 1fr; gap: 30px; }
  .worry-grid { grid-template-columns: 1fr; }

  .blog-layout { grid-template-columns: 1fr; }
  .blog-card-horizontal { grid-template-columns: 140px 1fr; }
  .blog-card-horizontal .blog-card-image { height: 140px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-phone-number { font-size: 2rem; }
  .career-table td:first-child { width: auto; }
  .info-table td:first-child { width: auto; }
  .price-table td:first-child { width: auto; }
  .profile-photo-placeholder { position: static; }
  .radio-group { flex-direction: column; }
}

@media (max-width: 600px) {
  .blog-card-horizontal { grid-template-columns: 1fr; }
  .blog-card-horizontal .blog-card-body { padding: 16px; }
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-caption {
  max-width: 100%;
  margin-bottom: 20px;
}

.wp-caption img {
  border-radius: var(--radius);
}

.wp-caption-text {
  font-size: 0.82rem;
  color: var(--brown-muted);
  text-align: center;
  margin-top: 8px;
}

.alignleft { float: left; margin-right: 20px; margin-bottom: 10px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 10px; }
.aligncenter { display: block; margin: 0 auto 20px; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
