/* Expanding Horizons — site styles
   Palette taken from the shield logo: deep navy + academic gold on warm white. */

/* Self-hosted fonts (GDPR: no request to Google's font CDN, so no visitor IP is
   sent to a third party). Files live in assets/fonts/. */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/playfair-600.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/playfair-700.woff2") format("woff2"); }

:root {
  --navy: #14233f;
  --navy-2: #1c3055;
  --gold: #c19a3e;
  --gold-2: #d9b75a;
  --ink: #1a1a1a;
  --muted: #5a5a64;
  --paper: #f8f6f1;
  --paper-2: #ffffff;
  --line: #e4e0d6;
  --radius: 10px;
  --maxw: 1120px;
  --shadow: 0 8px 30px rgba(20, 35, 63, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--paper); }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: transparent;            /* let the fixed photo slideshow show through */
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Rotating photo background (site-wide, built by site.js) ----------
   A fixed, full-viewport layer that sits behind all content. Two stacked
   panes crossfade between randomly-ordered images. Content sections above are
   given a translucent "frosted glass" backing so the photo reads softly while
   text stays crisp. */
.bg-slideshow {
  position: fixed; inset: 0; z-index: -2;
  background: var(--paper);          /* fallback before the first image loads */
}
.bg-slideshow .bg-pane {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  will-change: opacity;
}
/* Soft veil so any image stays readable behind frosted panels */
.bg-slideshow::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(248,246,241,0.26), rgba(248,246,241,0.47));
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .bg-slideshow .bg-pane { transition: none; }
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: 1240px; margin: 0 auto;
}
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand img { height: 52px; width: auto; max-width: 62vw; display: block; }
.nav-links { display: flex; gap: 8px 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: 0.92rem; }
/* Primary nav links (Home, Products, Why us, For Sales Agents):
   Times New Roman, bold on hover. Each link reserves its own bold width via the
   ::after below, so hovering never reflows its neighbours. Sized so all nav items
   fit inline on a standard laptop before collapsing to the hamburger. */
