/* ================================
   GradUK Global — Modern Global Styles
   ================================ */

:root {
  --gu-navy:        #0A1F3D;
  --gu-navy-soft:   #13294B;
  --gu-navy-ink:    #061528;
  --gu-gold:        #C9A961;
  --gu-gold-dark:   #A88944;
  --gu-gold-soft:   #E8D9B0;
  --gu-ink:         #1a1a1a;
  --gu-body:        #4a4a4a;
  --gu-muted:       #6b6b6b;
  --gu-line:        #eceae4;
  --gu-bg-soft:     #f7f5ef;
  --gu-bg-cream:    #faf8f2;
  --gu-white:       #ffffff;

  /* Design tokens */
  --gu-radius-sm:   10px;
  --gu-radius:      18px;
  --gu-radius-lg:   28px;
  --gu-radius-pill: 999px;

  --gu-shadow-sm:   0 2px 8px rgba(10,31,61,0.04), 0 1px 3px rgba(10,31,61,0.06);
  --gu-shadow:      0 10px 30px rgba(10,31,61,0.08), 0 2px 6px rgba(10,31,61,0.05);
  --gu-shadow-lg:   0 30px 60px rgba(10,31,61,0.12), 0 8px 20px rgba(10,31,61,0.06);
  --gu-shadow-gold: 0 20px 40px rgba(201,169,97,0.25);

  --gu-grad-navy:   linear-gradient(135deg, #0A1F3D 0%, #1a3a6e 100%);
  --gu-grad-gold:   linear-gradient(135deg, #C9A961 0%, #E8D9B0 100%);
  --gu-grad-soft:   linear-gradient(180deg, #faf8f2 0%, #ffffff 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--gu-body);
  line-height: 1.7;
  background: var(--gu-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Raleway', sans-serif;
  color: var(--gu-navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h1, .display-1, .display-2, .display-3 { font-weight: 700; letter-spacing: -0.025em; }

.lead, .subhead {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--gu-muted);
}

a { color: var(--gu-navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gu-gold-dark); }

.text-gold       { color: var(--gu-gold) !important; }
.text-navy       { color: var(--gu-navy) !important; }
.bg-navy         { background-color: var(--gu-navy) !important; }
.bg-soft         { background-color: var(--gu-bg-soft) !important; }
.bg-cream        { background-color: var(--gu-bg-cream) !important; }

.text-gradient-gold {
  background: var(--gu-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Decorative SVG blobs ===== */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.blob-gold {
  background: var(--gu-grad-gold);
  filter: blur(80px);
  border-radius: 50%;
}
.blob-navy {
  background: var(--gu-grad-navy);
  filter: blur(80px);
  border-radius: 50%;
}

/* ===== Navbar ===== */
.navbar-gu {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.navbar-gu.scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: .6rem 0;
  border-bottom: 1px solid var(--gu-line);
  box-shadow: 0 8px 30px rgba(10, 31, 61, 0.06);
}
.navbar-gu .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-gu .navbar-brand img {
  height: 54px;
  width: auto;
  display: block;
  transition: height .3s ease;
}
.navbar-gu.scrolled .navbar-brand img { height: 44px; }
@media (max-width: 991.98px) {
  .navbar-gu .navbar-brand img { height: 42px; }
}
.navbar-gu .nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  color: var(--gu-ink) !important;
  padding: .5rem 1rem !important;
  position: relative;
  border-radius: var(--gu-radius-pill);
  transition: background .2s ease;
}
.navbar-gu .nav-link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: .25rem;
  width: 0;
  height: 2px;
  background: var(--gu-gold);
  border: 0;                 /* reset Bootstrap dropdown-toggle caret triangle */
  margin: 0;
  vertical-align: baseline;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s ease;
}
.navbar-gu .dropdown-toggle::after { display: block; }
/* Hover underline on plain links only; dropdown toggles stay clean */
.navbar-gu .nav-link:not(.dropdown-toggle):hover::after,
.navbar-gu .nav-link.active::after { width: 24px; }
/* Active dropdown parent still gets the underline */
.navbar-gu .dropdown-toggle.active::after { width: 24px; }
.navbar-gu .dropdown-menu {
  border: none;
  border-radius: var(--gu-radius);
  box-shadow: var(--gu-shadow-lg);
  padding: .75rem 0;
  font-family: 'Raleway', sans-serif;
  margin-top: .75rem;
  min-width: 240px;
  overflow: hidden;
}
.navbar-gu .dropdown-item {
  padding: .7rem 1.5rem;
  font-size: .9rem;
  color: var(--gu-ink);
  transition: all .2s ease;
}
.navbar-gu .dropdown-item:hover {
  background: var(--gu-bg-soft);
  color: var(--gu-navy);
  padding-left: 1.75rem;
}

@media (min-width: 992px) {
  .navbar-gu .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: .25rem;
  }
}

/* ===== Buttons ===== */
.btn-gu {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .9rem;
  padding: .85rem 2rem;
  border-radius: var(--gu-radius-pill);
  border: 1.5px solid transparent;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-gu:hover { transform: translateY(-2px); }

.btn-gu-primary {
  background: var(--gu-grad-navy);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(10,31,61,0.18);
}
.btn-gu-primary:hover {
  background: var(--gu-grad-gold);
  color: var(--gu-navy);
  box-shadow: var(--gu-shadow-gold);
}
.btn-gu-outline {
  background: transparent;
  color: var(--gu-navy);
  border-color: var(--gu-navy);
}
.btn-gu-outline:hover {
  background: var(--gu-navy);
  color: #fff;
  border-color: var(--gu-navy);
  box-shadow: 0 8px 20px rgba(10,31,61,0.18);
}
.btn-gu-gold {
  background: var(--gu-grad-gold);
  color: var(--gu-navy);
  border-color: transparent;
  box-shadow: var(--gu-shadow-gold);
}
.btn-gu-gold:hover {
  filter: brightness(1.05);
  color: var(--gu-navy);
}
.btn-gu-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-gu-light:hover {
  background: #fff;
  color: var(--gu-navy);
  border-color: #fff;
}
.btn-gu.btn-sm { padding: .55rem 1.25rem; font-size: .8rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201,169,97,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(201,169,97,0.12) 0%, transparent 60%),
    var(--gu-grad-navy);
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 var(--gu-radius-lg) var(--gu-radius-lg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
  pointer-events: none;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: var(--gu-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--gu-gold-soft);
  margin-bottom: 1.5rem;
  padding: .5rem 1.1rem;
  background: rgba(201,169,97,0.14);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: var(--gu-radius-pill);
  backdrop-filter: blur(8px);
}
.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero .trust-row {
  color: rgba(255,255,255,0.7);
  font-size: .85rem;
  letter-spacing: .05em;
}

/* Hero image collage — clean 2-image stack */
.hero-collage {
  position: relative;
  height: 520px;
  width: 100%;
}
.hero-collage .img-wrap {
  position: absolute;
  border-radius: var(--gu-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.hero-collage .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.hero-collage:hover .img-1 img { transform: scale(1.04); }

/* Primary image — large, top-right */
.hero-collage .img-1 {
  top: 0;
  right: 0;
  width: 78%;
  height: 75%;
  z-index: 2;
}
/* Secondary image — smaller, bottom-left overlap */
.hero-collage .img-2 {
  bottom: 0;
  left: 0;
  width: 52%;
  height: 42%;
  z-index: 3;
  border: 6px solid var(--gu-navy);
}

.hero-collage .badge-float {
  position: absolute;
  top: 1.25rem;
  left: 0;
  background: #fff;
  padding: .85rem 1.1rem;
  border-radius: var(--gu-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Raleway', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gu-navy);
  max-width: 230px;
}
.hero-collage .badge-float i {
  color: var(--gu-gold-dark);
  font-size: 1.4rem;
}
.hero-collage .stat-float {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: var(--gu-grad-gold);
  color: var(--gu-navy);
  padding: 1rem 1.25rem;
  border-radius: var(--gu-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 4;
  font-family: 'Raleway', sans-serif;
  min-width: 130px;
}
.hero-collage .stat-float .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gu-navy);
  line-height: 1;
}
.hero-collage .stat-float .lbl {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gu-navy);
  opacity: .85;
  margin-top: .35rem;
  font-weight: 600;
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.3) 0%, transparent 55%),
    var(--gu-grad-navy);
  color: #fff;
  overflow: hidden;
  border-radius: 0 0 var(--gu-radius-lg) var(--gu-radius-lg);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=80') center/cover;
  opacity: .12;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: var(--gu-grad-gold);
  filter: blur(120px);
  opacity: .2;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 1rem;
}
.page-hero .eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gu-gold-soft);
  margin-bottom: 1.25rem;
  padding: .4rem .9rem;
  background: rgba(201,169,97,0.15);
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: var(--gu-radius-pill);
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 720px;
}

/* ===== Sections ===== */
section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gu-gold-dark);
  margin-bottom: 1rem;
  padding: .35rem .85rem;
  background: rgba(201,169,97,0.1);
  border-radius: var(--gu-radius-pill);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--gu-muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 0;
}
.divider-gold {
  width: 48px;
  height: 3px;
  background: var(--gu-grad-gold);
  border: none;
  border-radius: 2px;
  margin: 1.25rem 0;
  opacity: 1;
}
.center .divider-gold { margin-left: auto; margin-right: auto; }

