@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  --c50:  #faf8f4;
  --c100: #f6f2e9;
  --c200: #efeadf;
  --c300: #e5dfd1;
  --s100: #f0dcc8;
  --s200: #e1a67a;
  --s300: #d9a06c;
  --s400: #c48a54;
  --n600: #1e3a5f;
  --n700: #152942;
  --n800: #0f1f30;
  --ch:   #1a1a1a;
  --border: rgba(26,26,26,0.1);
  --border-s: rgba(225,166,122,0.28);
  --spacing: 5rem;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--c100);
  color: var(--ch);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--spacing) 0; }
.section.c100 { background: var(--c100); }
.section.c200 { background: var(--c200); }
.section.navy { background: var(--n800); color: var(--c100); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: rgba(26,26,26,0.65); max-width: 520px; margin: 0 auto; font-size: 1rem; }
.section-header.light p { color: rgba(246,242,233,0.6); }
.section-header.light h2 { color: var(--c100); }

/* ── Navbar ──────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,233,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.05rem; color: var(--n800);
}
.nav-logo {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--ch); background: var(--c200);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.05em; flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-links { display: flex; align-items: center; }
.nav-link {
  padding: 6px 12px; font-size: 0.875rem; color: var(--ch);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--s300); width: 0; transition: width 0.25s;
}
.nav-link:hover { color: var(--n700); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 24px); }
.nav-link.active { color: var(--n700); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ch); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--c100); border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  padding: 0.85rem 1.5rem; font-size: 1rem;
  color: var(--ch); border-bottom: 1px solid var(--border);
  text-align: left; width: 100; transition: background 0.2s;
  display: block; width: 100%;
}
.mobile-menu a:hover, .mobile-menu button:hover { background: var(--c200); color: var(--n700); }
.mobile-menu a.active, .mobile-menu button.active { color: var(--s400); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.7rem 1.8rem; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary   { background: var(--s300); color: var(--c100); }
.btn-primary:hover  { background: var(--s400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-secondary { background: var(--n700); color: var(--c100); }
.btn-secondary:hover { background: var(--n800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-outline   { border: 2px solid var(--ch); color: var(--ch); background: transparent; }
.btn-outline:hover   { background: var(--ch); color: var(--c100); }
.btn-outline-light { border: 2px solid rgba(246,242,233,0.5); color: var(--c100); background: transparent; }
.btn-outline-light:hover { background: rgba(246,242,233,0.12); border-color: var(--c100); }

/* ── Page Hero (inner pages) ─────────────────────── */
.page-hero {
  background: linear-gradient(to bottom, var(--c100), var(--c200));
  padding: calc(var(--spacing) + 24px) 0 var(--spacing);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { margin-bottom: 0.8rem; color: var(--n800); }
.page-hero p { color: rgba(26,26,26,0.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* Circular accents */
.ca {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--n700); opacity: 0.07; pointer-events: none;
}
.ca::after {
  content: ''; position: absolute; inset: 14px;
  border-radius: 50%; border: 1px solid var(--s300); opacity: 0.6;
}
.ca.lg { width: 380px; height: 380px; }
.ca.md { width: 240px; height: 240px; }
.ca.tr { top: -80px; right: -80px; }
.ca.tl { top: -80px; left: -80px; }
.ca.bl { bottom: -60px; left: -60px; }
.ca.br { bottom: -60px; right: -60px; }

/* ── Badge ───────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
  background: var(--s200); color: var(--c100);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
}
.badge-navy { background: var(--n700); }
.badge-outline { background: transparent; border: 2px solid var(--s300); color: var(--s400); }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--c100); border-radius: 20px;
  padding: 1.6rem; border: 2px solid var(--border-s);
  transition: all 0.25s;
}
.card:hover {
  border-color: var(--s300);
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--s100); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem; font-size: 1.4rem;
}

/* ── Person Cards ────────────────────────────────── */
.person-card {
  text-align: center; background: var(--c100);
  border-radius: 20px; padding: 1.6rem 1rem;
  border: 2px solid var(--border-s); transition: all 0.25s;
}
.person-card:hover { border-color: var(--s300); box-shadow: 0 12px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.person-avatar {
  width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(135deg, var(--s100), var(--s200));
  margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--c100); box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  font-size: 2.4rem; overflow: hidden;
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-card h5 { font-size: 1rem; color: var(--n800); margin-bottom: 4px; }
.person-card .role { font-size: 0.82rem; color: var(--s400); margin-bottom: 0.7rem; font-weight: 500; }
.tag-pill { display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 3px 12px; border-radius: 20px; }
.tag-active { background: rgba(225,166,122,0.2); color: var(--s400); }
.tag-alumni { background: rgba(26,26,26,0.07); color: rgba(26,26,26,0.45); }

/* ── Championship Cards ──────────────────────────── */
.champ-card {
  background: var(--c100); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.25s;
}
.champ-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.09); transform: translateY(-4px); }
.champ-card-img {
  height: 160px; background: linear-gradient(145deg, var(--c200), var(--s100));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.champ-card-img img { width: 100%; height: 100%; object-fit: cover; }
.champ-card-img-placeholder {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(225,166,122,0.25); border: 1px dashed rgba(196,138,84,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.champ-year {
  position: absolute; top: 10px; right: 10px;
  background: var(--n800); color: var(--c100);
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 12px;
}
.champ-card-body { padding: 1.1rem 1.2rem; }
.champ-card-tag { font-size: 0.72rem; font-weight: 600; color: var(--s400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.champ-card-body h4 { font-size: 0.95rem; color: var(--n800); line-height: 1.35; margin-bottom: 6px; }
.champ-card-body p { font-size: 0.85rem; color: rgba(26,26,26,0.6); line-height: 1.6; }
.champ-card-meta { display: flex; gap: 16px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.champ-meta-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--s400); }
.champ-meta-item span { font-size: 0.72rem; color: rgba(26,26,26,0.5); }

/* ── Coming Soon Box ─────────────────────────────── */
.coming-soon {
  background: var(--s100); border: 2px dashed rgba(196,138,84,0.35);
  border-radius: 18px; padding: 2.4rem 2rem; text-align: center;
  max-width: 520px; margin: 0 auto;
}
.coming-soon .cs-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.coming-soon h3 { font-size: 1.2rem; color: var(--n700); margin-bottom: 0.5rem; }
.coming-soon p { font-size: 0.9rem; color: rgba(26,26,26,0.6); line-height: 1.7; }
.coming-soon p a { color: var(--s400); font-weight: 600; }
.coming-soon p a:hover { text-decoration: underline; }

/* ── Workshop Cards ──────────────────────────────── */
.workshop-card {
  background: var(--c100); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
  margin-bottom: 14px; transition: all 0.22s;
}
.workshop-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.workshop-head { background: var(--n800); padding: 1.1rem 1.4rem; }
.workshop-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 8px; }
.wtag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.wtag-cream { background: rgba(246,242,233,0.14); color: var(--s100); }
.wtag-navy  { background: rgba(255,255,255,0.07); color: rgba(246,242,233,0.55); }
.workshop-head h3 { font-size: 1rem; color: var(--c100); font-weight: 600; line-height: 1.35; }
.workshop-body { padding: 1rem 1.4rem; }
.workshop-details { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 10px; }
.wd { display: flex; align-items: center; gap: 5px; font-size: 0.88rem; color: rgba(26,26,26,0.6); }
.wd strong { color: var(--n800); }
.workshop-desc { font-size: 0.88rem; color: rgba(26,26,26,0.65); line-height: 1.7; margin-bottom: 10px; }
.workshop-led { font-size: 0.85rem; color: rgba(26,26,26,0.55); border-top: 1px solid var(--border); padding-top: 10px; }
.workshop-led strong { color: #7a4f2e; font-weight: 600; }

/* ── Resource Cards ──────────────────────────────── */
.resource-card {
  background: var(--c200); border-radius: 14px; padding: 1.1rem 1.3rem;
  border: 2px solid var(--border-s); display: flex; align-items: flex-start;
  gap: 14px; transition: all 0.2s;
}
.resource-card:hover { border-color: var(--s300); box-shadow: 0 10px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.resource-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--s100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem;
}
.resource-card h5 { font-size: 0.95rem; color: var(--n800); margin-bottom: 3px; }
.resource-card p  { font-size: 0.82rem; color: rgba(26,26,26,0.6); }
.resource-link    { font-size: 0.82rem; color: var(--s400); margin-top: 5px; display: block; font-weight: 500; }
.resource-link:hover { text-decoration: underline; }

/* ── Testimonial Cards ───────────────────────────── */
.testi-group { margin-bottom: 2.4rem; }
.testi-group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.2rem; }
.testi-group-header h3 { font-size: 1.1rem; white-space: nowrap; }
.testi-group-header::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card {
  background: var(--c100); border-radius: 16px; padding: 1.5rem 1.3rem 1.2rem;
  border: 1px solid var(--border); position: relative; transition: all 0.22s;
}
.testi-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.testi-card.students { border-top: 3px solid var(--s300); }
.testi-card.parents  { border-top: 3px solid var(--n700); }
.testi-card.teachers { border-top: 3px solid #7a4f2e; }
.testi-quote-mark {
  font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 0.85;
  color: var(--s100); position: absolute; top: 12px; left: 16px; pointer-events: none;
}
.testi-card blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.92rem; color: rgba(26,26,26,0.82); line-height: 1.78;
  margin-bottom: 1rem; padding-top: 1.2rem; position: relative; z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--s100), var(--s200));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700;
  color: var(--c100); flex-shrink: 0; overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--n800); }
.testi-role { font-size: 0.75rem; color: var(--s400); margin-top: 1px; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.wa-main-card { background: var(--n800); border-radius: 16px; padding: 1.4rem; margin-bottom: 12px; }
.wa-main-card h4 { font-size: 1rem; color: var(--c100); font-family: 'Playfair Display', serif; margin-bottom: 5px; }
.wa-main-card p { font-size: 0.88rem; color: rgba(246,242,233,0.55); margin-bottom: 1rem; line-height: 1.65; }
.wa-join-btn { background: #25D166; color: white; padding: 8px 18px; border-radius: 20px; font-size: 0.88rem; font-weight: 500; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s; }
.wa-join-btn:hover { background: #1ebc5c; }
.chapter-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(26,26,26,0.42); margin-bottom: 8px; }
.chapter-link {
  background: var(--c100); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px; transition: all 0.2s; text-decoration: none; color: var(--ch);
}
.chapter-link:hover { border-color: rgba(37,209,102,0.4); box-shadow: 0 4px 14px rgba(37,209,102,0.1); }
.chapter-dot { width: 9px; height: 9px; border-radius: 50%; background: #25D166; flex-shrink: 0; }
.chapter-name { font-size: 0.92rem; font-weight: 500; color: var(--n800); }
.chapter-sub  { font-size: 0.78rem; color: rgba(26,26,26,0.5); }
.chapter-arrow { margin-left: auto; font-size: 0.88rem; color: #25D166; font-weight: 500; }
.ig-panel { background: var(--c100); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ig-header { padding: 12px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.ig-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ig-name   { font-size: 0.92rem; font-weight: 600; color: var(--n800); }
.ig-handle { font-size: 0.78rem; color: rgba(26,26,26,0.5); }
.ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; padding: 2px; }
.ig-post { aspect-ratio: 1; background: var(--c200); overflow: hidden; }
.ig-post img { width: 100%; height: 100%; object-fit: cover; }
.ig-footer { padding: 12px; text-align: center; border-top: 1px solid var(--border); }
.ig-open-btn { background: linear-gradient(90deg,#f09433,#dc2743,#bc1888); color: white; padding: 8px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; border: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity 0.2s; }
.ig-open-btn:hover { opacity: 0.88; }

/* ── Grid helpers ────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.gap-sm { gap: 1rem; }

/* ── Flex helpers ────────────────────────────────── */
.flex       { display: flex; }
.flex-wrap  { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }

/* ── Stats (dark bg) ─────────────────────────────── */
.stat-block { text-align: center; }
.stat-icon  { width: 56px; height: 56px; border-radius: 50%; background: var(--s100); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; font-size: 1.4rem; }
.stat-num   { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--s200); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.9rem; color: rgba(246,242,233,0.6); }

/* ── Management team ─────────────────────────────── */
.mgmt-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.4rem; }
.mgmt-member { text-align: center; }
.mgmt-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--s100), var(--s200));
  margin: 0 auto 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--c100); border: 3px solid var(--c100);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12); overflow: hidden;
}
.mgmt-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mgmt-name { font-size: 0.85rem; font-weight: 600; color: var(--n800); margin-bottom: 3px; }
.mgmt-role { font-size: 0.76rem; color: var(--s400); }

/* ── Story section ───────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.story-text p { font-size: 0.95rem; color: rgba(26,26,26,0.7); line-height: 1.8; margin-bottom: 0.9rem; }
.story-text p:last-child { margin-bottom: 0; }
.story-text strong { color: var(--n800); font-weight: 600; }
.story-img-block {
  border-radius: 20px; overflow: hidden;
  background: var(--c200); aspect-ratio: 4/3;
  border: 1px solid var(--border); position: relative;
}
.story-img-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-img-ph {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 2rem;
}
.story-img-ph p { font-size: 0.82rem; color: rgba(26,26,26,0.4); }
.story-img-ph code { font-size: 0.78rem; }

/* ── Partner dark box ────────────────────────────── */
.partner-box {
  background: linear-gradient(135deg, var(--n600), var(--n800));
  border-radius: 20px; padding: 2.4rem; color: var(--c100); position: relative; overflow: hidden;
}
.partner-box h2 { color: var(--c100); margin-bottom: 0.8rem; }
.partner-box p  { color: rgba(246,242,233,0.65); margin-bottom: 1.6rem; max-width: 540px; }
.partner-tile { background: rgba(246,242,233,0.08); border-radius: 12px; padding: 1.1rem; }
.partner-tile h5 { color: var(--c100); font-size: 0.9rem; margin-bottom: 5px; }
.partner-tile p  { color: rgba(246,242,233,0.5); font-size: 0.82rem; }

/* ── Footer ──────────────────────────────────────── */
footer { background: var(--n800); color: var(--c100); padding: 3.5rem 0 1.6rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.4rem;
  margin-bottom: 2rem;
}
.footer-brand .fb-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--c100);
  margin-bottom: 0.6rem; display: block;
}
.footer-brand p {
  font-size: 0.85rem; color: rgba(246,242,233,0.42);
  line-height: 1.65; max-width: 220px;
}
.footer-col-title {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246,242,233,0.28); margin-bottom: 0.9rem;
}
.footer-col a {
  display: block; font-size: 0.88rem;
  color: rgba(246,242,233,0.52); margin-bottom: 0.45rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--s100); }
