﻿/* ============================================================
   HARVEST IB â€” EDITORIAL LANDING PAGE
   New layout system. Brand tokens match the school identity:
   pine blue / ink / signal red / cream, Poppins + Lora.
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --ink: #363635;
  --pine: #2CA3B7;
  --pine-2: #2CA4DD;
  --pine-deep: #1F7A8C;
  --sage: #6f8b9a;
  --cream: #EBF5FB;
  --paper: #FFFFFF;
  --gold: #BA2625;
  --gold-2: #E4A0A3;
  --line: rgba(54, 54, 53, .14);
  --shadow: 0 30px 70px -30px rgba(54, 54, 53, .5);
  --shadow-sm: 0 14px 40px -18px rgba(54, 54, 53, .35);
  --r: 18px;
  --r-lg: 28px;
  --anchor-offset: 76px;
}

html {
  scroll-behavior: smooth
}

#enquire,
#form-midpage,
#form-footer {
  scroll-margin-top: var(--anchor-offset)
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em
}

::selection {
  background: var(--gold);
  color: #fff
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px
}

/* ---- Editorial kicker (eyebrow) ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold)
}

.kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold)
}

.kicker.on-dark {
  color: var(--gold-2)
}

.kicker.on-dark::before {
  background: var(--gold-2)
}

.section {
  padding: 96px 0;
  position: relative
}

.lead {
  font-size: 17px;
  color: #4A4A48;
  max-width: 620px
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap
}

.btn svg {
  width: 17px;
  height: 17px
}

.btn-gold {
  background: var(--gold);
  color: #fff
}

.btn-gold:hover {
  background: #941E1E;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(184, 39, 44, .6)
}

.btn-ink {
  background: var(--ink);
  color: #fff
}

.btn-ink:hover {
  background: #242423;
  transform: translateY(-2px)
}

.btn-outline {
  border-color: rgba(54, 54, 53, .35);
  color: var(--ink)
}

.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(54, 54, 53, .05)
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: #fff
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1)
}

/* ---- Scroll reveal (used by js/script.js) ----
   Gated on html.js so content is never hidden if JS fails to load. */
.js .ru {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

.js .ru.show {
  opacity: 1;
  transform: none
}

.ru-d1 { transition-delay: .1s }
.ru-d2 { transition-delay: .2s }
.ru-d3 { transition-delay: .3s }
.ru-d4 { transition-delay: .4s }
.ru-d5 { transition-delay: .5s }

/* ============================================================
   HEADER â€” sticky, white, logo + phone + CTA
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0
}

.topbar img {
  height: 44px;
  width: auto
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px
}

.topbar-phone svg {
  width: 16px;
  height: 16px;
  color: var(--pine)
}

.topbar .btn {
  padding: 11px 22px;
  font-size: 14px
}

/* ============================================================
   HERO â€” split editorial: headline left, form right on blue panel
   ============================================================ */
.hero {
  position: relative;
  padding: 72px 0 110px;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
  overflow: hidden
}

.hero::before {
  /* offset blue panel anchoring the form column */
  content: "";
  position: absolute;
  top: -80px;
  right: -140px;
  width: 46vw;
  height: 130%;
  background: linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  border-radius: 60px;
  transform: rotate(6deg);
  z-index: 0
}

.hero::after {
  /* thin red accent rule */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0 220px, var(--pine-2) 220px 100%);
  z-index: 2
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 56px;
  align-items: center
}

.ib-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 9px 20px 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm)
}

.ib-badge .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 13px
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  margin: 26px 0 22px
}

.hero h1 em {
  font-style: italic;
  color: var(--pine)
}

.hero h1 .accent {
  position: relative;
  white-space: nowrap
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: rgba(184, 39, 44, .18);
  z-index: -1
}

.hero-sub {
  font-size: 17.5px;
  color: #4A4A48;
  max-width: 560px
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 560px
}

.hero-stats>div {
  flex: 1;
  padding-right: 18px
}

.hero-stats>div+div {
  border-left: 1px solid var(--line);
  padding-left: 18px
}

.hero-stats .num {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--pine-deep)
}

.hero-stats .lbl {
  font-size: 12.5px;
  color: var(--sage);
  margin-top: 3px;
  line-height: 1.35
}

/* ---- Hero form card ---- */
.form-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 34px 30px 30px;
  position: relative
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--gold)
}

