/* ===== VARIABLES ===== */
:root {
  --red: #8B0015;
  --red-mid: #C0001D;
  --red-dark: #5a000d;
  --red-pale: #FEF2F2;
  --gold: #B8843A;
  --gold-light: #F5ECD8;
  --beige: #FAF7F2;
  --beige-mid: #F0E9DF;
  --ink: #1C1410;
  --ink-2: #5C4F44;
  --ink-3: #9C8E83;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Sarabun', sans-serif; background: var(--beige); color: var(--ink); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige-mid);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px; background: var(--red);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 900; color: #fff;
}
.logo-text {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: var(--red); line-height: 1;
}
.logo-text span { display: block; font-size: 10px; font-family: 'Sarabun', sans-serif; font-weight: 400; color: var(--ink-3); letter-spacing: 1px; text-transform: uppercase; }
.logo-text.white { color: rgba(255,255,255,0.9); }
.logo-text.white span { color: rgba(255,255,255,0.5); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 7px 14px; border-radius: 50px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--red-pale); color: var(--red); }
.nav-cta { background: var(--red) !important; color: #fff !important; box-shadow: 0 3px 12px rgba(192,0,29,0.25); }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding-top: 64px;
  background: var(--red-dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(192,0,29,0.6) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(184,132,58,0.15) 0%, transparent 50%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 60px 32px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  padding: 5px 16px; font-size: 12px; color: rgba(255,255,255,0.75);
  margin-bottom: 22px; letter-spacing: 0.5px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 10px;
}
.hero-title em { font-style: normal; color: #FCA5A5; }
.hero-en { font-size: 14px; color: rgba(255,255,255,0.5); font-style: italic; margin-bottom: 20px; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(10px);
}
.hc-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.hc-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px; margin-bottom: 10px;
  transition: background .2s; cursor: pointer;
}
.hc-item:hover { background: rgba(255,255,255,0.12); }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hc-dot.red { background: #FCA5A5; }
.hc-dot.gold { background: #F5C842; }
.hc-name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.hc-detail { font-size: 12px; color: rgba(255,255,255,0.55); }
.hc-arrow { margin-left: auto; color: rgba(255,255,255,0.4); font-size: 14px; }
.hc-deadline { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; margin-top: 12px; }

.hero-stats { display: flex; gap: 20px; margin-top: 16px; }
.stat-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; flex: 1; text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.5); }

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 12px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--red); padding: 18px 32px; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: #fff; }
.ti { font-size: 24px; }
.trust-item b { display: block; font-size: 18px; font-weight: 700; line-height: 1; }
.trust-item small { font-size: 12px; opacity: .8; }

/* ===== SECTIONS ===== */
.section { padding: 90px 32px; }
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 52px; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,40px); font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.section-head p { font-size: 16px; color: var(--ink-3); }