.footer-bottom {
  border-top: 1px solid rgba(246,242,233,0.08);
  padding-top: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(246,242,233,0.25);
  flex-wrap: wrap; gap: 8px;
}
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(246,242,233,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.2s;
}
.social-link:hover { background: rgba(225,166,122,0.2); }

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer-brand p { max-width: 320px; }
  .social-links { margin-top: 0; }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0.6rem;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-bottom span:last-child { display: none; }
}

/* ── Utility ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: rgba(26,26,26,0.65); }
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.max-w-2xl { max-width: 672px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 800px; margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .mgmt-grid  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  :root { --spacing: 3.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .story-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .mgmt-grid  { grid-template-columns: repeat(3, 1fr); }
  .champ-featured { grid-template-columns: 1fr; }
  .champ-featured-img { min-height: 200px; }
  .champ-featured-body { padding: 1.6rem; }
  .page-hero h1 { font-size: 2rem; }
}
@media (max-width: 580px) {
  .container { padding: 0 1rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .mgmt-grid  { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .highlight-metrics { gap: 1rem; }
  .champ-feat-meta { gap: 1rem; }
}

/* ── Animations ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─────────────────────────────────────────────
   HOMEPAGE REDESIGN
───────────────────────────────────────────── */

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c100) 0%, #f3efe6 100%);
  padding: 7rem 0 6rem;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.home-hero-logo-wrap {
  margin-bottom: 2rem;
}

