/* ============================================================
   Tanisha Overseas Placements
   Burgundy frame · pill nav · full-width hero · rose stats band
   Geometric logo-style typography throughout
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root{
  --font-sans: "Montserrat", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;

  /* Ink */
  --ink:        #111111;
  --ink-2:      #2a2a2a;
  --ink-3:      #45494d;
  --muted:      #6b6b6b;
  --muted-2:    #8a8a8a;
  --hair:       rgba(0,0,0,.07);
  --hair-2:     rgba(0,0,0,.14);

  /* Surfaces */
  --paper:      #ffffff;
  --paper-soft: #f8fafc;
  --blush-top:  #eef4ff;   /* very soft sky tint, top header */
  --blush-2:    #dbe7fb;   /* light blue wash */
  --section-alt:#f5f8fd;   /* very subtle blue section bg */

  /* Slate-navy + refined indigo-blue accent system */
  --rose:        #1d4ed8;   /* confident blue — links, buttons, eyebrow, highlights */
  --rose-2:      #1e3a8a;   /* hover (deeper navy-blue) */
  --rose-soft:   #eff6ff;   /* soft sky tint (badges, pills, hover bg) */
  --rose-soft-2: #dbeafe;   /* slightly stronger tint */
  --rose-band:   #1e293b;   /* slate-900 band start — premium neutral */
  --rose-band-2: #0f172a;   /* band end */
  --rose-row:    #334155;   /* slate spotlight row accent */

  /* Slate frame + footer (cooler than pure navy) */
  --burgundy:    #0f172a;
  --burgundy-2:  #060912;

  /* Layout */
  --maxw:        1240px;
  --frame-pad:   0px;
  --frame-radius:0px;
  --r-xl:        28px;
  --r-lg:        20px;
  --r-md:        14px;
  --r-sm:        10px;
  --r-pill:      999px;

  --shadow-card:  0 1px 2px rgba(20,10,12,.04), 0 14px 32px -16px rgba(10,20,40,.18);
  --shadow-hover: 0 2px 4px rgba(20,10,12,.06), 0 22px 48px -18px rgba(10,20,40,.30);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; }
html{ background: #fff; }
body{
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  min-height: 100vh;
  padding: var(--frame-pad);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color: var(--rose); text-decoration:none; transition: color .15s var(--ease); }
a:hover{ color: var(--rose-2); }
:focus-visible{ outline: 2.5px solid #fff; outline-offset: 3px; border-radius: 8px; }
.site-header a:focus-visible,
.page-frame :focus-visible{ outline-color: var(--rose); }

.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--ink); color:#fff; padding: 10px 14px;
  border-radius: 0 0 var(--r-sm) 0; z-index: 1000;
}
.skip-link:focus{ left:0; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Page frame ---------- */
.page-frame{
  background: #fff;
  border-radius: var(--frame-radius);
  overflow: clip;             /* clip (not hidden) so sticky works inside */
  isolation: isolate;
  box-shadow: none;
  position: relative;
}

/* ---------- (Topbar removed by request — nav pill is now the page top) ---------- */


/* ---------- Header / Pill nav (sticky · liquid glass) ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238,242,248, .55);
  backdrop-filter: saturate(1.5) blur(22px);
  -webkit-backdrop-filter: saturate(1.5) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding: 14px 16px;
  transition: padding .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.site-header.is-stuck{
  padding: 8px 16px;
  background: rgba(238,242,248, .72);
  border-bottom-color: rgba(30,58,95,.10);
}
.nav-pill{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 8px;
  display:flex; align-items:center; gap: 14px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-pill::before{ display: none; }
.nav-pill > *{ position: relative; z-index: 1; }
.logo{
  display:inline-flex; align-items:center; gap: 12px;
  color: var(--ink); font-weight: 700; letter-spacing: -.005em;
  font-size: 15px; line-height: 1.1;
}
.logo:hover{ color: var(--ink); }
.site-logo-img{
  width: auto;
  height: 52px;
  display: block;
  object-fit: contain;
}
.logo-mark{
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--rose) 0%, var(--burgundy) 100%);
  color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .04em;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 14px -6px rgba(10,30,54,.5);
}
.logo > span:last-child{ display:flex; flex-direction:column; line-height: 1.15; }
.logo small{
  font-size: 10.5px; color: var(--muted); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-top:1px;
}

.nav{
  margin-left: auto;
  display:flex; align-items:center; gap: 2px;
  font-size: 14.5px;
}
.nav > a, .dropdown > button{
  appearance: none; background: transparent; border: 0;
  font: inherit; color: var(--ink-2);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  cursor: pointer; line-height: 1;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav > a:hover, .dropdown > button:hover{
  color: var(--rose); background: var(--rose-soft);
}
.nav > a.active,
.dropdown > button.active{
  color: var(--rose); background: var(--rose-soft);
}

.dropdown{ position: relative; }
.dropdown-menu{
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: none;
  z-index: 30;
}
/* Invisible hover bridge so the dropdown stays open while the cursor
   travels from the button to the menu */
.dropdown-menu::before{
  content:"";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.dropdown:first-of-type .dropdown-menu{ left: 0; right:auto; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu{ display: block; }
.dropdown-menu a{
  display:block; padding: 9px 12px; color: var(--ink-2);
  border-radius: 8px; font-size: 14px;
}
.dropdown-menu a:hover{ background: var(--rose-soft); color: var(--rose); }
.dropdown-menu a.active{ background: var(--rose-soft); color: var(--rose); font-weight: 600; }

.nav-toggle{
  display: none;
  appearance: none; border: 1px solid var(--hair-2); background: #fff;
  border-radius: var(--r-pill); padding: 8px 14px;
  font: inherit; font-size: 13.5px; color: var(--ink); margin-left: auto;
  cursor: pointer;
}
.nav-toggle::before{
  content:""; display:inline-block; width:14px; height:10px;
  background:
    linear-gradient(var(--ink),var(--ink)) 0 0/100% 2px no-repeat,
    linear-gradient(var(--ink),var(--ink)) 0 50%/100% 2px no-repeat,
    linear-gradient(var(--ink),var(--ink)) 0 100%/100% 2px no-repeat;
  margin-right:8px; vertical-align: -1px;
}

@media (max-width: 1020px){
  .nav-pill{ padding: 10px 14px; }
  .nav-toggle{ display:inline-flex; align-items:center; }
  .nav{
    position: absolute; left: 8px; right: 8px; top: calc(100% + 8px);
    background: #fff; border-radius: 18px; border: 1px solid var(--hair);
    box-shadow: var(--shadow-card);
    padding: 10px; gap: 2px;
    flex-direction: column; align-items: stretch;
    display: none;
  }
  .nav.open{ display: flex; }
  .nav > a, .dropdown > button{
    width: 100%; text-align: left; border-radius: 10px;
  }
  .dropdown-menu{
    position: static; box-shadow: none; border: 0; padding: 2px 0 6px 14px;
    display: block; background: transparent; min-width: 0;
  }
  .dropdown-menu a{ padding: 7px 10px; }
}

/* ---------- Hero (spans full width inside frame) ---------- */
.hero{
  background: var(--blush-2);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after{
  content:"";
  position:absolute; border-radius:50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events:none;
  z-index: 0;
  animation: drift 22s ease-in-out infinite;
}
.hero::before{
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%);
  top: -120px; left: -80px;
}
.hero::after{
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--rose-band) 0%, transparent 65%);
  bottom: -220px; right: -120px;
  animation-delay: -11s;
  animation-duration: 26s;
}
.hero > *{ position: relative; z-index: 1; }
.hero-strip{
  background:
    linear-gradient(160deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 100%);
  border-top: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.5);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(30,58,95,.06);
  position: relative;
  overflow: hidden;
}
.hero-strip::before{
  /* internal pink bloom — right side */
  content:""; position:absolute; inset:auto -6% -30% auto;
  width: 40%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,.10), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-strip::after{
  /* internal blush wash top-left */
  content:""; position:absolute;
  width: 360px; height: 360px;
  top: -140px; left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,74,114,.16), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 36px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}
