/* ═══════════════════════════════════════════════════════════
   ROYAL PUBLIC SCHOOL  ·  Main Stylesheet
   Theme : Clean Light  ·  Warm whites, deep navy, warm gold
   Fonts : Lora (serif headings) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
──────────────────────────────────────────────────────────── */
:root {
  --navy:        #0e2243;
  --navy-mid:    #1a3560;
  --gold:        #c8963e;
  --gold-light:  #f0d080;
  --gold-bg:     #fdf6e8;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --sand:        #f2ede4;
  --border:      #e4ddd2;
  --text:        #2d3748;
  --muted:       #718096;
  --light-text:  #a0aec0;
  --shadow-sm:   0 1px 4px rgba(14,34,67,.06);
  --shadow:      0 4px 20px rgba(14,34,67,.10);
  --shadow-lg:   0 12px 48px rgba(14,34,67,.14);
  --radius:      8px;
  --radius-lg:   14px;
  --serif:       'Lora', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ─────────────────────────────────────────────────────────
   2. RESET
──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body  { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ─────────────────────────────────────────────────────────
   3. TYPOGRAPHY
──────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(.95rem, 2vw, 1.2rem); font-weight: 600; }
p  { color: var(--muted); max-width: 65ch; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .69rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-label::before {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.divider   { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 10px 0 24px; }
.divider-c { margin-left: auto; margin-right: auto; }
.text-c    { text-align: center; }
.text-c p  { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────
   4. LAYOUT
──────────────────────────────────────────────────────────── */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─────────────────────────────────────────────────────────
   5. BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; letter-spacing: .02em;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  max-width: 100%; text-align: center; word-break: break-word;
}
.btn-navy         { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover   { background: var(--navy-mid); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-gold         { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover   { background: #b8852e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline      { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-w    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ─────────────────────────────────────────────────────────
   6. NAVBAR
──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 24px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(200,150,62,.35); object-fit: cover; }
.nav-brand-name { font-family: var(--serif); font-size: .97rem; font-weight: 700; color: var(--white); transition: color .3s; }
.nav-brand-sub  { font-size: .6rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); transition: color .3s; }
.navbar.scrolled .nav-brand-name { color: var(--navy); }
.navbar.scrolled .nav-brand-sub  { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: .83rem; font-weight: 500; padding: 7px 11px;
  border-radius: var(--radius); transition: all .2s var(--ease);
  color: rgba(255,255,255,.85); position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--white); font-weight: 600; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; background: var(--gold); border-radius: 2px;
}
.navbar.scrolled .nav-link        { color: var(--text); }
.navbar.scrolled .nav-link:hover  { background: var(--off-white); color: var(--navy); }
.navbar.scrolled .nav-link.active { color: var(--navy); }
.nav-cta { margin-left: 8px; padding: 8px 17px; background: var(--gold); color: var(--white); border-radius: var(--radius); font-size: .82rem; font-weight: 700; transition: all .2s var(--ease); }
.nav-cta:hover { background: #b8852e; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: var(--shadow); padding: 12px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 11px 28px; font-size: .92rem; font-weight: 500; color: var(--text); border-left: 3px solid transparent; transition: all .15s; }
.mobile-nav a:hover { color: var(--navy); background: var(--off-white); border-left-color: var(--gold); padding-left: 34px; }
.mobile-nav .m-cta { display: block; margin: 14px 24px 0; padding: 12px; text-align: center; background: var(--gold); color: var(--white); border-radius: var(--radius); font-weight: 700; border-left: none !important; }
.mobile-nav .m-cta:hover { background: #b8852e; padding-left: 12px !important; }

/* ─────────────────────────────────────────────────────────
   7. HERO — Home
──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg,
      rgba(10,22,48,.92) 0%,
      rgba(14,34,67,.82) 40%,
      rgba(20,50,90,.65) 100%),
    url('assets/herohome.webp') center / cover no-repeat;
  background-color: var(--navy);
  display: flex; align-items: center;
  padding-top: 70px; position: relative;
}
/* Subtle gold shimmer at bottom edge */
.hero::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 50%, var(--gold) 60%, transparent 100%);
  opacity: .6;
}
/* Clean curve into next section */
.hero::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 72px 24px 96px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,150,62,.18); border: 1px solid rgba(200,150,62,.3);
  color: var(--gold-light); font-size: .69rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1    { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-desc  { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 34px; max-width: 48ch; }
.hero-btns  { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }

/* Stats strip inside hero */
.hero-stats {
  display: flex;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(14,34,67,.55); backdrop-filter: blur(8px);
}
.hstat { flex: 1; padding: 18px 10px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); min-width: 0; }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.hstat-l { font-size: .6rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; white-space: nowrap; }

/* Hero quick-access card */
.hero-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.hero-card h3    { font-size: 1rem; margin-bottom: 5px; }
.hero-card > p   { font-size: .82rem; color: var(--muted); margin-bottom: 18px; max-width: 100%; }
.ql-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 15px; border-radius: var(--radius);
  background: var(--off-white); border: 1.5px solid var(--border);
  font-size: .86rem; font-weight: 500; color: var(--navy);
  transition: all .2s var(--ease); margin-bottom: 8px;
}
.ql-item:last-child { margin-bottom: 0; }
.ql-item:hover { border-color: var(--gold); background: var(--gold-bg); transform: translateX(3px); }
.ql-arrow { color: var(--gold); flex-shrink: 0; margin-left: 8px; }

/* ─────────────────────────────────────────────────────────
   8. PAGE HERO — inner pages (100vh)
──────────────────────────────────────────────────────────── */
.page-hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg,
      rgba(8,18,42,.96) 0%,
      rgba(14,34,67,.88) 45%,
      rgba(22,52,95,.78) 100%);
  background-color: var(--navy);
  /* layered gold glows */
  background-image:
    radial-gradient(ellipse 80% 55% at 50%  -5%, rgba(200,150,62,.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(200,150,62,.08) 0%, transparent 50%),
    linear-gradient(160deg, rgba(8,18,42,.96) 0%, rgba(14,34,67,.88) 45%, rgba(22,52,95,.78) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 0 24px;
}
/* Bottom wave */
.page-hero::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  padding: 120px 0 72px;
}
.breadcrumbs {
  display: flex; justify-content: center; gap: 6px; align-items: center;
  margin-bottom: 20px; font-size: .77rem;
}
.breadcrumbs a       { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs .sep    { color: rgba(255,255,255,.25); }
.breadcrumbs .cur    { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.03rem; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────
   9. ABOUT STRIP
──────────────────────────────────────────────────────────── */
.about-strip { background: var(--off-white); padding: 96px 0; }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 20px 22px;
  text-align: center; box-shadow: var(--shadow);
}
.about-badge .num { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.about-badge .lbl { font-size: .65rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; }
.about-points { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 28px; }
.about-point  { display: flex; gap: 11px; align-items: flex-start; font-size: .87rem; color: var(--text); }
.about-point .chk { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .6rem; margin-top: 2px; }

/* ─────────────────────────────────────────────────────────
   10. STATS BAR
──────────────────────────────────────────────────────────── */
.stats-bar       { background: var(--navy); }
.stats-bar-inner { max-width: 1140px; margin: 0 auto; display: flex; }
.stat-cell {
  flex: 1; padding: 40px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s; min-width: 0;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(200,150,62,.08); }
.stat-cell .num  { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.stat-cell .lbl  { font-size: .63rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }

/* ─────────────────────────────────────────────────────────
   11. FACILITIES
──────────────────────────────────────────────────────────── */
.fac-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fac-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; transition: all .25s var(--ease); background: var(--white); }
.fac-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.fac-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--gold-bg); border: 1px solid rgba(200,150,62,.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.fac-card h3 { font-size: 1.03rem; margin-bottom: 7px; }
.fac-card p  { font-size: .84rem; }

/* ─────────────────────────────────────────────────────────
   12. ACADEMICS CARDS
──────────────────────────────────────────────────────────── */
.acad-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 48px; }
.acad-card  { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); }
.acad-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.acad-head  { background: var(--navy); padding: 18px 20px; }
.acad-level { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.acad-head h3 { color: var(--white); font-size: .98rem; }
.acad-body  { padding: 18px 20px; }
.acad-body p { font-size: .83rem; margin-bottom: 14px; }
.acad-link  { font-size: .78rem; color: var(--navy); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; transition: gap .15s, color .15s; }
.acad-link:hover { color: var(--gold); gap: 8px; }

/* ─────────────────────────────────────────────────────────
   13. WHY RPS
──────────────────────────────────────────────────────────── */
.why-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.why-point  { display: flex; gap: 15px; align-items: flex-start; padding: 17px 19px; border-radius: var(--radius); background: var(--off-white); border: 1.5px solid var(--border); transition: all .2s var(--ease); }
.why-point:hover { border-color: var(--gold); background: var(--gold-bg); }
.why-chk    { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: .72rem; }
.why-point h4 { font-size: .93rem; font-family: var(--sans); font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.why-point p  { font-size: .82rem; max-width: 100%; }

/* ─────────────────────────────────────────────────────────
   14. DASHBOARD STRIP
──────────────────────────────────────────────────────────── */
.dash-strip { background: var(--gold-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.dash-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.dash-strip-text h2 { margin-bottom: 8px; }
.dash-strip-text p  { max-width: 50ch; }
.btn-portal {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--navy); color: var(--white);
  padding: 15px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  transition: all .25s var(--ease);
  max-width: 100%; word-break: break-word;
}
.btn-portal:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ─────────────────────────────────────────────────────────
   15. ADMISSIONS BANNER
──────────────────────────────────────────────────────────── */
.adm-banner {
  padding: 88px 0;
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(200,150,62,.12) 0%, transparent 55%);
}
.adm-inner           { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.adm-inner-text      { flex: 1; min-width: 220px; }
.adm-inner h2        { color: var(--white); margin-bottom: 10px; }
.adm-inner p         { color: rgba(255,255,255,.6); max-width: 48ch; }
.adm-inner .btn      { flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   16. TEAM CARDS
──────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-img  { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-info { padding: 22px 24px; }
.team-role { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.team-info h3 { margin-bottom: 8px; font-size: 1.1rem; }
.team-info p  { font-size: .84rem; }

/* ─────────────────────────────────────────────────────────
   17. VISION/MISSION
──────────────────────────────────────────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 48px 0; }
.vm-card { border-radius: var(--radius-lg); padding: 34px 30px; border: 1.5px solid var(--border); transition: all .25s var(--ease); }
.vm-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.vm-card.navy-card { background: var(--navy); border-color: var(--navy); }
.vm-card.navy-card .section-label         { color: var(--gold-light); }
.vm-card.navy-card .section-label::before { background: var(--gold-light); }
.vm-card.navy-card h3 { color: var(--white); }
.vm-card.navy-card p  { color: rgba(255,255,255,.6); max-width: 100%; }
.vm-icon { font-size: 2rem; margin-bottom: 14px; }

/* ─────────────────────────────────────────────────────────
   18. TIMELINE
──────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,150,62,.1)); }
.tl-item { position: relative; margin-bottom: 30px; }
.tl-dot  { position: absolute; left: -22px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid var(--off-white); }
.tl-year { font-size: .68rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.tl-item h4 { font-size: .93rem; font-family: var(--sans); font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.tl-item p  { font-size: .82rem; max-width: 100%; }

/* ─────────────────────────────────────────────────────────
   19. MARQUEE LOGOS (Recognition)
──────────────────────────────────────────────────────────── */
.marquee-section { padding: 32px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo {
  flex-shrink: 0; height: 48px; width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.45);
  transition: filter .35s var(--ease), transform .25s var(--ease);
  cursor: pointer;
}
.marquee-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────
   20. CURRICULUM CARDS
──────────────────────────────────────────────────────────── */
.curric-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 40px; }
.curric-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); }
.curric-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.curric-head { background: var(--navy); padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; }
.curric-head h3 { color: var(--white); font-size: .98rem; }
.curric-badge   { background: var(--gold); color: var(--white); font-size: .67rem; font-weight: 700; padding: 3px 11px; border-radius: 20px; letter-spacing: .06em; white-space: nowrap; margin-left: 10px; }
.curric-body    { padding: 22px; }
.curric-body p  { font-size: .86rem; margin-bottom: 14px; }
.curric-body a  { font-size: .8rem; color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; transition: gap .15s; }
.curric-body a:hover { gap: 9px; }

/* ─────────────────────────────────────────────────────────
   21. METHOD CARDS
──────────────────────────────────────────────────────────── */
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 40px; }
.method-card { text-align: center; padding: 30px 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: all .25s var(--ease); }
.method-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.method-icon { font-size: 2rem; margin-bottom: 12px; }
.method-card h3 { font-size: .98rem; margin-bottom: 7px; }
.method-card p  { font-size: .82rem; }

/* ─────────────────────────────────────────────────────────
   22. CO-CURRICULAR
──────────────────────────────────────────────────────────── */
.cc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.cc-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 22px; transition: all .25s var(--ease); }
.cc-card:hover { background: var(--white); box-shadow: var(--shadow); }
.cc-icon  { font-size: 1.7rem; margin-bottom: 10px; }
.cc-card h3 { font-size: .97rem; margin-bottom: 5px; }
.cc-card p  { font-size: .82rem; }

/* ── 23. EXAM TABLE — desktop scroll / mobile cards ── */
.exam-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.exam-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: var(--white);
  table-layout: fixed;
}
.exam-table thead tr { background: var(--navy); }
.exam-table th {
  padding: 14px 18px; text-align: left;
  font-size: .71rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.exam-table td {
  padding: 14px 18px; font-size: .87rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.6;
  word-break: break-word;
}
.exam-table td:first-child { font-weight: 600; color: var(--navy); }
.exam-table tr:last-child td { border-bottom: none; }
.exam-table tr:nth-child(even) td { background: var(--off-white); }
.exam-table tbody tr { transition: background .15s; }
.exam-table tbody tr:hover td { background: var(--gold-bg) !important; }

@media (max-width: 700px) {
  .exam-table-wrap {
    overflow-x: visible !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .exam-table,
  .exam-table thead,
  .exam-table tbody,
  .exam-table tr,
  .exam-table th,
  .exam-table td { display: block !important; width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; }
  .exam-table thead { display: none !important; }
  .exam-table tbody { display: flex !important; flex-direction: column !important; gap: 14px !important; }
  .exam-table tbody tr {
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    padding: 16px 18px 14px !important;
    box-shadow: var(--shadow-sm) !important;
  }
  .exam-table tbody tr:hover { border-color: var(--gold) !important; }
  .exam-table td {
    padding: 3px 0 !important;
    border-bottom: none !important;
    background: transparent !important;
    font-size: .88rem !important;
  }
  .exam-table tbody tr:hover td { background: transparent !important; }
  .exam-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .61rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); margin-top: 10px; margin-bottom: 1px;
  }
  .exam-table td:first-child {
    font-size: 1rem !important; font-weight: 700 !important;
    color: var(--navy) !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid var(--border) !important;
    margin-bottom: 2px !important;
  }
  .exam-table td:first-child::before { display: none !important; }
}
/* ─────────────────────────────────────────────────────────
   24. GALLERY
──────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 200px 200px; gap: 10px; }
.g-item       { border-radius: var(--radius); overflow: hidden; }
.g-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item.tall  { grid-row: span 2; }

/* ─────────────────────────────────────────────────────────
   25. SAFETY CARDS
──────────────────────────────────────────────────────────── */
.safety-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.safety-card { text-align: center; padding: 28px 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: all .25s var(--ease); }
.safety-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.s-icon { font-size: 2.2rem; margin-bottom: 12px; }
.safety-card h3 { font-size: .97rem; margin-bottom: 6px; }
.safety-card p  { font-size: .82rem; }

/* ─────────────────────────────────────────────────────────
   26. EVENT CARDS
──────────────────────────────────────────────────────────── */
.event-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.event-card  { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s var(--ease); }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-visual { height: 160px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.event-body   { padding: 20px 22px; }
.event-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.event-body p  { font-size: .84rem; }

/* ─────────────────────────────────────────────────────────
   27. PROCESS STEPS
──────────────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; }
.step-item  { display: flex; gap: 22px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); transition: padding .2s; }
.step-item:last-child { border-bottom: none; }
.step-item:hover { padding-left: 6px; }
.step-num   { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.step-content h3 { font-size: 1rem; margin-bottom: 4px; font-family: var(--sans); font-weight: 600; }
.step-content p  { font-size: .85rem; }

/* ─────────────────────────────────────────────────────────
   28. FEE CARDS
──────────────────────────────────────────────────────────── */
.fee-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.fee-card { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 26px 20px; text-align: center; transition: all .25s var(--ease); }
.fee-card:hover { background: var(--white); border-color: var(--gold); box-shadow: var(--shadow); }
.fee-level { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.fee-card h3     { font-size: .97rem; margin-bottom: 4px; }
.fee-card .fee-sub { font-size: .78rem; color: var(--muted); margin-bottom: 18px; max-width: 100%; }
.fee-card a { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: var(--white); padding: 8px 16px; border-radius: var(--radius); font-size: .78rem; font-weight: 600; transition: all .2s; }
.fee-card a:hover { background: var(--navy-mid); }

/* ─────────────────────────────────────────────────────────
   29. CONTACT INFO CARDS
──────────────────────────────────────────────────────────── */
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.c-info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; transition: all .2s var(--ease); }
.c-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.c-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-bg); border: 1px solid rgba(200,150,62,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.c-lbl       { font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-info-card h3  { font-size: .92rem; margin-bottom: 3px; }
.c-info-card p, .c-info-card a { font-size: .84rem; color: var(--muted); max-width: 100%; transition: color .2s; }
.c-info-card a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   30. ENQUIRY FORM — premium glass card
──────────────────────────────────────────────────────────── */
.enquiry-card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  padding: 44px 40px;
  box-shadow: 0 2px 0 rgba(255,255,255,.6) inset, 0 20px 56px rgba(14,34,67,.1), 0 4px 16px rgba(14,34,67,.06);
  position: relative;
}
.enquiry-card::before {
  content: ''; position: absolute;
  top: 0; left: 40px; right: 40px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
}
.enquiry-card h2  { font-size: 1.55rem; margin-bottom: 6px; }
.enquiry-card .sub { font-size: .88rem; color: var(--muted); margin-bottom: 28px; max-width: 100%; }

/* All form groups inside enquiry card — full width, one per line */
.enquiry-card .form-group {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 18px;
}
.enquiry-card .form-group:last-of-type { margin-bottom: 22px; }
.enquiry-card .form-group label {
  font-size: .71rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy); display: block;
}
.enquiry-card .form-group input,
.enquiry-card .form-group select,
.enquiry-card .form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,.75);
  border: 1.5px solid rgba(228,221,210,.85);
  border-radius: 10px; font-size: .94rem;
  font-family: var(--sans); color: var(--text);
  transition: all .2s var(--ease);
  box-shadow: 0 1px 3px rgba(14,34,67,.04) inset;
  outline: none; resize: vertical;
}
.enquiry-card .form-group textarea { min-height: 130px; }
.enquiry-card .form-group input:focus,
.enquiry-card .form-group select:focus,
.enquiry-card .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,150,62,.12), 0 1px 3px rgba(14,34,67,.04) inset;
}
.enquiry-card .form-group input::placeholder,
.enquiry-card .form-group textarea::placeholder { color: var(--light-text); }