.form-card h3 {
  font-size: 25px;
  margin-top: 12px
}

.form-card>p {
  font-size: 13.5px;
  color: var(--sage);
  margin-top: 6px
}

.quick-form {
  display: grid;
  gap: 12px;
  margin-top: 20px
}

.quick-form input,
.quick-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: 'Poppins';
  font-size: 15px;
  color: var(--ink);
  background: #FBFDFE;
  outline: none;
  transition: .2s;
  appearance: none
}

.quick-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px
}

.quick-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: .55;
  cursor: pointer
}

.quick-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314212b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px
}

.quick-form input:focus,
.quick-form select:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(42, 123, 173, .14)
}

.quick-form .btn {
  width: 100%;
  margin-top: 4px
}

.qf-status {
  font-size: 13.5px;
  min-height: 18px;
  text-align: center
}

.qf-status.qf-error {
  color: var(--gold);
  font-weight: 600
}

.qf-status.qf-sending {
  color: var(--pine)
}

/* ============================================================
   CREDENTIAL STRIP â€” dark band with IB pillars
   ============================================================ */
.cred {
  background: var(--ink);
  color: #fff;
  padding: 0
}

.cred-in {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cred-item {
  padding: 34px 30px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.cred-item:first-child {
  border-left: none
}

.cred-mark {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(44, 163, 183, .18);
  border: 1px solid rgba(44, 163, 183, .5);
  color: var(--pine-2);
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center
}

.cred-item h4 {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0
}

.cred-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  margin-top: 4px;
  line-height: 1.5
}

/* ============================================================
   DIFFERENCE â€” asymmetric bento grid
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px
}

.b-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(54, 54, 53, .05);
  transition: .3s
}

.b-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.b-card h4 {
  font-size: 20px;
  margin-bottom: 8px
}

.b-card p {
  font-size: 14px;
  color: #565654
}

.b-ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--cream);
  color: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.b-ic svg {
  width: 22px;
  height: 22px
}

.b-wide {
  grid-column: span 2
}

.b-tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column
}

.b-tall p {
  font-size: 15px
}

.b-img {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 300px
}

.b-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.b-img .cap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(54, 54, 53, .82);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px
}

/* ============================================================
   PROGRAMMES â€” alternating full-width rows
   ============================================================ */
.prog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0
}

.prog-row+.prog-row {
  border-top: 1px solid var(--line)
}

.prog-media {
  position: relative
}

.prog-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%
}

.prog-media .tag {
  position: absolute;
  top: -18px;
  left: -14px;
  background: var(--gold);
  color: #fff;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm)
}

.prog-row.flip .prog-media {
  order: 2
}

.prog-row.flip .prog-media .tag {
  left: auto;
  right: -14px
}

.prog-body h3 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 14px 0 16px
}

.prog-body .ages {
  display: inline-block;
  background: var(--cream);
  color: var(--pine-deep);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 6px
}

.prog-body ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 11px
}

.prog-body li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: #3F3F3E
}

.prog-body li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--pine);
  margin-top: 3px
}

.prog-dark {
  background: linear-gradient(150deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw)
}

.prog-dark .prog-row {
  border-top: none
}

.prog-dark .prog-body .ages {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.prog-dark .prog-body li {
  color: rgba(255, 255, 255, .88)
}

.prog-dark .prog-body li svg {
  color: var(--gold-2)
}

/* ============================================================
   WHY HARVEST â€” editorial numbered chapters
   ============================================================ */
.why {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.why-head {
  max-width: 760px
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 56px;
  margin-top: 54px
}

.chapter {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line)
}

.chapter .no {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  flex: 0 0 64px
}

.chapter h3 {
  font-size: 21px;
  margin-bottom: 8px
}

.chapter p {
  font-size: 14.5px;
  color: #565654
}

/* ============================================================
   GALLERY â€” asymmetric mosaic
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 48px
}

.m-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative
}

.m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.m-item:hover img {
  transform: scale(1.06)
}

.m-item .cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(54, 54, 53, .8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px
}

.m-a {
  grid-column: span 2;
  grid-row: span 2
}

.m-b {
  grid-row: span 2
}

.m-c {
  grid-column: span 2
}

/* ============================================================
   ADMISSIONS â€” timeline + mid form
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
  counter-reset: step
}

.t-step {
  position: relative;
  padding-top: 30px
}

.t-step::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 34px;
  right: -22px;
  height: 2px;
  background: var(--line)
}

.t-step:last-child::before {
  display: none
}

.t-step .sn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 16px
}

.t-step h4 {
  font-size: 19px;
  margin-bottom: 6px
}

.t-step p {
  font-size: 14px;
  color: #565654
}

/* ============================================================
   TESTIMONIALS â€” offset two columns
   ============================================================ */
.tst-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px
}