.hero-grid > *{ position: relative; z-index: 1; }

.eyebrow{
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rose);
  margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before{
  content:""; width: 20px; height: 1.5px; background: var(--rose);
}

.hero-grid h1{
  font-size: clamp(40px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}
.hero-grid h1 .rose{ color: var(--rose); }

.hero-grid > div:first-child > p{
  font-size: 16.5px;
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 0 22px;
  text-wrap: pretty;
}

.hero-badges{
  display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 26px;
}
.badge{
  display:inline-flex; align-items:center; gap: 8px;
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 12.5px; font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.badge::before{
  content:""; width:6px; height:6px; border-radius:50%; background: var(--rose);
}

.cta-row{ display:flex; flex-wrap:wrap; gap: 10px; }

/* Buttons */
.btn{
  appearance: none; border: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  cursor: pointer; line-height: 1;
  transition: transform .15s var(--ease), background .15s var(--ease),
              color .15s var(--ease), box-shadow .2s var(--ease), border-color .15s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-primary{
  background: var(--rose); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(30,58,95,.55);
}
.btn-primary:hover{
  background: var(--rose-2); color:#fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(30,58,95,.7);
}
.btn-secondary{ background: var(--ink); color: #fff; }
.btn-secondary:hover{ background:#000; color:#fff; transform: translateY(-1px); }
.btn-outline{
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--hair-2);
}
.btn-outline:hover{
  box-shadow: inset 0 0 0 1.5px var(--rose);
  color: var(--rose);
}
.btn::after{
  content:"→"; font-size: 16px; line-height: 1;
  transition: transform .2s var(--ease);
}
.btn:hover::after{ transform: translateX(3px); }
.btn-outline::after{ display:none; }

/* Hero visual / world */
.hero-card{
  position: relative;
  align-self: stretch;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  min-height: 360px;
}
.world{
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: transparent;
  isolation: isolate;
  animation: float 8s ease-in-out infinite;
}
/* CSS-sphere fallback — shown ONLY when amCharts fails to load (globe.js adds
   .globe-fallback). Hidden by default so the real globe loads without a flash. */
.world.globe-fallback{
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #f8dfe4 18%, #d9a7b1 55%, var(--rose) 100%);
  box-shadow:
    inset -22px -32px 60px rgba(10,20,40, .35),
    inset 16px 18px 38px rgba(255,255,255,.55),
    0 30px 60px -20px rgba(30,58,95,.45);
}
.world::before, .world::after{ display: none; }
.world.globe-fallback::before, .world.globe-fallback::after{ display: block; }
.world::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  background: repeating-linear-gradient(transparent 0 28px, rgba(255,255,255,.18) 28px 29px);
  mask: radial-gradient(circle, #000 56%, transparent 70%);
  -webkit-mask: radial-gradient(circle, #000 56%, transparent 70%);
  mix-blend-mode: screen;
  opacity: .6;
}
.world::after{
  content:""; position:absolute;
  width: 38%; height: 22%; top: 12%; left: 22%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.85), transparent 70%);
  filter: blur(2px); border-radius: 50%;
  pointer-events: none;
}
.world > div:first-child{ display:none; }

/* When the 3D globe loads, fade out the CSS-sphere shading and keep the outer pink glow */
.world.has-globe{
  background: transparent;
  box-shadow: 0 30px 70px -20px rgba(30,58,95,.45);
  animation: float 9s ease-in-out infinite;
}
.world.has-globe::before, .world.has-globe::after{ display: none; }
.globe-canvas{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  display: block;
}

/* Globe slider (horizontal position control) */
.globe-slider-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  padding: 8px 14px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.70) 0%, rgba(238,242,248,.50) 100%);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: var(--r-pill);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 8px 22px -14px rgba(10,20,40,.20);
}
.globe-slider-icon{
  font-size: 16px;
  color: var(--rose);
  line-height: 1;
  user-select: none;
}
#globe-slider{
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,58,95,.55), rgba(46,74,114,.35));
  border: 0;
  outline: none;
  cursor: ew-resize;
  margin: 0;
}
#globe-slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, #fecaca);
  border: 1.5px solid var(--rose);
  box-shadow: 0 4px 12px rgba(30,58,95,.40), inset 0 1px 0 rgba(255,255,255,.9);
  cursor: grab;
  transition: transform .15s var(--ease);
}
#globe-slider::-moz-range-thumb{
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(160deg, #fff, #fecaca);
  border: 1.5px solid var(--rose);
  box-shadow: 0 4px 12px rgba(30,58,95,.40);
  cursor: grab;
}
#globe-slider:hover::-webkit-slider-thumb{ transform: scale(1.1); }
#globe-slider:active::-webkit-slider-thumb{ cursor: grabbing; transform: scale(1.15); }
#globe-slider:focus-visible::-webkit-slider-thumb{
  box-shadow: 0 0 0 4px rgba(30,58,95,.25), 0 4px 12px rgba(30,58,95,.40);
}

/* amCharts ensures the chart fills the stage */
#globe-stage svg{ overflow: visible; }
#globe-stage > div { z-index: 1; }

@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce){
  .world{ animation: none; }
}

