/* ===========================================================
   SITE-WIDE — clean corporate design system
   Loaded on every page from includes/header.php. Scoped under
   the `.v2` body class; style.css still supplies the header,
   footer and anything not yet migrated.

   Direction: dark navy hero, light body below. Big pill
   buttons, flat bordered cards, generous section rhythm.
   =========================================================== */

.v2{
  --h-ink:#141B33;
  --h-ink-soft:#5A607E;
  --h-line:rgba(20,27,51,0.14);
  --h-surface:#FFFFFF;
  --h-surface-alt:#F7F3E9;
  --h-radius:16px;
  --h-pad:clamp(56px, 7vw, 88px);
  background:var(--h-surface);
}
.v2 main{background:var(--h-surface);}
/* NB: no `.v2 .wrap` width/padding rule here on purpose — it outranks
   `.topbar .wrap` and `nav.wrap` in style.css and would flatten the header's
   vertical padding. Width and gutter come from `.wrap` in style.css. */

/* ---- shared section furniture ---------------------------- */
.v2 .v-sec{padding:var(--h-pad) 0;}

/* Anchor targets stop short of the sticky nav. Without this, jumping to
   #uk or to #form after a submit puts the heading underneath the pill. */
.v2 section[id],
.v2 .v-dest[id]{scroll-margin-top:124px;}
@media (max-width:1080px){
  .v2 section[id],
  .v2 .v-dest[id]{scroll-margin-top:104px;}
}
.v2 .v-sec.alt{background:var(--h-surface-alt);}
.v2 .v-sec.navy{background:var(--navy); color:var(--paper);}

.v2 .v-head{max-width:760px; margin-bottom:44px;}
.v2 .v-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.v2 .v-head h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(29px, 3.4vw, 42px); line-height:1.14; letter-spacing:-0.02em;
  color:var(--h-ink); margin:0 0 16px;
}
.v2 .v-sec.navy .v-head h2{color:var(--paper);}
.v2 .v-head p{font-size:17px; line-height:1.65; color:var(--h-ink-soft); margin:0;}
.v2 .v-sec.navy .v-head p{color:rgba(247,243,233,0.72);}
/* the small amber rule under a heading — IDP's one flourish, worth keeping */
.v2 .v-eyebrow{
  display:block; font-size:12.5px; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--amber-dim); margin-bottom:14px;
}
.v2 .v-sec.navy .v-eyebrow{color:var(--amber);}
.v2 .v-eyebrow::after{
  content:""; display:block; width:34px; height:3px; border-radius:2px;
  background:var(--amber); margin-top:12px;
}
.v2 .v-head.center .v-eyebrow::after{margin-left:auto; margin-right:auto;}

/* ---- buttons: big confident pills ------------------------ */
.v2 .v-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--body); font-size:16.5px; font-weight:700; letter-spacing:0.01em;
  text-transform:none; padding:15px 32px; min-height:52px;
  border-radius:999px; border:2px solid transparent; cursor:pointer; white-space:nowrap;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.v2 .v-btn-primary{background:var(--amber); color:var(--navy); border-color:var(--amber);}