/* ===== PROGRAM CARDS ===== */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s; display: block;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-header {
  height: 200px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px; position: relative; overflow: hidden;
}
.red-bg { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.dark-bg { background: linear-gradient(135deg, #0a0a1a, #1a1a3a); }
.pc-emoji { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); font-size: 72px; opacity: .25; }
.pc-badge {
  display: inline-block; background: rgba(255,255,255,0.2); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3); margin-bottom: 8px; width: fit-content;
}
.pc-badge.gold { background: var(--gold); border-color: var(--gold); }
.pc-city { font-size: 13px; color: rgba(255,255,255,0.75); }
.pc-body { padding: 24px; }
.pc-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pc-uni { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 12px; padding: 4px 10px; border-radius: 50px; background: var(--beige); color: var(--ink-2); border: 1px solid var(--beige-mid); }
.tag.red { background: var(--red-pale); color: var(--red); border-color: #FCA5A5; }
.pc-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.pc-price span { font-family: 'Sarabun', sans-serif; font-size: 12px; font-weight: 400; color: var(--ink-3); }
.pc-link { font-size: 14px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 4px; }

/* ===== WHY CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card {
  background: var(--beige); border-radius: var(--radius);
  padding: 28px 24px; border: 2px solid transparent;
  transition: all .3s;
}
.why-card:hover { border-color: var(--red); background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* ===== FOUNDERS ===== */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.founder-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow); transition: transform .3s;
}
.founder-card:hover { transform: translateY(-3px); }
.f-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 16px rgba(192,0,29,0.2);
}
.f-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.f-role { font-size: 12px; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.f-bio { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

.why-story {
  background: var(--red); border-radius: var(--radius);
  padding: 40px 48px; display: flex; gap: 32px; align-items: flex-start;
}
.ws-quote { font-family: 'Playfair Display', serif; font-size: 80px; color: rgba(255,255,255,0.15); line-height: 0.7; flex-shrink: 0; }
.ws-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.ws-content p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.85; margin-bottom: 12px; }
.ws-content p:last-child { margin-bottom: 0; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--beige); border-radius: var(--radius);
  padding: 28px; transition: all .3s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rv-stars { font-size: 14px; margin-bottom: 14px; }
.rv-text { font-size: 15px; color: var(--ink); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-avi { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.rv-author b { display: block; font-size: 14px; color: var(--ink); }
.rv-author small { font-size: 12px; color: var(--ink-3); }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--red-dark), var(--red)); padding: 80px 32px; text-align: center; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,3.5vw,38px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-red, .btn-gold, .btn-outline, .btn-ghost, .btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: 15px; font-weight: 700;
  transition: all .25s; cursor: pointer; border: none;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(192,0,29,0.3); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(192,0,29,0.4); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(184,132,58,0.35); }
.btn-gold:hover { background: #9a6d2e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,132,58,0.45); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-ghost-light { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.25); }

/* ===== FOOTER ===== */
footer { background: var(--ink); padding: 64px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; margin: 10px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .2s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li, .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }

/* ===== PROGRAM DETAIL PAGE ===== */
.page-hero { background: var(--red); padding: 120px 32px 60px; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-deco { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); font-size: 150px; opacity: .06; color: #fff; font-family: serif; line-height: 1; pointer-events: none; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hbadge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 50px; font-size: 13px; }
.hbadge.gold { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 700; }

.detail-body { max-width: 1200px; margin: 0 auto; padding: 60px 32px; }
.detail-section { margin-bottom: 56px; }
.detail-section-title {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--ink); margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--beige-mid); display: flex; align-items: center; gap: 10px;
}

/* Info cards */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 0; }
.info-card { background: var(--beige); border-radius: var(--radius-sm); padding: 20px; text-align: center; border: 1px solid var(--beige-mid); }
.info-card-icon { font-size: 26px; margin-bottom: 8px; }
.info-card-label { font-size: 11px; color: var(--ink-3); margin-bottom: 4px; }
.info-card-value { font-size: 15px; font-weight: 700; color: var(--ink); }