/* Airplane orbiting the globe like a Saturn ring — a flat tilted ellipse that
   passes BEHIND the globe along the back (top) arc and IN FRONT along the
   near (bottom) arc. The ellipse is a fixed-px flight path centred on the globe;
   z-index flips at the side crossings so the globe occludes the far half. */
.globe-plane{
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 30px;
  color: var(--rose);
  /* ellipse centred on the 440px globe: cx=220, cy=220, rx=234, ry=60 */
  offset-path: path("M 220,160 a 234,60 0 1,1 0,120 a 234,60 0 1,1 0,-120");
  offset-rotate: auto;          /* nose tracks the flight direction */
  pointer-events: none;
  animation: globe-saturn 16s linear infinite;
  will-change: offset-distance;
}
.globe-plane svg{
  width: 100%; height: 100%; display: block;
  fill: currentColor;
  filter: drop-shadow(0 2px 3px rgba(10, 20, 40, .35));
}
/* 0–25% & 75–100% = back arc (above globe centre) → behind globe (z 0 < globe's 1).
   25–75% = near arc (below centre) → in front (z 5 > globe's 1).
   Switches happen at the side rims (25% / 75%) where the plane is off the globe. */
@keyframes globe-saturn{
  0%      { offset-distance: 0%;   z-index: 0; }
  25%     { offset-distance: 25%;  z-index: 0; }
  25.001% { z-index: 5; }
  75%     { offset-distance: 75%;  z-index: 5; }
  75.001% { z-index: 0; }
  100%    { offset-distance: 100%; z-index: 0; }
}
@media (max-width: 720px){
  /* smaller globe (260px box): cx=130, cy=130, rx=138, ry=38 */
  .globe-plane{
    width: 24px; height: 24px;
    offset-path: path("M 130,92 a 138,38 0 1,1 0,76 a 138,38 0 1,1 0,-76");
  }
}
@media (prefers-reduced-motion: reduce){
  .globe-plane{ animation: none; offset-distance: 12%; z-index: 5; }
}

/* Invitation caption under the globe */
.globe-caption{
  margin: 6px 0 0;
  max-width: 360px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--ink);
  opacity: .85;
}
.globe-caption-plane{
  display: inline-block;
  color: var(--rose);
  animation: caption-takeoff 2.6s ease-in-out infinite;
}
@keyframes caption-takeoff{
  0%, 100%{ transform: translate(0, 0) rotate(0deg); }
  50%     { transform: translate(3px, -3px) rotate(-12deg); }
}
@media (prefers-reduced-motion: reduce){
  .globe-caption-plane{ animation: none; }
}

/* ---------- Stats band (full-bleed · glass tiles) ---------- */
.stats-band{
  background:
    radial-gradient(800px 300px at 80% 100%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, var(--rose-band) 0%, var(--rose-band-2) 100%);
  color: #fff;
  padding: 28px 0 32px;
  position: relative; z-index: 1;
  overflow: hidden;
  box-shadow: 0 24px 40px -22px rgba(10,30,54,.45);
}
.stats-band::before{
  content:""; position:absolute;
  width: 320px; height: 320px;
  top: -120px; right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  filter: blur(30px);
  pointer-events:none;
}
.stats-band .stats-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  position: relative;
}
.stat-card{
  text-align: center; padding: 20px 14px 18px; position: relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.06) 100%);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 0 rgba(0,0,0,.06);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.stat-card::before{
  content:""; position:absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.22) 0%, transparent 45%);
  border-radius: inherit;
  pointer-events: none;
}
.stat-card:hover{ transform: translateY(-2px); background: linear-gradient(160deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.08) 100%); }
.stat-card strong{
  display:block;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.05;
  position: relative; z-index: 1;
}
.stat-card p{
  margin: 8px 0 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.86);
  letter-spacing: .02em;
  position: relative; z-index: 1;
}

/* ---------- Sections (with floating gradient orbs) ---------- */
.section{
  background: #fff;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.section.compact{ padding: 56px 0 40px; }
.section.tint{ background: var(--section-alt); }
.section::before, .section::after{
  content:"";
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: .28;
  pointer-events: none;
  z-index: 0;
  animation: drift 26s ease-in-out infinite;
}
.section::before{
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%);
  top: -160px; left: -120px;
}
.section::after{
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--rose-band) 0%, transparent 65%);
  bottom: -140px; right: -100px;
  animation-delay: -12s;
  animation-duration: 30s;
}
.section.tint::before{ opacity: .22; }
.section.tint::after{ opacity: .22; }
.section > .container{ position: relative; z-index: 1; }

.section-title{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-title .eyebrow{ justify-content: center; }
.section-title .eyebrow::before{ width:18px; }
.section-title h2{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--rose);
  text-wrap: balance;
}
.section-title p{
  color: var(--ink-2);
  margin: 0;
  font-size: 16px;
  text-wrap: pretty;
}
.section-title code{
  background: var(--rose-soft); color: var(--rose);
  padding: 2px 6px; border-radius: 6px; font-size: 13px;
}