.v2 .v-btn-primary:hover{background:#FFC163; border-color:#FFC163; transform:translateY(-2px);}
.v2 .v-btn-dark{background:var(--navy); color:var(--paper); border-color:var(--navy);}
.v2 .v-btn-dark:hover{background:#1B2550; border-color:#1B2550; transform:translateY(-2px);}
.v2 .v-btn-outline{background:transparent; color:var(--h-ink); border-color:var(--h-line);}
.v2 .v-btn-outline:hover{border-color:var(--navy); background:rgba(20,27,51,0.04); transform:translateY(-2px);}
.v2 .v-sec.navy .v-btn-outline,
.v2 .hero-v2 .v-btn-outline{color:var(--paper); border-color:rgba(247,243,233,0.4);}
.v2 .v-sec.navy .v-btn-outline:hover,
.v2 .hero-v2 .v-btn-outline:hover{border-color:var(--paper); background:rgba(247,243,233,0.1);}
.v2 .v-link{
  display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:15px;
  color:var(--navy); transition:gap .2s ease, color .2s ease;
}
.v2 .v-link:hover{gap:12px; color:var(--amber-dim);}

/* ---- cards: flat, bordered, 16px — no drop shadows -------- */
.v2 .v-card{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); overflow:hidden;
  display:flex; flex-direction:column;
  transition:border-color .22s ease, transform .22s ease;
}
.v2 .v-card:hover{border-color:var(--navy); transform:translateY(-4px);}
.v2 .v-card-body{padding:26px 28px 28px;}
.v2 .v-card h3{
  font-family:var(--display); font-size:20px; font-weight:700;
  color:var(--h-ink); margin:0 0 10px; letter-spacing:-0.01em;
}
.v2 .v-card p{font-size:15px; line-height:1.62; color:var(--h-ink-soft); margin:0 0 18px;}
.v2 .v-card-media{position:relative; background:var(--h-surface-alt);}
.v2 .v-card-media img{display:block; width:100%; height:100%; object-fit:cover;}
.v2 .v-card-media.r43{aspect-ratio:4/3;}
.v2 .v-card-media.r45{aspect-ratio:4/5;}
.v2 .v-card-media.r169{aspect-ratio:16/9;}
.v2 .v-tag{
  position:absolute; top:14px; left:14px; background:var(--navy); color:var(--paper);
  font-size:11.5px; font-weight:700; letter-spacing:0.09em; text-transform:uppercase;
  padding:7px 13px; border-radius:999px;
}

/* ---- HERO (dark) ----------------------------------------- */
.v2 .hero-v2{
  /* Vertical, not diagonal, and every layer fades out before it reaches the
     top edge. The header above is flat #0B1330, so anything that tints the
     hero's top row — a diagonal gradient, or a glow bleeding down from above —
     shows up as a hard crease along the header's bottom edge. */
  background:
    radial-gradient(90% 65% at 78% 62%, rgba(34,47,102,0.55), transparent 68%),
    linear-gradient(180deg, #0B1330 0%, #0B1330 12%, #141D45 62%, #101838 100%);
  color:var(--paper); padding:clamp(56px, 7vw, 92px) 0 0; position:relative; overflow:hidden;
}
.v2 .hero-v2::after{ /* amber wash, kept clear of the top edge */
  content:""; position:absolute; right:-10%; top:8%; width:58%; aspect-ratio:1;
  background:radial-gradient(circle, rgba(242,169,59,0.16), transparent 66%);
  pointer-events:none;
}
.v2 .hero-inner{
  display:grid; grid-template-columns:1.08fr 0.92fr; gap:56px; align-items:center;
  position:relative; z-index:1;
}
.v2 .hero-v2 h1{
  font-family:var(--display); font-weight:700;
  font-size:clamp(36px, 5vw, 60px); line-height:1.06; letter-spacing:-0.028em;
  margin:0 0 22px; color:var(--paper);
}
.v2 .hero-v2 h1 em{font-style:normal; color:var(--amber);}
.v2 .hero-lede{
  font-size:clamp(16.5px, 1.5vw, 19px); line-height:1.62;
  color:rgba(247,243,233,0.8); margin:0 0 32px; max-width:53ch;
}
.v2 .hero-ctas-v2{display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px;}
.v2 .hero-badge{
  display:inline-flex; align-items:center; gap:9px; margin-bottom:22px;
  background:rgba(247,243,233,0.09); border:1px solid rgba(247,243,233,0.2);
  border-radius:999px; padding:9px 18px; font-size:13.5px; font-weight:600;
  color:rgba(247,243,233,0.9);
}
.v2 .hero-badge .dot{width:8px; height:8px; border-radius:50%; background:var(--teal); flex:none;}
.v2 .hero-proof{
  display:flex; flex-wrap:wrap; gap:28px 40px; padding-top:26px;
  border-top:1px solid rgba(247,243,233,0.16);
}
.v2 .hero-proof .n{font-family:var(--display); font-size:27px; font-weight:700; color:var(--amber); line-height:1;}
.v2 .hero-proof .l{font-size:13px; color:rgba(247,243,233,0.62); margin-top:6px;}
.v2 .hero-figure{border-radius:22px; overflow:hidden; aspect-ratio:4/3;}
.v2 .hero-figure img{display:block; width:100%; height:100%; object-fit:cover;}

/* ---- hero search widget (overlaps the hero, IDP-style) ---- */
.v2 .finder{
  position:relative; z-index:2; margin-top:clamp(40px, 5vw, 66px);
  background:var(--h-surface); border-radius:20px 20px 0 0;
  padding:28px clamp(22px, 3vw, 38px) 32px;
  box-shadow:0 -1px 0 rgba(20,27,51,0.08);
}
.v2 .finder h2{
  font-family:var(--display); font-size:20px; font-weight:700;
  color:var(--h-ink); margin:0 0 18px;
}
.v2 .finder-form{display:grid; grid-template-columns:1.5fr 1fr 1fr auto; gap:12px; align-items:end;}
.v2 .finder-field label{
  display:block; font-size:12px; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--h-ink-soft); margin-bottom:7px;
}
.v2 .finder-field input,
.v2 .finder-field select{
  width:100%; font-family:var(--body); font-size:15.5px; color:var(--h-ink);
  background:var(--h-surface); border:2px solid var(--h-line); border-radius:999px;
  padding:14px 20px; min-height:52px; appearance:none; cursor:pointer;
}
.v2 .finder-field input{cursor:text;}
.v2 .finder-field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A607E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 20px center; padding-right:44px;
}
.v2 .finder-field input:focus,
.v2 .finder-field select:focus{outline:none; border-color:var(--navy);}