/* ===== Feature cards ===== */
.feature-card {
  background: #fff;
  padding: 2.25rem 1.75rem;
  height: 100%;
  border: 1px solid var(--gu-line);
  border-radius: var(--gu-radius);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gu-grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.feature-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--gu-shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card .icon-wrap {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--gu-grad-gold);
  color: var(--gu-navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-radius: var(--gu-radius-sm);
  transition: all .4s ease;
}
.feature-card:hover .icon-wrap {
  background: var(--gu-grad-navy);
  color: var(--gu-gold);
  transform: rotate(-5deg) scale(1.05);
}
.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}
.feature-card h5 {
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-card p { font-size: .95rem; color: var(--gu-muted); margin: 0; }

/* ===== Programme cards (with image header) ===== */
.programme-card {
  background: #fff;
  height: 100%;
  border: 1px solid var(--gu-line);
  border-radius: var(--gu-radius);
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.programme-card:hover {
  border-color: transparent;
  box-shadow: var(--gu-shadow-lg);
  transform: translateY(-8px);
}
.programme-card .programme-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gu-navy);
}
.programme-card .programme-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.programme-card:hover .programme-img img { transform: scale(1.06); }
.programme-card .programme-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,61,0) 40%, rgba(10,31,61,0.6) 100%);
}
.programme-card .programme-img .tag-float {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: .4rem .9rem;
  border-radius: var(--gu-radius-pill);
  font-family: 'Raleway', sans-serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gu-navy);
  font-weight: 600;
  z-index: 2;
}
.programme-card .programme-img .icon-float {
  position: absolute;
  right: 1rem; bottom: 1rem;
  width: 44px; height: 44px;
  background: var(--gu-grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--gu-navy);
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: var(--gu-shadow);
}
.programme-card .programme-hd {
  padding: 1.5rem 1.75rem .75rem;
}
.programme-card h3 {
  font-size: 1.35rem;
  margin: 0 0 .25rem;
}
.programme-card .programme-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--gu-muted);
  font-size: .92rem;
  margin: 0;
}
.programme-card .programme-bd {
  padding: 1rem 1.75rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.programme-card ul.bullets {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
}
.programme-card ul.bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .92rem;
  color: var(--gu-body);
  margin-bottom: .5rem;
}
.programme-card ul.bullets li::before {
  content: '\F272';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0; top: 0;
  color: var(--gu-gold);
  font-size: .9rem;
}
.programme-card .programme-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gu-line);
}
.programme-card .programme-foot a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gu-navy);
  background: var(--gu-grad-gold);
  padding: .55rem 1.1rem;
  border-radius: var(--gu-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 6px 14px rgba(201,169,97,0.28);
  transition: all .25s ease;
}
.programme-card .programme-foot a:hover {
  background: var(--gu-grad-navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(10,31,61,0.25);
  transform: translateY(-1px);
}
.programme-card .programme-foot a i { transition: transform .25s ease; }
.programme-card .programme-foot a:hover i { transform: translateX(4px); }

/* ===== Programme detail image ===== */
.programme-detail-img {
  border-radius: var(--gu-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--gu-shadow-lg);
}
.programme-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.programme-detail-img .badge-overlay {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: var(--gu-radius-pill);
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gu-navy);
  font-weight: 600;
}

