/* =====================================================
   Formosa - Shared Stylesheet (v2 - Warm & Approachable)
   ===================================================== */

/* RESET & BASE */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  color: #333;
  background: #FFFCF8;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* COLOR VARIABLES */
:root {
  --sage: #7CAE7A;
  --sage-light: #EDF5EC;
  --sage-lighter: #F5FAF4;
  --sage-dark: #5A8F58;
  --blue: #6BA3D6;
  --blue-light: #EAF2FB;
  --blue-lighter: #F4F8FD;
  --blue-dark: #4A7FB5;
  --orange: #E8944A;
  --orange-light: #FFF5EB;
  --orange-dark: #C97A35;
  --cream: #FFFCF8;
  --cream-dark: #FFF7EE;
  --dark: #3B4A3C;
  --text: #333333;
  --text-light: #555555;
  --bg: #F7F5F0;
  --bg-warm: #FBF9F5;
  --white: #FFFFFF;
  --shadow: 0 2px 16px rgba(90,110,80,0.06);
  --shadow-hover: 0 8px 32px rgba(90,110,80,0.10);
  --shadow-soft: 0 1px 8px rgba(90,110,80,0.04);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
}

/* UTILITY */
.container { width:100%; max-width:1060px; margin:0 auto; padding:0 28px; }
.section { padding: 88px 0; position: relative; }
.section-bg { background: var(--bg); }

/* Section Titles - hand-drawn feel */
.section-title { text-align:center; margin-bottom:20px; }
.section-title h2 {
  font-size:1.7rem;
  font-weight:700;
  color:var(--dark);
  letter-spacing:0.02em;
  display:inline-block;
  position: relative;
}
.section-title h2::after {
  content:'';
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:3px;
  background: var(--sage);
  border-radius: 3px;
  opacity: 0.5;
}
.section-title .en {
  display:block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size:0.82rem;
  font-weight:600;
  color:var(--sage);
  text-transform:uppercase;
  letter-spacing:0.18em;
  margin-bottom:6px;
}
.section-subtitle {
  text-align:center;
  color:var(--text-light);
  font-size:0.95rem;
  max-width:580px;
  margin:0 auto 52px;
  line-height: 1.9;
}