/* ---- stats ----------------------------------------------- */
.v2 .v-stats{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.v2 .v-stat{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:30px 26px; text-align:center;
}
.v2 .v-stat .n{
  font-family:var(--display); font-size:clamp(32px, 3.6vw, 44px); font-weight:700;
  color:var(--navy); line-height:1; letter-spacing:-0.02em;
}
.v2 .v-stat .l{font-size:14px; color:var(--h-ink-soft); margin-top:11px; line-height:1.45;}

/* ---- grids ----------------------------------------------- */
.v2 .v-grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.v2 .v-grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.v2 .v-grid-2{display:grid; grid-template-columns:1fr 1fr; gap:24px;}

/* ---- process steps --------------------------------------- */
.v2 .v-steps{display:grid; grid-template-columns:repeat(5,1fr); gap:22px;}
.v2 .v-step{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:28px 24px;
}
.v2 .v-step .n{
  width:46px; height:46px; border-radius:50%; background:var(--navy); color:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-size:16px; font-weight:700; margin-bottom:18px;
}
.v2 .v-step h3{font-family:var(--display); font-size:17.5px; font-weight:700; color:var(--h-ink); margin:0 0 9px;}
.v2 .v-step p{font-size:14.5px; line-height:1.6; color:var(--h-ink-soft); margin:0;}

/* ---- testimonials ---------------------------------------- */
.v2 .v-quote{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:28px;
}
.v2 .v-quote .q{font-size:16px; line-height:1.62; color:var(--h-ink); margin:0 0 20px;}
.v2 .v-quote .who{font-size:13.5px; color:var(--h-ink-soft);}
.v2 .v-quote .who b{color:var(--h-ink); font-weight:700;}
.v2 .v-quote .stars{color:var(--amber); font-size:15px; letter-spacing:2px; margin-bottom:14px;}

/* ---- closing CTA ----------------------------------------- */
.v2 .v-cta{
  background:linear-gradient(150deg, #0B1330 0%, #1B2550 100%);
  border-radius:24px; padding:clamp(38px, 5vw, 62px);
  display:grid; grid-template-columns:1.25fr 1fr; gap:46px; align-items:center;
}
.v2 .v-cta h2{
  font-family:var(--display); font-size:clamp(28px, 3.2vw, 40px); font-weight:700;
  color:var(--paper); line-height:1.12; letter-spacing:-0.02em; margin:0 0 16px;
}
.v2 .v-cta p{font-size:17px; line-height:1.6; color:rgba(247,243,233,0.76); margin:0 0 28px;}
.v2 .v-cta-info{
  background:rgba(247,243,233,0.07); border:1px solid rgba(247,243,233,0.16);
  border-radius:var(--h-radius); padding:8px 22px;
}
.v2 .v-cta-info .row{
  display:flex; justify-content:space-between; gap:18px; padding:14px 0;
  border-bottom:1px solid rgba(247,243,233,0.12); font-size:14.5px;
}
.v2 .v-cta-info .row:last-child{border-bottom:none;}
.v2 .v-cta-info .row span:first-child{color:rgba(247,243,233,0.6);}
.v2 .v-cta-info .row span:last-child{color:var(--paper); font-weight:600; text-align:right; min-width:0; overflow-wrap:anywhere;}
.v2 .v-cta-info a{color:var(--paper);}
.v2 .v-cta-info a:hover{color:var(--amber);}

/* ---- responsive ------------------------------------------ */
@media (max-width:1080px){
  .v2 .hero-inner{grid-template-columns:1fr; gap:40px;}
  .v2 .hero-figure{max-width:560px;}
  .v2 .finder-form{grid-template-columns:1fr 1fr; }
  .v2 .finder-form .finder-submit{grid-column:1 / -1;}
  .v2 .finder-submit .v-btn{width:100%;}
  .v2 .v-grid-4{grid-template-columns:repeat(2,1fr);}
  .v2 .v-steps{grid-template-columns:repeat(2,1fr);}
  .v2 .v-stats{grid-template-columns:repeat(2,1fr);}
  .v2 .v-cta{grid-template-columns:minmax(0,1fr); gap:34px;}
}
@media (max-width:760px){
  .v2 main .wrap, .v2 footer .wrap{padding:0 20px;}   /* main/footer only — see note by the desktop rule */
  .v2 .v-grid-3, .v2 .v-grid-2{grid-template-columns:1fr;}
  .v2 .finder-form{grid-template-columns:1fr;}
  .v2 .v-btn{width:100%;}
  .v2 .hero-ctas-v2{flex-direction:column; align-items:stretch;}
  .v2 .hero-proof{gap:22px 30px;}
}
@media (max-width:560px){
  .v2 .v-grid-4, .v2 .v-steps, .v2 .v-stats{grid-template-columns:1fr;}
}

/* ===========================================================
   INNER-PAGE COMPONENTS
   Everything below is used by the nine non-home pages.
   =========================================================== */

/* ---- compact dark page hero ------------------------------ */
.v2 .v-page-hero{
  background:
    radial-gradient(95% 70% at 80% 68%, rgba(34,47,102,0.5), transparent 68%),
    linear-gradient(180deg, #0B1330 0%, #0B1330 14%, #141D45 66%, #101838 100%);
  color:var(--paper); padding:clamp(44px, 5.5vw, 74px) 0 clamp(48px, 6vw, 78px);
  position:relative; overflow:hidden;
}
.v2 .v-page-hero::after{
  content:""; position:absolute; right:-10%; top:10%; width:50%; aspect-ratio:1;
  background:radial-gradient(circle, rgba(242,169,59,0.15), transparent 66%); pointer-events:none;
}
.v2 .v-page-hero .wrap{position:relative; z-index:1;}
.v2 .v-crumb{font-size:13.5px; color:rgba(247,243,233,0.55); margin-bottom:18px;}
.v2 .v-crumb a{color:rgba(247,243,233,0.8);}
.v2 .v-crumb a:hover{color:var(--amber);}
.v2 .v-page-hero h1{
  font-family:var(--display); font-weight:700;
  font-size:clamp(31px, 4.4vw, 52px); line-height:1.08; letter-spacing:-0.026em;
  margin:0 0 18px; color:var(--paper); max-width:20ch;
}
.v2 .v-page-hero p{
  font-size:clamp(16px, 1.4vw, 18.5px); line-height:1.62;
  color:rgba(247,243,233,0.78); margin:0; max-width:60ch;
}

/* ---- prose blocks ---------------------------------------- */
.v2 .v-prose p{font-size:16.5px; line-height:1.7; color:var(--h-ink-soft); margin:0 0 16px;}
.v2 .v-prose p:last-child{margin-bottom:0;}
.v2 .v-prose strong{color:var(--h-ink); font-weight:700;}

/* ---- forms ----------------------------------------------- */
.v2 .v-form{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:clamp(26px, 3.4vw, 42px);
}
.v2 .v-form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.v2 .v-field.full{grid-column:1 / -1;}
.v2 .v-field label{
  display:block; font-size:12.5px; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--h-ink-soft); margin-bottom:8px;
}
.v2 .v-field input,
.v2 .v-field select,
.v2 .v-field textarea{
  width:100%; font-family:var(--body); font-size:15.5px; color:var(--h-ink);
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:999px; padding:14px 20px; min-height:52px;
}
.v2 .v-field textarea{border-radius:18px; min-height:140px; resize:vertical; line-height:1.6;}
.v2 .v-field select{
  appearance:none; cursor:pointer; padding-right:44px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A607E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 20px center;
}
.v2 .v-field input::placeholder,
.v2 .v-field textarea::placeholder{color:rgba(20,27,51,0.36);}
.v2 .v-field input:focus,
.v2 .v-field select:focus,
.v2 .v-field textarea:focus{outline:none; border-color:var(--navy);}
.v2 .v-form-foot{margin-top:26px;}

/* ---- form status banners --------------------------------- */
.v2 .v-banner{
  border-radius:var(--h-radius); padding:18px 24px; margin-bottom:26px;
  font-size:15.5px; font-weight:600; border:2px solid;
}
.v2 .v-banner.success{background:#EAF7F4; border-color:#4FB8AA; color:#14483F;}
.v2 .v-banner.error{background:#FBEDEB; border-color:#C1473A; color:#6B211A;}

/* ---- contact / info panels -------------------------------- */
.v2 .v-info{
  background:var(--h-surface-alt); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:8px 26px;
}
.v2 .v-info .row{
  display:flex; justify-content:space-between; gap:18px; padding:16px 0;
  border-bottom:1px solid var(--h-line); font-size:15px;
}
.v2 .v-info .row:last-child{border-bottom:none;}
.v2 .v-info .row span:first-child{color:var(--h-ink-soft);}
.v2 .v-info .row span:last-child{color:var(--h-ink); font-weight:600; text-align:right; min-width:0; overflow-wrap:anywhere;}
.v2 .v-info a{color:var(--navy);}
.v2 .v-info a:hover{color:var(--amber-dim);}

/* ---- team ------------------------------------------------- */
.v2 .v-person .role{
  display:block; font-size:11.5px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--amber-dim); margin-bottom:8px;
}
.v2 .v-person .mail{font-size:13.5px; color:var(--navy); word-break:break-all;}
.v2 .v-person .mail:hover{color:var(--amber-dim);}

/* ---- videos ----------------------------------------------- */
.v2 .v-video{cursor:pointer;}
.v2 .v-video .v-card-media{aspect-ratio:16/9; background:var(--navy);}
.v2 .v-video .play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.v2 .v-video .play span{
  width:62px; height:62px; border-radius:50%; background:var(--amber); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:20px; padding-left:4px;
  transition:transform .22s ease;
}
.v2 .v-video:hover .play span{transform:scale(1.1);}

/* ---- filter bar (courses) --------------------------------- */
.v2 .v-filters{
  display:flex; flex-wrap:wrap; gap:14px; margin-bottom:38px;
  background:var(--h-surface-alt); border:2px solid var(--h-line);
  border-radius:var(--h-radius); padding:20px;
}
.v2 .v-filters input[type="search"],
.v2 .v-filters select{
  font-family:var(--body); font-size:15px; color:var(--h-ink);
  background:var(--h-surface); border:2px solid var(--h-line); border-radius:999px;
  padding:12px 20px; min-height:48px;
}
.v2 .v-filters input[type="search"]{flex:1 1 240px; min-width:200px;}
.v2 .v-filters select{
  appearance:none; cursor:pointer; padding-right:44px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A607E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 20px center;
}
.v2 .v-filters input:focus, .v2 .v-filters select:focus{outline:none; border-color:var(--navy);}
.v2 .v-empty{
  display:none; text-align:center; padding:50px 20px; color:var(--h-ink-soft);
  font-size:16px; border:2px dashed var(--h-line); border-radius:var(--h-radius);
}
.v2 .v-empty.show{display:block;}

/* ---- course card ------------------------------------------ */
.v2 .v-course{padding:26px 28px;}
.v2 .v-course .tag{
  display:inline-flex; gap:8px; font-size:11.5px; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--amber-dim); margin-bottom:12px;
}
.v2 .v-course h3{font-size:18.5px; margin-bottom:6px;}
.v2 .v-course .uni{font-size:14.5px; color:var(--h-ink-soft); margin-bottom:16px;}
.v2 .v-course .meta{
  display:flex; justify-content:space-between; font-size:13px;
  padding-top:15px; border-top:1px solid var(--h-line); margin-bottom:16px;
}
.v2 .v-course .meta span:first-child{color:var(--h-ink-soft); letter-spacing:0.06em;}
.v2 .v-course .meta span:last-child{color:var(--h-ink); font-weight:600;}

/* ---- destination detail block ----------------------------- */
.v2 .v-dest{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:44px; align-items:center;
  padding:clamp(30px, 4vw, 46px) 0; border-top:2px solid var(--h-line);
}
.v2 .v-dest:first-of-type{border-top:none;}
.v2 .v-dest .media{border-radius:20px; overflow:hidden; aspect-ratio:4/3;}
.v2 .v-dest .media img{width:100%; height:100%; object-fit:cover; display:block;}
.v2 .v-dest h2{
  font-family:var(--display); font-size:clamp(25px, 2.9vw, 34px); font-weight:700;
  color:var(--h-ink); margin:0 0 14px; letter-spacing:-0.02em;
}
.v2 .v-facts{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:22px 0 26px;}
.v2 .v-fact{background:var(--h-surface-alt); border-radius:12px; padding:14px 18px;}
.v2 .v-fact .k{font-size:11.5px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--h-ink-soft);}
.v2 .v-fact .v{font-size:15px; font-weight:600; color:var(--h-ink); margin-top:5px;}

@media (max-width:1080px){
  .v2 .v-dest{grid-template-columns:1fr; gap:28px;}
  .v2 .v-dest .media{max-width:560px;}
}
@media (max-width:760px){
  .v2 .v-form-grid{grid-template-columns:1fr;}
  .v2 .v-facts{grid-template-columns:1fr;}
  .v2 .v-filters input[type="search"], .v2 .v-filters select{width:100%; flex:1 1 100%;}
}

/* ---- three-column form (partner sign-up) ------------------ */
.v2 .v-form-grid.cols-3{grid-template-columns:repeat(3,1fr);}
.v2 .v-field .opt{font-weight:500; text-transform:none; letter-spacing:0; color:rgba(20,27,51,0.42);}
/* dial code + number sit as one control */
.v2 .v-phone{display:flex; gap:10px;}
.v2 .v-phone select{
  flex:0 0 128px; width:128px; padding-left:16px; padding-right:34px;
  background-position:right 14px center; font-size:14px;
}
.v2 .v-phone input{flex:1 1 auto; min-width:0;}
@media (max-width:1080px){
  .v2 .v-form-grid.cols-3{grid-template-columns:1fr 1fr;}
}
@media (max-width:760px){
  .v2 .v-form-grid.cols-3{grid-template-columns:1fr;}
  .v2 .v-phone select{flex:0 0 112px; width:112px;}
}

/* ---- partner teaser on the homepage ----------------------- */
.v2 .v-partner{
  background:linear-gradient(150deg, #101838 0%, #1B2550 100%);
  border-radius:24px; padding:clamp(34px, 4.6vw, 58px);
}
.v2 .v-partner .v-eyebrow{color:var(--amber);}
.v2 .v-partner h2{
  font-family:var(--display); font-size:clamp(27px, 3.2vw, 38px); font-weight:700;
  color:var(--paper); line-height:1.14; letter-spacing:-0.02em; margin:0 0 14px;
}
.v2 .v-partner > p{font-size:17px; line-height:1.62; color:rgba(247,243,233,0.76); margin:0 0 34px; max-width:62ch;}
.v2 .v-benefits{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:36px;}
.v2 .v-benefit{
  background:rgba(247,243,233,0.06); border:1px solid rgba(247,243,233,0.16);
  border-radius:var(--h-radius); padding:24px 22px;
}
.v2 .v-benefit .ico{
  width:42px; height:42px; border-radius:50%; background:var(--amber); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:17px; font-weight:700;
  margin-bottom:16px;
}
.v2 .v-benefit h3{font-family:var(--display); font-size:16.5px; font-weight:700; color:var(--paper); margin:0 0 8px;}
.v2 .v-benefit p{font-size:14px; line-height:1.58; color:rgba(247,243,233,0.68); margin:0;}
@media (max-width:1080px){ .v2 .v-benefits{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .v2 .v-benefits{grid-template-columns:1fr;} }

/* ---- CEO message ------------------------------------------ */
/* Portrait source is 1254x1254, so the card can take a generous width and
   still be sharp on a 3x display. The square original is cropped to 4:5 by
   object-fit; the subject is centred, so only empty desk is lost. */
.v2 .v-ceo{display:grid; grid-template-columns:380px minmax(0,1fr); gap:52px; align-items:start;}
.v2 .v-ceo-card{
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); overflow:hidden; position:sticky; top:110px;
}
.v2 .v-ceo-card .v-card-media{aspect-ratio:4/5; background:var(--h-surface-alt);}
.v2 .v-ceo-card .v-card-media img{width:100%; height:100%; object-fit:cover; display:block;}
.v2 .v-ceo-card .body{padding:22px 24px 24px;}
.v2 .v-ceo-card .role{
  display:block; font-size:11.5px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--amber-dim); margin-bottom:8px;
}
.v2 .v-ceo-card h3{font-family:var(--display); font-size:19px; font-weight:700; color:var(--h-ink); margin:0 0 10px;}
.v2 .v-ceo-card .mail{font-size:13.5px; color:var(--navy); word-break:break-all;}
.v2 .v-ceo-card .mail:hover{color:var(--amber-dim);}

.v2 .v-letter .salutation{
  font-family:var(--display); font-size:19px; font-weight:700;
  color:var(--h-ink); margin:0 0 18px;
}
.v2 .v-letter p{font-size:16.5px; line-height:1.72; color:var(--h-ink-soft); margin:0 0 18px;}
.v2 .v-letter .tagline{
  font-family:var(--display); font-size:clamp(21px, 2.3vw, 27px); font-weight:700;
  color:var(--h-ink); line-height:1.28; letter-spacing:-0.015em;
  border-left:4px solid var(--amber); padding:4px 0 4px 22px; margin:30px 0;
}
.v2 .v-sign{margin-top:32px; padding-top:26px; border-top:2px solid var(--h-line);}
.v2 .v-sign .who{font-family:var(--display); font-size:18px; font-weight:700; color:var(--h-ink); margin-bottom:5px;}
.v2 .v-sign .what{font-size:14.5px; color:var(--h-ink-soft); line-height:1.6;}
.v2 .v-sign .motto{
  display:inline-block; margin-top:14px; font-size:12.5px; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--amber-dim);
}
@media (max-width:1080px){
  .v2 .v-ceo{grid-template-columns:1fr; gap:34px;}
  .v2 .v-ceo-card{position:static; max-width:340px;}
}

