/*
Theme Name: Education Links
Theme URI: https://educationlinx.com
Author: Education Links
Description: Custom plugin-free theme for Education Links — study abroad consultancy. Passport-navy design system with built-in content editor (Site Content menu), enquiries CPT and security hardening.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: educationlinx
*/

/* ============================================================
   Education Links — design tokens
   Ink navy / warm paper / seal gold / visa-stamp red
   Display: Bricolage Grotesque · Body: Public Sans · Codes: Space Mono
   ============================================================ */
:root {
  --ink: #101e33;
  --ink-2: #1a2b47;
  --paper: #f6f4ee;
  --paper-2: #eeeae0;
  --gold: #d9a62e;
  --gold-deep: #b8891f;
  --stamp: #b23a2e;
  --line: #d9d3c6;
  --text: #22293a;
  --text-soft: #5c6474;
  --text-on-ink: #eef1f7;
  --text-on-ink-soft: #a9b4c9;

  --display: "Bricolage Grotesque", sans-serif;
  --body: "Public Sans", sans-serif;
  --mono: "Space Mono", monospace;

  --radius: 14px;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(8px);
  color: var(--text-on-ink);
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-mark {
  font-family: var(--mono); font-weight: 700; font-size: 0.85rem;
  background: var(--gold); color: var(--ink);
  padding: 0.35rem 0.5rem; border-radius: 6px; letter-spacing: 0.05em;
}
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.site-nav { display: flex; gap: 1.4rem; align-items: center; }
.site-nav a { text-decoration: none; font-size: 0.92rem; font-weight: 500; color: var(--text-on-ink-soft); transition: color 0.15s; }
.site-nav a:hover { color: var(--text-on-ink); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 0.5rem 1rem; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--gold-deep); }