/* Decorative blob shapes */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* HEADER / NAV */
.header {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:rgba(255,252,248,0.92);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(124,174,122,0.1);
  transition:box-shadow 0.3s;
}
.header.scrolled { box-shadow:0 2px 20px rgba(60,74,60,0.06); }
.header-inner { display:flex; align-items:center; justify-content:space-between; height:68px; }
.logo { display:flex; align-items:center; gap:10px; }
.logo-img {
  height:32px;
  width:auto;
  display:block;
}
.logo-text { font-size:1.15rem; font-weight:700; color:var(--dark); display:none; }
.logo-text span { display:block; font-size:0.68rem; font-weight:500; color:var(--text-light); letter-spacing:0.05em; }
.logo-sub { font-size:0.72rem; font-weight:500; color:var(--text-light); letter-spacing:0.03em; white-space:nowrap; }
.nav-links { display:flex; gap:24px; align-items:center; }
.nav-links a {
  font-size:0.88rem; font-weight:500; color:var(--text);
  transition:color 0.2s; white-space:nowrap;
  position: relative;
}
.nav-links a:hover { color:var(--sage-dark); }
.nav-links a.active { color:var(--sage-dark); font-weight:700; }
.nav-links a.active::after {
  content:'';
  position:absolute;
  bottom:-4px; left:20%; right:20%;
  height:2px; background:var(--sage); border-radius:2px;
}
.nav-cta {
  background:var(--orange); color:#fff!important;
  padding:9px 20px; border-radius:50px;
  font-weight:700!important; font-size:0.88rem!important;
  transition:background 0.2s,transform 0.2s;
  box-shadow: 0 2px 10px rgba(232,148,74,0.25);
}
.nav-cta:hover { background:var(--orange-dark); transform:translateY(-1px); }
.nav-cta.active::after { display:none; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; z-index:1001; }
.hamburger span { width:22px; height:2px; background:var(--dark); transition:all 0.3s; border-radius:2px; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* PAGE HERO (sub pages) */
.page-hero {
  padding:120px 0 56px;
  background: var(--cream);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-hero::before {
  content:'';
  position:absolute; top:-80px; right:-60px;
  width:300px; height:300px;
  background:radial-gradient(circle,rgba(124,174,122,0.06) 0%,transparent 70%);
  border-radius: 47% 53% 42% 58% / 45% 55% 45% 55%;
}
.page-hero::after {
  content:'';
  position:absolute; bottom:-40px; left:-40px;
  width:200px; height:200px;
  background:radial-gradient(circle,rgba(107,163,214,0.05) 0%,transparent 70%);
  border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
}
.page-hero .breadcrumb { font-size:0.88rem; color:var(--text-light); margin-bottom:14px; }
.page-hero .breadcrumb a { color:var(--sage-dark); }
.page-hero .breadcrumb a:hover { text-decoration:underline; }
.page-hero h1 {
  font-size:1.9rem; font-weight:700; color:var(--dark); margin-bottom:10px;
  position: relative; display: inline-block;
}
.page-hero .page-hero-sub { font-size:1rem; color:var(--text-light); font-weight:400; }
.page-hero .hero-badge {
  display:inline-block; background:var(--sage); color:#fff;
  font-size:0.8rem; font-weight:700; padding:5px 16px;
  border-radius:50px; margin-bottom:12px; letter-spacing:0.05em;
}
.page-hero .hero-badge.blue { background:var(--blue); }

/* BUTTONS */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--orange); color:#fff;
  font-size:0.95rem; font-weight:700;
  padding:15px 30px; border-radius:50px;
  border:none; cursor:pointer;
  transition:all 0.3s;
  box-shadow:0 3px 14px rgba(232,148,74,0.3);
}
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 5px 20px rgba(232,148,74,0.35); }
.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--dark);
  font-size:0.9rem; font-weight:600;
  padding:14px 26px; border-radius:50px;
  border:2px solid rgba(59,74,60,0.18);
  cursor:pointer; transition:all 0.3s;
}
.btn-secondary:hover { border-color:var(--sage); color:var(--sage-dark); background:var(--sage-lighter); }

/* CONTENT BLOCKS */
.content-block { max-width:780px; margin:0 auto; }
.content-block h2 {
  font-size:1.4rem; font-weight:700; color:var(--dark);
  margin-bottom:18px; padding-bottom:10px;
  border-bottom:3px solid var(--sage); display:inline-block;
  border-radius: 0 0 2px 2px;
}
.content-block.blue h2 { border-bottom-color:var(--blue); }
.content-block h3 { font-size:1.1rem; font-weight:700; color:var(--dark); margin:28px 0 10px; }
.content-block p { font-size:0.95rem; color:var(--text); line-height:2; margin-bottom:14px; font-weight:400; }
.content-block ul { margin-bottom:18px; }
.content-block li {
  font-size:0.92rem; color:var(--text); line-height:1.9;
  padding:5px 0 5px 22px; position:relative;
}
.content-block li::before {
  content:''; position:absolute; left:0; top:13px;
  width:7px; height:7px; border-radius:50%; background:var(--sage);
}
.content-block.blue li::before { background:var(--blue); }