/* Grids */
.grid{ display:grid; gap: 18px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* ---------- Feature cards (image-led, like reference "Start Exploring") ---------- */
.features-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  background: #1d1014;
  isolation: isolate;
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card .feature-art{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,22,44,.06) 0%, rgba(10,22,44,.24) 58%, rgba(10,22,44,.62) 100%),
    url("../img/generated/recruitment-resume-review.jpg") center / cover no-repeat;
}
.feature-card.f-2 .feature-art{
  background:
    linear-gradient(180deg, rgba(10,22,44,.04) 0%, rgba(10,22,44,.22) 58%, rgba(10,22,44,.64) 100%),
    url("../img/generated/employer-coordination.jpg") center / cover no-repeat;
}
.feature-card.f-3 .feature-art{
  background:
    linear-gradient(180deg, rgba(10,22,44,.04) 0%, rgba(10,22,44,.24) 58%, rgba(10,22,44,.66) 100%),
    url("../img/generated/candidate-support.jpg") center / cover no-repeat;
}
.feature-card .feature-icon{
  position: absolute; top: 22px; left: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  z-index: 3;
}
.feature-card::after{
  /* liquid sheen sweep on hover */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(255,255,255,.20) 50%,
    transparent 65%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.feature-card:hover::after{ transform: translateX(120%); }
.feature-card .feature-body{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.65) 100%);
  color: #fff;
}
.feature-card .feature-body h3{
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  color: #fff;
}
.feature-card .feature-body p{
  font-size: 13.5px;
  color: rgba(255,255,255,.82);
  margin: 0 0 14px;
  max-width: 38ch;
  line-height: 1.45;
}
.feature-card .feature-cta{
  display:inline-flex; align-items:center; gap: 8px;
  background: #fff; color: var(--ink);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.feature-card .feature-cta:hover{ background: var(--rose); color: #fff; transform: translateY(-1px); }
.feature-card .feature-cta::after{ content:"→"; transition: transform .2s var(--ease); }
.feature-card .feature-cta:hover::after{ transform: translateX(3px); }

/* ---------- Jobs (Insights-style spotlight) ---------- */
.jobs-spotlight{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: start;
}
.featured-job{
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3.4;
  background: #1d1014;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.featured-job:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.featured-job .art{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,22,44,.02) 0%, rgba(10,22,44,.20) 52%, rgba(10,22,44,.70) 100%),
    url("../img/generated/maintenance-manager.jpg") center / cover no-repeat;
}
.featured-job .badge-feat{
  position: absolute; top: 22px; left: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
  color: #fff;
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
  z-index: 3;
}
.featured-job::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(105deg,
    transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.featured-job:hover::after{ transform: translateX(120%); }
.featured-job .feat-body{
  position:absolute; left:0; right:0; bottom: 0;
  padding: 22px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 100%);
  color: #fff;
}
.featured-job .feat-body .eyebrow{
  color: #ffd6db; margin-bottom: 10px;
}
.featured-job .feat-body .eyebrow::before{ background: #ffd6db; }
.featured-job h3{
  font-size: 26px; margin: 0 0 8px; letter-spacing: -.01em; color:#fff;
  max-width: 22ch;
}
.featured-job p{
  font-size: 14px; color: rgba(255,255,255,.85); margin: 0 0 12px; max-width: 50ch;
}
.featured-job .feat-meta{
  display:flex; gap: 6px; flex-wrap: wrap;
}
.featured-job .feat-meta .pill{
  background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.22);
}

.job-side{ display: grid; gap: 16px; align-content: start; }
.job-side .job-card-sm{
  display:grid; grid-template-columns: 130px 1fr auto; gap: 16px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--shadow-card);
  align-items: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.job-side .job-card-sm:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.job-side .thumb{
  width: 130px; height: 100px; border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/cnc-operator.jpg") center / cover no-repeat;
}
.job-side .job-card-sm.j-b .thumb{ background:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/heavy-duty-mechanic.jpg") center / cover no-repeat; }
.job-side .job-card-sm h4{
  margin: 0 0 4px; font-size: 16.5px; letter-spacing: -.005em;
}
.job-side .job-card-sm .meta{
  font-size: 12.5px; color: var(--muted);
  margin: 0 0 8px;
}
.job-side .job-card-sm .arrow{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-soft); color: var(--rose);
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.job-side .job-card-sm:hover .arrow{ background: var(--rose); color: #fff; }
.job-side .job-card-sm p{ font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.45; max-width: 44ch; }

/* "More openings" panel (like reference Events panel) */
.openings{
  margin-top: 24px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.55) 0%, rgba(243,246,251,.55) 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(0,0,0,.03);
}
.openings .openings-head h3{
  font-size: 20px; margin: 0 0 6px; letter-spacing: -.01em;
}
.openings .openings-head p{
  font-size: 13.5px; color: var(--muted); margin: 0 0 14px;
}
.openings .opening-row{
  display:grid; grid-template-columns: 1fr auto;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(255,255,255,.55) 0%, rgba(238,242,248,.55) 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 8px;
  transition: background .15s var(--ease), transform .15s var(--ease), border-color .15s var(--ease);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.openings .opening-row:last-child{ margin-bottom:0; }
.openings .opening-row:hover{
  background:
    linear-gradient(160deg, rgba(255,255,255,.75) 0%, rgba(221,230,243,.55) 100%);
  transform: translateX(2px);
  border-color: rgba(30,58,95,.20);
}
.openings .opening-row .row-meta{
  font-size: 12px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px;
}
.openings .opening-row .row-title{ font-size: 14.5px; font-weight: 600; color: var(--ink); }
.openings .opening-row .row-arrow{
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}

/* ---------- Spotlight (cert / clients / about) ---------- */
.spotlight-list{ display: grid; gap: 18px; }
.spot-row{
  display:grid;
  grid-template-columns: 260px 1fr;
  background:
    linear-gradient(160deg, rgba(255,255,255,.65) 0%, rgba(243,246,251,.55) 100%);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: var(--r-lg);
  padding: 22px;
  gap: 24px;
  align-items: center;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(0,0,0,.03);
  position: relative;
  overflow: hidden;
}
.spot-row::before{
  content:""; position:absolute;
  width: 220px; height: 220px;
  top: -80px; right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,.10), transparent 65%);
  filter: blur(30px);
  pointer-events:none;
}
.spot-row > *{ position: relative; z-index: 1; }
.spot-row.dark{
  background:
    radial-gradient(500px 250px at 80% 0%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(180deg, var(--rose-band) 0%, var(--rose-band-2) 100%);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.spot-row.dark::before{
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
}
.spot-row.dark p, .spot-row.dark .lbl{ color: rgba(255,255,255,.82); }
.spot-row.dark h3{ color: #fff; }

.spot-row .spot-image{
  height: 170px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.22) 100%),
    url("../img/generated/recruitment-team.jpg") center / cover no-repeat;
  border: 1px solid rgba(30,58,95,.10);
  display:flex; align-items:center; justify-content:center;
  color: transparent;
  font-size: 0;
}
.spot-row.dark .spot-image{
  background:
    linear-gradient(180deg, rgba(10,22,44,.02) 0%, rgba(10,22,44,.34) 100%),
    url("../img/generated/recruitment-team.jpg") center / cover no-repeat;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.20);
}
.spot-row .spot-image.tri{
  display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 8px; height: 170px;
  background: transparent;
  border: 0;
}
.spot-row .spot-image.tri > div{
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/certificates-authorisation.jpg") center / cover no-repeat;
  border: 1px solid rgba(30,58,95,.10);
  display:flex; align-items:center; justify-content:center;
  color: transparent;
  font-size: 0;
}
.spot-row:nth-child(1) .spot-image.tri > div:nth-child(1){ background-position: left center; }
.spot-row:nth-child(1) .spot-image.tri > div:nth-child(2){ background-position: center; }
.spot-row:nth-child(1) .spot-image.tri > div:nth-child(3){ background-position: right center; }
.spot-row:nth-child(2) .spot-image.tri > div:nth-child(1){
  background-image:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/employer-coordination.jpg");
}
.spot-row:nth-child(2) .spot-image.tri > div:nth-child(2){
  background-image:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/maintenance-manager.jpg");
}
.spot-row:nth-child(2) .spot-image.tri > div:nth-child(3){
  background-image:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.18) 100%),
    url("../img/generated/recruitment-team.jpg");
}