.nav-links a:not(.cta) {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.04rem;
  display: inline-flex; flex-direction: column; align-items: flex-start;
}
.nav-links a:not(.cta)::after {
  content: attr(data-text);
  font-weight: 700;
  height: 0; overflow: hidden; visibility: hidden; pointer-events: none;
}
.nav-links a:not(.cta):hover { font-weight: 700; }
.nav-links a.cta {
  background: var(--navy); color: #fff; padding: 8px 15px; border-radius: 999px;
  font-weight: 600; border: 2px solid transparent;
}
.nav-links a.cta:hover { background: var(--gold); color: var(--navy); }
/* Secondary nav CTA (e.g. "Schedule a Meeting") — gold outline to sit apart from the solid CTA */
.nav-links a.cta.cta-ghost {
  background: transparent; color: var(--navy); border: 2px solid var(--gold);
}
.nav-links a.cta.cta-ghost:hover { background: var(--gold); color: var(--navy); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* ---------- Buttons ----------
   3D raised buttons. Labels use the Playfair Display serif so they stand apart
   from the Inter body font. The stacked box-shadow gives a physical "edge" that
   compresses on :active for a press effect. */
.btn {
  display: inline-block; position: relative; padding: 13px 28px; border-radius: 999px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .005em;
  cursor: pointer; border: 2px solid transparent;
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease, color .15s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--navy);
  box-shadow: 0 4px 0 #9b7b2e, 0 7px 16px rgba(20,35,63,.26);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #e6c879, var(--gold-2)); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 6px 0 #9b7b2e, 0 12px 22px rgba(20,35,63,.30);
}
.btn-primary:active { transform: translateY(3px); box-shadow: 0 1px 0 #9b7b2e, 0 3px 8px rgba(20,35,63,.24); }

.btn-navy {
  background: linear-gradient(180deg, var(--navy-2), var(--navy)); color: #fff;
  box-shadow: 0 4px 0 #0b1526, 0 7px 16px rgba(20,35,63,.30);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #24406f, var(--navy-2)); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 0 #0b1526, 0 12px 22px rgba(20,35,63,.34);
}
.btn-navy:active { transform: translateY(3px); box-shadow: 0 1px 0 #0b1526, 0 3px 8px rgba(20,35,63,.26); }

.btn-ghost {
  border-color: rgba(255,255,255,.65); color: #fff; background: rgba(255,255,255,.06);
  box-shadow: 0 4px 0 rgba(0,0,0,.22), 0 7px 16px rgba(0,0,0,.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.16); color:#fff;
  transform: translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,.22), 0 12px 22px rgba(0,0,0,.22);
}
.btn-ghost:active { transform: translateY(3px); box-shadow: 0 1px 0 rgba(0,0,0,.22), 0 3px 8px rgba(0,0,0,.2); }

/* Outline button for LIGHT backgrounds (e.g. the secondary action on a sample card). */
.btn-outline {
  background: #fff; color: var(--navy); border-color: var(--navy);
  box-shadow: 0 4px 0 rgba(20,35,63,.14), 0 7px 16px rgba(20,35,63,.12);
}
.btn-outline:hover {
  background: var(--navy); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 0 rgba(20,35,63,.16), 0 12px 22px rgba(20,35,63,.20);
}
.btn-outline:active { transform: translateY(3px); box-shadow: 0 1px 0 rgba(20,35,63,.14), 0 3px 8px rgba(20,35,63,.18); }

/* Nav CTA picks up the serif label + a subtle lift to match the new buttons */
.nav-links a.cta { font-family: "Playfair Display", Georgia, serif; font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 3px 0 #0b1526, 0 5px 12px rgba(20,35,63,.24); transition: transform .12s ease, box-shadow .12s ease, background .15s ease; }
.nav-links a.cta:hover { transform: translateY(-1px); box-shadow: 0 4px 0 #0b1526, 0 8px 16px rgba(20,35,63,.28); }
.nav-links a.cta:active { transform: translateY(2px); box-shadow: 0 1px 0 #0b1526, 0 2px 6px rgba(20,35,63,.22); }

@media (prefers-reduced-motion: reduce) {
  .btn, .nav-links a.cta { transition: background .15s ease, color .15s ease; }
  .btn:hover, .nav-links a.cta:hover, .btn:active, .nav-links a.cta:active { transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(193,154,62,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #f3f1ea; padding: 90px 0 84px;
}
.hero .wrap { max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lede { font-size: 1.25rem; color: #d9dae2; margin-bottom: 1.8rem; }
.hero .eyebrow {
  display:inline-block; letter-spacing:.14em; text-transform:uppercase;
  font-size:.78rem; font-weight:700; color: var(--gold-2); margin-bottom: 1rem;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 6px; }

/* ---------- Sections ---------- */
section.block {
  padding: 72px 0;
  background: rgba(248, 246, 241, 0.66);          /* frosted paper over the photo */
  -webkit-backdrop-filter: blur(3.4px); backdrop-filter: blur(3.4px);
  /* Slightly heavier body text so copy stays crisp over the photo background.
     Applies only to frosted sections — the solid navy hero/footer/band keep
     their original weight (see .band reset below). Headings set their own
     weight, so they're unaffected. */
  font-weight: 500;
}
/* Navy callout sits inside a frosted block but is opaque — keep it normal weight */
section.block .band p { font-weight: 400; }
section.block.alt {
  background: rgba(255, 255, 255, 0.63);
  -webkit-backdrop-filter: blur(3.4px); backdrop-filter: blur(3.4px);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head .eyebrow {
  display:inline-block; letter-spacing:.14em; text-transform:uppercase;
  font-size:.76rem; font-weight:700; color: var(--gold); margin-bottom:.6rem;
}
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 4px; }
.card .tag {
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color: var(--gold); margin-bottom: 10px;
}
.card .price { color: var(--navy); font-weight: 700; margin-top: 8px; }
.card ul { margin: 12px 0 0; padding-left: 1.1rem; color: var(--muted); }
.card ul li { margin-bottom: 6px; }
.tier-note { margin: 16px 0 0; padding: 10px 14px; border-left: 3px solid var(--gold);
  background: rgba(193,154,62,0.08); border-radius: 0 8px 8px 0;
  color: var(--navy); font-size: .9rem; font-weight: 500; }

/* ---------- Video / film embed (video.html) ---------- */
.video-wrap { max-width: 900px; margin: 0 auto; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--navy);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.video-frame video, .video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
/* Placeholder shown until the film is uploaded — delete the .video-soon div then. */
.video-soon { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  gap: 12px; align-items: center; justify-content: center; text-align: center; padding: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.video-soon .pill { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-2); padding: 6px 14px; border-radius: 999px; }
.video-soon p { color: #c7c9d4; max-width: 540px; margin: 0; font-size: .95rem; line-height: 1.5; }
.video-soon code { color: #f0d89a; background: rgba(0,0,0,.25); padding: 1px 6px; border-radius: 5px; }
.video-points { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin: 24px 0 0; }
.video-points span { color: var(--navy); font-weight: 600; font-size: .96rem; }
.video-points .ck { color: var(--gold); font-weight: 800; margin-right: 6px; }

/* ---------- Course catalog (course-catalog.html) ---------- */
.catalog-note { max-width: 760px; }
/* Inline links inside the dark hero (e.g. "contact us") need a light colour. */
.hero a:not(.btn) { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.hero a:not(.btn):hover { color: #fff; }
.faculty-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 4px; }
.faculty-nav a {
  display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; color: var(--navy); font-weight: 600; font-size: .92rem;
  transition: background .15s ease, border-color .15s ease, transform .1s ease; }
.faculty-nav a:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }
.faculty-nav a .fn { color: var(--gold); font-weight: 800; }
.faculty-nav a:hover .fn { color: var(--gold-2); }
.faculty-block { margin-top: 54px; border-top: 1px solid var(--line); padding-top: 30px; scroll-margin-top: 90px; }
.faculty-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.faculty-head .num { font-family: "Playfair Display", Georgia, serif; font-size: 2.5rem;
  line-height: 1; color: var(--gold); font-weight: 800; }
.faculty-head h2 { margin: 0; }
.faculty-disc { text-transform: uppercase; letter-spacing: .07em; font-size: .78rem;
  color: var(--muted); margin: 8px 0 0; }
.faculty-count { display: inline-block; margin: 6px 0 0; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.concept-list { list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 34px; }
.concept-list li { display: flex; gap: 12px; align-items: baseline; color: var(--ink);
  font-size: .95rem; padding: 7px 0; border-bottom: 1px dotted var(--line); }
.concept-list li .cn { flex: 0 0 auto; color: var(--gold); font-weight: 700;
  font-variant-numeric: tabular-nums; font-size: .85rem; min-width: 22px; }
@media (max-width: 760px) { .concept-list { grid-template-columns: 1fr; } }

.feature { display:flex; gap:14px; align-items:flex-start; }
.feature .ico {
  flex:0 0 auto; width:42px; height:42px; border-radius:10px;
  background: rgba(193,154,62,0.14); color: var(--navy);
  display:flex; align-items:center; justify-content:center; font-weight:800;
  font-family: "Playfair Display", Georgia, serif;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* product section label */
.product-section-label {
  display:flex; align-items:center; gap:14px; margin: 8px 0 26px;
}
.product-section-label .num {
  width:34px; height:34px; border-radius:50%; background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700;
}
.product-section-label h2 { margin:0; }

/* ---------- Pros / cons ---------- */
.split { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.panel { border-radius: var(--radius); padding: 28px; border:1px solid var(--line); background: var(--paper-2); }
.panel.pros { border-top: 4px solid var(--gold); }
.panel.cons { border-top: 4px solid var(--navy-2); }
.panel ul { list-style:none; padding:0; margin:0; }
.panel ul li { padding: 10px 0 10px 30px; position:relative; border-bottom:1px solid var(--line); }
.panel ul li:last-child { border-bottom:0; }
.panel.pros li::before { content:"✓"; position:absolute; left:0; color: var(--gold); font-weight:800; }
.panel.cons li::before { content:"!"; position:absolute; left:4px; color: var(--navy-2); font-weight:800; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display:grid; gap:18px; }
.step { display:flex; gap:18px; align-items:flex-start; }
.step .n {
  counter-increment: step; flex:0 0 auto; width:40px; height:40px; border-radius:50%;
  background: var(--gold); color: var(--navy); font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.step .n::before { content: counter(step); }
.step h3 { font-size:1.1rem; margin-bottom:2px; }
.step p { color: var(--muted); margin:0; }

/* ---------- Callout / band ---------- */
.band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff; border-radius: 16px; padding: 48px; text-align:center;
}
.band h2 { color:#fff; }
.band p { color:#d9dae2; max-width: 640px; margin: 0 auto 22px; }

/* ---------- Form ---------- */
.form-card { background: var(--paper-2); border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; color: var(--navy); margin-bottom:6px; font-size:.95rem; }
.field input, .field select, .field textarea {
  width:100%; padding: 11px 13px; border:1px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--ink); background:#fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { color: var(--muted); font-size:.85rem; margin-top:4px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
/* Honorific title (Prof./Dr./…) sitting inline before a name input. */
.title-name { display:grid; grid-template-columns:96px 1fr; gap:10px; }
.title-name select { padding-left:10px; padding-right:6px; }
.form-section { margin: 30px 0 14px; padding-top: 22px; border-top:1px solid var(--line);
  font-size:.82rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--gold); }
.form-section .sub { display:block; margin-top:6px; font-size:.85rem; font-weight:400;
  letter-spacing:0; text-transform:none; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c8cbd6; padding: 48px 0 30px; margin-top: 40px; }
.site-footer a { color:#e4e6ee; }
.site-footer a:hover { color: var(--gold-2); }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color:#fff; font-family: inherit; font-size:.9rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.site-footer .small { font-size:.86rem; color:#9aa0b0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:32px; padding-top:18px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.84rem; color:#9aa0b0; }

/* staging banner */
.staging-banner {
  background: var(--gold); color: var(--navy); text-align:center;
  font-size:.84rem; font-weight:600; padding:7px 16px;
}

.lead-note { color: var(--muted); font-size:.95rem; }
.center { text-align:center; }
.mt-0 { margin-top:0; }

/* Legal pages */
.legal h1 { margin-bottom: .3em; }
.legal h2 { font-size: 1.3rem; margin-top: 1.8em; }
.legal ul { color: var(--ink); }
.legal .lead-note { margin-bottom: 1.6em; }

/* Consent row on the intake form */
.field.consent span { color: var(--muted); font-size: .9rem; line-height: 1.5; }

/* Privacy banner (informational, dismissible) */
.privacy-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 920px; margin: 0 auto;
  background: var(--navy); color: #e9ebf2;
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  box-shadow: 0 10px 40px rgba(20,35,63,.28);
  padding: 14px 18px; font-size: .9rem; line-height: 1.5;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.privacy-banner a { color: var(--gold-2); text-decoration: underline; }
.privacy-banner .privacy-actions { margin-left: auto; flex: 0 0 auto; display: flex; gap: 10px; align-items: center; }
.privacy-banner .privacy-ack {
  background: var(--gold); color: var(--navy); border: 0; cursor: pointer;
  padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: .88rem;
}
.privacy-banner .privacy-ack:hover { background: var(--gold-2); }
.privacy-banner .privacy-decline {
  background: transparent; color: #e9ebf2; border: 1px solid rgba(255,255,255,.4); cursor: pointer;
  padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: .88rem;
}
.privacy-banner .privacy-decline:hover { background: rgba(255,255,255,.1); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* On phones/tablets collapse the nav to the hamburger. On desktop the row is
   allowed to wrap to a second line (flex-wrap on .nav-links) so every full label
   stays visible instead of shrinking or collapsing. */
@media (max-width: 760px) {
  .nav-links {
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0; white-space:normal;
    background: var(--paper); border-bottom:1px solid var(--line); padding: 8px 24px 16px;
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding: 10px 0; width:100%; }
  .nav-links a.cta { display:inline-block; width:auto; margin-top:6px; }
  .nav-toggle { display:block; }
}
@media (max-width: 680px) {
  .nav .brand img { height: 44px; }   /* shrink the wide logo on small phones */
  .grid-2, .grid-3, .grid-4, .split, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .band { padding: 32px 22px; }
  .trust-badges { gap: 12px; }
}

/* ---------- Trust / credibility badges ----------
   Injected into every footer by site.js (also reusable inline anywhere).
   Inline SVG so there are no third-party requests (keeps the GDPR promise). */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center;
  margin: 6px auto 30px; padding: 18px 16px; max-width: var(--maxw);
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: #e9ebf2; font-size: .82rem; font-weight: 600; line-height: 1.1;
}
.trust-badge svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--gold-2); }
.trust-badge .tb-sub { color: #9aa0b0; font-weight: 500; }
/* Light variant for placing the strip on a paper/frosted section */
.trust-badges.on-light { border-color: var(--line); }
.trust-badges.on-light .trust-badge { background: #fff; border-color: var(--line); color: var(--navy); }
.trust-badges.on-light .trust-badge svg { color: var(--gold); }
.trust-badges.on-light .trust-badge .tb-sub { color: var(--muted); }

/* ---------- Catalog + SAMPLE watermark ---------- */
.sample-note {
  background: rgba(193,154,62,.16); border: 1px dashed var(--gold);
  color: var(--navy); border-radius: var(--radius);
  padding: 14px 18px; font-size: .95rem; font-weight: 600; margin-bottom: 28px;
}
.catalog-group { margin-bottom: 16px; }
.catalog-group > h2 { margin-bottom: 6px; }
.catalog-group > .lead-note { margin-bottom: 22px; }

/* A sample tile: a preview card stamped with a diagonal SAMPLE watermark */
.sample-card {
  position: relative; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.sample-card .sample-thumb {
  position: relative; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #eceadf, #f8f6f1);
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.sample-card .sample-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sample-card .sample-body { padding: 18px 20px 20px; }
.sample-card .sample-body h3 { margin: 0 0 4px; font-size: 1.08rem; }
.sample-card .sample-body p { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.sample-card .sample-actions { display: flex; flex-direction: column; gap: 9px; }
.sample-card .sample-actions .btn { width: 100%; text-align: center; padding: 11px 20px; font-size: .98rem; }
.sample-card .tag { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color: var(--gold); margin-bottom: 8px; }
.sample-card.coming .sample-thumb { filter: grayscale(.4) opacity(.7); }
.sample-card.coming .pill-soon {
  position:absolute; top:12px; left:12px; z-index:3; background: var(--navy); color:#fff;
  font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 10px; border-radius:999px;
}

/* The repeated diagonal "SAMPLE" watermark across each preview */
.sample-stamp {
  position: absolute; inset: -20%; z-index: 2; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-28deg);
  background-image: repeating-linear-gradient(
    -28deg, transparent 0 38px, rgba(20,35,63,.045) 38px 76px);
}
.sample-stamp span {
  font-family: "Playfair Display", Georgia, serif; font-weight: 800;
  font-size: clamp(1.4rem, 5vw, 2.2rem); letter-spacing: .18em; text-transform: uppercase;
  color: rgba(193,154,62,.42); border: 3px solid rgba(193,154,62,.42);
  padding: 6px 18px; border-radius: 8px; white-space: nowrap;
}
/* A bold page-wide SAMPLE ribbon for the catalog header */
.sample-ribbon {
  display:inline-block; background: var(--gold); color: var(--navy);
  font-weight: 800; letter-spacing:.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 6px; font-size:.8rem; margin-bottom: 14px;
}

/* Gold 3D edge for the ghost nav CTA (overrides the navy edge on .cta) */
.nav-links a.cta.cta-ghost { box-shadow: 0 3px 0 rgba(155,123,46,.5), 0 5px 12px rgba(20,35,63,.16); }
.nav-links a.cta.cta-ghost:hover { box-shadow: 0 4px 0 rgba(155,123,46,.5), 0 8px 16px rgba(20,35,63,.2); }

/* ---------- Schedule page: embedded booking iframe ---------- */
.booking-frame {
  position: relative; width: 100%; min-height: 760px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.booking-frame iframe { width: 100%; height: 760px; border: 0; display: block; }
/* ---------- Research-pillar picker (request form) ---------- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; margin-bottom: 4px; }
.pillars label {
  display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink);
  font-size: .96rem; padding: 6px 0; cursor: pointer;
}
.pillars input[type="checkbox"] { width: auto; margin: 0; flex: 0 0 auto; }
.other-pillars input { margin-bottom: 8px; }
.other-pillars input:last-child { margin-bottom: 0; }
@media (max-width: 680px) { .pillars { grid-template-columns: 1fr; } }

/* A small CTA strip used on the form pages to offer a call */
.schedule-cta {
  display:flex; flex-wrap:wrap; align-items:center; gap:14px; justify-content:space-between;
  background: rgba(193,154,62,.12); border:1px solid var(--gold);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 24px;
}
.schedule-cta p { margin:0; color: var(--navy); font-weight:600; }
@media (max-width: 680px){
  .booking-frame, .booking-frame iframe { min-height: 1000px; height: 1000px; }
  .schedule-cta { flex-direction: column; align-items: stretch; text-align:center; }
}

/* ===========================================================================
   TEMPLATE: "Under Development" product card
   ---------------------------------------------------------------------------
   Reusable treatment for any built-but-not-launched product. To mark a card,
   wrap the existing `.card` like this (no other changes needed):

     <div class="dev-wrap">
       <div class="dev-banner">Under Development</div>
       <div class="card under-development">
         ... your normal card content ...
       </div>
     </div>

   To LAUNCH the product: delete the .dev-wrap + .dev-banner wrapper lines and
   remove `under-development` from the card's class list - it reverts to a plain
   `.card`. Used by: Academic Curriculum + E-learning Software Package (products.html).
   ===========================================================================

   How it works:
   (1) a bold gold theme banner above the card, and (2) a diagonal BRICK
   watermark. The 276x245.8 tile carries two rows: row A centred (x=138, y=61.5),
   row B shifted half a period sideways (odd rows right / even rows left) at
   y=184.4. Row B is authored as two edge-halves (x=0 and x=276) that complete
   across the horizontal seam, so NO word is ever clipped mid-letter. The height is
   set so height*cos24 == 2*width*sin24: this makes the diagonal streaks land on a
   UNIFORM lattice ~56px apart (no bunched-pair-then-big-gap artefact) with no
   overlap. Font 24, weight 600, light neutral-grey fill - a clean, evenly tiled
   watermark that simply clips at the card edges (no edge fade, like a standard
   document watermark). To LAUNCH the product, delete the banner div + remove `under-development`. */
.dev-wrap { display: flex; flex-direction: column; height: 100%; }
.dev-wrap .card { flex: 1; border-top-left-radius: 0; border-top-right-radius: 0; }
.dev-banner {
  background: var(--gold);
  color: var(--navy);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 11px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}
.card.under-development { position: relative; overflow: hidden; }
.card.under-development::after {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27276%27%20height%3D%27245.8%27%3E%3Ctext%20x%3D%27138%27%20y%3D%2761.5%27%20fill%3D%27rgba%2851%2C58%2C74%2C0.26%29%27%20font-family%3D%27Georgia%2C%20%22Times%20New%20Roman%22%2C%20serif%27%20font-size%3D%2724%27%20font-weight%3D%27600%27%20letter-spacing%3D%270.5%27%20text-anchor%3D%27middle%27%20dominant-baseline%3D%27middle%27%20transform%3D%27rotate%28-24%20138%2061.5%29%27%3EUnder%20Development%3C%2Ftext%3E%3Ctext%20x%3D%270%27%20y%3D%27184.4%27%20fill%3D%27rgba%2851%2C58%2C74%2C0.26%29%27%20font-family%3D%27Georgia%2C%20%22Times%20New%20Roman%22%2C%20serif%27%20font-size%3D%2724%27%20font-weight%3D%27600%27%20letter-spacing%3D%270.5%27%20text-anchor%3D%27middle%27%20dominant-baseline%3D%27middle%27%20transform%3D%27rotate%28-24%200%20184.4%29%27%3EUnder%20Development%3C%2Ftext%3E%3Ctext%20x%3D%27276%27%20y%3D%27184.4%27%20fill%3D%27rgba%2851%2C58%2C74%2C0.26%29%27%20font-family%3D%27Georgia%2C%20%22Times%20New%20Roman%22%2C%20serif%27%20font-size%3D%2724%27%20font-weight%3D%27600%27%20letter-spacing%3D%270.5%27%20text-anchor%3D%27middle%27%20dominant-baseline%3D%27middle%27%20transform%3D%27rotate%28-24%20276%20184.4%29%27%3EUnder%20Development%3C%2Ftext%3E%3C%2Fsvg%3E");
  background-repeat: repeat;
  background-position: center;
}