/* ---- destination card (homepage) --------------------------
   Photo-led, but the country name sits ON the image under a navy
   gradient rather than beside an empty block — so the card reads as
   designed whether the slot holds a placeholder or a real photo.
   Facts below give it substance; the link is pinned so every card
   ends at the same height regardless of blurb length. */
.v2 .v-dest-card{
  display:flex; flex-direction:column;
  background:var(--h-surface); border:2px solid var(--h-line);
  border-radius:var(--h-radius); overflow:hidden;
  transition:border-color .22s ease, transform .22s ease;
}
.v2 .v-dest-card:hover{border-color:var(--navy); transform:translateY(-4px);}

.v2 .v-dest-card .band{position:relative; aspect-ratio:8/5; overflow:hidden; background:var(--h-surface-alt);}
.v2 .v-dest-card .band img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; display:block; transition:transform .5s ease;
}
.v2 .v-dest-card:hover .band img{transform:scale(1.05);}
/* gradient carries the title — strong at the base, clear at the top so a
   real photo still reads */
.v2 .v-dest-card .band::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(11,19,48,0.92) 0%, rgba(11,19,48,0.62) 34%, rgba(11,19,48,0.12) 68%, rgba(11,19,48,0.04) 100%);
}
.v2 .v-dest-card .band-text{
  position:absolute; left:0; right:0; bottom:0; z-index:1;
  padding:18px 22px; display:flex; flex-direction:column; align-items:flex-start; gap:9px;
}
.v2 .v-dest-card .code{
  font-size:11px; font-weight:800; letter-spacing:0.12em;
  color:var(--navy); background:var(--amber); border-radius:999px; padding:5px 11px;
}
.v2 .v-dest-card .band-text h3{
  font-family:var(--display); font-size:21px; font-weight:700; letter-spacing:-0.015em;
  color:#FFFFFF; margin:0; text-shadow:0 1px 12px rgba(11,19,48,0.55);
}