/* Header social/contact icons */
.nav-icons { display: flex; align-items: center; gap: 0.9rem; margin-left: 0.4rem; }
.nav-icons a { display: flex; color: var(--text-on-ink-soft); transition: color 0.15s, transform 0.15s; }
.nav-icons a:hover { color: var(--gold); transform: translateY(-1px); }
.nav-icons svg { width: 18px; height: 18px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-on-ink); margin: 5px 0; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  font: inherit; font-size: 0.92rem; font-weight: 500; color: var(--text-on-ink-soft);
  background: none; border: 0; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 0.3rem;
}
.nav-drop-btn:hover { color: var(--text-on-ink); }
.nav-drop-btn .caret { font-size: 0.7rem; transition: transform 0.15s; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-drop-panel {
  display: none; position: absolute; top: calc(100% + 0.9rem); left: 50%; transform: translateX(-50%);
  background: var(--paper); color: var(--text); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 30, 51, 0.28);
  padding: 0.5rem; min-width: 210px; z-index: 60;
}
.nav-drop-panel::before {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--paper);
}
.nav-drop-panel a {
  display: block; padding: 0.6rem 0.8rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--text) !important;
}
.nav-drop-panel a:hover { background: var(--paper-2); }
.nav-dropdown.open .nav-drop-panel { display: block; }
@media (hover: hover) {
  .nav-dropdown:hover .nav-drop-panel { display: block; }
  .nav-dropdown:hover .caret { transform: rotate(180deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-on-ink);
  padding: 6rem 1.5rem 0;
  overflow: hidden;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding-bottom: 5.5rem; position: relative; z-index: 2; }
.kicker {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02; letter-spacing: -0.02em; max-width: 12ch;
}
.hero-subline { margin-top: 1.4rem; max-width: 52ch; color: var(--text-on-ink-soft); font-size: 1.08rem; }
.hero-ctas { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer; transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-ghost { border-color: var(--text-on-ink-soft); color: var(--text-on-ink); background: transparent; }
.btn-ghost:hover { border-color: var(--text-on-ink); }

/* Visa stamp — signature element */
.stamp {
  position: relative;
  width: 190px; height: 190px; border-radius: 50%;
  border: 3px double var(--stamp);
  color: var(--stamp);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(-12deg);
  font-family: var(--mono); text-transform: uppercase;
  opacity: 0.92; z-index: 1;
  animation: stampIn 0.5s cubic-bezier(0.2, 1.6, 0.4, 1) 0.3s backwards;
  mix-blend-mode: screen;
  filter: brightness(1.7);
}
.stamp-line1 { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.06em; }
.stamp-line2 { font-size: 0.68rem; letter-spacing: 0.14em; margin-top: 0.3rem; max-width: 12ch; }
.stamp-ring {
  position: absolute; inset: 10px; border-radius: 50%;
  border: 1px dashed var(--stamp);
}
@keyframes stampIn {
  from { transform: rotate(-12deg) scale(1.6); opacity: 0; }
  to   { transform: rotate(-12deg) scale(1); opacity: 0.92; }
}

/* Route ticker */
.route-ticker {
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  overflow: hidden; padding: 0.8rem 0; position: relative; z-index: 2;
}
.route-track {
  display: flex; gap: 3rem; white-space: nowrap;
  font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.18em;
  color: var(--text-on-ink-soft);
  animation: ticker 28s linear infinite;
  width: max-content;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 1.5rem; max-width: 100%; }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { text-align: left; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.015em;
}
.section-head p { color: var(--text-soft); margin-top: 0.5rem; max-width: 55ch; }
.section-ink { background: var(--ink); color: var(--text-on-ink); }
.section-ink .section-head p { color: var(--text-on-ink-soft); }
.section-paper { background: var(--paper-2); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem;
}
.service-card .icon { font-size: 1.6rem; }
.service-card h3 { font-family: var(--display); font-size: 1.15rem; margin: 0.7rem 0 0.4rem; }
.service-card p { color: var(--text-soft); font-size: 0.95rem; }

/* Boarding-pass destination cards */
.pass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }
.pass {
  background: var(--paper); color: var(--text);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 86px;
  min-height: 150px;
  transition: transform 0.18s;
  text-decoration: none;
}
.pass:hover { transform: translateY(-4px) rotate(-0.5deg); }
.pass-main { padding: 1.3rem 1.4rem; }
.pass-route {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em;
  color: var(--text-soft); text-transform: uppercase;
}
.pass-country { font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin: 0.35rem 0; }
.pass-note { font-size: 0.9rem; color: var(--text-soft); }
.pass-tab {
  border-left: 2px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; background: var(--paper-2);
  font-family: var(--mono); font-weight: 700; font-size: 1.05rem;
}
.pass-tab .flag { font-size: 1.5rem; }

/* Steps — genuine sequence, numbering earns its keep */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.steps li { counter-increment: step; position: relative; padding: 1.4rem 1.4rem 1.4rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.steps li::before {
  content: "0" counter(step);
  font-family: var(--mono); font-weight: 700; color: var(--gold-deep);
  font-size: 0.85rem; letter-spacing: 0.15em;
}
.steps h3 { font-family: var(--display); font-size: 1.1rem; margin: 0.5rem 0 0.35rem; }
.steps p { font-size: 0.93rem; color: var(--text-soft); }

/* Scholarships */
.scholarship-list { display: grid; gap: 0.7rem; }
.scholarship-row {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.95rem 1.2rem;
}
.scholarship-row .flag { font-size: 1.35rem; }
.scholarship-row .name { font-weight: 700; }
.scholarship-row .detail { color: var(--text-soft); font-size: 0.92rem; }
.scholarship-row .country-tag {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-deep);
  border: 1px solid var(--gold); border-radius: 999px; padding: 0.25rem 0.7rem;
}

/* Testimonials */
.quote-rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; position: relative;
}
.quote p { font-size: 1rem; }
.quote .who {
  margin-top: 0.9rem; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-soft);
}
.quote .who b { color: var(--stamp); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; align-items: stretch; }
.plan {
  background: var(--paper); color: var(--text);
  border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column;
}
.plan.featured { outline: 3px solid var(--gold); position: relative; }
.plan.featured::after {
  content: "Most chosen"; position: absolute; top: -0.8rem; right: 1rem;
  background: var(--gold); color: var(--ink); font-weight: 700; font-size: 0.72rem;
  padding: 0.3rem 0.8rem; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase;
}
.plan h3 { font-family: var(--display); font-size: 1.2rem; }
.plan .price { font-family: var(--display); font-weight: 800; font-size: 2.4rem; margin: 0.4rem 0 1rem; }
.plan ul { list-style: none; flex: 1; }
.plan li { padding: 0.4rem 0; border-bottom: 1px dashed var(--line); font-size: 0.94rem; }
.plan .btn { margin-top: 1.4rem; text-align: center; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; max-width: var(--max); margin: 0 auto; }
.contact-copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.contact-copy > p { color: var(--text-soft); margin-top: 0.6rem; }
.contact-details { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.contact-details a { text-decoration: none; font-weight: 600; }
.mono-tag {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--gold-deep); border: 1px solid var(--gold);
  border-radius: 4px; padding: 0.15rem 0.45rem; margin-right: 0.5rem;
}
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: grid; gap: 0.9rem;
}
.contact-form h3 { font-family: var(--display); font-size: 1.25rem; }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.85rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; padding: 0.65rem 0.8rem; border: 1px solid var(--line);
  border-radius: 8px; background: var(--paper);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--gold); border-color: var(--gold);
}
.form-note { font-size: 0.9rem; color: var(--gold-deep); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-ink-soft); padding: 3.5rem 1.5rem 1.8rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { color: var(--text-on-ink); font-size: 1.15rem; margin-bottom: 0.4rem; }
.site-footer h4 { color: var(--text-on-ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 1rem 0 0.5rem; }
.site-footer a { display: block; text-decoration: none; padding: 0.2rem 0; font-size: 0.92rem; }
.site-footer a:hover { color: var(--text-on-ink); }
.footer-social { display: flex; gap: 1rem; margin-top: 0.8rem; }
.footer-social a { display: inline; }
.footer-legal { max-width: var(--max); margin: 2.5rem auto 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.2rem; font-size: 0.85rem; }

/* ---------- Service pages ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--text-on-ink); padding: 4.5rem 1.5rem 4rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem); line-height: 1.05;
  letter-spacing: -0.02em; max-width: 18ch;
}

.intro-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.intro-copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.015em; }
.intro-copy p { color: var(--text-soft); margin-top: 0.8rem; }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.8rem; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1rem; font-weight: 600; font-size: 0.93rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.chip-icon { font-size: 1.2rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.col-heading { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.1rem; letter-spacing: -0.015em; }

.checklist-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.checklist-head { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-bottom: 1rem; display: flex; align-items: center; }
.checklist { list-style: none; }
.checklist li {
  padding: 0.65rem 0 0.65rem 2rem; border-bottom: 1px dashed var(--line);
  position: relative; font-size: 0.95rem;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0.2rem;
  font-family: var(--mono); font-weight: 700; color: var(--stamp);
  border: 1.5px solid var(--stamp); border-radius: 4px;
  width: 1.15rem; height: 1.15rem; display: grid; place-items: center;
  font-size: 0.7rem; top: 0.75rem;
}

.tick-list { list-style: none; display: grid; gap: 0.6rem; }
.tick-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.8rem 1rem 0.8rem 2.4rem; position: relative; font-size: 0.95rem; font-weight: 500;
}
.tick-list li::before {
  content: "✔"; position: absolute; left: 0.9rem; color: var(--gold-deep); font-weight: 700;
}

.program-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.program-tag {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-size: 0.9rem; font-weight: 600;
}

.page-cta .hero-ctas { max-width: var(--max); margin: 0 auto; }

.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin-top: 1.1rem; display: grid; gap: 0.35rem;
}
.team-role { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.team-dept {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.3rem;
}
.team-card a { text-decoration: none; font-weight: 600; font-size: 0.93rem; }
.team-card a:hover { color: var(--gold-deep); }

/* Country pages (Study Abroad) */
.country-hero { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.country-pass {
  background: var(--paper); color: var(--text);
  border-radius: var(--radius); padding: 1.6rem 2rem;
  border-left: 2px dashed var(--line);
  text-align: center; transform: rotate(3deg);
  min-width: 170px;
}
.country-pass .pass-route { margin-bottom: 0.6rem; }
.country-pass-flag { font-size: 3.2rem; line-height: 1; }
.country-pass-code {
  font-family: var(--mono); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.2em; margin-top: 0.5rem; color: var(--stamp);
}
.scholarship-duo { display: grid; gap: 1rem; }

/* Universities — departure board */
.departure-board {
  background: var(--ink); color: var(--text-on-ink);
  border-radius: var(--radius); overflow: hidden;
  font-family: var(--mono);
}
.board-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.4rem; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  color: var(--gold);
}
.board-head .mono-tag { color: var(--gold); border-color: var(--gold); }
.board-count { margin-left: auto; color: var(--text-on-ink-soft); font-size: 0.75rem; }
.board-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}
.board-row:last-child { border-bottom: 0; }
.board-row:hover { background: rgba(255, 255, 255, 0.04); }
.board-name { flex: 1; font-family: var(--body); font-weight: 600; }
.board-status {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 4px; white-space: nowrap;
}
.status-open { color: #7BC98A; border: 1px solid #7BC98A; }
.status-pending { color: var(--gold); border: 1px dashed var(--gold); opacity: 0.85; }
.board-link { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 700; }
.board-link:hover { color: #fff; }

/* Programs — category cards */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.2rem; }
.category-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.category-card h3 { font-family: var(--display); font-size: 1.15rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.cat-icon { font-size: 1.3rem; }
.category-card ul { list-style: none; }
.category-card li { padding: 0.45rem 0 0.45rem 1.3rem; border-bottom: 1px dashed var(--line); font-size: 0.93rem; position: relative; }
.category-card li:last-child { border-bottom: 0; }
.category-card li::before { content: "→"; position: absolute; left: 0; color: var(--gold-deep); font-family: var(--mono); font-size: 0.8rem; }

/* Trust line */
.trust-line {
  margin-top: 1.6rem; font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-ink-soft);
}

/* Feature bands */
.feature-bands { padding: 5.5rem 1.5rem; display: grid; gap: 4rem; background: var(--paper-2); }
.band {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 3rem; align-items: center;
}
.band-flip { grid-template-columns: 1fr 0.85fr; }
.band-flip .band-visual { order: 2; }
.band-visual {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: var(--radius); min-height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
  position: relative; overflow: hidden;
}
.band-visual::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25); border-radius: 10px;
}
.band-icon { font-size: 3.4rem; line-height: 1; }
.band-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.band-copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -0.015em; }
.band-copy p { color: var(--text-soft); margin-top: 0.7rem; max-width: 48ch; }
.band-cta {
  display: inline-block; margin-top: 1.1rem; font-weight: 700;
  color: var(--gold-deep); text-decoration: none;
}
.band-cta:hover { text-decoration: underline; }

