/* ================= EduOne Camp — 2027 Hanoi Camp ================= */

:root {
  --navy: #01235b;
  --navy-deep: #011538;
  --gold: #eeaa41;
  --gold-text: #a3730f;
  --crimson: #a41d36;
  --cream: #f7f5ef;
  --white: #ffffff;
  --ink: #1c2430;
  --ink-soft: #5b6472;
  --border: #e6e1d6;

  --font-serif: 'Noto Serif KR', serif;
  --font-sans: 'Noto Sans KR', sans-serif;

  --container-w: 1120px;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(1, 35, 91, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); margin: 0; line-height: 1.3; }
p { line-height: 1.75; color: var(--ink-soft); margin: 0 0 1em; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(238,170,65,.4); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; padding: 13px 26px; border-radius: 999px; font-weight: 700; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.brand-logo { height: 34px; width: auto; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 18px; }
.partner-badge { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.badge-label {
  font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gold);
  font-weight: 700;
}
.badge-logo { height: 24px; width: auto; }
.nav-cta { padding: 10px 20px; font-size: 0.88rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,21,56,.55) 0%, rgba(1,21,56,.72) 55%, rgba(1,21,56,.92) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 130px 24px 100px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.eyebrow {
  font-size: 0.82rem; letter-spacing: 0.16em; font-weight: 700;
  color: var(--gold); margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: 2.6rem; font-weight: 700; margin-bottom: 22px;
}
.hero-sub { color: rgba(255,255,255,.92); font-size: 1.08rem; margin-bottom: 10px; }
.hero-school { color: var(--gold); font-weight: 700; font-size: 1.05rem; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.session-chip {
  display: inline-block; border: 1px solid rgba(255,255,255,.4);
  padding: 7px 18px; border-radius: 999px; font-size: 0.78rem; letter-spacing: 0.1em;
  color: #fff; font-weight: 700;
}
.br-mobile { display: none; }

/* ---------- Quick facts ---------- */
.quickfacts {
  margin-top: -56px; position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 30px 10px;
}
.quickfacts.small-facts { margin-top: 30px; }
.qf-item {
  padding: 0 20px; text-align: left;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.qf-item:first-child { border-left: none; }
.qf-label { font-size: 0.75rem; color: var(--gold-text); font-weight: 700; letter-spacing: .04em; }
.qf-item strong { font-family: var(--font-serif); color: var(--navy); font-size: 1.05rem; }
.qf-sub { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- History strip ---------- */
.history-strip {
  display: flex; align-items: center; gap: 26px;
  padding: 44px 24px 20px;
}
.history-badge {
  flex-shrink: 0; width: 76px; height: 76px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.history-strip p { margin: 0; color: var(--ink); font-size: 0.98rem; }
.history-strip strong { color: var(--navy); }

.keyword-bar { background: var(--navy-deep); padding: 16px 0; margin: 28px 0 0; }
.keyword-list { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; color: #fff; font-weight: 600; font-size: 0.92rem; }
.keyword-list .dot { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: #fff; }
.section-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.14em; font-weight: 700;
  color: var(--crimson); margin-bottom: 10px; text-transform: uppercase;
}
.section-eyebrow.small { margin-top: 8px; }
.section-eyebrow.light { color: var(--gold); }
.section-title { font-size: 1.9rem; margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-lead { font-size: 1.02rem; max-width: 640px; margin-bottom: 40px; }
.section-lead.light { color: rgba(255,255,255,.85); }
.sub-title { font-family: var(--font-serif); color: var(--navy); font-size: 1.25rem; margin: 48px 0 20px; }
.sub-title.small { font-size: 1.05rem; margin: 40px 0 18px; }

/* ---------- Compare table ---------- */
.compare-table { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.compare-row { display: grid; grid-template-columns: 1fr 50px 1fr; gap: 0; align-items: stretch; }
.compare-head { display: grid; grid-template-columns: 1fr 50px 1fr; margin-bottom: 4px; }
.compare-head .compare-asis {
  background: transparent; color: var(--crimson); font-weight: 700; font-size: 0.85rem;
  padding: 0 0 0 22px;
}
.compare-head .compare-tobe {
  background: transparent; color: var(--gold-text); font-weight: 700; font-size: 0.85rem;
  padding: 0 0 0 22px;
}
.compare-asis {
  background: #fff; border-left: 4px solid var(--crimson); border-radius: 8px;
  padding: 20px 22px; box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.compare-asis strong { display: block; color: var(--navy); margin-bottom: 8px; font-family: var(--font-serif); }
.compare-asis p { margin: 0; font-size: 0.92rem; }
.compare-tobe {
  background: #fffaf0; border: 1px solid var(--gold); border-radius: 8px;
  padding: 20px 22px;
}
.compare-tobe strong { display: block; color: var(--navy); margin-bottom: 8px; font-family: var(--font-serif); }
.compare-tobe p { margin: 0; font-size: 0.92rem; }
.compare-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.4rem; font-weight: 700;
}

.callout-navy {
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 36px 40px; margin-bottom: 32px; text-align: center;
}
.callout-eyebrow { font-size: 0.78rem; letter-spacing: .12em; color: var(--gold); font-weight: 700; }
.callout-eyebrow.big-num { font-family: var(--font-serif); font-size: 2.6rem; display: block; color: var(--gold); }
.callout-navy h3 { color: #fff; font-size: 1.5rem; margin: 10px 0 14px; }
.callout-navy p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; }

.quote-line {
  border-left: 4px solid var(--gold); padding: 6px 0 6px 22px; margin: 0 0 26px;
  font-style: italic; color: var(--navy); font-size: 0.98rem;
}
.note-box {
  background: #fbf3e3; border: 1px solid #f0dcb2; border-radius: 10px;
  padding: 18px 22px; font-size: 0.92rem; color: var(--ink); margin-bottom: 10px;
}
.note-box strong { color: var(--navy); }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 50px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
}
.feature-num { color: var(--border); font-family: var(--font-serif); font-size: 2rem; font-weight: 700; }
.feature-card h3 { font-size: 1.1rem; margin: 8px 0 10px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.split-col { background: #fff; border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); }
.split-col h4 { font-size: 1.05rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.split-col h4 small { color: var(--ink-soft); font-weight: 400; font-size: 0.8rem; }
.timetable { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.timetable td { padding: 8px 4px; border-bottom: 1px dashed var(--border); color: var(--ink); }
.timetable td:last-child { text-align: right; color: var(--ink-soft); }
.meal-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 0.9rem; }
.meal-list li:last-child { border-bottom: none; }
.meal-list strong { color: var(--navy); margin-right: 6px; }
.meal-list span { display: block; color: var(--ink-soft); font-size: 0.82rem; margin-top: 3px; }
.fine-print { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; }
.fine-print.center { text-align: center; }

/* ---------- Eduplex routine ---------- */
.callout-outline {
  border: 1.5px solid var(--navy); border-radius: var(--radius);
  padding: 34px 36px; margin-bottom: 30px; background: #fff;
}
.callout-outline-head span { font-weight: 700; color: var(--navy); font-family: var(--font-serif); font-size: 1.15rem; }
.tag-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.tag-item .tag {
  display: inline-block; background: var(--navy); color: #fff; font-size: 0.78rem;
  padding: 6px 14px; border-radius: 999px; font-weight: 700; margin-bottom: 8px;
}
.tag-item p { font-size: 0.85rem; margin: 0; }
.small-note { font-size: 0.85rem; border-top: 1px solid var(--border); padding-top: 16px; margin: 0; }
.center-lead { text-align: center; font-size: 1rem; max-width: 700px; margin: 0 auto 20px; }
.pull-quote { text-align: center; font-family: var(--font-serif); color: var(--navy); font-size: 1.3rem; font-weight: 700; margin: 0 0 40px; }
.pull-quote.small { font-size: 1.05rem; }

.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.photo-duo figure { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-duo img { width: 100%; height: 220px; object-fit: cover; }
.photo-duo figcaption { padding: 20px 22px; }
.tag-mini {
  display: inline-block; background: #fdeed2; color: var(--gold-text); font-size: 0.7rem;
  font-weight: 700; letter-spacing: .06em; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
}
.photo-duo strong { display: block; color: var(--navy); font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 8px; }
.photo-duo p { font-size: 0.88rem; margin: 0; }

/* ---------- Campus ---------- */
.isp-stats { background: #fff; border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow); margin-bottom: 34px; }
.isp-stats-title { font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.stat { background: var(--cream); border-radius: 10px; padding: 16px; text-align: center; }
.stat strong { display: block; font-family: var(--font-serif); color: var(--gold-text); font-size: 1.4rem; }
.stat span { font-size: 0.78rem; color: var(--ink-soft); }
.isp-stats p { font-size: 0.9rem; margin: 0 0 10px; }
.isp-stats p:last-child { margin-bottom: 0; }

.campus-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.campus-gallery figure { margin: 0; position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.campus-gallery figure.span-2 { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.campus-gallery img { width: 100%; height: 100%; object-fit: cover; }
.campus-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(1,21,56,.8), transparent);
  color: #fff; font-size: 0.78rem; font-weight: 600; padding: 20px 12px 10px;
}
.link-chip-row { display: flex; gap: 14px; flex-wrap: wrap; }
.link-chip-row a {
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; flex: 1; min-width: 220px;
}
.link-chip-row a small { display: block; font-weight: 400; color: rgba(255,255,255,.7); font-size: 0.75rem; margin-top: 4px; }

/* ---------- Leadership / founder ---------- */
.leader-card { display: grid; grid-template-columns: 200px 1fr; gap: 34px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; margin-bottom: 30px; }
.leader-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; border: 4px solid var(--gold); }
.leader-role { color: var(--gold-text); font-weight: 700; font-size: 0.88rem; margin-bottom: 14px; }
.leader-body blockquote { border-left: 3px solid var(--gold); padding-left: 18px; font-style: italic; color: var(--navy); font-size: 0.92rem; margin: 0 0 16px; }
.leader-body p { font-size: 0.9rem; }
.signoff { text-align: right; font-weight: 700; color: var(--navy); }

.mou-block { display: grid; grid-template-columns: 320px 1fr; gap: 34px; align-items: center; margin-bottom: 56px; }
.mou-block img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

.founder-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.two-brand-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 36px; }
.brand-box { background: var(--cream); border-radius: 10px; padding: 22px 24px; }
.brand-box h4 { font-size: 1rem; margin-bottom: 10px; }
.brand-box h4 small { color: var(--ink-soft); font-weight: 400; font-size: 0.72rem; margin-left: 6px; }
.brand-box p { font-size: 0.85rem; margin: 0; }

.founder-profile { display: grid; grid-template-columns: 180px 1fr; gap: 30px; margin-bottom: 30px; }
.founder-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; border: 4px solid var(--gold); }
.founder-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 14px; }
.list-title { font-weight: 700; color: var(--navy); font-size: 0.85rem; margin-bottom: 8px; }
.founder-lists ul li { font-size: 0.82rem; color: var(--ink-soft); padding: 4px 0 4px 14px; position: relative; }
.founder-lists ul li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

.founder-quote { background: var(--cream); border-radius: 10px; padding: 28px 30px; margin-bottom: 26px; }
.founder-quote p { font-size: 0.9rem; color: var(--ink); }

/* ---------- Calendar ---------- */
.calendar-table-wrap { overflow-x: auto; margin-bottom: 20px; display: flex; flex-direction: column; gap: 22px; }
.calendar-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 760px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.calendar-table th {
  background: var(--navy); color: #fff; padding: 10px 8px; font-size: 0.8rem; font-weight: 700; text-align: center;
}
.calendar-table th span { display: block; font-weight: 400; font-size: 0.72rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.calendar-table th.sat-col { background: var(--gold-text); }
.calendar-table td {
  padding: 10px 8px; text-align: center; font-size: 0.78rem; color: var(--ink);
  border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); vertical-align: middle;
}
.calendar-table td:last-child { border-right: none; }
.calendar-table tbody tr:last-child td { border-bottom: none; }
.calendar-table .time-col {
  font-weight: 700; color: var(--navy); background: #fbf7ee; font-size: 0.74rem;
  white-space: nowrap; text-align: center;
}
.calendar-table td.hilite { color: var(--gold-text); font-weight: 700; }
.calendar-table td.sat-col { background: #fdf6e8; font-weight: 600; color: var(--gold-text); }
.calendar-table td.finale-cell {
  background: var(--navy); color: #fff; font-weight: 600; font-size: 0.76rem;
  line-height: 1.7; text-align: left; padding: 18px 16px;
}

.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 24px 0 20px; }
.stay-grid figure { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.stay-grid img { width: 100%; height: 200px; object-fit: cover; }
.stay-grid figcaption { padding: 18px 20px; }
.stay-grid strong { display: block; font-family: var(--font-serif); color: var(--navy); margin-bottom: 6px; }
.stay-grid p { font-size: 0.85rem; margin: 0; }

/* ---------- Weekend ---------- */
.weekend-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.weekend-card { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.weekend-card img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.weekend-body { padding: 26px 28px; }
.weekend-body h3 { font-size: 1.15rem; margin: 8px 0 12px; }
.weekend-body p { font-size: 0.9rem; }
.highlight { color: var(--gold-text); font-weight: 700; font-size: 0.85rem !important; }
.weekend-card.dark { background: var(--navy); }
.weekend-card.dark .weekend-body h3 { color: #fff; }
.weekend-card.dark .weekend-body p { color: rgba(255,255,255,.8); }
.weekend-card.dark .tag-mini { background: var(--gold); color: var(--navy); }
.weekend-card.dark .highlight { color: var(--gold); }

.meal-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.meal-photos figure { margin: 0; }
.meal-photos img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; }
.meal-photos figcaption { padding-top: 10px; text-align: center; }
.meal-photos strong { display: block; color: var(--navy); font-size: 0.9rem; }
.meal-photos span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Safety ---------- */
.banner-line { background: #fbf3e3; border-radius: 10px; padding: 14px; text-align: center; font-weight: 700; color: var(--navy); margin-bottom: 34px; }
.aseb-card { display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: center; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; margin-bottom: 36px; }
.aseb-logo { width: 100%; background: var(--navy); border-radius: 10px; padding: 20px; }
.aseb-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.aseb-card h3 small { color: var(--gold-text); font-weight: 400; font-size: 0.75rem; }
.check-list li { font-size: 0.88rem; padding: 6px 0 6px 22px; position: relative; color: var(--ink-soft); }
.check-list li::before { content: '✔'; position: absolute; left: 0; color: var(--gold-text); font-size: 0.8rem; }

.step-row { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.step { flex: 1; background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 22px; text-align: center; }
.step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--crimson); color: #fff;
  font-weight: 700; margin-bottom: 10px;
}
.step p { margin: 0; font-size: 0.85rem; }
.step-sep { color: var(--border); font-size: 1.3rem; font-weight: 700; }

.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.principle { background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 24px; text-align: center; }
.principle .ic { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.principle strong { display: block; color: var(--navy); margin-bottom: 6px; font-family: var(--font-serif); }
.principle p { font-size: 0.82rem; margin: 0; }

/* ---------- Recruitment ---------- */
.cta-banner { background: var(--navy); border-radius: var(--radius); padding: 40px; text-align: center; margin-top: 20px; }
.cta-banner p { color: #fff; font-weight: 600; margin-bottom: 22px; font-size: 1.02rem; }

/* ---------- Partners ---------- */
.partner-logo-row { display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.partner-card {
  width: 220px; height: 110px; background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.partner-card img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.partner-text-logo { color: var(--navy); font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; text-align: center; }
.partner-desc { text-align: center; max-width: 760px; margin: 0 auto; font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-size: 0.98rem; font-weight: 700; color: var(--navy);
  font-family: var(--font-sans); display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold-text); font-weight: 400; }
.faq-q[aria-expanded="true"]::after { content: '–'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 24px; }
.faq-a p { font-size: 0.88rem; margin: 0 0 20px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- Contact ---------- */
.contact-section { background: var(--navy-deep); }
.consult-panel {
  background: var(--navy); border: 1px solid rgba(238,170,65,.4); border-radius: var(--radius);
  padding: 40px 44px; margin-bottom: 30px;
}
.gold-tag { background: var(--gold); color: var(--navy); }
.consult-panel h3 { color: #fff; font-size: 1.5rem; margin: 14px 0 12px; }
.consult-panel p { color: rgba(255,255,255,.75); }
.consult-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0; }
.phone-chip { color: var(--gold); font-weight: 700; }
.phone-chip a { color: var(--gold); }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
  padding: 22px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.contact-card img { width: 96px; height: 96px; border-radius: 8px; margin-bottom: 6px; }
.contact-card strong { color: #fff; font-size: 0.95rem; }
.contact-card span { color: rgba(255,255,255,.6); font-size: 0.78rem; }
.contact-card span a { color: rgba(255,255,255,.85); }
.contact-card-direct { justify-content: center; }
.phone-ic { font-size: 1.8rem; color: var(--gold); }
.closing-line { text-align: center; color: rgba(255,255,255,.85); font-size: 0.98rem; border-top: 1px solid rgba(255,255,255,.15); padding-top: 30px; }
.closing-line strong { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 30px; }
.footer-logos { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-logos img { height: 28px; opacity: .9; }
.footer-info p { color: rgba(255,255,255,.6); font-size: 0.8rem; margin: 0 0 8px; }
.footer-info strong { color: rgba(255,255,255,.85); margin-right: 6px; }
.copyright { color: rgba(255,255,255,.4) !important; }

/* ---------- Floating CTA ---------- */
.fab-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  background: var(--gold); color: var(--navy); width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 700; font-size: 0.75rem; line-height: 1.3; box-shadow: 0 10px 24px rgba(1,35,91,.3);
}

/* ================= Responsive ================= */
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: 8px 24px 16px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
  .partner-badge { display: none; }
  .quickfacts { grid-template-columns: 1fr 1fr; }
  .qf-item:nth-child(3) { border-left: none; }
  .qf-item { border-left: none; padding: 10px 14px; border-top: 1px solid var(--border); }
  .qf-item:nth-child(-n+2) { border-top: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .split-panel { grid-template-columns: 1fr; }
  .campus-gallery { grid-template-columns: repeat(2, 1fr); }
  .campus-gallery figure.span-2 { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .leader-card { grid-template-columns: 1fr; text-align: center; }
  .leader-photo { width: 140px; margin: 0 auto; }
  .leader-body blockquote { text-align: left; }
  .mou-block { grid-template-columns: 1fr; }
  .founder-profile { grid-template-columns: 1fr; text-align: center; }
  .founder-photo { width: 140px; margin: 0 auto; }
  .founder-lists { grid-template-columns: 1fr; text-align: left; }
  .two-brand-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .weekend-card { grid-template-columns: 1fr; }
  .weekend-card img { height: 200px; }
  .meal-photos { grid-template-columns: 1fr; }
  .aseb-card { grid-template-columns: 1fr; text-align: center; }
  .aseb-logo { max-width: 200px; margin: 0 auto; }
  .step-row { flex-direction: column; }
  .step-sep { transform: rotate(90deg); }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 10px 16px; }
  .brand-logo { height: 26px; }
  .hero-content { padding: 96px 18px 70px; }
  .hero h1 { font-size: 1.9rem; }
  .br-mobile { display: block; }
  .quickfacts { grid-template-columns: 1fr; margin-top: -30px; padding: 20px 6px; }
  .qf-item { border-top: 1px solid var(--border) !important; }
  .qf-item:first-child { border-top: none !important; }
  .history-strip { flex-direction: column; text-align: center; padding: 36px 20px 10px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.5rem; }
  .compare-row, .compare-head { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); padding: 4px 0; }
  .compare-head .compare-tobe { padding-left: 0; margin-top: 8px; }
  .isp-stats { padding: 22px 20px; }
  .campus-gallery { grid-template-columns: 1fr 1fr; }
  .founder-lists { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .consult-panel { padding: 28px 22px; }
  .footer-inner { flex-direction: column; }
  .fab-cta { width: 54px; height: 54px; font-size: 0.68rem; }
  .tag-row { grid-template-columns: 1fr; }
  .photo-duo { grid-template-columns: 1fr; }
}
