/* ==========================================================================
   Prime Study Abroad — Theme CSS
   Global styles that extend or refine what theme.json defines.
   Keep this lean: theme.json drives tokens, this file handles components.
   ========================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

/* ── Focus visible ────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--wp--preset--color--red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Skip link ────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--wp--preset--color--navy);
  color: var(--wp--preset--color--white);
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--wp--preset--color--white);
  border-bottom: 1px solid rgba(20,40,75,0.10);
  box-shadow: 0 2px 12px rgba(20,40,75,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding: 0.875rem clamp(1rem, 4vw, 2.5rem);
}

/* Logo */
.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* White "plate" so the full-colour logo (navy wordmark + navy cap) stays
     legible against the navy header. This is the interim solution until a
     knockout / white-version logo is supplied — see CLAUDE.md. */
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.site-logo-img {
  display: block;
  height: 56px;          /* desktop — stacked full-colour logo on white header */
  width: auto;
  max-width: 100%;
}

/* Knockout (white) logo: sits directly on the navy header, no plate.
   Activated by adding the `--knockout` modifier to .site-logo-link once a
   white-version logo (assets/images/logo-white.png) is supplied. */
.site-logo-link--knockout {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 600px) {
  .site-logo-link { padding: 5px 10px; border-radius: 8px; }
  .site-logo-link--knockout { padding: 0; }
  .site-logo-img { height: 44px; max-width: 70vw; }
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav li { position: relative; }

.primary-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(20,40,75,0.85);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--wp--preset--color--navy);
  background: rgba(20,40,75,0.06);
}

/* CTA button in nav */
.nav-cta-btn,
.primary-nav .nav-cta > a {
  display: inline-flex !important;
  align-items: center;
  padding: 0.625rem 1.25rem !important;
  background: var(--wp--preset--color--navy) !important;
  color: var(--wp--preset--color--white) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s !important;
  white-space: nowrap;
}
.nav-cta-btn:hover,
.primary-nav .nav-cta > a:hover {
  background: #1a3565 !important;
  transform: translateY(-1px);
  color: var(--wp--preset--color--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 2px solid rgba(20,40,75,0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle:hover { border-color: rgba(20,40,75,0.6); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wp--preset--color--white);
    border-top: 1px solid rgba(20,40,75,0.10);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 8px 24px rgba(20,40,75,0.12);
  }
  .site-nav.is-open {
    max-height: 420px;
    padding: 1rem 0 1.5rem;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
  }
  .primary-nav a { padding: 0.75rem 0.5rem; border-radius: 0; border-bottom: 1px solid rgba(20,40,75,0.08); }
  .primary-nav li:last-child a { border-bottom: none; }
  .primary-nav .nav-cta { margin-top: 0.75rem; }
  .primary-nav .nav-cta > a {
    text-align: center;
    border-radius: 6px !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--wp--preset--color--navy);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem) 3rem;
}

.footer-col h3 {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wp--preset--color--white);
  margin: 0 0 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(242,146,46,0.45);
}

.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1rem;
}

.footer-accreditation {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.accred-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(242,146,46,0.14);
  border: 1px solid rgba(242,146,46,0.45);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wp--preset--color--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  padding: 0.125rem 0;
}
.footer-links a:hover { color: var(--wp--preset--color--orange); padding-left: 0.375rem; }