.spot-row h3{
  font-size: 22px; margin: 0 0 8px; letter-spacing: -.01em; color: var(--ink);
}
.spot-row p{ color: var(--ink-2); font-size: 14.5px; margin: 0 0 14px; max-width: 60ch; }
.spot-row .row-cta{
  display:inline-flex; align-items:center; gap: 8px;
  background: linear-gradient(160deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
  color: var(--ink);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
  transition: color .15s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.spot-row .row-cta:hover{ color: var(--rose); border-color: rgba(30,58,95,.4); }
.spot-row.dark .row-cta{
  background: linear-gradient(160deg, rgba(255,255,255,.30), rgba(255,255,255,.12));
  border-color: rgba(255,255,255,.4);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.spot-row.dark .row-cta:hover{ background: rgba(255,255,255,.42); color: #fff; border-color: rgba(255,255,255,.55); }
.spot-row .row-cta::after{ content:"→"; transition: transform .2s var(--ease); }
.spot-row .row-cta:hover::after{ transform: translateX(3px); }

/* ---------- Final CTA block ---------- */
.cta-final{
  background: #fff;
  padding: 96px 0 104px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after{
  content:"";
  position:absolute; border-radius:50%;
  filter: blur(90px);
  opacity: .32;
  pointer-events:none;
  z-index: 0;
  animation: drift 28s ease-in-out infinite;
}
.cta-final::before{
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 65%);
  top: -180px; left: -160px;
}
.cta-final::after{
  width: 440px; height: 440px;
  background: radial-gradient(circle, var(--rose-band) 0%, transparent 65%);
  bottom: -160px; right: -120px;
  animation-delay: -14s;
}
.cta-final > .container{ position: relative; z-index: 1; }
.cta-final h2{
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -.018em;
  margin: 0 auto 16px;
  font-weight: 700;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.cta-final h2 .rose{ color: var(--rose); }
.cta-final p{
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 auto 28px;
  font-size: 16px;
}
.cta-final .btn{ padding: 14px 26px; }

/* ---------- Forms (other pages) ---------- */
.form-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid label{ display:flex; flex-direction:column; gap:6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.form-grid input, .form-grid textarea, .form-grid select{
  border: 1px solid var(--hair-2);
  border-radius: var(--r-sm);
  padding: 11px 14px; font: inherit; font-size: 14.5px; color: var(--ink);
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus{
  outline: 0; border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-soft);
}
.form-note{
  display:none; margin-top: 12px; padding: 12px 14px;
  background: var(--rose-soft); color: var(--rose);
  border-radius: var(--r-md); font-size: 14px;
}
.form-note.show{ display:block; }

/* ---------- Job-list (used by main.js on jobs.html) ---------- */
.job-list{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card{
  background: #fff; border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.card h3{ font-size: 19px; margin: 8px 0; letter-spacing: -.005em; }
.card p{ color: var(--ink-2); margin: 0 0 12px; }
.job-card{
  display:grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end;
  position: relative; overflow: hidden;
}
.job-card::before{
  content:""; position:absolute; left:0; top:18px; bottom:18px; width:3px;
  background: linear-gradient(180deg, var(--rose), var(--burgundy));
  border-radius: 0 3px 3px 0; opacity: 0; transition: opacity .25s var(--ease);
}
.job-card:hover::before{ opacity: 1; }
.job-meta{ display:flex; flex-wrap:wrap; gap: 6px; }
.pill{
  display:inline-flex; align-items:center; font-size: 12px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: #f3eef0; color: var(--ink-2); font-weight: 500; letter-spacing: .01em;
}
.pill:nth-child(2){ background: var(--rose-soft); color: var(--rose); }
.pill:nth-child(3){ background: #efe6e7; color: var(--muted); }

.placeholder-image{
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(10,22,44,0) 0%, rgba(10,22,44,.20) 100%),
    url("../img/generated/recruitment-team.jpg") center / cover no-repeat;
  display:flex; align-items:center; justify-content:center;
  color: transparent;
  font-size: 0;
  border: 1px solid rgba(30,58,95,.08);
}
.grid-3 .card:nth-child(1) .placeholder-image{ background-position: left center; }
.grid-3 .card:nth-child(2) .placeholder-image{ background-position: center; }
.grid-3 .card:nth-child(3) .placeholder-image{ background-position: right center; }
.placeholder-image.client-logo{
  aspect-ratio: 5/2;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 8px, rgba(0,0,0,.07) 8px 9px),
    #fbfbfb;
  color: var(--muted); border-color: var(--hair);
}

.notice{
  padding: 18px 22px; background: #fff;
  border-radius: var(--r-md); color: var(--muted);
  box-shadow: var(--shadow-card); grid-column: 1 / -1;
}

/* ---------- Footer ---------- */
.footer{
  background: linear-gradient(180deg, var(--rose-band) 0%, var(--rose-band-2) 60%, var(--burgundy) 100%);
  color: #f5dcdf;
  padding: 56px 0 22px;
}
.footer .container{ position: relative; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer .footer-brand{
  display:flex; align-items:center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-img{
  width: min(245px, 100%);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .96;
  transform: translateX(-3px);
}
.footer .footer-brand .logo-mark{
  background: rgba(255,255,255,.14); color: #fff;
}
.footer .footer-brand .name{ color:#fff; font-weight:700; letter-spacing:-.005em; }
.footer .footer-brand .name small{
  display:block; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-top:2px;
}
.footer h4{
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 14px;
}
.footer p{ color: rgba(255,255,255,.75); margin: 0 0 8px; font-size: 14px; line-height: 1.6; }
.footer ul{ list-style: none; margin: 0; padding: 0; display:grid; gap: 8px; }
.footer a{
  color: rgba(255,255,255,.85); font-size: 14px;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
}
.footer a:hover{ color: #fff; border-bottom-color: rgba(255,255,255,.4); }
.footer-bottom{
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  display:flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,.7);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px){
  .hero-grid{ padding-top: 40px; padding-bottom: 44px; gap: 24px; }
  .stats-band{ padding: 26px 0 30px; }
  .features-grid{ grid-template-columns: 1fr; }
  .feature-card{ aspect-ratio: 16/9; }
  .jobs-spotlight{ grid-template-columns: 1fr; }
  .featured-job{ aspect-ratio: 16/9; }
  .openings{ grid-template-columns: 1fr; gap: 14px; }
  .spot-row{ grid-template-columns: 1fr; }
  .spot-row .spot-image{ height: 180px; }
  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  body{ padding: 8px; }
  .container{ padding: 0 22px; }
  .site-logo-img{ height: 44px; }
  .hero-grid{
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 30px;
    gap: 22px;
  }
  .hero-card{ min-height: 0; order: -1; }
  .world{ max-width: 260px; margin: 0 auto; }
  .stats-band{ padding: 22px 0 24px; }
  .stats-band .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .stat-card + .stat-card::before{ display:none; }
  .section{ padding: 56px 0 40px; }
  .section.compact{ padding: 40px 0 28px; }
  .section-title{ margin-bottom: 28px; }
  .feature-card{ aspect-ratio: 4/3; }
  .featured-job{ aspect-ratio: 4/3; }
  .job-side .job-card-sm{ grid-template-columns: 92px 1fr 36px; gap: 12px; }
  .job-side .thumb{ width: 92px; height: 80px; }
  .footer{ padding: 44px 0 22px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .job-list{ grid-template-columns: 1fr; }
  .cta-final{ padding: 64px 0 72px; }
}

/* ---------- Reveal (no-op; reserved for future) ---------- */
.reveal{ }

/* ---------- Liquid drift keyframe ---------- */
@keyframes drift{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%     { transform: translate(18px,-14px) scale(1.04); }
}
@media (prefers-reduced-motion: reduce){
  *{ animation: none!important; }
}

/* ============================================================
   Inner-page styles (about, services, forms, jobs, etc.)
   ============================================================ */

/* Compact page hero — full-bleed glass strip (matches the homepage hero) */
.page-hero{
  background:
    linear-gradient(160deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 100%),
    var(--blush-2);
  border-top: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.5);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(30,58,95,.06);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  /* internal blush wash top-left (drifts) */
  content:""; position:absolute;
  width: 380px; height: 380px;
  top: -140px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,95,.16), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: drift 24s ease-in-out infinite;
}
.page-hero::after{
  /* internal blush wash bottom-right (drifts) */
  content:""; position:absolute;
  width: 460px; height: 460px;
  bottom: -200px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,74,114,.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: drift 28s ease-in-out infinite -12s;
}
.page-hero > .container{
  /* no longer a rounded glass card — just the content container */
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 56px 32px 60px;
  position: relative;
  z-index: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
  max-width: var(--maxw);
}
.page-hero > .container::before{ display: none; }
.breadcrumb{
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.breadcrumb a{
  color: var(--rose);
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover{ border-bottom-color: var(--rose); }
.page-hero h1{
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}
.page-hero p{
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
  font-size: 16px;
  text-wrap: pretty;
}

/* Two-column layout: sidebar + content */
.container.split{
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* Single-column inner pages — readable max-widths */
.section > .container > .grid:not(.grid-2):not(.grid-3):not(.grid-4){
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
/* Forms centered & narrower (about, services, contact's grid-2 cell handles itself) */
form.card{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/* Allow forms inside grid-2 (contact page) to fill their cell */
.grid-2 > form.card,
.container.grid-2 > form.card{ max-width: none; }

/* Sidebar */
.sidebar{ position: sticky; top: 100px; }
.sidebar .card{ padding: 22px; }
.sidebar .card h3{
  font-size: 11.5px;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--rose);
  font-weight: 700;
}
.link-list{ display: grid; gap: 2px; }
.link-list a{
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  border: 1px solid transparent;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.link-list a:hover{
  background: var(--rose-soft);
  color: var(--rose);
}
.link-list a.active{
  background: linear-gradient(160deg, rgba(255,255,255,.78), rgba(238,242,248,.55));
  color: var(--rose);
  border-color: rgba(30,58,95,.18);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

/* Inner-page section needs less aggressive padding */
.section .container.split + *{ margin-top: 24px; }

/* Cards inside split content — tighter vertical rhythm */
.split > .grid{ display: grid; gap: 18px; }
.split > .grid > .card,
.split > .grid > .grid > .card,
.split > .card{ /* picked up by .card defaults */ }

/* Card numbered icon (used on services, about, etc.) */
.card .icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--rose-soft);
  color: var(--rose);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: .04em;
  margin-bottom: 14px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.card:hover .icon{ background: var(--rose); color: #fff; }

/* Lists inside cards */
.card ul, .card ol{
  margin: 8px 0 0;
  padding-left: 22px;
  color: var(--ink-2);
}
.card ul li, .card ol li{ margin: 6px 0; }
.card h2{
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 10px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.card h3{ font-size: 17px; margin: 0 0 8px; letter-spacing: -.005em; }
.card .eyebrow{ margin-bottom: 12px; }

/* ===== Forms ===== */
form.card{ padding: 28px; }
form.card label{
  display:flex; flex-direction:column; gap: 6px;
  font-size: 13px; color: var(--muted); font-weight: 600;
  margin-bottom: 12px;
}
form.card label.full{ grid-column: 1 / -1; }
form.card .required{ color: var(--rose); margin-left: 2px; }
form.card .input,
form.card input,
form.card textarea,
form.card select{
  font: inherit; font-size: 14.5px; color: var(--ink);
  background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  border: 1px solid rgba(30,58,95,.16);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  font-weight: 400;
  font-family: inherit;
}
form.card textarea{ min-height: 120px; resize: vertical; }
form.card .input:focus,
form.card input:focus,
form.card textarea:focus,
form.card select:focus{
  outline: 0;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 3px var(--rose-soft);
}
form.card input[type="file"]{ padding: 9px 12px; background: rgba(255,255,255,.6); }
form.card .form-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px 16px;
  margin-top: 14px;
}
form.card .form-grid label{ margin-bottom: 0; }
form.card .form-note.show{
  margin-top: 16px;
}
form.card > br{ display:none; }
form.card .btn{ margin-top: 18px; }

/* ===== Jobs filters (jobs.html) ===== */
.filters{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.6) 0%, rgba(243,246,251,.45) 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 2px rgba(0,0,0,.03);
}
.filters .input,
.filters input,
.filters select{
  font: inherit; font-size: 14.5px;
  background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  border: 1px solid rgba(30,58,95,.18);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.filters input:focus, .filters select:focus{
  outline: 0;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-soft);
}

/* Job-list cards (rendered by main.js) — full-width single column on jobs.html */
.section > .container > .job-list{
  grid-template-columns: 1fr;
  gap: 14px;
}
.job-list .job-card{
  padding: 22px 26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.72) 100%);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 14px 28px -16px rgba(10,20,40,.16);
}

/* ===== Recruitment procedure steps ===== */
.steps{ padding: 28px; }
.steps .step{
  position: relative;
  padding: 14px 14px 14px 56px;
  margin-bottom: 10px;
  border-radius: var(--r-md);
  background:
    linear-gradient(160deg, rgba(255,255,255,.55) 0%, rgba(243,246,251,.55) 100%);
  border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  counter-increment: step;
}
.steps{ counter-reset: step; }
.steps .step:last-child{ margin-bottom: 0; }
.steps .step::before{
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  box-shadow: 0 6px 12px -4px rgba(30,58,95,.45);
}
.steps .step h3{ margin: 0 0 4px; font-size: 15.5px; }
.steps .step p{ margin: 0; font-size: 13.5px; color: var(--ink-2); }

/* ===== Hamari Yatra timeline ===== */
.timeline{ position: relative; padding-left: 22px; margin-top: 12px; }
.timeline::before{
  content:""; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose) 0%, var(--burgundy) 100%);
  border-radius: 2px;
}
.timeline-item{
  position: relative; padding: 6px 0 18px 18px;
}
.timeline-item::before{
  content:""; position: absolute; left: -16px; top: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--rose);
  box-shadow: 0 0 0 4px rgba(30,58,95,.10);
}
.timeline-item h3{ margin: 0 0 4px; font-size: 16px; color: var(--rose); }
.timeline-item p{ margin: 0; font-size: 14px; color: var(--ink-2); }

/* ===== Misc ===== */
.cta-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

/* ===== Inner-page responsive ===== */
@media (max-width: 940px){
  .container.split{ grid-template-columns: 1fr; gap: 18px; }
  .sidebar{ position: relative; top: auto; }
  .sidebar .card{ padding: 16px; }
  .link-list{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  form.card .form-grid{ grid-template-columns: 1fr; }
  .filters{ grid-template-columns: 1fr; }
}
@media (max-width: 540px){
  .page-hero > .container{ padding: 32px 22px 36px; }
  .link-list{ grid-template-columns: 1fr; }
}


/* ---------- Admin-managed ad strip ---------- */
.ads-section{ padding: 28px 0 4px; background: var(--blush-top); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.ads-section[hidden]{ display:none; }
.ads-section .eyebrow{ color: var(--rose); margin: 0 0 12px; }
.ads-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.ad-card{
  display: grid; grid-template-rows: auto 1fr;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r-md);
  overflow: hidden; color: var(--ink); text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  box-shadow: var(--shadow-card);
}
a.ad-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--rose-soft-2); color: var(--ink); }
.ad-img{ aspect-ratio: 16/9; background: var(--rose-soft); overflow: hidden; }
.ad-img img{ width: 100%; height: 100%; object-fit: cover; display:block; }
.ad-text{ padding: 14px 16px 16px; }
.ad-text h3{ margin: 0 0 6px; font-size: 17px; }
.ad-text p{ margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- Contact page ---------- */
.contact-section{ padding: 64px 0 72px; }
.contact-grid{
  width: min(1360px, calc(100vw - 48px));
  max-width: 1360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(690px, auto);
  align-items: stretch;
  gap: 32px;
  padding-left: 24px;
  padding-right: 24px;
}
.contact-grid > .card,
.contact-grid > form.card{
  align-self: stretch;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.contact-info-card, .contact-form-card{ padding: 36px; min-height: 100%; }
.contact-info-card h2, .contact-form-card h2{ margin: 6px 0 20px; }

.contact-list{
  list-style:none;
  padding:0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-list li{ display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.contact-list li:nth-child(3){ grid-column: 1 / -1; }
.contact-list .ci-ic{
  width:36px; height:36px; border-radius: 10px;
  background: var(--rose-soft); color: var(--rose);
  display:grid; place-items:center; font-size: 16px;
}
.contact-list strong{ display:block; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); font-weight: 700; }
.contact-list p{ margin: 4px 0 0; line-height: 1.45; font-size: 15px; }
.contact-list a{ color: var(--ink); }
.contact-list a:hover{ color: var(--rose); }

.map-embed{
  position: relative; width: 100%; aspect-ratio: 16/8.5;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--hair); background: var(--rose-soft);
}
.map-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
.map-link{
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 14px; font-weight: 600;
  color: var(--rose);
}
.map-link:hover{ color: var(--rose-2); }

.contact-form-card{
  display: flex;
  flex-direction: column;
}
.contact-form-card .form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto minmax(300px, 1fr);
  gap: 16px;
  margin-bottom: 18px;
  flex: 1;
}
.contact-form-card .form-grid label{ display:flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.contact-form-card .form-grid label.full{ grid-column: 1 / -1; }
.contact-form-card .form-grid label.full:last-child{ min-height: 100%; }
.contact-form-card .field-label{
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  min-height: 18px;
}
.contact-form-card .form-grid .input,
.contact-form-card .form-grid textarea{
  font: inherit; color: var(--ink);
  width: 100%;
  min-height: 48px;
  padding: 12px 14px; border: 1px solid var(--hair); border-radius: 12px;
  background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.contact-form-card .form-grid textarea{ min-height: 300px; flex: 1; }
.contact-form-card .form-grid .input:focus,
.contact-form-card .form-grid textarea:focus{
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-soft);
}
.contact-form-card .required{ color: var(--rose); margin-left: 2px; }

@media (max-width: 1080px){
  .contact-grid{
    width: auto;
    max-width: 820px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 24px;
  }
}
@media (max-width: 820px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-list{ grid-template-columns: 1fr; }
  .contact-list li:nth-child(3){ grid-column: auto; }
  .contact-form-card .form-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 540px){
  .contact-section{ padding: 44px 0 48px; }
  .contact-grid{
    width: auto;
    padding-left: 22px;
    padding-right: 22px;
  }
  .contact-info-card, .contact-form-card{ padding: 22px; }
  .map-embed{ aspect-ratio: 4/3; }
}

/* ---------- Cookie consent banner ---------- */
#cookie-banner{
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 1200;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px -16px rgba(10,20,40,.35);
  padding: 14px 18px;
  max-width: 980px; margin-left: auto; margin-right: auto;
  font-size: 14px; line-height: 1.5;
  animation: ccup .22s ease both;
}
@keyframes ccup { from { transform: translateY(20px); opacity: 0; } }
.cookie-banner-inner{
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie-banner-text{ flex: 1; min-width: 280px; color: var(--ink-2); }
.cookie-banner-text strong{ display:block; color: var(--ink); margin-bottom: 4px; }
.cookie-banner-text a{ color: var(--rose); }
.cookie-banner-actions{ display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner-actions .btn{ padding: 8px 16px; font-size: 13px; }

/* ---------- Legal pages ---------- */
.legal-section{ padding-bottom: 64px; }
.legal-container{ max-width: 880px; }
.legal-container h2{ font-size: 22px; margin: 36px 0 12px; color: var(--ink); }
.legal-container h3{ font-size: 17px; margin: 22px 0 8px; color: var(--ink-2); }
.legal-container p, .legal-container ul{ color: var(--ink-2); line-height: 1.65; margin: 10px 0; }
.legal-container ul{ padding-left: 20px; }
.legal-container ul li{ margin: 4px 0; }
.legal-container code{ background: var(--section-alt); padding: 1px 6px; border-radius: 6px; font-size: 13px; color: var(--rose-2); }
.legal-container a{ color: var(--rose); }
.legal-meta{
  background: var(--section-alt); padding: 10px 14px; border-radius: 10px;
  font-size: 13px; color: var(--muted); margin: 0 0 24px;
}
.legal-address{
  background: var(--section-alt); border-left: 3px solid var(--rose);
  padding: 12px 16px; border-radius: 8px; font-size: 14.5px;
}
.legal-table{
  width: 100%; border-collapse: collapse; margin: 14px 0;
  font-size: 13.5px; background: #fff;
  border: 1px solid var(--hair); border-radius: 10px; overflow: hidden;
}
.legal-table th, .legal-table td{
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--hair); vertical-align: top;
}
.legal-table th{ background: var(--section-alt); font-weight: 700; color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.legal-table tr:last-child td{ border-bottom: 0; }
.legal-callout{
  background: #fff7e6; border: 1px solid #f7d8a0;
  border-radius: 10px; padding: 14px 18px; margin: 14px 0;
  color: #6b3a06;
}
.legal-callout ul{ margin: 8px 0; padding-left: 18px; }
.legal-foot{
  margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--hair);
  color: var(--muted); font-size: 14px;
}
.link-cta{
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--rose); font: inherit; text-decoration: underline;
}
.link-cta:hover{ color: var(--rose-2); }

/* ---------- Form consent checkbox ---------- */
.form-consent{
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--section-alt);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0 16px;
  font-size: 13px; line-height: 1.5;
  color: var(--ink-2);
}
.form-consent input[type=checkbox]{ margin-top: 3px; flex-shrink: 0; transform: scale(1.1); accent-color: var(--rose); }
.form-consent a{ color: var(--rose); }

@media (max-width: 640px){
  #cookie-banner{ left: 8px; right: 8px; bottom: 8px; padding: 12px; }
  .cookie-banner-actions{ width: 100%; }
  .cookie-banner-actions .btn{ flex: 1; }
}

/* Brand "TOP" highlight */
.top-red{ color: red; }

/* Hero eyebrow: airplane flying AROUND the whole phrase (replaces dot + leading dash) */
.eyebrow--fly{ overflow: visible; margin-top: 16px; margin-bottom: 34px; text-transform: none; }
.eyebrow--fly::before{ display: none; }          /* drop the leading dash */
.fly-wrap{
  position: relative;
  display: inline-block;
}
.fly-plane{
  position: absolute;
  width: 26px; height: 26px;
  color: var(--rose);
  filter: drop-shadow(0 5px 7px rgba(29,78,216,.18));
  animation: fly-orbit 10.5s cubic-bezier(.45,0,.55,1) infinite;
  will-change: top, left, transform;
}
.fly-plane svg{ width: 100%; height: 100%; display: block; fill: currentColor; }

/* Smooth orbital pass around the phrase. The plane follows rounded arcs and banks
   through the turns instead of snapping around a rectangular perimeter. */
@keyframes fly-orbit{
  0%    { top: 56%;               left: -30px;              transform: translate(-50%,-50%) rotate(-20deg) scale(.96); }
  10%   { top: -17px;             left: 6%;                 transform: translate(-50%,-50%) rotate(-16deg) scale(1); }
  22%   { top: -29px;             left: 26%;                transform: translate(-50%,-50%) rotate(-6deg) scale(1.02); }
  34%   { top: -31px;             left: 52%;                transform: translate(-50%,-50%) rotate(3deg) scale(1.02); }
  46%   { top: -20px;             left: 80%;                transform: translate(-50%,-50%) rotate(18deg) scale(1); }
  56%   { top: 45%;               left: calc(100% + 30px);  transform: translate(-50%,-50%) rotate(98deg) scale(.98); }
  66%   { top: calc(100% + 25px); left: 82%;                transform: translate(-50%,-50%) rotate(164deg) scale(.96); }
  78%   { top: calc(100% + 31px); left: 55%;                transform: translate(-50%,-50%) rotate(184deg) scale(.96); }
  90%   { top: calc(100% + 22px); left: 18%;                transform: translate(-50%,-50%) rotate(205deg) scale(.98); }
  100%  { top: 56%;               left: -30px;              transform: translate(-50%,-50%) rotate(340deg) scale(.96); }
}
@media (prefers-reduced-motion: reduce){
  .fly-plane{ animation: none; top: -18px; left: 50%; transform: translate(-50%,-50%) rotate(0deg); }
}

/* ---------- Recruitment progression diagram (Selection Process) ---------- */
.process-diagram{
  margin: 20px auto 0;
  max-width: 1120px;
}
.process-diagram img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 720px){
  .process-diagram{
    margin-top: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .process-diagram img{
    width: 840px;
    max-width: none;
  }
}

/* ---------- Team of TOP — executive profiles ---------- */
.team-exec-list{ display: grid; gap: 16px; margin-top: 8px; }
.team-exec{
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(255,255,255,.85) 0%, rgba(239,246,255,.45) 100%);
}
.team-photo{
  width: 100%;
  height: 100%;
  min-height: 190px;
  border-radius: var(--r-md);
  background: var(--rose-soft);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo span{
  font-size: 40px; font-weight: 800; letter-spacing: .04em;
  color: var(--rose); opacity: .55;
}
.team-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-bio h3{ margin: 0 0 2px; }
.team-role{
  color: var(--rose);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.team-bio p{ color: var(--ink-2); text-align: justify; }
.text-justify{ text-align: justify; }
.team-contact{ margin-top: 10px; font-size: 14px; }
.team-contact a{ color: var(--rose); font-weight: 600; text-decoration: none; }
.team-contact a:hover{ text-decoration: underline; }
@media (max-width: 720px){
  .team-exec{ grid-template-columns: 1fr; }
  .team-photo{ max-width: 200px; height: auto; min-height: 0; aspect-ratio: 1 / 1; }
}