/* Custom select chevron */
.enquiry-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0aec0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  -webkit-appearance: none; appearance: none;
}

/* Form feedback messages */
.form-msg {
  display: none; margin-top: 14px; padding: 13px 16px;
  border-radius: 10px; font-size: .87rem; align-items: center; gap: 10px;
}
.form-msg.show { display: flex; }
.form-msg.success { background: #f0fdf4; border: 1.5px solid #86efac; color: #166534; }
.form-msg.error   { background: #fef2f2; border: 1.5px solid #fecaca; color: #b91c1c; }
.form-msg.warn    { background: #fffbeb; border: 1.5px solid #fcd34d; color: #92400e; }

.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a44a 100%);
  color: var(--white); font-weight: 700; font-family: var(--sans);
  font-size: .95rem; letter-spacing: .03em;
  border: none; border-radius: 10px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all .25s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 4px 16px rgba(200,150,62,.3);
}
.form-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, transparent 55%);
  pointer-events: none;
}
.form-submit:hover { background: linear-gradient(135deg,#d4a44a 0%,#b8852e 100%); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 10px 30px rgba(200,150,62,.38); }
.form-submit:active { transform: translateY(0); }

/* Contact page 2-col layout */
.contact-2col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }

/* ─────────────────────────────────────────────────────────
   31. FAQ
──────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 9px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q    { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: .91rem; color: var(--navy); background: var(--white); transition: background .2s; user-select: none; }
.faq-q:hover { background: var(--off-white); }
.faq-icon { color: var(--gold); font-size: 1.1rem; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .3s; background: var(--white); font-size: .86rem; color: var(--muted); line-height: 1.7; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 220px; padding: 4px 20px 16px; }

/* ─────────────────────────────────────────────────────────
   32. DOCS GRID
──────────────────────────────────────────────────────────── */
.docs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.doc-item  { display: flex; gap: 10px; align-items: center; background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 12px 16px; font-size: .86rem; font-weight: 500; color: var(--text); transition: all .2s; }
.doc-item:hover { border-color: var(--gold); background: var(--gold-bg); }
.doc-icon  { font-size: 1.1rem; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   33. FORM ELEMENTS (base)
──────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); font-family: var(--sans);
  font-size: .9rem; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none; resize: vertical;
}
.form-group textarea { min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,150,62,.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light-text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─────────────────────────────────────────────────────────
   34. SCROLL ANIMATIONS
──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }

/* ─────────────────────────────────────────────────────────
   35. FOOTER
──────────────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo       { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo img   { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(200,150,62,.35); object-fit: cover; }
.footer-logo-name  { font-family: var(--serif); color: var(--white); font-size: .93rem; font-weight: 700; }
.footer-desc       { color: rgba(255,255,255,.38); font-size: .83rem; line-height: 1.6; max-width: 26ch; }
.footer-col h5     { font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col li     { margin-bottom: 8px; }
.footer-col li a   { color: rgba(255,255,255,.42); font-size: .83rem; transition: all .2s; }
.footer-col li a:hover { color: rgba(255,255,255,.82); padding-left: 4px; }
.f-contact-item    { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 10px; }
.f-contact-item .ico { flex-shrink: 0; font-size: .95rem; margin-top: 2px; }
.f-contact-item p, .f-contact-item a { font-size: .82rem; color: rgba(255,255,255,.42); max-width: 100%; transition: color .2s; }
.f-contact-item a:hover { color: rgba(255,255,255,.78); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.25); max-width: 100%; }

/* ─────────────────────────────────────────────────────────
   36. RESPONSIVE
──────────────────────────────────────────────────────────── */

/* ── Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr 300px; gap: 36px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .acad-grid     { grid-template-columns: repeat(2,1fr); }
  .method-grid   { grid-template-columns: repeat(2,1fr); }
  .fee-grid      { grid-template-columns: repeat(2,1fr); }
  .contact-2col  { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  /* Hero — hero card becomes a strip below stats */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card  {
    display: block !important;
    /* on mobile: flat strip below hero text */
    margin-top: 0;
  }
  .hero-stats { display: grid; grid-template-columns: repeat(2,1fr); }
  .hero-btns  { flex-wrap: wrap; }

  /* All stats visible in 2 rows */
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-cell { flex: 0 0 33.333%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-cell:nth-child(3) { border-right: none; }
  .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-cell:nth-child(5) { border-bottom: none; border-right: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 260px; }
  .about-badge { bottom: 12px; right: 12px; padding: 14px 16px; }
  .about-badge .num { font-size: 1.4rem; }

  /* Grids */
  .fac-grid    { grid-template-columns: repeat(2,1fr); }
  .safety-grid { grid-template-columns: repeat(2,1fr); }
  .cc-grid     { grid-template-columns: repeat(2,1fr); }
  .fee-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid    { grid-template-columns: 1fr; }
  .why-img     { display: none; }
  .vm-grid     { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .curric-grid { grid-template-columns: 1fr; }
  .acad-grid   { grid-template-columns: repeat(2,1fr); }
  .method-grid { grid-template-columns: repeat(2,1fr); }
  .event-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .g-item.tall { grid-row: span 1; }

  /* Strips */
  .dash-strip-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .adm-inner        { flex-direction: column; align-items: flex-start; gap: 20px; }
  .adm-inner .btn   { width: 100%; }

  /* Contact */
  .contact-2col { grid-template-columns: 1fr; gap: 36px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Small mobile (≤540px) */
@media (max-width: 540px) {
  .section   { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* Hero — stats 2 col, buttons full width */
  .hero-inner { padding-left: 16px; padding-right: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-btns .btn { width: 100%; }

  /* All stats — 2 col, show all */
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-cell { flex: 0 0 50%; }
  .stat-cell:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.07); }
  .stat-cell:nth-child(even) { border-right: none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .stat-cell:nth-child(5) { flex: 0 0 100%; border-right: none; border-bottom: none; }

  /* All multi-col → 1 col */
  .fac-grid    { grid-template-columns: 1fr; }
  .acad-grid   { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .cc-grid     { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .fee-grid    { grid-template-columns: 1fr; }
  .docs-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Enquiry card padding */
  .enquiry-card { padding: 28px 20px; }
  .enquiry-card::before { left: 20px; right: 20px; }
}


/* ── WATERMARK ───────────────────────────────────────── */
.site-watermark {
  background: #0a0f1a;
  height: 30px;
  text-align: center;
  padding: 10px 24px;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.site-watermark a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.site-watermark a:hover { color: #4ade80; }
.wm-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: wmPulse 2s ease-in-out infinite;
}
@keyframes wmPulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.6); }
  60%  { box-shadow: 0 0 0 6px rgba(34,197,94,0);  }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);  }
}