.footer-contact-item {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.footer-contact-item .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  color: var(--wp--preset--color--orange);
}

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-bar a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bar a:hover { color: var(--wp--preset--color--orange); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════════════════
   PATTERNS — shared component styles
   ══════════════════════════════════════════════════════════════════════════ */

/* Section wrapper utility */
.psa-section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.psa-section--navy  { background: var(--wp--preset--color--navy); }
.psa-section--red  { background: var(--wp--preset--color--red); }
.psa-section--white { background: var(--wp--preset--color--white); }
.psa-section--off   { background: var(--wp--preset--color--off-white); }

.psa-container {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.psa-container--narrow { max-width: var(--wp--style--global--content-size); }

/* Section heading */
.psa-section-label {
  display: inline-block;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* red-dark (#A8161E) achieves 4.9:1 on off-white — WCAG AA pass */
  color: var(--wp--preset--color--red-strong);
  margin-bottom: 0.75rem;
}
.psa-section-heading {
  font-family: var(--wp--preset--font-family--fraunces);
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin: 0 0 1rem;
}
.psa-section-heading--white { color: var(--wp--preset--color--white); }
.psa-section-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--wp--preset--color--muted);
  max-width: 600px;
  line-height: 1.65;
  margin: 0 0 2.5rem;
}
.psa-section-sub--white { color: rgba(255,255,255,0.8); }

/* Divider line */
.psa-divider {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--wp--preset--color--red);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0e1e38 0%, #14284B 50%, #1a3560 100%);
  padding-top: clamp(4rem, 10vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A951' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { padding-block: 1rem; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--red);
  background: rgba(206,32,43,0.12);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  border: 1px solid rgba(206,32,43,0.3);
  margin-bottom: 1.5rem;
}
.hero-heading {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--wp--preset--color--white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.hero-heading em {
  font-style: normal;
  color: var(--wp--preset--color--red);
}
.hero-subheading {
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 2.25rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: var(--wp--preset--color--navy);
  color: var(--wp--preset--color--white);
  box-shadow: 0 4px 16px rgba(20,40,75,0.25);
}
.btn-red:hover {
  background: #1a3565;
  box-shadow: 0 6px 20px rgba(20,40,75,0.35);
  color: var(--wp--preset--color--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--wp--preset--color--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  color: var(--wp--preset--color--white);
}
.btn-navy {
  background: var(--wp--preset--color--navy);
  color: var(--wp--preset--color--white);
}
.btn-navy:hover { background: #1a3565; color: var(--wp--preset--color--white); }
.btn-orange {
  background: var(--wp--preset--color--orange);
  color: var(--wp--preset--color--navy);
  box-shadow: 0 4px 16px rgba(242,146,46,0.30);
}
.btn-orange:hover { background: #d97e1f; color: var(--wp--preset--color--navy); }

/* Trust strip in hero */
.trust-strip {
  display: flex;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.trust-item strong {
  font-weight: 700;
  color: var(--wp--preset--color--red);
  font-size: 1.0625rem;
}
.trust-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wp--preset--color--red);
  flex-shrink: 0;
}

/* Hero visual side */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-img-main {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-stat-bubble {
  position: absolute;
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  text-align: center;
}
.hero-stat-bubble--a { bottom: -1.5rem; left: -1.5rem; }
.hero-stat-bubble--b { top: -1rem; right: -1rem; }
.hero-stat-bubble .stat-num {
  display: block;
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  line-height: 1;
}
.hero-stat-bubble .stat-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--muted);
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { justify-content: center; }
  .hero-card-stack { max-width: 380px; }
  .hero-subheading { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero-stat-bubble--a { left: 0; bottom: -1rem; }
  .hero-stat-bubble--b { right: 0; top: -0.5rem; }
}

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--wp--preset--color--navy);
  padding-block: 3rem;
}
.stats-bar-inner {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label-text {
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 400px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Destinations grid ────────────────────────────────────────────────────── */
.destinations-section {
  background: var(--wp--preset--color--off-white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wp--preset--color--white);
  box-shadow: 0 2px 12px rgba(20,40,75,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,40,75,0.16);
}
.destination-flag {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #14284B 0%, #1E3A6E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.destination-flag-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #14284B 0%, #1E3A6E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.destination-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.destination-country {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wp--preset--color--navy);
  margin: 0 0 0.5rem;
}
.destination-desc {
  font-size: 0.9rem;
  color: var(--wp--preset--color--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1rem;
}
.destination-uni-count {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wp--preset--color--red);
}
.destination-country a {
  color: inherit;
  text-decoration: none;
}
.destination-country a:hover {
  color: var(--wp--preset--color--red);
}

/* ── Services grid ────────────────────────────────────────────────────────── */
.services-section {
  background: var(--wp--preset--color--white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--wp--preset--color--off-white);
  border: 1px solid rgba(20,40,75,0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: rgba(20,40,75,0.25);
  box-shadow: 0 4px 16px rgba(20,40,75,0.10);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(20,40,75,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--wp--preset--color--navy);
}
.service-title {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.175rem;
  font-weight: 600;
  color: var(--wp--preset--color--navy);
  margin: 0 0 0.625rem;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--wp--preset--color--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Why us ───────────────────────────────────────────────────────────────── */
.why-us-section {
  background: var(--wp--preset--color--navy);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,40,75,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--navy);
  font-size: 1.25rem;
}
.why-feature-text h4 {
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  margin: 0 0 0.3rem;
}
.why-feature-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}
.why-us-visual {
  position: relative;
}
.why-us-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.why-us-review-count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--wp--preset--color--orange);
  font-size: 1.25rem;
}
.review-score {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  line-height: 1;
}
.review-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.why-us-quote {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  border-left: 3px solid var(--wp--preset--color--red);
  padding-left: 1rem;
  margin: 0 0 1rem;
}
.why-us-cite {
  font-size: 0.875rem;
  color: var(--wp--preset--color--red);
  font-weight: 600;
}

@media (max-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--wp--preset--color--off-white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(20,40,75,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 5rem;
  line-height: 1;
  color: rgba(206,32,43,0.15);
  font-weight: 700;
}
.testimonial-stars { display: flex; gap: 3px; color: #F4A700; font-size: 1rem; }
.testimonial-quote {
  font-family: var(--wp--preset--font-family--fraunces);
  font-style: italic;
  font-size: 1.0625rem;
  color: #2a2a2a;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid rgba(20,40,75,0.06);
  padding-top: 1.25rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wp--preset--color--red-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--wp--preset--color--red);
  flex-shrink: 0;
  border: 2px solid rgba(206,32,43,0.2);
  overflow: hidden;
}
.author-info .author-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--wp--preset--color--navy);
}
.author-info .author-detail {
  font-size: 0.8125rem;
  color: var(--wp--preset--color--muted);
}
/* Course: slightly stronger; University: lighter — both below the navy name.
   Both use the AA-compliant muted token (#4E5E70, 5.5:1 on white). */
.author-info .author-course {
  font-weight: 600;
  color: var(--wp--preset--color--muted);
  margin-top: 0.15rem;
}
.author-info .author-uni {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--wp--preset--color--muted);
  line-height: 1.35;
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── IELTS Strip ──────────────────────────────────────────────────────────── */
.ielts-strip {
  background: linear-gradient(135deg, #CE202B 0%, #A8161E 100%);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.ielts-strip-inner {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.ielts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--white);
  margin-bottom: 0.875rem;
}
.ielts-strip h2 {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  margin: 0 0 0.625rem;
}
.ielts-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 520px;
}
.ielts-accred {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.ielts-accred-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .ielts-strip-inner { grid-template-columns: 1fr; }
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #14284B 0%, #0e1e38 100%);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,146,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.cta-banner h2 {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--white);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 2.25rem;
  line-height: 1.65;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact block ────────────────────────────────────────────────────────── */
.contact-section {
  background: var(--wp--preset--color--white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.contact-info .contact-intro {
  font-size: 1.0625rem;
  color: var(--wp--preset--color--muted);
  margin: 0 0 2rem;
  line-height: 1.65;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,40,75,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--navy);
  font-size: 1.125rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-detail-text span, .contact-detail-text a {
  font-size: 1rem;
  color: var(--wp--preset--color--body-text);
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail-text a:hover { color: var(--wp--preset--color--red); }
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--wp--preset--color--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  border: 2px dashed rgba(20,40,75,0.18);
  color: var(--wp--preset--color--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form-wrapper {
  background: var(--wp--preset--color--off-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(20,40,75,0.07);
}
.contact-form-wrapper h3 {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wp--preset--color--navy);
  margin: 0 0 0.5rem;
}
.contact-form-wrapper .form-intro {
  font-size: 0.9375rem;
  color: var(--wp--preset--color--muted);
  margin: 0 0 1.75rem;
  line-height: 1.55;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wp--preset--color--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 0.9375rem;
  color: var(--wp--preset--color--body-text);
  background: var(--wp--preset--color--white);
  border: 1.5px solid rgba(20,40,75,0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wp--preset--color--red);
  box-shadow: 0 0 0 3px rgba(206,32,43,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  font-size: 0.8125rem;
  color: var(--wp--preset--color--muted);
  margin-top: 0.875rem;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── About section ────────────────────────────────────────────────────────── */
.about-section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Page hero (interior pages) — white-dominant ─────────────────────────── */
.page-hero {
  background:
    radial-gradient(60% 80% at 98% 100%, rgba(242,146,46,0.18), transparent 62%),
    linear-gradient(155deg, #FFFFFF 0%, #EAEFF6 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
  border-bottom: 1px solid rgba(20,40,75,0.07);
}
.page-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--red-strong);
  margin-bottom: 0.75rem;
}
.page-hero h1,
.page-hero .wp-block-post-title {
  font-family: var(--wp--preset--font-family--fraunces);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.0625rem;
  color: #4E5E70;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ── Mobile: post-content prose padding ──────────────────────────────────── */
/* wp:post-content uses FSE constrained layout (max-width 720px, margin:auto).
   That gives zero horizontal padding — prose runs edge-to-edge on phones.
   Pattern embeds (<div class="wp-block-html">) have their own .psa-container
   so we target only prose children, not block wrappers. Desktop unchanged. */
@media (max-width: 700px) {
  .wp-block-post-content > p,
  .wp-block-post-content > h1,
  .wp-block-post-content > h2,
  .wp-block-post-content > h3,
  .wp-block-post-content > h4,
  .wp-block-post-content > ul,
  .wp-block-post-content > ol:not(.hiw-rail),
  .wp-block-post-content > .page-inline-cta,
  .wp-block-post-content > .accred-logo-row {
    padding-inline: clamp(1rem, 4vw, 2.5rem);
  }
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
/* red = on dark bg only; use red-dark for light backgrounds */
.text-red      { color: var(--wp--preset--color--red); }
.text-red-strong { color: var(--wp--preset--color--red-strong); }
.text-red  { color: var(--wp--preset--color--red); }
.text-navy  { color: var(--wp--preset--color--navy); }
.text-white { color: var(--wp--preset--color--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Breadcrumb */
.psa-breadcrumb {
  background: rgba(255,255,255,0.05);
  padding: 0.625rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.psa-breadcrumb-inner {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
}
.psa-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.psa-breadcrumb li + li::before { content: '›'; margin-right: 0.5rem; }
.psa-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.psa-breadcrumb a:hover { color: var(--wp--preset--color--orange); }

/* ══════════════════════════════════════════════════════════════════════════
   IMPROVEMENT PASS — 10 brand audit fixes
   ══════════════════════════════════════════════════════════════════════════ */

/* ── #5: Optical sizing — activate Fraunces opsz axis on all display text ── */
/* font-optical-sizing: auto tells the browser to use the font's built-in    */
/* optical size adjustments, giving large headings more refined letterforms.  */
h1, h2, h3, h4,
.hero-heading,
.psa-section-heading,
.destination-country,
.service-title,
.why-feature-text h4,
.testimonial-quote,
.cta-banner h2,
.ielts-strip h2,
.contact-info h2,
.page-hero h1,
.wp-block-post-title,
.wp-block-heading {
  font-optical-sizing: auto;
}

/* ── #9: Tabular numerals on all statistics ─────────────────────────────── */
/* Ensures even visual weight across digits — critical for trust figures.     */
.stat-number,
.stat-num,
.trust-item strong,
.hero-stat-bubble .stat-num,
.review-score,
.stats-bar .stat-number {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ── #1 supplemental: Red-dark for remaining on-light red text uses ────── */
/* Any red text on light (off-white / white) must use red-dark for AA pass. */
.destination-uni-count {
  /* red (#CE202B) on white = 3.7:1 — fine for large/bold text at this size  */
  color: var(--wp--preset--color--red);
  font-weight: 700;
}
.service-card .service-icon {
  /* icons are non-text: WCAG 1.4.11 applies (3:1). Darken red bg slightly.  */
  background: rgba(206,32,43,0.12);
}
/* Section labels on light backgrounds — already fixed above with red-dark.  */
/* hero-eyebrow is on dark navy — red (#CE202B) achieves 4.6:1, fine.       */

/* ── #2 supplemental: Muted token is now #4E5E70 (5.5:1 on off-white).      */
/* The CSS var picks this up automatically; add explicit overrides only where  */
/* a literal hex was used instead of the token.                               */
.author-info .author-detail { color: var(--wp--preset--color--muted); }
.form-note                  { color: var(--wp--preset--color--muted); }

/* ── #10: Section boundary rhythm — deliberate transitions between sections ─ */

/* Red accent rule at the top of the stats bar separates hero from proof row */
.stats-bar {
  border-top: 4px solid var(--wp--preset--color--red);
}

/* Hairline border between light-bg sections so abrupt white↔off-white cuts   */
/* feel intentional rather than accidental.                                   */
.services-section,
.testimonials-section,
.contact-section {
  border-top: 1px solid rgba(20,40,75,0.07);
}

/* Bottom shadow on destinations section to ease into dark why-us section */
.destinations-section {
  box-shadow: inset 0 -32px 40px -20px rgba(20,40,75,0.05);
}

/* Soft inner glow at the bottom of navy sections (why-us, footer) so the    */
/* transition to the next light section doesn't read as a hard clip.          */
.why-us-section {
  box-shadow: 0 8px 40px rgba(20,40,75,0.25);
}

/* ── #8 supplemental: Body text size is now md (1.125rem) via theme.json.   */
/* Adjust a few small-text elements that were calibrated to 1rem base:        */
.service-desc   { font-size: 0.9375rem; } /* keep service cards compact */
.footer-col p   { font-size: 0.9375rem; } /* footer prose — keep tight  */
.form-group input,
.form-group select,
.form-group textarea { font-size: 1rem; } /* forms stay at 1rem         */

/* ── #7: Coral usage guard — utility class exists but is intentionally rare  */
/* Do NOT use .text-coral or has-coral-color on large blocks or headings.     */
/* Reserve only for icon accents ≤ 24px or decorative SVG strokes.           */
.text-coral { color: #E07A5F; } /* intentionally not a CSS variable — forces  */
                                /* a conscious choice rather than palette pick  */

/* ══════════════════════════════════════════════════════════════════════════
   MODERN EXECUTION — SITE-WIDE (bento, scroll reveals, hover motion)
   Brand colours unchanged (navy #14284B, red #CE202B, red #CE202B).
   Applied globally on 2026-06-14 (was home-only preview). Bento affects the
   destinations/services patterns (home); reveals/hover apply across the site.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Display font — REVERTED to Fraunces (2026-06-14) ─────────────────── */
/* The display-font swap to Bricolage Grotesque was reverted. Headings now use
   the original Fraunces (serif) via theme.json globally; Hanken Grotesk stays
   for body. No override here — the home page inherits the standard heading
   typography. The hero highlight word's colour is set in the colour-rebalance
   block below (red on the white hero). */

/* ── 2. Cooler near-white background (was warm cream #F8F6F1) ─────────────── */
body { background-color: #F3F5F8; }
.destinations-section,
.testimonials-section,
.psa-section--off { background-color: #F3F5F8; }
/* white sections stay crisp white; cards stay pure white for contrast */

/* ── 3. Scroll-driven reveal (no JS), respecting reduced motion ──────────── */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .stats-bar,
    .why-us-section,
    .testimonials-section,
    .ielts-strip,
    .cta-banner,
    .destinations-section .psa-section-heading,
    .services-section .psa-section-heading {
      animation: psa-reveal both linear;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    /* Bento items reveal individually as each row scrolls in */
    .destination-card,
    .service-card {
      animation: psa-reveal both linear;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
@keyframes psa-reveal {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 4. Bento grids ──────────────────────────────────────────────────────── */

/* Destinations: 4-col bento — UK feature (2×2), Australia & Europe wide */
.destinations-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}
.destinations-grid .destination-card { height: 100%; }
.destination-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.destination-card:nth-child(4) { grid-column: span 2; }
.destination-card:nth-child(7) { grid-column: span 2; }
/* Let the visual fill the cell; body anchors to the bottom */
.destination-card .destination-flag-placeholder {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 132px;
  font-size: 3.25rem;
}
.destination-card:nth-child(1) .destination-flag-placeholder { font-size: 4.5rem; }
.destination-card:nth-child(1) .destination-country { font-size: 1.5rem; }

/* Services: 3-col equal grid for 5 cards */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card { height: 100%; display: flex; flex-direction: column; }

@media (max-width: 800px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .destination-card:nth-child(4),
  .destination-card:nth-child(7) { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .destinations-grid,
  .services-grid { grid-template-columns: 1fr; }
  .destination-card:nth-child(n) { grid-column: span 1; }
}

/* ── 5. Premium hover micro-interactions ─────────────────────────────────── */
.btn {
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red:hover  { box-shadow: 0 10px 26px rgba(20,40,75,.30); }
.btn-orange:hover  { box-shadow: 0 10px 26px rgba(242,146,46,.40); }
.btn-navy:hover  { box-shadow: 0 10px 26px rgba(20,40,75,.28); }
.hero-actions .btn-red svg { transition: transform .22s cubic-bezier(.2,.7,.3,1); }
.hero-actions .btn-red:hover svg { transform: translateX(3px); }

.destination-card,
.service-card {
  transition: transform .32s cubic-bezier(.2,.7,.3,1), box-shadow .32s ease, border-color .25s ease;
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(20,40,75,.16);
}
.destination-card .destination-flag-placeholder { transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.destination-card:hover .destination-flag-placeholder { transform: scale(1.06); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(20,40,75,.12);
  border-color: rgba(20,40,75,0.20);
}
.service-card .service-icon { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); }

/* ══════════════════════════════════════════════════════════════════════════
   COLOUR REBALANCE — WHITE-DOMINANT, SITE-WIDE (applied 2026-06-14)
   Navy kept ONLY for header, footer, and the closing CTA band (+ interior
   page heroes are light, see .page-hero). All other navy sections are white /
   barely-there cool tint with navy headings, near-black body, red + red as
   accents. WCAG AA throughout.
   ══════════════════════════════════════════════════════════════════════════ */

/* Section background rhythm: white ↔ faint cool tint, hairline dividers */
.hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F5F8 100%);
}
.hero-section::before { opacity: 0.16; }
.stats-bar {
  background: #FFFFFF;
  border-top: 3px solid var(--wp--preset--color--red);
  border-bottom: 1px solid rgba(20,40,75,0.08);
}
.destinations-section { background: #F3F5F8; border-top: 1px solid rgba(20,40,75,0.06); }
.services-section     { background: #FFFFFF; border-top: 1px solid rgba(20,40,75,0.06); }
.why-us-section       { background: #FFFFFF; border-top: 1px solid rgba(20,40,75,0.06); box-shadow: none; }
.testimonials-section { background: #F3F5F8; border-top: 1px solid rgba(20,40,75,0.06); }
.ielts-strip {
  background: var(--wp--preset--color--red-tint);
  border-top: 1px solid rgba(206,32,43,0.18);
  border-bottom: 1px solid rgba(206,32,43,0.18);
}
/* .cta-banner stays navy — the single feature band. No override. */
/* Primary button on dark navy banner: white fill + navy text (navy-on-navy invisible) */
.cta-banner .btn-red {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.cta-banner .btn-red:hover {
  background: #EAEFF6;
  color: var(--wp--preset--color--navy);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ── Hero on light ──────────────────────────────────────────────────────── */
.hero-eyebrow {
  color: var(--wp--preset--color--red-strong);
  background: rgba(206,32,43,0.12);
  border-color: rgba(206,32,43,0.35);
}
.hero-heading      { color: var(--wp--preset--color--navy); }
.hero-heading em   { color: var(--wp--preset--color--red); }   /* AA: large text 3:1 */
.hero-subheading   { color: #2A2A2A; }
.trust-strip       { border-top-color: rgba(20,40,75,0.12); }
.trust-item        { color: #2A2A2A; }
.trust-item strong { color: var(--wp--preset--color--navy); }
.hero-stat-bubble  { border: 1px solid rgba(20,40,75,0.08); }
/* Hero secondary CTA → red border + navy text (outline button on light hero) */
.hero-actions .btn-outline-white {
  color: var(--wp--preset--color--navy);
  border-color: var(--wp--preset--color--red);
  background: transparent;
}
.hero-actions .btn-outline-white:hover {
  background: rgba(206,32,43,0.05);
  border-color: var(--wp--preset--color--red-strong);
  color: var(--wp--preset--color--navy);
}

/* ── Stats bar on white ─────────────────────────────────────────────────── */
.stat-number     { color: var(--wp--preset--color--navy); }
.stat-label-text { color: #4E5E70; }
.stat-item       { border-right-color: rgba(20,40,75,0.12); }
@media (max-width: 700px) {
  .stat-item:nth-child(3) { border-right-color: rgba(20,40,75,0.12); }
}

/* ── Why-us on white ────────────────────────────────────────────────────── */
.why-us-section .psa-section-heading,
.why-us-section .psa-section-heading--white { color: var(--wp--preset--color--navy); }
.why-us-section .psa-section-sub--white      { color: #4E5E70; }
.why-feature-icon   { background: rgba(20,40,75,0.08); color: var(--wp--preset--color--navy); }
.why-feature-text h4 { color: var(--wp--preset--color--navy); }
.why-feature-text p  { color: #4E5E70; }
.why-us-card {
  background: var(--wp--preset--color--red-tint);
  border: 1px solid rgba(206,32,43,0.25);
  backdrop-filter: none;
}
.review-score  { color: var(--wp--preset--color--navy); }
.review-label  { color: #4E5E70; }
.why-us-quote  { color: #1A1A1A; border-left-color: var(--wp--preset--color--red); }
.why-us-cite   { color: var(--wp--preset--color--red-strong); }

/* ── IELTS strip on light red tint ─────────────────────────────────────── */
.ielts-badge {
  color: var(--wp--preset--color--navy);
  background: #FFFFFF;
  border-color: rgba(206,32,43,0.40);
}
.ielts-strip h2 { color: var(--wp--preset--color--navy); }
.ielts-strip p  { color: #2A2A2A; }
.ielts-accred-badge {
  color: var(--wp--preset--color--navy);
  background: #FFFFFF;
  border-color: rgba(206,32,43,0.40);
}

/* ══════════════════════════════════════════════════════════════════════════
   MODERN POLISH v2 — SITE-WIDE (applied 2026-06-14) + How-It-Works rail
   Light-gradient hero (red/red glow) + dark-gradient CTA band, white body.
   Brand colours unchanged. Display font: Sora for headings site-wide; Hanken
   Grotesk stays for body. Interior .page-hero shares the light-glow treatment.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Display font: Sora on headings, confident + large ───────────────────── */
h1, h2, h3, h4,
.hero-heading,
.psa-section-heading,
.destination-country,
.service-title,
.why-feature-text h4,
.cta-banner h2,
.ielts-strip h2 {
  font-family: var(--wp--preset--font-family--sora);
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}
.hero-heading {
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.psa-section-heading {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
}

/* ── Light gradient hero: cool near-white base with subtle orange glow ─────── */
.hero-section {
  background:
    radial-gradient(60% 64% at 97% 95%, rgba(242,146,46,0.22), transparent 64%),
    linear-gradient(155deg, #FFFFFF 0%, #EAEFF6 100%);
}
.hero-heading      { color: var(--wp--preset--color--navy); }
.hero-heading em   { color: var(--wp--preset--color--red); }   /* AA: large text on light */
.hero-subheading   { color: #2A2A2A; }
.hero-stat-bubble  { border: 1px solid rgba(20,40,75,0.08); }
/* glassy pill eyebrow on light */
.hero-eyebrow {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(20,40,75,0.12);
  color: var(--wp--preset--color--red-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* secondary CTA: red border + navy text (outline button on light hero) */
.hero-actions .btn-outline-white {
  color: var(--wp--preset--color--navy);
  border-color: var(--wp--preset--color--red);
  background: transparent;
}
.hero-actions .btn-outline-white:hover {
  background: rgba(206,32,43,0.05);
  border-color: var(--wp--preset--color--red-strong);
  color: var(--wp--preset--color--navy);
}

/* ── CTA banner: navy gradient + single orange glow ─────────────────────────── */
.cta-banner {
  background:
    radial-gradient(55% 70% at 92% 94%, rgba(242,146,46,0.22), transparent 60%),
    linear-gradient(155deg, #1C3A66 0%, #14284B 45%, #0A1526 100%);
}

/* ── Large rounded feature cards + coloured icon tiles ───────────────────── */
.service-card {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(20,40,75,0.06);
  box-shadow: 0 6px 28px rgba(20,40,75,0.07);
  background: #FFFFFF;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20,40,75,0.12), rgba(20,40,75,0.05));
  color: var(--wp--preset--color--navy);
  margin-bottom: 1.5rem;
}
.service-card:hover {
  box-shadow: 0 22px 48px rgba(20,40,75,0.13);
}
.destination-card { border-radius: 20px; }
.destination-body { padding: 1.5rem 1.75rem 1.75rem; }

/* ── Glassy pill badges ──────────────────────────────────────────────────── */
.ielts-badge,
.ielts-accred-badge {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(206,32,43,0.30);
  color: var(--wp--preset--color--navy);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Primary buttons: clean solid navy; orange gets gradient + sparkle ──── */
.btn-red {
  background: var(--wp--preset--color--navy);
}
.btn-orange {
  background: linear-gradient(135deg, #F5A24A 0%, #F2922E 100%);
}
.btn-orange::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: none;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 7.2L22 12l-7.6 2.4L12 22l-2.4-7.6L2 12l7.6-2.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 7.2L22 12l-7.6 2.4L12 22l-2.4-7.6L2 12l7.6-2.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-right: 0.15rem;
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS RAIL — numbered 01–06 with connecting line
   Global component (used on the About page's 6-step <ol class="hiw-rail">).
   ══════════════════════════════════════════════════════════════════════════ */
.hiw-rail {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto;
  counter-reset: step;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  /* break out of the 720px content column, stay viewport-centred.
     WP FSE constrained layout injects margin-left:auto!important + max-width:720px
     on direct children, so we must counter both explicitly. */
  width: min(1200px, 96vw);
  max-width: none;
  margin-left: 50% !important;
  transform: translateX(-50%);
}
/* connecting line behind the number badges */
.hiw-rail::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--wp--preset--color--navy), var(--wp--preset--color--navy-light));
  opacity: 0.20;
  z-index: 0;
}
.hiw-rail li {
  counter-increment: step;
  position: relative;
  z-index: 1;
  padding-top: 4.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4E5E70;
}
.hiw-rail li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(206,32,43,0.35);
  box-shadow: 0 4px 14px rgba(20,40,75,0.10);
  font-family: var(--wp--preset--font-family--sora);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--wp--preset--color--navy);
}
.hiw-rail li strong { color: var(--wp--preset--color--navy); }

@media (max-width: 900px) {
  .hiw-rail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 560px;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none;
  }
  .hiw-rail::before {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--wp--preset--color--navy), var(--wp--preset--color--navy-light));
  }
  .hiw-rail li { padding-top: 0; padding-left: 4.5rem; min-height: 54px; display: flex; flex-direction: column; justify-content: center; }
  .hiw-rail { padding-inline: clamp(1rem, 4vw, 2.5rem); }
}

/* ── Accreditation logo row (About page "Accredited where it matters") ───── */
.accred-logo-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.75rem 0 1rem;
}
.accred-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(20,40,75,0.10);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(20,40,75,0.06);
  padding: 1.125rem 1.75rem;
  min-width: 148px;
  min-height: 88px;
}
.accred-logo-tile img {
  display: block;
  max-height: 52px;
  max-width: 168px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .accred-logo-tile {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   BOOKING / CONTACT HUB + floating WhatsApp button
   ══════════════════════════════════════════════════════════════════════════ */

/* Contact hub layout (priority stack) */
.contact-hub { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-route--primary { text-align: center; }

/* PRIMARY — large navy WhatsApp CTA */
.wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  padding: 1.15rem 2rem;
  font-family: var(--wp--preset--font-family--hanken);
  font-size: 1.175rem;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--navy);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(20,40,75,0.28);
  transition: transform 0.2s cubic-bezier(.2,.7,.3,1), box-shadow 0.2s ease;
}
.wa-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,40,75,0.38); color: var(--wp--preset--color--white); }
.wa-cta svg { flex: none; }
.wa-note { margin: 0.875rem 0 0; font-size: 0.9rem; color: #4E5E70; }

/* SECONDARY — external iframe form */
.contact-iframe-wrapper {
  background: #fff;
  border: 1px solid rgba(20,40,75,0.07);
  border-radius: 16px;
  overflow: hidden;
}
.contact-enquiry-iframe {
  border: none;
  width: 100%;
  display: block;
  min-height: 900px;
}
@media (max-width: 680px) {
  .contact-enquiry-iframe { min-height: 1100px; }
}

/* SECONDARY — form states (kept for legacy; form removed) */
.form-banner {
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}
.form-banner--ok  { background: rgba(20,40,75,0.06); color: #14284B; border: 1px solid rgba(20,40,75,0.25); }
.form-banner--err { background: rgba(224,122,95,0.12); color: #9a3b22; border: 1px solid rgba(224,122,95,0.45); }
.req { color: #A8161E; }
.form-consent label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 500; font-size: 0.9rem; color: var(--wp--preset--color--body-text); cursor: pointer; }
.form-consent input[type="checkbox"] { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--wp--preset--color--red); flex: none; }
.form-minor { font-size: 0.8125rem; color: #4E5E70; margin: 0.75rem 0 1.25rem; }
/* Honeypot — visually hidden but present for bots */
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* TERTIARY — call / email / visit / hours */
.contact-route--tertiary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(20,40,75,0.08);
  padding-top: 2rem;
}
.contact-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.1rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(20,40,75,0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
a.contact-mini:hover { border-color: var(--wp--preset--color--red); box-shadow: 0 6px 18px rgba(20,40,75,0.08); }
.contact-mini-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp--preset--color--red-strong);
}
.contact-mini-value { font-size: 0.95rem; color: var(--wp--preset--color--navy); font-weight: 600; line-height: 1.4; }
.contact-mini-directions { font-size: 0.8rem; font-weight: 600; color: var(--wp--preset--color--red); margin-top: 0.5rem; }

@media (max-width: 760px) {
  .contact-route--tertiary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-route--tertiary { grid-template-columns: 1fr; }
}

/* ── Floating WhatsApp button (site-wide, bottom-right) ──────────────────── */
.psa-wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wp--preset--color--navy);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(20,40,75,0.38), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s cubic-bezier(.2,.7,.3,1), box-shadow 0.2s ease;
}
.psa-wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(20,40,75,0.5); color: #FFFFFF; }
.psa-wa-float:focus-visible { outline: 3px solid var(--wp--preset--color--red); outline-offset: 3px; }
@media (max-width: 600px) {
  .psa-wa-float { width: 52px; height: 52px; }
}

/* ══════════════════════════════════════════════════════════════
   NEW SECTIONS (copy v2 — 2026-06)
   ══════════════════════════════════════════════════════════════ */

/* ── The Prime Path ─────────────────────────────────────────── */
.prime-path-section {
  background: var(--wp--preset--color--off-white);
  padding: clamp(4rem,8vw,7rem) 0;
  border-top: 1px solid rgba(20,40,75,0.06);
  border-bottom: 1px solid rgba(20,40,75,0.06);
}
.prime-path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .prime-path-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prime-path-steps { grid-template-columns: 1fr; gap: 1.5rem; }
}
.pp-step {
  background: var(--wp--preset--color--white);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(20,40,75,0.08);
  box-shadow: 0 2px 12px rgba(20,40,75,0.05);
  display: flex;
  gap: 1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pp-step:hover {
  box-shadow: 0 6px 24px rgba(20,40,75,0.10);
  transform: translateY(-2px);
}
.pp-step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wp--preset--color--red);
  line-height: 1;
  min-width: 2.5rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
}
.pp-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin: 0 0 0.4rem;
}
.pp-step-body p {
  font-size: 0.9375rem;
  color: var(--wp--preset--color--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Dedication ─────────────────────────────────────────────── */
.dedication-section {
  background: var(--wp--preset--color--navy);
  padding: clamp(4rem,8vw,7rem) 0;
  position: relative;
  overflow: hidden;
}
.dedication-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(242,146,46,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.dedication-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.dedication-inner h2 {
  font-size: clamp(2rem,4vw,2.75rem);
  font-weight: 800;
  color: var(--wp--preset--color--white);
  margin-bottom: 1.25rem;
}
.dedication-inner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.dedication-section .btn-red {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.dedication-section .btn-red:hover {
  background: #EAEFF6;
  color: var(--wp--preset--color--navy);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ── Results ────────────────────────────────────────────────── */
.results-section {
  background: var(--wp--preset--color--white);
  padding: clamp(4rem,8vw,7rem) 0;
  border-top: 1px solid rgba(20,40,75,0.06);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; }
}
.results-card {
  background: var(--wp--preset--color--off-white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(20,40,75,0.08);
}
.results-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.results-card-title svg { color: var(--wp--preset--color--red); flex-shrink: 0; }
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.results-list li {
  font-size: 0.9375rem;
  color: var(--wp--preset--color--body-text);
  line-height: 1.5;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(206,32,43,0.25);
}
.results-list li strong { color: var(--wp--preset--color--navy); }
.results-disclaimer {
  font-size: 0.8125rem;
  color: var(--wp--preset--color--muted);
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
}

/* ── Founder ─────────────────────────────────────────────────── */
.founder-section {
  background: var(--wp--preset--color--off-white);
  padding: clamp(4rem,8vw,7rem) 0;
  border-top: 1px solid rgba(20,40,75,0.06);
  border-bottom: 1px solid rgba(20,40,75,0.06);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 4rem;
  align-items: center;
}
@media (max-width: 760px) {
  .founder-inner { grid-template-columns: 1fr; }
  .founder-visual { order: -1; }
}
.founder-text .psa-section-heading { margin-bottom: 1.25rem; }
.founder-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #2A2A2A;
  margin-bottom: 1.75rem;
}
.founder-card {
  background: var(--wp--preset--color--white);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(20,40,75,0.10);
  box-shadow: 0 4px 24px rgba(20,40,75,0.08);
  min-width: 220px;
}
.founder-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wp--preset--color--navy) 0%, #1E3A6E 100%);
  color: var(--wp--preset--color--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.founder-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy);
  margin-bottom: 0.25rem;
}
.founder-card-title {
  font-size: 0.875rem;
  color: var(--wp--preset--color--muted);
  margin-bottom: 1rem;
}
.founder-card-creds { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }

/* ── Destinations Teaser ─────────────────────────────────────── */
.destinations-teaser-section {
  background: var(--wp--preset--color--white);
  padding: clamp(4rem,8vw,7rem) 0;
  text-align: center;
  border-top: 1px solid rgba(20,40,75,0.06);
}
.dest-teaser-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin: 2rem 0 2.25rem;
}
.dest-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--wp--preset--color--off-white);
  border: 1px solid rgba(20,40,75,0.12);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wp--preset--color--navy);
}

/* ── Page inline CTA ─────────────────────────────────────────── */
.page-inline-cta {
  background: var(--wp--preset--color--off-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin: 3rem 0 0;
  border: 1px solid rgba(20,40,75,0.08);
  text-align: center;
}
.page-inline-cta h2 {
  font-size: clamp(1.375rem,3vw,1.75rem);
  font-weight: 800;
  color: var(--wp--preset--color--navy);
  margin-bottom: 0.75rem;
}
.page-inline-cta p {
  color: var(--wp--preset--color--muted);
  margin-bottom: 1.5rem;
}

/* ── Map wrapper ─────────────────────────────────────────────── */
.psa-map-wrap {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,40,75,0.10);
}
.psa-map-wrap iframe { display: block; }