.v2 .v-dest-card .body{display:flex; flex-direction:column; flex:1 1 auto; padding:20px 22px 22px;}
.v2 .v-dest-card .facts{margin-bottom:18px;}
.v2 .v-dest-card .fact:first-child{border-top:none; padding-top:0;}
.v2 .v-dest-card .fact{
  display:flex; justify-content:space-between; gap:12px; align-items:baseline;
  padding:9px 0; border-top:1px solid var(--h-line); font-size:13px;
}
.v2 .v-dest-card .fact .k{color:var(--h-ink-soft); flex:none;}
.v2 .v-dest-card .fact .v{color:var(--h-ink); font-weight:600; text-align:right;}
.v2 .v-dest-card .go{
  margin-top:auto; display:inline-flex; align-items:center; gap:7px;
  font-size:14.5px; font-weight:700; color:var(--navy);
  transition:gap .2s ease, color .2s ease;
}
.v2 .v-dest-card:hover .go{gap:12px; color:var(--amber-dim);}

/* social row inside the contact page's info panel */
.v2 .v-info-social{display:flex; gap:6px; justify-content:flex-end;}
.v2 .v-info-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%; color:var(--h-ink-soft);
  transition:color .2s ease, background .2s ease;
}
.v2 .v-info-social svg{width:16px; height:16px; fill:currentColor; display:block;}
.v2 .v-info-social a:hover{color:var(--navy); background:rgba(20,27,51,0.07);}