/* FEATURE CARDS */
.feature-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:22px; margin:28px 0; }
.feature-card {
  background:var(--white); border-radius:var(--radius);
  padding:28px 22px; box-shadow:var(--shadow);
  transition:transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(124,174,122,0.08);
}
.feature-card:hover { transform:translateY(-3px); box-shadow: var(--shadow-hover); }
.feature-card .icon {
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.feature-card .icon svg { width:24px; height:24px; }
.feature-card .icon.green { background:var(--sage-light); }
.feature-card .icon.blue { background:var(--blue-light); }
.feature-card .icon.orange { background:var(--orange-light); }
.feature-card h4 { font-size:0.95rem; font-weight:700; color:var(--dark); margin-bottom:8px; }
.feature-card p { font-size:0.9rem; color:var(--text-light); line-height:1.8; margin-bottom:0; }

/* HIGHLIGHT BOX */
.highlight-box {
  background:var(--sage-lighter);
  border-radius:var(--radius);
  padding:28px 30px; margin:28px 0;
  border-left:4px solid var(--sage);
}
.highlight-box.blue { background:var(--blue-lighter); border-left-color:var(--blue); }
.highlight-box.orange { background:var(--orange-light); border-left-color:var(--orange); }
.highlight-box h4 { font-size:0.95rem; font-weight:700; color:var(--dark); margin-bottom:8px; }
.highlight-box p { font-size:0.92rem; color:var(--text); line-height:1.85; margin-bottom:0; }

/* INFO TABLE */
.info-table {
  width:100%; border-collapse:separate; border-spacing:0;
  margin:24px 0; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border: 1px solid rgba(124,174,122,0.1);
}
.info-table th, .info-table td { padding:14px 20px; text-align:left; font-size:0.92rem; }
.info-table th { background:var(--sage-dark); color:#fff; font-weight:600; font-size:0.88rem; }
.info-table.blue th { background:var(--blue-dark); }
.info-table tr:not(:last-child) td { border-bottom:1px solid rgba(124,174,122,0.08); }
.info-table tr:nth-child(even) td { background:var(--bg-warm); }
.info-table td:first-child { font-weight:600; color:var(--dark); white-space:nowrap; width:28%; }

/* CURRICULUM LIST */
.curriculum-list { display:flex; flex-direction:column; gap:14px; margin:24px 0; }
.curriculum-item {
  display:flex; gap:16px; align-items:flex-start;
  background:var(--white); border-radius:var(--radius-sm);
  padding:20px; box-shadow:var(--shadow);
  border: 1px solid rgba(124,174,122,0.06);
  transition: transform 0.2s;
}
.curriculum-item:hover { transform: translateX(4px); }
.curriculum-item .num {
  flex-shrink:0; width:36px; height:36px; border-radius:50%;
  background:var(--sage); color:#fff;
  font-weight:900; font-size:0.9rem;
  display:flex; align-items:center; justify-content:center;
  font-family: 'Noto Sans JP', sans-serif;
}
.curriculum-item.blue .num { background:var(--blue); }
.curriculum-item h4 { font-size:0.93rem; font-weight:700; color:var(--dark); margin-bottom:4px; }
.curriculum-item p { font-size:0.9rem; color:var(--text-light); line-height:1.75; margin:0; }

/* STAFF */
.staff-message {
  background:var(--white); border-radius:var(--radius-lg);
  padding:44px; box-shadow:var(--shadow); margin-bottom:48px;
  display:flex; gap:36px; align-items:flex-start;
  border: 1px solid rgba(124,174,122,0.06);
}
.staff-message-photo {
  flex-shrink:0; width:140px; height:140px; border-radius:50%;
  background:linear-gradient(135deg,var(--sage-light),var(--blue-light));
  display:flex; align-items:center; justify-content:center;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(90,110,80,0.08);
}
.staff-message-content h3 { font-size:1.1rem; font-weight:700; color:var(--dark); margin-bottom:4px; }
.staff-message-content .role { font-size:0.88rem; color:var(--sage-dark); font-weight:600; margin-bottom:14px; }
.staff-message-content p { font-size:0.92rem; color:var(--text); line-height:1.9; margin-bottom:10px; }
.staff-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:18px; }
.staff-card {
  background:var(--white); border-radius:var(--radius); padding:24px; text-align:center;
  box-shadow:var(--shadow); transition:transform 0.3s;
  border: 1px solid rgba(124,174,122,0.06);
}
.staff-card:hover { transform:translateY(-3px); box-shadow: var(--shadow-hover); }
.staff-avatar {
  width:68px; height:68px; border-radius:50%;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  margin:0 auto 12px;
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem; font-weight:700; color:var(--sage-dark);
  letter-spacing:0.05em;
  border: 2px solid rgba(124,174,122,0.15);
}
.staff-card h4 { font-size:0.9rem; font-weight:700; color:var(--dark); margin-bottom:4px; }
.staff-card .staff-role {
  font-size:0.82rem; color:var(--sage-dark); font-weight:600; margin-bottom:8px;
  background: var(--sage-lighter); padding: 2px 10px; border-radius: 20px; display: inline-block;
}
.staff-card p { font-size:0.88rem; color:var(--text-light); line-height:1.75; }

/* FACILITY */
.facility-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:40px; }
.facility-item {
  background:var(--white); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border: 1px solid rgba(124,174,122,0.06);
  transition: transform 0.3s;
}
.facility-item:hover { transform: translateY(-3px); }
.facility-img {
  height:160px;
  background:linear-gradient(150deg,var(--sage-lighter),var(--blue-lighter),var(--cream-dark));
  display:flex; align-items:center; justify-content:center;
}
.facility-img svg { width:48px; height:48px; stroke:var(--sage-dark); opacity:0.5; }
.facility-item h4 { padding:14px; font-size:0.88rem; font-weight:600; color:var(--dark); text-align:center; }