/* Pricing table */
.pricing-table { border: 1.5px solid var(--beige-mid); border-radius: var(--radius); overflow: hidden; }
.pr-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 22px; border-bottom: 1px solid var(--beige-mid); transition: background .15s; }
.pr-row:hover { background: var(--beige); }
.pr-row:last-child { border-bottom: none; }
.pr-row.total { background: var(--red); }
.pr-row.total:hover { background: var(--red-dark); }
.pr-left { display: flex; align-items: center; gap: 14px; }
.pr-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--beige); border: 1px solid var(--beige-mid); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.pr-row.total .pr-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.pr-name { font-size: 14px; color: var(--ink); }
.pr-note { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.pr-row.total .pr-name { color: #fef2f2; font-size: 15px; font-weight: 700; }
.pr-row.total .pr-note { color: rgba(254,242,242,0.65); }
.pr-amt { font-size: 15px; font-weight: 700; color: var(--red); white-space: nowrap; }
.pr-row.total .pr-amt { color: #fff; font-size: 18px; }
.pricing-note { font-size: 12px; color: var(--ink-3); margin-top: 10px; padding: 0 4px; line-height: 1.6; }

/* Step items */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 16px; background: var(--beige); border-radius: var(--radius-sm); padding: 20px; border: 1px solid var(--beige-mid); }
.step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
.step-text { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* Schedule */
.schedule-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.sched-item { background: var(--beige); border-radius: var(--radius-sm); padding: 14px 16px; border: 1px solid var(--beige-mid); display: flex; gap: 12px; align-items: flex-start; }
.sched-date { font-size: 12px; font-weight: 700; color: var(--red); min-width: 44px; margin-top: 2px; }
.sched-text { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* Activities */
.activity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.activity-item { background: var(--red-pale); border: 1px solid #FCA5A5; border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13px; color: #9B1C1C; text-align: center; }

/* Places */
.places-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.place-card { background: var(--white); border: 1px solid var(--beige-mid); border-radius: var(--radius-sm); padding: 20px; transition: border-color .2s; }
.place-card:hover { border-color: var(--red); }
.place-num { width: 26px; height: 26px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.place-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.place-desc { font-size: 13px; color: var(--ink-2); line-height: 1.65; }

/* QA */
.qa-list { display: flex; flex-direction: column; gap: 12px; }
.qa-item { background: var(--beige); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--beige-mid); }
.qa-q { padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.qa-q:hover { background: var(--beige-mid); }
.qa-q .qa-icon { font-size: 18px; color: var(--red); transition: transform .3s; }
.qa-a { font-size: 14px; color: var(--ink-2); line-height: 1.75; padding: 0 20px 16px; display: none; }
.qa-item.open .qa-a { display: block; }
.qa-item.open .qa-icon { transform: rotate(45deg); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; }
.contact-info { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); height: fit-content; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--beige-mid); }
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--red-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--ink-3); margin-bottom: 2px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--ink); }
.ci-value a { color: var(--red); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--beige-mid); border-radius: var(--radius-sm);
  font-family: 'Sarabun', sans-serif; font-size: 15px; color: var(--ink);
  background: var(--beige); outline: none; transition: border-color .2s, background .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); background: #fff; }
.form-textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 15px; background: var(--red); color: #fff; border: none; border-radius: 50px; font-family: 'Sarabun', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: all .25s; box-shadow: 0 4px 16px rgba(192,0,29,0.25); }
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(192,0,29,0.35); }

/* About page */
.about-intro { background: var(--red); border-radius: var(--radius); padding: 56px 48px; margin-bottom: 48px; position: relative; overflow: hidden; }
.about-intro::after { content: '教育'; position: absolute; right: 40px; bottom: -10px; font-size: 160px; opacity: .05; color: #fff; font-family: serif; line-height: 1; pointer-events: none; }
.about-intro h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 18px; }
.about-intro p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.9; max-width: 700px; }
.founder-card-big { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.fc-top { display: flex; gap: 20px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--beige-mid); }
.fc-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; flex-shrink: 0; }
.fc-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.fc-role { font-size: 13px; color: var(--red); font-weight: 600; }
.fc-bio-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.fc-bio-item::before { content: '•'; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border-top: 4px solid var(--red); box-shadow: var(--shadow); transition: transform .3s; }
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* Certification */
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.cert-card { background: var(--beige); border: 2px dashed var(--beige-mid); border-radius: var(--radius); padding: 28px; text-align: center; }
.cert-icon { font-size: 36px; margin-bottom: 12px; }
.cert-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cert-num { font-size: 13px; color: var(--ink-3); font-family: monospace; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .prog-grid, .founders-grid, .why-grid, .info-cards, .schedule-grid, .places-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .why-story { flex-direction: column; gap: 16px; padding: 32px 28px; }
  .ws-quote { font-size: 50px; }
  .activity-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--beige); border-bottom: 1px solid var(--beige-mid); padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .detail-body { padding: 40px 20px; }
  .cert-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-scroll-hint { animation: none; }
  .particle { animation: none; }
}