.tst-col {
  display: grid;
  gap: 22px;
  align-content: start
}

.tst-col:nth-child(2) {
  margin-top: 46px
}

.tst {
  background: var(--paper);
  border-radius: var(--r);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(54, 54, 53, .05)
}

.tst .q {
  font-family: 'Lora', serif;
  font-size: 54px;
  line-height: .6;
  color: var(--gold);
  display: block;
  margin-bottom: 16px
}

.tst p {
  font-size: 15px;
  color: #3F3F3E
}

.tst .who {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pine-deep)
}

/* ============================================================
   LOCATION
   ============================================================ */
.loc {
  background: var(--paper);
  border-top: 1px solid var(--line)
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: center
}

.loc-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.loc-line svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--pine);
  margin-top: 3px
}

.loc-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block
}

/* ============================================================
   FAQ â€” clean accordion
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 44px auto 0
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 24px;
  margin-bottom: 12px;
  transition: .25s
}

.faq details[open] {
  border-color: var(--pine);
  box-shadow: var(--shadow-sm)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 15.5px;
  padding: 19px 0
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq .pm {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--pine)
}

.faq .pm::before,
.faq .pm::after {
  content: "";
  position: absolute;
  background: var(--pine);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq .pm::before {
  width: 10px;
  height: 1.8px
}

.faq .pm::after {
  width: 1.8px;
  height: 10px;
  transition: .2s
}

.faq details[open] .pm::after {
  transform: translate(-50%, -50%) scaleY(0)
}

.faq .ans {
  font-size: 14.5px;
  color: #565654;
  padding: 0 0 22px;
  max-width: 700px
}

/* ============================================================
   FINAL CTA â€” ink band, split with form
   ============================================================ */
.final {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(44, 163, 183, .35), transparent 60%),
    var(--ink);
  color: #fff
}

.final-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center
}

.final h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 16px
}

.final .lead {
  color: rgba(255, 255, 255, .8);
  margin-top: 16px
}

.final .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #2B2B2A;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  padding: 52px 0 110px
}

.foot img {
  height: 46px;
  margin: 0 auto 18px
}

.foot p {
  font-size: 13.5px;
  max-width: 560px;
  margin: 0 auto
}

.foot .fp {
  font-weight: 600;
  color: #fff;
  margin-top: 12px
}

/* ============================================================
   THANK-YOU OVERLAY
   ============================================================ */
.ty-overlay {
  position: fixed;
  inset: 0;
  background: rgba(54, 54, 53, .72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: .3s
}

.ty-overlay.show {
  opacity: 1;
  pointer-events: auto
}

.ty-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: 44px 34px 34px;
  position: relative;
  transform: translateY(16px);
  transition: .3s
}

.ty-overlay.show .ty-card {
  transform: none
}

.ty-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--sage)
}

.ty-check {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(42, 123, 173, .12);
  color: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.ty-check svg {
  width: 32px;
  height: 32px
}

.ty-card h3 {
  font-size: 28px
}

.ty-card>p {
  font-size: 14.5px;
  color: #565654;
  margin-top: 10px
}

.ty-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px
}

/* ============================================================
   DIFFERENCE â€” dark editorial split + image strip
   ============================================================ */
.diff {
  background:
    radial-gradient(1000px 520px at 8% -20%, rgba(44, 163, 183, .28), transparent 55%),
    var(--ink);
  color: #fff
}

.diff-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: start
}

.diff-head h2 {
  font-size: clamp(28px, 4vw, 44px)
}

.diff-head .lead {
  color: rgba(255, 255, 255, .78);
  margin-top: 16px
}

.diff-ctas {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px
}

.diff-quote {
  margin-top: 34px;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .05);
  border-radius: 0 var(--r) var(--r) 0
}

.diff-quote p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5
}

.diff-quote span {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55)
}