/* ===== Stats strip ===== */
.stat-strip {
  background:
    radial-gradient(circle at top right, rgba(201,169,97,0.15) 0%, transparent 50%),
    var(--gu-grad-navy);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 600px; height: 600px;
  background: var(--gu-gold);
  filter: blur(150px);
  opacity: .1;
  border-radius: 50%;
}
.stat-strip .stat-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--gu-gold);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.stat-strip .stat-lbl {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
}

/* ===== Framework / principle list ===== */
.principle {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  border-radius: var(--gu-radius-sm);
  transition: all .3s ease;
}
.principle:hover {
  background: var(--gu-bg-cream);
  transform: translateX(6px);
}
.principle .p-letter {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  background: var(--gu-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}
.principle h5 {
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.principle p { margin: 0; color: var(--gu-muted); font-size: .92rem; line-height: 1.5; }

/* ===== Callout ===== */
.callout {
  background: var(--gu-bg-cream);
  padding: 2.5rem;
  border-radius: var(--gu-radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gu-navy);
  line-height: 1.6;
  position: relative;
  border: 1px solid var(--gu-line);
}
.callout::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; left: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gu-gold);
  line-height: 1;
  font-style: normal;
  font-weight: 700;
}

/* ===== Image panels (new, for illustrations) ===== */
.image-panel {
  position: relative;
  border-radius: var(--gu-radius-lg);
  overflow: hidden;
  box-shadow: var(--gu-shadow-lg);
  min-height: 420px;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.image-panel .panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,61,0.4) 0%, rgba(10,31,61,0.1) 50%, transparent 100%);
}
.image-panel .panel-caption {
  position: absolute;
  left: 2rem; right: 2rem; bottom: 2rem;
  color: #fff;
  z-index: 2;
}
.image-panel .panel-caption .cap-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: .4rem .9rem;
  border-radius: var(--gu-radius-pill);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--gu-gold-soft);
  margin-bottom: .75rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.image-panel .panel-caption h4 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
}