/* Support section */
.support-intro { color: var(--text-on-ink-soft); max-width: 68ch; margin: -1.6rem auto 2.6rem !important; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.support-col {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 1.4rem;
}
.support-col h3 { font-family: var(--display); font-size: 1.08rem; margin-bottom: 0.8rem; color: var(--gold); }
.support-col ul { list-style: none; }
.support-col li {
  padding: 0.4rem 0 0.4rem 1.2rem; font-size: 0.9rem; color: var(--text-on-ink-soft);
  position: relative; border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.support-col li:last-child { border-bottom: 0; }
.support-col li::before { content: "→"; position: absolute; left: 0; font-family: var(--mono); font-size: 0.75rem; color: var(--gold); }
.support-foot { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; margin-top: 2.6rem; align-items: start; }
.support-foot h3 { font-family: var(--display); font-size: 1.25rem; margin-bottom: 0.9rem; }
.tick-list-ink li { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); color: var(--text-on-ink); }
.tick-list-ink li::before { color: var(--gold); }
.who-card {
  background: var(--paper); color: var(--text); border-radius: var(--radius);
  padding: 1.6rem; transform: rotate(-0.6deg);
}
.who-card h3 { color: var(--text); }
.who-card p { color: var(--text-soft); font-size: 0.95rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s, transform 0.55s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--ink); padding: 1.2rem 1.5rem; gap: 1rem;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-icons { margin-left: 0; gap: 1.3rem; padding-top: 0.3rem; border-top: 1px dashed rgba(255,255,255,0.2); width: 100%; padding-top: 1rem; }
  .nav-icons svg { width: 21px; height: 21px; }
  .stamp { position: static; transform: rotate(-8deg); margin: 2rem auto 0; width: 160px; height: 160px; }
  .hero-inner { padding-bottom: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .scholarship-row { grid-template-columns: auto 1fr; grid-auto-rows: auto; }
  .scholarship-row .detail { grid-column: 2; }
  .scholarship-row .country-tag { grid-column: 2; justify-self: start; }
  .intro-split, .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .country-hero { grid-template-columns: 1fr; }
  .country-pass { justify-self: start; transform: rotate(2deg); }
  .board-row { flex-wrap: wrap; gap: 0.5rem; }
  .board-name { flex-basis: 100%; }
  .band, .band-flip { grid-template-columns: 1fr; gap: 1.4rem; }
  .band-flip .band-visual { order: 0; }
  .band-visual { min-height: 170px; }
  .support-foot { grid-template-columns: 1fr; gap: 1.8rem; }
  .who-card { transform: none; }
  .nav-dropdown { width: 100%; }
  .nav-drop-btn { font-size: 0.95rem; }
  .nav-drop-panel {
    position: static; transform: none; box-shadow: none;
    background: rgba(255, 255, 255, 0.06); margin-top: 0.5rem; min-width: 0;
  }
  .nav-drop-panel::before { display: none; }
  .nav-drop-panel a { color: #eef1f7 !important; }
  .nav-drop-panel a:hover { background: rgba(255, 255, 255, 0.1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .route-track { animation: none; }
  .stamp { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .pass:hover { transform: none; }
}

/* ---------- WP integration ---------- */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.brand-logo { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.btn-small { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.col-heading-gap { margin-top: 2rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Hero photo (original site image) ---------- */
.hero-with-photo { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.hero-photo-wrap { position: relative; justify-self: end; }
.hero-photo {
  margin: 0; background: var(--paper); padding: 0.7rem 0.7rem 0.9rem;
  border-radius: 10px; transform: rotate(2.5deg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  max-width: 360px;
}
.hero-photo img { width: 100%; border-radius: 6px; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-photo figcaption {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-soft); text-align: center; padding-top: 0.55rem;
}
.hero-photo-wrap .stamp {
  position: absolute; right: -34px; bottom: -30px; top: auto;
  width: 150px; height: 150px;
}

/* ---------- Feature band images ---------- */
.band-has-image { padding: 0; }
.band-has-image img {
  width: 100%; height: 100%; min-height: 280px; object-fit: cover;
  border-radius: var(--radius); display: block;
}
.band-has-image::after { pointer-events: none; }
.band-label-overlay {
  position: absolute; left: 22px; bottom: 20px;
  background: var(--ink); padding: 0.35rem 0.8rem; border-radius: 6px;
}

@media (max-width: 1120px) {
  .hero-with-photo { grid-template-columns: 1fr; }
  .hero-photo-wrap { justify-self: center; margin-top: 1.5rem; }
  .hero-photo-wrap .stamp { right: -18px; bottom: -22px; width: 130px; height: 130px; }
  .band-has-image img { min-height: 200px; }
}