.diff-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.diff-item .no {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  color: var(--gold-2);
  flex: 0 0 52px
}

.diff-item h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px
}

.diff-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-top: 6px
}

.diff-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
  margin-top: 64px
}

.diff-strip .ds {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3
}

.diff-strip .ds img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.diff-strip .ds .cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(184, 39, 44, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px
}

/* ============================================================
   LEARNER PROFILE â€” attribute chips
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px
}

.p-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: .3s
}

.p-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--pine)
}

.p-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.p-card:hover .p-img img {
  transform: scale(1.06)
}

.p-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 14px 10px 16px
}

.p-card h4::before {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--pine);
  margin: 0 auto 10px
}

/* ============================================================
   WHY IB â€” comparison columns
   ============================================================ */
.compare {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px
}

.cmp-col {
  border-radius: var(--r-lg);
  padding: 36px 32px
}

.cmp-old {
  background: var(--cream);
  border: 1px solid var(--line)
}

.cmp-new {
  background: linear-gradient(150deg, var(--pine) 0%, var(--pine-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow)
}

.cmp-col h3 {
  font-size: 24px
}

.cmp-sub {
  font-size: 13.5px;
  color: var(--sage);
  margin: 6px 0 20px
}

.cmp-sub-light {
  color: rgba(255, 255, 255, .7)
}

.cmp-col ul {
  list-style: none;
  display: grid;
  gap: 13px
}

.cmp-col li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px
}

.cmp-old li {
  color: #565654
}

.cmp-new li {
  color: rgba(255, 255, 255, .92)
}

.cmp-col li svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px
}

.cmp-old li svg {
  color: var(--gold)
}

.cmp-new li svg {
  color: var(--gold-2)
}

/* ============================================================
   TRANSPORT
   ============================================================ */
.tp-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.tp-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%
}

.routes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}

.route {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pine-deep)
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.mobar {
  display: none
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
  .hero::before {
    display: none
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .bento {
    grid-template-columns: repeat(2, 1fr)
  }

  .b-img {
    grid-row: auto;
    min-height: 220px
  }

  .b-tall {
    grid-row: auto
  }

  .cred-in {
    grid-template-columns: 1fr
  }

  .cred-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  .cred-item:first-child {
    border-top: none
  }

  .prog-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0
  }

  .prog-row.flip .prog-media {
    order: 0
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .diff-strip {
    grid-template-columns: 1fr 1fr
  }

  .diff-strip .ds:first-child {
    grid-column: span 2
  }

  .profile-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .cmp-grid {
    grid-template-columns: 1fr
  }

  .tp-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .tst-wrap {
    grid-template-columns: 1fr
  }

  .tst-col:nth-child(2) {
    margin-top: 0
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px
  }

  .t-step::before {
    display: none
  }

  .final-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .loc-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

@media(max-width:640px) {
  .section {
    padding: 64px 0
  }

  .topbar img {
    height: 36px
  }

  .topbar-phone span {
    display: none
  }

  .topbar .btn {
    padding: 10px 16px;
    font-size: 13px
  }

  .hero {
    padding: 48px 0 84px
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px 0
  }

  .hero-stats>div {
    flex: 1 1 40%
  }

  .hero-stats>div:nth-child(3) {
    border-left: none;
    padding-left: 0
  }

  .form-card {
    padding: 28px 22px 24px
  }

  .bento {
    grid-template-columns: 1fr
  }

  .b-wide {
    grid-column: auto
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr
  }

  .diff-strip {
    grid-template-columns: 1fr
  }

  .diff-strip .ds:first-child {
    grid-column: auto
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px
  }

  .m-a {
    grid-column: span 2;
    grid-row: span 2
  }

  .m-b {
    grid-row: span 1
  }

  .timeline {
    grid-template-columns: 1fr
  }

  .prog-media .tag {
    top: auto;
    bottom: -14px;
    left: 16px
  }

  .prog-row.flip .prog-media .tag {
    right: auto
  }

  /* ---- Sticky mobile CTA bar ---- */
  .mobar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(54, 54, 53, .35)
  }

  .mobar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14.5px
  }

  .mobar a svg {
    width: 17px;
    height: 17px
  }

  .mobar .m-call {
    background: var(--pine)
  }

  .mobar .m-enq {
    background: var(--gold)
  }

  .foot {
    padding-bottom: 130px
  }
}