/* ===========================================================
   HERO ENTRANCE
   Deliberately CSS animations, not JS-triggered transitions:
   they start before first paint (no flash of unstyled content),
   they run without JavaScript, and `fill-mode: both` means the
   element holds its start state during the delay and its end
   state afterwards — so content can never be left invisible.
   =========================================================== */

@keyframes amcRise {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}
@keyframes amcFigureIn {
  from { opacity:0; transform:translateY(26px) scale(0.97); }
  to   { opacity:1; transform:none; }
}
@keyframes amcGlowIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.v2 .hero-v2 .hero-badge,
.v2 .hero-v2 h1,
.v2 .hero-lede,
.v2 .hero-ctas-v2,
.v2 .hero-proof,
.v2 .finder{
  animation:amcRise .72s cubic-bezier(.22,.61,.36,1) both;
}
.v2 .hero-v2 .hero-badge   { animation-delay:.06s; }
.v2 .hero-v2 h1            { animation-delay:.16s; }
.v2 .hero-lede             { animation-delay:.28s; }
.v2 .hero-ctas-v2          { animation-delay:.40s; }
.v2 .hero-proof            { animation-delay:.52s; }
.v2 .finder                { animation-delay:.64s; }

.v2 .hero-figure{
  animation:amcFigureIn .9s cubic-bezier(.22,.61,.36,1) both;
  animation-delay:.22s;
}
/* the amber wash fades up last so it reads as light settling in */
.v2 .hero-v2::after{
  animation:amcGlowIn 1.4s ease both;
  animation-delay:.5s;
}

/* the photo lifts slightly on hover — small sign of life once it has landed */
.v2 .hero-figure img{transition:transform .6s cubic-bezier(.22,.61,.36,1);}
.v2 .hero-figure:hover img{transform:scale(1.035);}

/* inner-page heroes get a lighter version of the same idea */
.v2 .v-page-hero .v-crumb,
.v2 .v-page-hero h1,
.v2 .v-page-hero p{
  animation:amcRise .62s cubic-bezier(.22,.61,.36,1) both;
}
.v2 .v-page-hero .v-crumb { animation-delay:.05s; }
.v2 .v-page-hero h1       { animation-delay:.14s; }
.v2 .v-page-hero p        { animation-delay:.26s; }

@media (prefers-reduced-motion: reduce){
  .v2 .hero-v2 .hero-badge, .v2 .hero-v2 h1, .v2 .hero-lede,
  .v2 .hero-ctas-v2, .v2 .hero-proof, .v2 .finder,
  .v2 .hero-figure, .v2 .hero-v2::after,
  .v2 .v-page-hero .v-crumb, .v2 .v-page-hero h1, .v2 .v-page-hero p{
    animation:none; opacity:1; transform:none;
  }
  .v2 .hero-figure:hover img{transform:none;}
}