/* Floating card (overlaps image) */
.image-panel-wrap {
  position: relative;
}
.floating-card {
  background: #fff;
  border-radius: var(--gu-radius);
  box-shadow: var(--gu-shadow-lg);
  padding: 1.5rem;
  position: absolute;
  border: 1px solid var(--gu-line);
  max-width: 260px;
}
.floating-card .fc-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: var(--gu-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.floating-card .fc-lbl {
  font-family: 'Raleway', sans-serif;
  color: var(--gu-muted);
  font-size: .85rem;
  margin-top: .5rem;
}

/* ===== CTA banner ===== */
.cta-banner {
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.2) 0%, transparent 50%),
    var(--gu-grad-navy);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--gu-radius-lg);
  margin: 0 1.5rem;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: var(--gu-grad-gold);
  filter: blur(120px);
  opacity: .2;
  border-radius: 50%;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* ===== Forms ===== */
.form-eoi {
  background: #fff;
  padding: 3.5rem;
  border: 1px solid var(--gu-line);
  border-radius: var(--gu-radius-lg);
  box-shadow: var(--gu-shadow);
}
.form-eoi .form-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gu-muted);
  margin-bottom: .5rem;
}
.form-eoi .form-control,
.form-eoi .form-select {
  border: 1.5px solid var(--gu-line);
  border-radius: var(--gu-radius-sm);
  padding: .85rem 1rem;
  font-size: .95rem;
  background: var(--gu-bg-cream);
  color: var(--gu-ink);
  box-shadow: none !important;
  transition: all .25s ease;
}
.form-eoi .form-control:focus,
.form-eoi .form-select:focus {
  border-color: var(--gu-gold);
  background: #fff;
}
.form-eoi textarea.form-control { min-height: 130px; }
.form-eoi .form-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gu-line);
}
.form-eoi .form-section:last-of-type { border-bottom: none; }
.form-eoi .form-section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gu-gold-dark);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: .4rem .85rem;
  background: rgba(201,169,97,0.1);
  border-radius: var(--gu-radius-pill);
}
.form-eoi .form-check-input {
  border-radius: 4px;
  border-color: var(--gu-muted);
}
.form-eoi .form-check-input:checked {
  background-color: var(--gu-navy);
  border-color: var(--gu-navy);
}
.form-eoi .form-check-label {
  font-size: .92rem;
  color: var(--gu-body);
}

/* Badges */
.badge {
  border-radius: var(--gu-radius-pill) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

/* ===== Footer ===== */
.footer-gu {
  background:
    radial-gradient(ellipse at top left, rgba(201,169,97,0.08) 0%, transparent 40%),
    var(--gu-navy-ink);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 1.5rem;
  font-size: .92rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--gu-radius-lg) var(--gu-radius-lg) 0 0;
  margin-top: 2rem;
}
.footer-gu h6 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 1.25rem;
}
.footer-gu a { color: rgba(255,255,255,0.7); }
.footer-gu a:hover { color: var(--gu-gold); }
.footer-gu ul { list-style: none; padding: 0; margin: 0; }
.footer-gu ul li { margin-bottom: .7rem; }
.footer-gu .footer-brand img {
  height: 68px;
  width: auto;
  display: block;
  /* logo is navy + gold — invert blues to light on dark footer */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-gu .social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  margin-right: .5rem;
  color: #fff;
  transition: all .3s ease;
}
.footer-gu .social a:hover {
  background: var(--gu-gold);
  border-color: var(--gu-gold);
  color: var(--gu-navy);
  transform: translateY(-3px);
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
  .hero-collage { height: 460px; margin-top: 3rem; }
}
@media (max-width: 767.98px) {
  section { padding: 4rem 0; }
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .form-eoi { padding: 2rem 1.5rem; }
  .callout { padding: 2rem; font-size: 1.05rem; }
  .cta-banner { margin: 0 .75rem; }
  .hero-collage { height: 380px; }
  .hero-collage .badge-float,
  .hero-collage .stat-float { transform: scale(.85); transform-origin: top right; }
  .hero-collage .stat-float { transform-origin: bottom left; }
}