.home-hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(15,31,48,0.10));
}

.home-overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s400);
  margin-bottom: 1rem;
}

.home-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.02;
  color: var(--n800);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.home-hero-sub {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(26,26,26,0.68);
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 30px;
  border: 1px solid rgba(21,41,66,0.08);
}

.hero-orb-1::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(196,138,84,0.08);
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  left: -130px;
  bottom: -90px;
  border: 1px solid rgba(21,41,66,0.08);
}

.hero-orb-2::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(196,138,84,0.08);
}

/* split sections */
.home-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.home-split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.home-split-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--n800);
  margin-bottom: 1rem;
}

.home-split-copy p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(26,26,26,0.67);
  margin-bottom: 1rem;
}

/* about panel */
.home-about {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.home-about-panel {
  display: flex;
  justify-content: center;
}

.home-about-card {
  width: 100%;
  background: linear-gradient(145deg, var(--c200), var(--c100));
  border: 1px solid rgba(196,138,84,0.24);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 44px rgba(0,0,0,0.06);
}

.home-about-stat {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.home-about-stat:last-child {
  border-bottom: none;
}

.home-about-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--n800);
  margin-bottom: 0.4rem;
}

.home-about-stat span {
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgba(26,26,26,0.62);
}

/* impact */
.home-impact {
  position: relative;
  overflow: hidden;
}