/* FACILITY PHOTO CARDS */
.facility-photo-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-bottom:40px; }
.facility-photo-card {
  background:var(--white); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border: 1px solid rgba(124,174,122,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-photo-card:hover { transform: translateY(-4px); box-shadow:var(--shadow-hover); }
.facility-photo-card img {
  width:100%; height:260px; object-fit:cover;
  transition: transform 0.4s;
}
.facility-photo-card:hover img { transform: scale(1.03); }
.facility-photo-overflow { overflow:hidden; }
.facility-photo-caption {
  padding:22px 24px 26px;
}
.facility-photo-caption h4 {
  font-size:1.02rem; font-weight:700; color:var(--dark); margin-bottom:8px;
  display:flex; align-items:center; gap:8px;
}
.facility-photo-caption h4 .room-badge {
  font-size:0.78rem; font-weight:600; color:var(--sage-dark); background:var(--sage-light);
  padding:2px 10px; border-radius:20px; letter-spacing:0.02em;
}
.facility-photo-caption p {
  font-size:0.9rem; color:var(--text-light); line-height:1.8;
}

.access-box {
  background:var(--white); border-radius:var(--radius-lg); padding:36px;
  box-shadow:var(--shadow); display:flex; gap:36px; align-items:flex-start;
  border: 1px solid rgba(124,174,122,0.06);
}
.access-info { flex:1; }
.access-info h3 { font-size:1.05rem; font-weight:700; color:var(--dark); margin-bottom:16px; }
.access-detail { font-size:0.92rem; color:var(--text); line-height:2; }
.access-detail strong { color:var(--dark); }
.access-map { flex:1; min-height:280px; border-radius:var(--radius); overflow:hidden; background:#e8e8e8; }
.access-map iframe { width:100%; height:100%; min-height:280px; border:0; }

/* CONCEPT BLOCK (image + text side by side) */
.concept-block {
  display:flex; gap:0; align-items:stretch; margin:36px 0;
  background:var(--white); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid rgba(124,174,122,0.06);
}
.concept-image {
  flex:0 0 42%; overflow:hidden;
}
.concept-image img {
  width:100%; height:100%; min-height:240px; object-fit:cover; display:block;
}
.concept-text {
  flex:1; padding:32px 36px; display:flex; flex-direction:column; justify-content:center;
}
.concept-text h4 {
  font-size:1.08rem; font-weight:700; color:var(--dark); margin-bottom:14px;
}
.concept-text p {
  font-size:0.88rem; color:var(--text); line-height:1.85;
}

/* FLOW STEPS (horizontal - index) */
.flow-steps { display:flex; gap:0; position:relative; }
.flow-step { flex:1; text-align:center; padding:0 14px; position:relative; }
.flow-step:not(:last-child)::after {
  content:''; position:absolute; top:26px; right:-12px;
  width:24px; height:2px; background:var(--sage); opacity:0.3;
  border-radius: 2px;
}
.flow-number {
  width:52px; height:52px; border-radius:50%;
  background:var(--sage-lighter); color:var(--sage-dark);
  font-size:1.1rem; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px; border:2px solid var(--sage);
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s;
}
.flow-step:hover .flow-number {
  background: var(--sage); color: #fff;
}
.flow-step h4 { font-size:0.92rem; font-weight:700; color:var(--dark); margin-bottom:6px; }
.flow-step p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }

/* FLOW DETAIL (vertical - flow page) */
.flow-vertical { display:flex; flex-direction:column; gap:0; max-width:680px; margin:0 auto; }
.flow-v-step { display:flex; gap:22px; position:relative; padding-bottom:36px; }
.flow-v-step:last-child { padding-bottom:0; }
.flow-v-step::before {
  content:''; position:absolute; left:25px; top:52px; bottom:0;
  width:2px; background:var(--sage); opacity:0.2;
  border-radius: 2px;
}
.flow-v-step:last-child::before { display:none; }
.flow-v-num {
  flex-shrink:0; width:52px; height:52px; border-radius:50%;
  background:var(--sage); color:#fff;
  font-size:1rem; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 2px 10px rgba(124,174,122,0.2);
}
.flow-v-content {
  flex:1; background:var(--white); border-radius:var(--radius);
  padding:22px; box-shadow:var(--shadow);
  border: 1px solid rgba(124,174,122,0.06);
}
.flow-v-content h4 { font-size:1rem; font-weight:700; color:var(--dark); margin-bottom:8px; }
.flow-v-content p { font-size:0.92rem; color:var(--text); line-height:1.8; margin-bottom:0; }
.flow-v-content .tip {
  margin-top:10px; font-size:0.88rem; color:var(--sage-dark);
  background:var(--sage-lighter); padding:8px 14px; border-radius:var(--radius-sm);
}

/* FAQ */
.faq-list { max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden;
  border: 1px solid rgba(124,174,122,0.06);
}
.faq-question {
  padding:18px 22px; cursor:pointer; display:flex; align-items:center;
  gap:12px; font-size:0.9rem; font-weight:600; color:var(--dark);
  transition:background 0.2s;
}
.faq-question:hover { background:var(--bg-warm); }
.faq-question .q-icon {
  flex-shrink:0; width:30px; height:30px; border-radius:50%;
  background:var(--sage); color:#fff; font-weight:900; font-size:0.85rem;
  display:flex; align-items:center; justify-content:center;
  font-family: 'Noto Sans JP', sans-serif;
}
.faq-question .arrow { margin-left:auto; font-size:0.8rem; color:var(--text-light); transition:transform 0.3s; }
.faq-item.open .faq-question .arrow { transform:rotate(180deg); }
.faq-answer { padding:0 22px 0 64px; max-height:0; overflow:hidden; transition:max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height:500px; padding:0 22px 18px 64px; }
.faq-answer p { font-size:0.92rem; color:var(--text); line-height:1.85; }

/* CONTACT METHODS */
.contact-methods { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:24px; }
.contact-method-card {
  background:var(--white); border-radius:var(--radius); padding:32px 22px;
  box-shadow:var(--shadow); text-align:center; transition:transform 0.3s;
  border: 1px solid rgba(124,174,122,0.06);
}
.contact-method-card:hover { transform:translateY(-3px); box-shadow: var(--shadow-hover); }
.contact-method-icon { margin-bottom:10px; display:flex; justify-content:center; }
.contact-method-card h4 { font-size:0.95rem; font-weight:700; color:var(--dark); margin-bottom:10px; }
.contact-method-value {
  display:block; font-size:1.1rem; font-weight:700; color:var(--sage-dark);
  margin-bottom:10px; transition:color 0.2s;
}
.contact-method-value:hover { color:var(--sage); }
.contact-method-card p { font-size:0.88rem; color:var(--text-light); line-height:1.7; }
.form-privacy { margin-bottom:24px; text-align:center; }
.form-privacy label { display:inline-flex; align-items:center; gap:8px; font-size:0.9rem; color:var(--text); cursor:pointer; }
.form-privacy input[type="checkbox"] { width:18px; height:18px; accent-color:var(--sage); }
.form-privacy a { color:var(--sage-dark); text-decoration:underline; }

/* CONTACT FORM */
.contact-form-wrap {
  max-width:600px; margin:0 auto;
  background:var(--white); border-radius:var(--radius-lg);
  padding:44px; box-shadow:var(--shadow);
  border: 1px solid rgba(124,174,122,0.06);
}
.form-group { margin-bottom:22px; }
.form-group label { display:block; font-size:0.92rem; font-weight:600; color:var(--dark); margin-bottom:6px; }
.form-group label .required {
  background:var(--orange); color:#fff; font-size:0.72rem;
  padding:2px 7px; border-radius:4px; margin-left:6px; font-weight:700;
}
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:13px 16px;
  border:1.5px solid #e2e0db; border-radius:var(--radius-sm);
  font-family:inherit; font-size:0.88rem; color:var(--text);
  transition:border-color 0.2s, box-shadow 0.2s;
  background:var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color:var(--sage);
  box-shadow: 0 0 0 3px rgba(124,174,122,0.1);
}
.form-group textarea { min-height:110px; resize:vertical; }
.form-submit { text-align:center; }
.form-submit button {
  background:var(--orange); color:#fff;
  font-size:0.95rem; font-weight:700; padding:15px 44px;
  border-radius:50px; border:none; cursor:pointer;
  transition:all 0.3s; box-shadow:0 3px 14px rgba(232,148,74,0.3);
}
.form-submit button:hover { background:var(--orange-dark); transform:translateY(-2px); }
.form-note { margin-top:14px; font-size:0.88rem; color:var(--text-light); text-align:center; }

/* CTA SECTION */
.cta-section {
  background:linear-gradient(135deg,var(--sage-dark) 0%,#4A8B6A 50%,var(--blue-dark) 100%);
  padding:80px 0; text-align:center; color:#fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:'';
  position:absolute; top:-60px; right:-60px;
  width:250px; height:250px;
  background:rgba(255,255,255,0.04);
  border-radius: 47% 53% 42% 58% / 45% 55% 45% 55%;
}
.cta-section::after {
  content:'';
  position:absolute; bottom:-40px; left:-40px;
  width:180px; height:180px;
  background:rgba(255,255,255,0.03);
  border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
}
.cta-section h2 { font-size:1.65rem; font-weight:700; margin-bottom:12px; }
.cta-section h2::after { display: none; }
.cta-section p { font-size:0.92rem; opacity:0.9; margin-bottom:28px; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.btn-cta-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--orange); color:#fff;
  font-size:1.05rem; font-weight:700; padding:16px 36px;
  border-radius:50px; border:none; cursor:pointer;
  transition:all 0.3s; box-shadow:0 3px 16px rgba(232,148,74,0.35);
}
.btn-cta-primary:hover { background:var(--orange-dark); transform:translateY(-2px); }
.btn-cta-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.12); color:#fff;
  font-size:0.95rem; font-weight:600; padding:15px 32px;
  border-radius:50px; border:2px solid rgba(255,255,255,0.3);
  cursor:pointer; transition:all 0.3s;
}
.btn-cta-secondary:hover { background:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.6); }
.cta-contact-info { font-size:0.9rem; opacity:0.85; }
.cta-contact-info a { color:#fff; text-decoration:underline; }

/* FOOTER */
.footer { background:var(--dark); color:rgba(255,255,255,0.65); padding:44px 0 22px; }
.footer-inner { display:flex; justify-content:space-between; align-items:flex-start; gap:36px; margin-bottom:28px; }
.footer-brand .logo-img { filter:brightness(0) invert(1); height:28px; }
.footer-brand .logo-sub { color:rgba(255,255,255,0.55); }
.footer-brand .logo-text { color:#fff; font-size:1.05rem; }
.footer-brand .logo-text span { color:rgba(255,255,255,0.45); }
.footer-brand p { font-size:0.88rem; margin-top:10px; line-height:1.7; }
.footer-links h4 { color:#fff; font-size:0.9rem; font-weight:700; margin-bottom:10px; }
.footer-links a { display:block; font-size:0.88rem; margin-bottom:7px; transition:color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding-top:20px; text-align:center; font-size:0.82rem; }

/* ORG CHART */
.org-chart { display:flex; flex-direction:column; align-items:center; gap:0; margin:28px 0; }
.org-level { display:flex; justify-content:center; gap:18px; flex-wrap:wrap; position:relative; }
.org-card {
  background:var(--white); border-radius:var(--radius-sm); padding:14px 22px;
  box-shadow:var(--shadow); text-align:center; min-width:150px;
  border: 1px solid rgba(124,174,122,0.06);
}
.org-card.top { border:2px solid var(--sage); }
.org-card h5 { font-size:0.88rem; font-weight:700; color:var(--dark); }
.org-card p { font-size:0.82rem; color:var(--text-light); }
.org-connector { width:2px; height:22px; background:var(--sage); opacity:0.3; margin:0 auto; border-radius: 2px; }

/* RESPONSIVE */
@media (max-width:900px) {
  .staff-message { flex-direction:column; align-items:center; text-align:center; padding:28px 22px; }
  .staff-message-photo { width:110px; height:110px; }
  .staff-grid { grid-template-columns:repeat(2,1fr); }
  .facility-grid { grid-template-columns:1fr; max-width:360px; margin:0 auto 36px; }
  .facility-photo-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto 36px; }
  .facility-photo-card img { height:220px; }
  .concept-block { flex-direction:column; }
  .concept-image { flex:none; }
  .concept-image img { min-height:200px; max-height:220px; }
  .concept-text { padding:24px; }
  .access-box { flex-direction:column; }
  .access-map { width:100%; }
  .footer-inner { flex-direction:column; }
  .contact-form-wrap { padding:28px 22px; }
  .flow-steps { flex-direction:column; gap:20px; max-width:360px; margin:0 auto; }
  .flow-step:not(:last-child)::after { display:none; }
  .feature-grid { grid-template-columns:1fr; }
  .contact-methods { grid-template-columns:1fr; max-width:360px; margin:0 auto; }
  .nav-links {
    display:none; position:fixed; top:0; left:0; right:0; bottom:0;
    background:rgba(255,252,248,0.98);
    flex-direction:column; justify-content:center; align-items:center;
    gap:22px; z-index:999;
  }
  .nav-links.active { display:flex; }
  .nav-links a { font-size:1.05rem; }
  .hamburger { display:flex; }
}
@media (max-width:640px) {
  .section { padding:52px 0; }
  .section-title h2 { font-size:1.35rem; }
  .page-hero { padding:96px 0 44px; }
  .page-hero h1 { font-size:1.45rem; }
  .cta-section h2 { font-size:1.25rem; }
  .staff-grid { grid-template-columns:1fr; }
  .info-table td:first-child { white-space:normal; }
}
