:root {
  --bg: #f8f4f2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-dark: #241b27;
  --text: #241c24;
  --muted: #655764;
  --line: rgba(94, 63, 83, 0.12);
  --primary: #8f4d67;
  --primary-strong: #6f3650;
  --secondary: #d8b79d;
  --accent: #54406a;
  --shadow-lg: 0 24px 80px rgba(53, 34, 47, 0.14);
  --shadow-md: 0 16px 40px rgba(53, 34, 47, 0.12);
  --shadow-sm: 0 8px 20px rgba(53, 34, 47, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
  --nav-h: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 183, 157, 0.35), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(143, 77, 103, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf8f6 0%, #f7f1ee 48%, #fffdfc 100%);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.page-shell { overflow: clip; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 104px 0; }
.section-header { max-width: 720px; margin-bottom: 44px; }
.section-header.centered { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.78); border: 1px solid rgba(143,77,103,0.12); box-shadow: var(--shadow-sm);
  color: var(--primary-strong); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.section-header h1, .section-header h2, .hero-copy h1, .page-hero-copy h1 {
  margin: 18px 0 16px; font-family: "Fraunces", "Georgia", serif; line-height: 1.05; letter-spacing: -0.04em; font-weight: 600;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-header p, .hero-copy p, .page-hero-copy p, .rich-text p, .contact-card p, .detail-card p, .feature-card p, .program-card p, .timeline-item p, .faq-answer p, .info-card p {
  margin: 0; color: var(--muted);
}
.site-header {
  position: sticky; top: 0; z-index: 90; backdrop-filter: blur(18px);
  background: rgba(248, 244, 242, 0.74); border-bottom: 1px solid rgba(94, 63, 83, 0.08);
}
.site-header-inner {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: 0.02em; }
.brand-mark {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, rgba(143,77,103,0.94), rgba(84,64,106,0.95));
  color: #fff; box-shadow: var(--shadow-sm); font-family: "Fraunces", serif; font-size: 1.2rem;
}
.brand-logo {
  width: 200px;
  height: auto;
  display: block;
}
.brand-label { display: flex; flex-direction: column; line-height: 1.05; }
.brand-label strong { font-size: 0.98rem; }
.brand-label span { font-size: 0.75rem; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 10px; }
.site-nav a {
  padding: 12px 14px; border-radius: 12px; color: var(--muted); font-weight: 700; transition: 180ms ease;
}
.site-nav a:hover, .site-nav a.active { background: rgba(143,77,103,0.08); color: var(--primary-strong); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  background: rgba(143,77,103,0.08);
  color: var(--primary-strong);
}
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(94,63,83,0.08);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 180ms ease;
  z-index: 30;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  padding: 12px 14px;
}
.nav-toggle {
  display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 14px;
  background: rgba(255,255,255,0.9); box-shadow: var(--shadow-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 0 auto 5px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent; font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 18px 34px rgba(94,56,84,0.22); }
.btn-secondary { background: rgba(255,255,255,0.88); border-color: rgba(143,77,103,0.14); color: var(--text); box-shadow: var(--shadow-sm); }
.hero { position: relative; padding: 64px 0 84px; }
.hero-grid, .page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center; }
.hero-copy h1, .page-hero-copy h1 { font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.hero-copy p, .page-hero-copy p { max-width: 680px; font-size: 1.1rem; }
.hero-actions, .dual-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-stats, .grid-3, .grid-4, .detail-grid, .contact-grid, .footer-grid, .program-grid, .trust-grid {
  display: grid; gap: 22px;
}
.hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; }
.stat-card, .detail-card, .feature-card, .program-card, .faq-item, .info-card, .contact-card, .timeline-item {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.6); box-shadow: var(--shadow-md); backdrop-filter: blur(16px);
}
.stat-card { padding: 22px; border-radius: var(--radius-md); }
.stat-card strong { display: block; font-size: 2rem; font-family: "Fraunces", serif; color: var(--primary-strong); }
.stat-card span { color: var(--muted); font-size: 0.95rem; }
.hero-visual, .page-hero-visual { position: relative; min-height: 600px; }
.visual-card-main, .visual-card-secondary, .photo-placeholder, .quote-floating { position: absolute; border-radius: var(--radius-xl); }
.visual-card-main {
  inset: 28px 8px 28px 48px;
  padding: 0;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 28px 70px rgba(53, 34, 47, 0.14);
  overflow: hidden;
}
.photo-placeholder {
  inset: 0; border: 0; display: block; padding: 0; color: #fff;
  overflow: hidden;
  background: #d8d1d8;
}
.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(34, 22, 34, 0.01), rgba(34, 22, 34, 0.08)),
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 30%);
  z-index: 1;
}
.grid-3, .detail-grid, .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .program-card, .detail-card, .contact-card, .info-card { padding: 30px; border-radius: var(--radius-lg); }
.feature-card h3, .program-card h3, .detail-card h3, .contact-card h3, .info-card h3 { margin: 18px 0 10px; font-size: 1.2rem; }
.icon-badge {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px;
  background: linear-gradient(135deg, rgba(143,77,103,0.16), rgba(84,64,106,0.12)); color: var(--primary-strong); font-weight: 800;
}
.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(53,38,59,0.98), rgba(31,22,36,0.98));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.program-media {
  margin: -18px -18px 24px;
  height: 212px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 8, 18, 0.02), rgba(15, 8, 18, 0.28)),
    linear-gradient(135deg, rgba(216,183,157,0.08), transparent 40%);
}
.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.program-meta, .trust-row { display: grid; gap: 10px; }
.program-meta { grid-template-columns: repeat(2, max-content); margin-top: 18px; }
.pill {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px; border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #f5e0e8;
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.06);
}
.program-card .btn {
  margin-top: 24px;
  align-self: flex-start;
  min-width: 186px;
}
.program-card h3 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: 1.72rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff9fc;
}
.program-card p {
  color: rgba(255,247,250,0.84);
  font-size: 1rem;
  line-height: 1.72;
}
.program-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,183,157,0.16), rgba(216,183,157,0));
  pointer-events: none;
}
.split-section { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 32px; align-items: start; }
.info-panel {
  padding: 36px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(48,34,58,0.98), rgba(84,64,106,0.95));
  color: #fff; box-shadow: var(--shadow-lg);
}
.info-panel p, .info-panel li, .dark-section p { color: rgba(255,255,255,0.8); }
.info-panel h2, .cta-panel h2, .footer-brand strong { font-family: "Fraunces", serif; }
.bullet-list, .check-list { padding: 0; margin: 22px 0 0; list-style: none; }
.bullet-list li, .check-list li { position: relative; padding-left: 28px; margin-bottom: 14px; }
.bullet-list li::before, .check-list li::before {
  content: ""; position: absolute; top: 10px; left: 0; width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary)); box-shadow: 0 0 0 5px rgba(216,183,157,0.15);
}
.timeline { display: grid; gap: 18px; }
.timeline-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
}
.timeline-item span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(143,77,103,0.12);
  color: var(--primary-strong);
  font-weight: 800;
}
.timeline-item h3 {
  margin: 0;
  line-height: 1.25;
}
.timeline-item p {
  margin-top: 14px;
  padding-left: 50px;
}
.timeline-item-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-band { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.45); }
.trust-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item { padding: 20px 10px; text-align: center; color: var(--muted); font-weight: 800; }
.trust-item strong { display: block; font-size: 1.6rem; font-family: "Fraunces", serif; color: var(--text); }
.dark-section {
  background: radial-gradient(circle at 12% 20%, rgba(216,183,157,0.16), transparent 18%), radial-gradient(circle at 90% 10%, rgba(143,77,103,0.12), transparent 20%), linear-gradient(180deg, #241b27, #1b1520);
  color: #fff;
}
.dark-section .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
  color: #f7dce6;
  box-shadow: none;
}
.dark-section .eyebrow::before {
  background: linear-gradient(135deg, #f0c6d5, #d9b492);
}
.dark-section .section-header h2 {
  color: #fff9fc;
}
.dark-section .section-header p {
  color: rgba(255,255,255,0.72);
}
.dark-section .program-card .btn.btn-secondary {
  background: linear-gradient(135deg, #fff8fb, #f0e4eb);
  color: #2d202b;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.dark-section .program-card .btn.btn-secondary:hover {
  background: linear-gradient(135deg, #ffffff, #f6edf2);
}
.dark-section .program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.3);
  border-color: rgba(240,198,213,0.2);
}
.about-flow {
  position: relative;
  overflow: hidden;
}
.about-flow::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,183,157,0.14), rgba(216,183,157,0));
  pointer-events: none;
}
.about-flow-header {
  max-width: 820px;
  margin-bottom: 42px;
}
.about-flow-header h2 {
  color: #fff9fc;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.about-flow-header p {
  color: rgba(255,255,255,0.74);
  max-width: 62ch;
  margin-inline: auto;
}
.about-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-flow .timeline-item {
  padding: 30px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,240,244,0.94));
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 22px 60px rgba(5,3,7,0.16);
}
.about-flow .timeline-item-head {
  align-items: start;
  gap: 18px;
}
.about-flow .timeline-item span {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(143,77,103,0.16), rgba(216,183,157,0.18));
  color: #6f3650;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.about-flow .timeline-item h3 {
  color: #2d232f;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.about-flow .timeline-item p {
  padding-left: 58px;
  margin-top: 14px;
  color: #66596a;
  font-size: 0.98rem;
  line-height: 1.72;
}
.faq-list { display: grid; gap: 16px; }
.faq-item { border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; color: var(--text);
}
.faq-question span:last-child { font-size: 1.6rem; color: var(--primary-strong); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 220ms ease; }
.faq-answer-inner { padding: 0 26px 24px; }
.faq-item.open .faq-answer { max-height: 280px; }
.cta-panel {
  padding: 44px; border-radius: var(--radius-xl);
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 22%), linear-gradient(135deg, #8f4d67, #54406a 65%, #2c2333);
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-panel p { max-width: 640px; color: rgba(255,255,255,0.8); }
.contact-grid { grid-template-columns: 0.95fr 1.05fr; }
.contact-card a { color: var(--primary-strong); font-weight: 800; }
.contact-note { margin-top: 18px; padding: 18px 20px; border-radius: var(--radius-md); background: rgba(143,77,103,0.06); color: var(--muted); }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(94,63,83,0.14); border-radius: 16px; padding: 16px 18px; background: rgba(255,255,255,0.82); color: var(--text);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form small { color: var(--muted); }
.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; align-items: start; margin-bottom: 34px; }
.footer-brand p, .footer-col a, .footer-col p { color: var(--muted); }
.footer-brand .brand-logo {
  width: 220px;
}
.footer-col h4 { margin: 0 0 14px; }
.footer-links { display: grid; gap: 12px; }
.footer-bottom { padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.page-hero { padding: 54px 0 80px; }
.page-hero-visual {
  position: relative;
  min-height: 620px;
  padding-bottom: 120px;
}
.page-hero-photo {
  position: absolute;
  inset: 0 0 120px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 16, 30, 0.08), rgba(28, 16, 30, 0.24)),
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 28%);
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-card {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: min(380px, calc(100% - 64px));
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255,255,255,0.35), rgba(255,255,255,0.12)), linear-gradient(135deg, rgba(84,64,106,0.95), rgba(143,77,103,0.88));
  box-shadow: var(--shadow-lg); color: #fff;
  backdrop-filter: blur(10px);
}
.page-hero-card h2 { margin: 0 0 14px; font-family: "Fraunces", serif; font-size: 1.7rem; }
.page-hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.page-hero-card li { padding-left: 22px; position: relative; color: rgba(255,255,255,0.84); font-size: 0.98rem; line-height: 1.6; }
.page-hero-card li::before { content: ""; position: absolute; top: 11px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--secondary); }
.contact-hero-visual { min-height: 460px; display: flex; align-items: center; justify-content: flex-end; }
.contact-hero-card {
  position: relative;
  inset: auto;
  width: min(460px, 100%);
  padding: 30px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08)),
    radial-gradient(circle at top left, rgba(240, 217, 196, 0.28), transparent 45%),
    linear-gradient(135deg, rgba(57,43,72,0.96), rgba(143,77,103,0.88));
}
.contact-hero-card h2 { margin: 12px 0 16px; }
.contact-hero-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-hero-list li {
  padding: 13px 18px 13px 44px;
  position: relative;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.92);
}
.contact-hero-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f1d5bf;
}
.contact-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.contact-section-intro {
  max-width: 620px;
  margin-top: -10px;
}
.contact-section-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}
.contact-info-tile,
.contact-panel,
.contact-map-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.contact-info-tile {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
}
.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--primary-strong);
  background: linear-gradient(135deg, rgba(143,77,103,0.16), rgba(84,64,106,0.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-info-tile h3,
.contact-panel-head h3 { margin: 0; }
.contact-info-tile p,
.contact-address-card p,
.contact-map-note p,
.person-card p { margin: 0; color: var(--muted); }
.contact-info-tile a,
.contact-info-tile span,
.person-card a { color: var(--primary-strong); font-weight: 800; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}
.contact-main-column,
.contact-side-column {
  display: grid;
  gap: 18px;
}
.contact-panel,
.contact-map-card {
  padding: 26px;
  border-radius: 28px;
}
.contact-panel-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.person-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(250,246,245,0.88);
  border: 1px solid rgba(94,63,83,0.08);
}
.person-card strong,
.contact-map-note strong { display: block; margin-bottom: 8px; }
.contact-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.contact-address-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247,240,238,0.94), rgba(255,255,255,0.88));
  border: 1px solid rgba(94,63,83,0.08);
}
.contact-address-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
}
.contact-form-panel { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,245,244,0.9)); }
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.contact-form-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.contact-form-actions small { color: var(--muted); }
.contact-map-card { overflow: hidden; }
.contact-map-frame {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(94,63,83,0.08);
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.contact-map-note {
  margin-top: 14px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(143,77,103,0.1), rgba(84,64,106,0.08));
}
.detail-grid .detail-card strong { display: block; margin-bottom: 10px; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-strong); }
.rich-text { display: grid; gap: 16px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 560ms ease, transform 560ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid, .page-hero-grid, .split-section, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .grid-4, .program-grid, .grid-3, .detail-grid, .trust-grid, .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-flow-grid { grid-template-columns: 1fr; }
  .hero-visual, .page-hero-visual { min-height: 520px; }
  .visual-card-main { inset: 20px 0 90px 40px; }
  .contact-overview,
  .contact-people-grid,
  .contact-addresses,
  .contact-form-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .page-hero-visual {
    min-height: 560px;
    padding-bottom: 110px;
  }
  .page-hero-photo {
    inset: 0 0 110px 0;
  }
  .page-hero-card { right: 16px; bottom: 0; width: min(340px, calc(100% - 40px)); }
}
@media (max-width: 820px) {
  :root { --nav-h: 76px; }
  .site-nav {
    position: fixed; inset: var(--nav-h) 16px auto; flex-direction: column; align-items: stretch; padding: 16px;
    border-radius: 24px; background: rgba(255,255,255,0.94); box-shadow: var(--shadow-lg); border: 1px solid rgba(94,63,83,0.08);
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { width: 100%; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    border-radius: 16px;
    box-shadow: none;
    background: rgba(143,77,103,0.06);
    border: 1px solid rgba(143,77,103,0.08);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    transform: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 320px;
    padding: 10px;
  }
  .nav-toggle { display: inline-block; }
  .desktop-only { display: none; }
  .brand-logo { width: 172px; }
  .hero { padding-top: 38px; }
  .section { padding: 84px 0; }
  .hero-stats, .trust-row, .grid-4, .program-grid, .grid-3, .detail-grid, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .visual-card-main { inset: 0 0 110px 0; }
  .page-hero-visual {
    min-height: auto;
    padding-bottom: 0;
  }
  .page-hero-photo { position: relative; inset: auto; min-height: 320px; margin-bottom: 18px; }
  .page-hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 28px;
  }
  .visual-card-secondary, .quote-floating { position: relative; width: auto; left: auto; right: auto; top: auto; bottom: auto; margin-top: 18px; }
  .hero-visual, .page-hero-visual { min-height: auto; }
  .page-hero { padding-top: 34px; }
  .contact-hero-card { width: 100%; }
  .contact-map-frame,
  .contact-map-frame iframe { min-height: 320px; }
}
@media (max-width: 560px) {
  .cta-panel, .info-panel, .feature-card, .program-card, .detail-card, .contact-card, .info-card { padding: 24px; }
  .about-flow-panel,
  .about-flow .timeline-item { padding: 24px; }
  .btn, .btn-primary, .btn-secondary { width: 100%; }
  .hero-actions, .dual-cta { flex-direction: column; }
  .contact-info-tile,
  .contact-panel,
  .contact-map-card { padding: 20px; border-radius: 20px; }
  .contact-info-tile,
  .person-card { grid-template-columns: 1fr; }
}