.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.impact-card {
  background: rgba(246,242,233,0.04);
  border: 1px solid rgba(246,242,233,0.08);
  border-radius: 22px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225,166,122,0.35);
}

.impact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--s200);
  color: var(--c100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--s200);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  color: rgba(246,242,233,0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* spotlight */
.home-spotlight {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.home-spotlight-visual {
  display: flex;
  justify-content: center;
}

.spotlight-frame {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--s200), var(--s400));
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  padding: 1.25rem;
  position: relative;
}

.spotlight-badge {
  display: inline-block;
  background: rgba(246,242,233,0.22);
  color: var(--c100);
  border: 1px solid rgba(246,242,233,0.28);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-inner {
  height: calc(100% - 2.5rem);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--c100);
  text-align: center;
  padding: 2rem;
}

.spotlight-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.spotlight-inner h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.spotlight-inner p {
  color: rgba(246,242,233,0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 320px;
}

/* cta */
.home-cta {
  background: linear-gradient(135deg, var(--n700), var(--n800));
  padding: 5.5rem 0;
}

.home-cta-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(246,242,233,0.04);
  border: 1px solid rgba(246,242,233,0.08);
  border-radius: 28px;
  padding: 3.25rem 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-cta-card h2 {
  color: var(--c100);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.home-cta-card p {
  color: rgba(246,242,233,0.70);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.85;
  font-size: 1rem;
}

/* responsive */
@media (max-width: 980px) {
  .home-split,
  .home-split-reverse {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .home-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-frame {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 5.5rem 0 4.5rem;
  }

  .home-hero-logo {
    width: 112px;
    height: 112px;
  }

  .home-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
  }

  .home-hero-sub {
    font-size: 1rem;
  }

  .home-impact-grid {
    grid-template-columns: 1fr;
  }

  .home-about-card,
  .home-cta-card,
  .spotlight-frame {
    border-radius: 20px;
  }
}


.home-hero {
  background: linear-gradient(180deg, var(--c100), #f6f2ea);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
}

.hero-shell {
  max-width: 980px;
  margin: 0 auto;
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 14px 24px rgba(15, 31, 48, 0.08));
}

.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--n800);
}

.home-hero p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(26, 26, 26, 0.66);
  line-height: 1.75;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .home-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-logo {
    width: 105px;
    height: 105px;
  }

  .home-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .home-hero p {
    font-size: 1rem;
  }
}