:root{
  --ink:#101B2D;
  --ink-2:#182742;
  --forest:#1F3A2C;
  --paper:#FAFAF8;
  --paper-2:#F1F0EB;
  --gold:#C89A3D;
  --gold-soft:#DCC077;
  --rust:#B5562E;
  --text-dark:#181510;
  --text-mute:#5B5646;
  --text-light:#F4EFE2;
  --text-light-mute:#B9C2CE;
  --line:rgba(24,21,16,0.14);
  --line-light:rgba(244,239,226,0.18);
  --radius:6px;
  --display:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){ --ink:#0C1420; --ink-2:#121F35; --forest:#182F22; --paper:#F3F2EE; --paper-2:#E9E7E0; }
}
:root[data-theme="dark"]{ --ink:#0C1420; --ink-2:#121F35; --forest:#182F22; --paper:#F3F2EE; --paper-2:#E9E7E0; }

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--paper); color:var(--text-dark); font-family:var(--sans); -webkit-font-smoothing:antialiased; overflow-x:hidden;}
img,svg{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button,input,select,textarea{font-family:inherit;}
.wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }
h1,h2,h3{font-family:var(--display); font-weight:700; line-height:1.12; letter-spacing:-0.015em; color:var(--text-dark);}
.num-font{font-family:var(--display); font-variant-numeric:tabular-nums; font-weight:700;}
::selection{background:var(--gold-soft); color:var(--ink);}
:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- Nav ---------- */
header.site{position:sticky; top:0; z-index:60; background:rgba(242,236,221,0.95); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
.navbar{display:flex; align-items:center; gap:24px; padding:16px 32px; max-width:1200px; margin:0 auto;}
.brand{display:flex; align-items:center; gap:9px; font-family:var(--display); font-size:1.2rem; font-weight:800; color:var(--ink); flex:none;}
.brand .dotmark circle{fill:var(--ink);}
.brand .dotmark .g{fill:var(--gold);}
.brand-logo{height:56px; width:auto; display:block; object-fit:contain;}
.foot-brand .brand-logo{height:56px;}
.nav-search{position:relative; flex:1; max-width:340px; display:flex; align-items:center;}
.nav-search svg{position:absolute; left:13px; width:16px; height:16px; stroke:var(--text-mute); stroke-width:2; fill:none; pointer-events:none;}
.nav-search input{
  width:100%; padding:10px 14px 10px 38px; border-radius:20px; border:1px solid var(--line);
  background:var(--paper-2); font-size:.88rem; color:var(--text-dark); outline:none;
  transition:border-color .2s ease, background .2s ease;
}
.nav-search input:focus{border-color:var(--gold); background:var(--paper);}
.search-results{
  position:absolute; top:calc(100% + 8px); left:0; right:0; background:var(--paper);
  border:1px solid var(--line); border-radius:10px; box-shadow:0 20px 44px -18px rgba(16,27,45,.35);
  max-height:360px; overflow-y:auto; display:none; z-index:90;
}
.search-results.show{display:block;}
.search-results .sr-item{padding:12px 16px; border-bottom:1px solid var(--line); cursor:pointer; transition:background .15s ease;}
.search-results .sr-item:last-child{border-bottom:none;}
.search-results .sr-item:hover{background:var(--paper-2);}
.sr-item .sr-name{font-weight:600; font-size:.9rem;}
.sr-item .sr-meta{font-size:.78rem; color:var(--text-mute); margin-top:2px;}
.search-results .sr-empty{padding:16px; font-size:.86rem; color:var(--text-mute);}
nav.links{display:flex; gap:28px; align-items:center; flex:none;}
nav.links a{font-size:.92rem; font-weight:500; color:var(--text-dark); position:relative; padding:4px 0;}
nav.links a.active{color:var(--rust);}
nav.links a:not(.cta-btn)::after{content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;}
nav.links a:not(.cta-btn):hover::after, nav.links a.active:not(.cta-btn)::after{transform:scaleX(1);}
.cta-btn{background:var(--rust); color:#fff; padding:10px 20px; border-radius:20px; font-size:.88rem; font-weight:700; border:1px solid var(--rust); white-space:nowrap; transition:background .2s ease, color .2s ease, border-color .2s ease;}
.cta-btn:hover{background:#963F1E; border-color:#963F1E; color:#fff;}
.menu-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px; flex:none;}
.menu-toggle svg{width:22px; height:22px;}
.mobile-drawer{display:flex; flex-direction:column; gap:6px; position:fixed; inset:0 0 0 auto; width:min(320px,86vw); height:100vh; background:var(--ink); color:var(--text-light); z-index:80; padding:24px; transform:translateX(100%); transition:transform .3s ease;}
.mobile-drawer.open{transform:translateX(0);}
.drawer-scrim{display:none; position:fixed; inset:0; background:rgba(16,27,45,.5); z-index:70;}
.drawer-scrim.open{display:block;}
.mobile-drawer .drawer-search{position:relative; margin-bottom:10px;}
.mobile-drawer .drawer-search svg{position:absolute; left:12px; top:12px; width:16px; height:16px; stroke:var(--text-light-mute); stroke-width:2; fill:none;}
.mobile-drawer .drawer-search input{width:100%; padding:11px 12px 11px 36px; border-radius:20px; border:1px solid var(--line-light); background:var(--ink-2); color:var(--text-light); font-size:.9rem; outline:none;}
.mobile-drawer a{padding:13px 4px; border-bottom:1px solid var(--line-light); font-size:1.02rem; font-weight:500;}
.mobile-drawer .cta-btn{margin-top:16px; text-align:center;}
.drawer-close{align-self:flex-end; background:none; border:none; color:var(--text-light); cursor:pointer;}
@media (max-width:980px){ nav.links, .nav-search{display:none;} .menu-toggle{display:flex;} .navbar{gap:0; justify-content:space-between;} }

/* ---------- Page header (non-home pages) ---------- */
.page-head{background:var(--ink); color:var(--text-light); padding:56px 0 48px; position:relative; overflow:hidden;}
.page-head::after{content:''; position:absolute; inset:0; background:radial-gradient(60% 100% at 85% 0%, rgba(200,154,61,.14), transparent 60%);}
.page-head .wrap{position:relative; z-index:1;}
.page-kicker{font-family:var(--display); font-weight:700; font-size:.82rem; color:var(--gold-soft); margin-bottom:10px; display:block;}
.page-head h1{color:var(--text-light); font-size:clamp(1.9rem,3.6vw,2.7rem);}
.page-head p{color:var(--text-light-mute); margin-top:14px; max-width:56ch; font-size:1.02rem; line-height:1.6;}
.crumb{font-size:.82rem; color:var(--text-light-mute); margin-bottom:14px;}
.crumb a{color:var(--gold-soft);}
.crumb a:hover{text-decoration:underline;}

/* ---------- Hero (home) ---------- */
.hero{background:var(--ink); color:var(--text-light); padding:60px 0 0; position:relative; overflow:hidden;}
.hero-photo{position:absolute; inset:0; z-index:0;}
.hero-photo img, .hero-photo video{width:100%; height:100%; object-fit:cover; opacity:.30;}
.hero-photo::after{content:''; position:absolute; inset:0; background:linear-gradient(100deg, var(--ink) 32%, rgba(16,27,45,.75) 65%, rgba(16,27,45,.55) 100%);}
.hero-grid{display:grid; grid-template-columns:1fr 0.92fr; gap:54px; align-items:center; padding-bottom:66px; position:relative; z-index:1;}
.hero h1{font-size:clamp(2.2rem,4.2vw,3.3rem); color:var(--text-light); font-weight:800;}
.hero p.lede{font-size:1.08rem; color:var(--text-light-mute); max-width:44ch; margin-top:18px; line-height:1.62;}

.hero-slider{position:relative; min-height:210px;}
.hero-slide{position:absolute; top:0; left:0; right:0; max-width:20ch; opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; pointer-events:none;}
.hero-slide.active{opacity:1; transform:translateY(0); pointer-events:auto;}
@media (max-width:940px){ .hero-slider{min-height:170px;} }
@media (max-width:560px){ .hero-slider{min-height:230px;} .hero-slide{max-width:none;} }
.hero-actions{display:flex; gap:14px; margin-top:28px; flex-wrap:wrap;}
.btn-primary{background:var(--gold); color:var(--ink); padding:13px 24px; border-radius:24px; font-weight:700; font-size:.92rem; border:1px solid var(--gold); transition:background .2s ease, color .2s ease; cursor:pointer; display:inline-flex; align-items:center; gap:8px;}
.btn-primary:hover{background:transparent; color:var(--gold);}
.btn-secondary{padding:13px 22px; border-radius:24px; border:1px solid var(--line-light); color:var(--text-light); font-size:.92rem; font-weight:600; transition:border-color .2s ease, background .2s ease; display:inline-flex; align-items:center; gap:8px;}
.btn-secondary:hover{border-color:var(--gold-soft); background:rgba(200,154,61,.08);}
.btn-secondary.on-paper{color:var(--text-dark); border-color:var(--line);}
.btn-secondary.on-paper:hover{border-color:var(--gold); background:rgba(200,154,61,.08);}
.hero-stats{display:flex; gap:28px; margin-top:36px; flex-wrap:wrap;}
.hstat b{display:block; font-size:1.35rem; color:var(--gold-soft); font-weight:800;}
.hstat span{font-size:.8rem; color:var(--text-light-mute); font-weight:500;}

.matcher{background:var(--paper); color:var(--text-dark); border-radius:14px; padding:24px; box-shadow:0 30px 70px -20px rgba(0,0,0,.55); position:relative;}
.matcher-top{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
.matcher-top h3{font-family:var(--display); font-size:1rem; font-weight:700;}
.matcher-top span{font-size:.74rem; color:var(--text-mute); font-weight:500;}
.field{margin-bottom:13px;}
.field label{display:block; font-size:.78rem; color:var(--text-mute); margin-bottom:6px; font-weight:500;}
.field select{
  width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:10px;
  background:var(--paper-2); font-family:var(--sans); font-size:.92rem; color:var(--text-dark);
  appearance:none; -webkit-appearance:none; font-weight:500;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B5646' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat:no-repeat; background-position:right 12px center; background-size:16px;
}
.matcher-cta{width:100%; margin-top:4px; padding:13px; border-radius:24px; border:none; background:var(--ink); color:var(--text-light); font-weight:700; font-size:.94rem; cursor:pointer; transition:background .2s ease;}
.matcher-cta:hover{background:var(--ink-2);}
.matcher-result{margin-top:16px; padding-top:16px; border-top:1px solid var(--line); display:none;}
.matcher-result.show{display:block; animation:fadein .4s ease;}
@keyframes fadein{from{opacity:0; transform:translateY(4px);} to{opacity:1; transform:translateY(0);}}
.matcher-result .count{font-size:.86rem; color:var(--text-mute); font-weight:500;}
.matcher-result .count b{color:var(--rust); font-weight:800;}
.match-row{display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line); font-size:.9rem;}
.match-row:last-child{border-bottom:none;}
.match-row .mname{font-weight:600;}
.match-row .mmeta{color:var(--text-mute); font-size:.78rem;}
@media (max-width:940px){ .hero-grid{grid-template-columns:1fr; gap:36px;} }

.trust{background:var(--paper-2); border-bottom:1px solid var(--line); padding:22px 0;}
.trust-row{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.trust-label{font-size:.86rem; color:var(--text-mute); white-space:nowrap; font-weight:500;}
.trust-names{display:flex; gap:28px; flex-wrap:wrap;}
.trust-names span{font-family:var(--display); font-weight:700; font-size:.94rem; color:var(--text-dark); opacity:.8;}

section{padding:90px 0;}
@media (max-width:640px){ section{padding:56px 0;} }
.section-head{max-width:640px; margin-bottom:46px;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.3rem);}
.section-head p{margin-top:12px; color:var(--text-mute); font-size:1.02rem; line-height:1.6;}
.section-kicker{font-family:var(--display); font-weight:700; font-size:.82rem; color:var(--gold); margin-bottom:12px; display:block;}

.photo-band{padding:0; overflow:hidden;}
.photo-band-grid{display:grid; grid-template-columns:0.9fr 1.1fr; align-items:stretch;}
.photo-band-img{position:relative; min-height:380px;}
.photo-band-img img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.photo-band-text{background:var(--ink); color:var(--text-light); display:flex; flex-direction:column; justify-content:center; padding:60px 56px;}
.photo-band-text h2{color:var(--text-light); font-size:clamp(1.6rem,2.6vw,2.1rem);}
.photo-band-text p{color:var(--text-light-mute); margin-top:14px; font-size:1rem; line-height:1.6; max-width:42ch;}
.photo-band-stats{display:flex; gap:32px; margin-top:26px;}
.photo-band-stats b{font-size:1.4rem; color:var(--gold-soft); display:block; font-weight:800;}
.photo-band-stats span{font-size:.8rem; color:var(--text-light-mute); font-weight:500;}
@media (max-width:860px){ .photo-band-grid{grid-template-columns:1fr;} .photo-band-img{min-height:240px;} .photo-band-text{padding:40px 26px;} }

.section-banner{position:relative; height:210px; display:flex; align-items:flex-end; overflow:hidden;}
.section-banner img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
.section-banner::after{content:''; position:absolute; inset:0; background:linear-gradient(0deg, var(--paper) 0%, rgba(242,236,221,.35) 55%, rgba(16,27,45,.35) 100%);}
.section-banner .wrap{position:relative; z-index:1; width:100%; padding-bottom:24px;}

.steps{display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line);}
.step{padding:30px 22px 30px 0; border-right:1px solid var(--line);}
.step:last-child{border-right:none;}
.step .num-font{font-size:.86rem; color:var(--gold); display:block; margin-bottom:13px;}
.step h3{font-size:1.08rem; font-weight:700; margin-bottom:8px;}
.step p{font-size:.92rem; color:var(--text-mute); line-height:1.6;}
@media (max-width:900px){ .steps{grid-template-columns:1fr 1fr;} .step{border-bottom:1px solid var(--line);} .step:nth-child(2n){border-right:none;} }
@media (max-width:560px){ .steps{grid-template-columns:1fr;} .step{border-right:none;} }

/* ---------- Services (teaser on home + full grid on services page) ---------- */
.services-band{background:var(--paper-2); color:var(--text-dark); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.services-band .section-head p{color:var(--text-mute);}
.services-band .section-kicker{color:var(--rust);}
.services-head-row{display:grid; grid-template-columns:1.3fr 0.9fr; gap:40px; align-items:end; margin-bottom:46px;}
.services-head-row .section-head{margin-bottom:0;}
.services-photo{border-radius:12px; overflow:hidden; height:190px;}
.services-photo img{width:100%; height:100%; object-fit:cover;}
@media (max-width:820px){ .services-head-row{grid-template-columns:1fr;} .services-photo{height:150px;} }
.service-list{border-top:1px solid var(--line);}
.service-row{display:grid; grid-template-columns:44px 1.1fr 1.6fr; gap:24px; align-items:start; padding:26px 0; border-bottom:1px solid var(--line);}
.service-row svg{width:24px; height:24px; stroke:var(--rust); fill:none; stroke-width:1.6;}
.service-row h3{font-weight:700; font-size:1.06rem;}
.service-row p{color:var(--text-mute); font-size:.94rem; line-height:1.6;}
@media (max-width:760px){ .service-row{grid-template-columns:34px 1fr;} .service-row p{grid-column:2/-1;} }
.service-row.linkable{cursor:pointer; transition:background .2s ease;}
.service-row.linkable:hover{background:rgba(181,86,46,.06);}
.service-row .svc-more{color:var(--rust); font-size:.82rem; font-weight:600; margin-top:8px; display:inline-block;}

.svc-detail-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
@media (max-width:760px){ .svc-detail-grid{grid-template-columns:1fr;} }
.svc-card{background:var(--paper-2); border:1px solid var(--line); border-radius:12px; padding:28px;}
.svc-card .svc-num{font-family:var(--display); font-weight:800; font-size:.8rem; color:var(--gold); letter-spacing:.02em;}
.svc-card h3{margin-top:10px; font-size:1.18rem;}
.svc-card p{margin-top:10px; color:var(--text-mute); font-size:.94rem; line-height:1.65;}
.svc-card .svc-includes{margin-top:16px; padding-top:16px; border-top:1px solid var(--line);}
.svc-card .svc-includes li{font-size:.86rem; color:var(--text-dark); padding:5px 0 5px 20px; position:relative;}
.svc-card .svc-includes li::before{content:''; position:absolute; left:0; top:12px; width:8px; height:8px; border-radius:50%; background:var(--gold);}
.svc-card .svc-cta{margin-top:18px; display:inline-flex; align-items:center; gap:6px; font-size:.86rem; font-weight:700; color:var(--rust);}

/* Destinations / Universities: real photo cards */
.dest-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media (max-width:900px){ .dest-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .dest-grid{grid-template-columns:1fr;} }
.dest-card{border-radius:14px; overflow:hidden; border:1px solid var(--line); background:var(--ink); cursor:pointer; transition:box-shadow .25s ease, transform .25s ease;}
.dest-card:hover{box-shadow:0 20px 44px -18px rgba(16,27,45,.4); transform:translateY(-2px);}
.dest-art{position:relative; height:190px; overflow:hidden;}
.dest-art img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .4s ease;}
.dest-card:hover .dest-art img{transform:scale(1.05);}
.dest-art::after{content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(16,27,45,.88) 0%, rgba(16,27,45,.15) 55%, rgba(16,27,45,0) 100%);}
.dest-overlay{position:absolute; left:18px; right:18px; bottom:14px; z-index:1;}
.dest-overlay .country{font-family:var(--display); font-size:1.28rem; font-weight:800; color:var(--text-light);}
.dest-overlay .count{font-size:.8rem; color:var(--text-light-mute); font-weight:500;}
.dest-body{background:var(--paper); padding:14px 18px;}
.dest-body .top{display:flex; align-items:center; justify-content:space-between;}
.dest-body .taptext{font-size:.84rem; color:var(--text-mute); font-weight:500;}
.dest-body .chev{width:18px; height:18px; stroke:var(--text-mute); stroke-width:2.2; fill:none; transition:transform .25s ease;}
.dest-card.open .chev{transform:rotate(180deg);}
.prog-panel{max-height:0; overflow:hidden; transition:max-height .5s ease; background:var(--paper);}
.dest-card.open .prog-panel{max-height:1200px;}
.prog-inner{padding:6px 18px 18px; border-top:1px solid var(--line); cursor:default;}
.dest-desc{font-size:.88rem; color:var(--text-mute); line-height:1.6; padding:14px 0 4px;}
.dest-form{padding-top:6px;}
.dform-row{margin:14px 0;}
.dform-row label{display:block; font-size:.78rem; color:var(--text-mute); margin-bottom:7px; font-weight:600;}
.dform-row select{
  width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:8px;
  background:var(--paper-2); font-family:var(--sans); font-size:.86rem; color:var(--text-dark);
  appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B5646' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat:no-repeat; background-position:right 12px center; background-size:14px;
}
.df-fields{display:flex; flex-wrap:wrap; gap:8px;}
.dest-art-other{display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);}
.dest-art-other .other-icon{width:52px; height:52px; color:var(--gold-soft); opacity:.85;}
.df-other-country{width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:8px; background:var(--paper-2); font-family:var(--sans); font-size:.86rem; color:var(--text-dark); outline:none;}
.df-other-country:focus{border-color:var(--gold);}
.df-check{display:inline-flex; align-items:center; gap:6px; padding:7px 11px; border:1px solid var(--line); border-radius:16px; background:var(--paper-2); font-size:.78rem; font-weight:600; cursor:pointer; transition:border-color .2s ease, background .2s ease;}
.df-check input{accent-color:var(--rust);}
.df-check:has(input:checked){border-color:var(--gold); background:rgba(200,154,61,.14);}
.dest-wa-btn{display:flex; align-items:center; justify-content:center; gap:8px; width:100%; margin-top:16px; padding:12px; border-radius:22px; border:none; background:#1F3A2C; color:#fff; font-weight:700; font-size:.88rem; cursor:pointer; transition:background .2s ease;}
.dest-wa-btn:hover{background:#152A20;}
.dest-wa-btn svg{width:15px; height:15px; fill:#fff;}
.prog-item{padding:12px 0; border-bottom:1px solid var(--line);}
.prog-item:last-child{border-bottom:none;}
.prog-item.hl{background:rgba(200,154,61,.14); margin:0 -18px; padding:12px 18px; border-radius:8px;}
.prog-item .pname{font-weight:700; font-size:.92rem;}
.prog-item .plevel{display:inline-block; font-size:.68rem; font-weight:700; color:var(--gold); background:rgba(200,154,61,.14); padding:2px 8px; border-radius:10px; margin-left:8px; vertical-align:middle;}
.prog-item .puni{font-size:.84rem; color:var(--text-mute); margin-top:2px; font-weight:500;}
.prog-item .pmeta{display:flex; gap:14px; margin-top:6px; font-size:.78rem; color:var(--rust); font-weight:700;}
.prog-item .p-wa{display:inline-flex; align-items:center; gap:5px; margin-top:9px; font-size:.78rem; font-weight:700; color:#1F3A2C;}
.prog-item .p-wa svg{width:13px; height:13px; fill:#1F3A2C;}

/* ---------- University index / filter page ---------- */
.uni-toolbar{background:var(--paper-2); border:1px solid var(--line); border-radius:14px; padding:22px; margin-bottom:32px;}
.uni-toolbar-grid{display:grid; grid-template-columns:repeat(4,1fr) auto; gap:14px; align-items:end;}
@media (max-width:940px){ .uni-toolbar-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .uni-toolbar-grid{grid-template-columns:1fr;} }
.uni-toolbar .field{margin-bottom:0;}
.uni-toolbar .field label{color:var(--text-mute);}
.uni-toolbar .field input[type="text"]{
  width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:10px;
  background:var(--paper); font-size:.92rem; color:var(--text-dark); outline:none;
}
.uni-toolbar .field input[type="text"]:focus{border-color:var(--gold);}
.uni-reset{padding:11px 18px; border-radius:10px; border:1px solid var(--line); background:transparent; color:var(--text-mute); font-size:.86rem; font-weight:600; cursor:pointer; white-space:nowrap; transition:border-color .2s ease, color .2s ease;}
.uni-reset:hover{border-color:var(--rust); color:var(--rust);}
.uni-count-row{display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; flex-wrap:wrap; gap:10px;}
.uni-count{font-size:.92rem; color:var(--text-mute); font-weight:500;}
.uni-count b{color:var(--text-dark); font-weight:800;}
.uni-sort select{
  padding:9px 30px 9px 12px; border:1px solid var(--line); border-radius:20px; background:var(--paper-2);
  font-size:.84rem; color:var(--text-dark); font-weight:500; appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B5646' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat:no-repeat; background-position:right 10px center; background-size:14px;
}
.uni-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px;}
@media (max-width:760px){ .uni-grid{grid-template-columns:1fr;} }
.uni-card{border:1px solid var(--line); border-radius:12px; background:var(--paper); padding:20px 22px; transition:box-shadow .2s ease, border-color .2s ease;}
.uni-card:hover{box-shadow:0 16px 34px -18px rgba(16,27,45,.28); border-color:var(--gold-soft);}
.uni-card-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px;}
.uni-card .u-country{font-size:.74rem; font-weight:700; color:var(--gold); text-transform:none;}
.uni-card .u-level{font-size:.68rem; font-weight:700; color:var(--rust); background:rgba(181,86,46,.1); padding:3px 9px; border-radius:10px; white-space:nowrap;}
.uni-card h3{font-size:1.08rem; margin-top:6px;}
.uni-card .u-uni{font-size:.9rem; color:var(--text-mute); margin-top:2px; font-weight:500;}
.uni-card .u-meta-row{display:flex; gap:18px; margin-top:14px; padding-top:14px; border-top:1px solid var(--line); flex-wrap:wrap;}
.uni-card .u-meta{font-size:.8rem;}
.uni-card .u-meta b{display:block; font-size:.92rem; color:var(--text-dark);}
.uni-card .u-meta span{color:var(--text-mute);}
.uni-card .u-actions{display:flex; gap:10px; margin-top:16px;}
.uni-wa-btn{flex:1; display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:10px 14px; border-radius:20px; background:#1F3A2C; color:#fff; font-size:.84rem; font-weight:700; transition:background .2s ease;}
.uni-wa-btn:hover{background:#152A20;}
.uni-wa-btn svg{width:15px; height:15px; fill:#fff;}
.uni-empty{grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--text-mute);}
.uni-empty b{display:block; color:var(--text-dark); font-size:1.1rem; margin-bottom:6px; font-family:var(--display);}

.testi-wrap{display:grid; grid-template-columns:1.2fr 1fr; gap:56px; align-items:start;}
.testi-lead{border-left:3px solid var(--gold); padding-left:26px;}
.testi-lead p{font-family:var(--display); font-size:1.32rem; line-height:1.48; font-weight:600; color:var(--text-dark);}
.who-row{display:flex; align-items:center; gap:12px; margin-top:20px;}
.avatar{width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; font-size:.96rem; color:var(--text-light); flex:none;}
.who-name{font-weight:700; font-size:.92rem;}
.who-meta{font-size:.82rem; color:var(--text-mute); font-weight:500;}
.testi-list{display:flex; flex-direction:column;}
.testi-item{padding:19px 0; border-bottom:1px solid var(--line); display:flex; gap:14px;}
.testi-item:first-child{padding-top:0;}
.testi-item .avatar{width:38px; height:38px; font-size:.86rem;}
.testi-item p{font-size:.95rem; line-height:1.6; font-weight:500;}
.testi-item .who-meta{margin-top:6px;}
@media (max-width:900px){ .testi-wrap{grid-template-columns:1fr; gap:34px;} }

.stats-band{background:var(--ink); color:var(--text-light); padding:56px 0;}
.stats-row{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.stat b{font-size:1.9rem; font-weight:800; color:var(--gold-soft); display:block;}
.stat span{font-size:.86rem; color:var(--text-light-mute); margin-top:5px; display:block; font-weight:500;}
@media (max-width:760px){ .stats-row{grid-template-columns:1fr 1fr; row-gap:30px;} }

.cta-band{background:linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color:var(--text-light); padding:80px 0;}
.cta-band .wrap{display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;}
.cta-band h2{font-size:clamp(1.8rem,3.2vw,2.4rem); max-width:14ch; color:var(--text-light);}
.cta-band .actions{display:flex; gap:14px; flex-wrap:wrap;}

footer{background:var(--forest); color:var(--text-light-mute); padding:60px 0 26px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px;}
.foot-brand{max-width:280px;}
.foot-brand .brand{color:var(--text-light);}
.foot-brand .brand .dotmark circle{fill:var(--text-light);}
.foot-brand p{margin-top:15px; font-size:.88rem; line-height:1.6;}
footer h4{font-family:var(--display); font-size:.86rem; font-weight:700; color:var(--text-light); margin-bottom:14px;}
footer ul li{margin-bottom:9px; font-size:.86rem;}
footer ul li a:hover{color:var(--text-light);}
.foot-office{font-size:.86rem; margin-bottom:14px; line-height:1.6;}
.foot-office b{color:var(--text-light); display:block; font-weight:700; margin-bottom:2px;}
.foot-bottom{margin-top:48px; padding-top:20px; border-top:1px solid var(--line-light); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:.8rem;}
.foot-social{display:flex; gap:16px;}
.foot-social svg{width:18px; height:18px; fill:var(--text-light-mute); transition:fill .2s ease;}
.foot-social a:hover svg{fill:var(--gold-soft);}
@media (max-width:800px){ .foot-grid{grid-template-columns:1fr 1fr; row-gap:30px;} }
@media (max-width:480px){ .foot-grid{grid-template-columns:1fr;} }
.badge-strip{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;}
.badge{border:1px solid var(--line-light); padding:5px 11px; border-radius:20px; font-size:.74rem; color:var(--text-light-mute); font-weight:600;}

/* ---------- AI concierge chat widget ---------- */
.ai-launcher{
  position:fixed; right:22px; bottom:22px; z-index:120; display:flex; align-items:center; gap:10px;
  background:var(--ink); color:var(--text-light); border:1px solid var(--gold-soft); border-radius:30px;
  padding:13px 20px 13px 15px; cursor:pointer; box-shadow:0 18px 40px -14px rgba(16,27,45,.55);
  font-size:.9rem; font-weight:700; transition:transform .2s ease, box-shadow .2s ease;
}
.ai-launcher:hover{transform:translateY(-2px); box-shadow:0 22px 46px -14px rgba(16,27,45,.6);}
.ai-launcher .ai-dot{width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg, var(--gold) 0%, var(--rust) 100%); display:flex; align-items:center; justify-content:center; flex:none;}
.ai-launcher .ai-dot svg{width:16px; height:16px; stroke:var(--ink); fill:none; stroke-width:2;}
.ai-launcher .ai-ping{position:absolute; top:-3px; right:-3px; width:11px; height:11px; border-radius:50%; background:var(--rust); border:2px solid var(--paper); animation:aiping 2.2s ease-in-out infinite;}
@keyframes aiping{0%,100%{transform:scale(1); opacity:1;} 50%{transform:scale(1.25); opacity:.7;}}
.ai-launcher.hide{display:none;}

.ai-panel{
  position:fixed; right:22px; bottom:22px; z-index:130; width:380px; max-width:calc(100vw - 32px);
  height:min(600px, calc(100vh - 100px)); background:var(--paper); border-radius:18px; overflow:hidden;
  display:none; flex-direction:column; box-shadow:0 30px 80px -20px rgba(16,27,45,.6); border:1px solid var(--line);
}
.ai-panel.show{display:flex;}
.ai-head{background:var(--ink); color:var(--text-light); padding:16px 18px; display:flex; align-items:center; gap:11px; flex:none;}
.ai-head .ai-dot{width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg, var(--gold) 0%, var(--rust) 100%); display:flex; align-items:center; justify-content:center; flex:none;}
.ai-head .ai-dot svg{width:18px; height:18px; stroke:var(--ink); fill:none; stroke-width:2;}
.ai-head-text{flex:1; min-width:0;}
.ai-head-text b{display:block; font-size:.92rem; font-family:var(--display);}
.ai-head-text span{font-size:.74rem; color:var(--text-light-mute); display:flex; align-items:center; gap:5px;}
.ai-head-text .live-dot{width:6px; height:6px; border-radius:50%; background:#4ADE80; display:inline-block;}
.ai-close{background:none; border:none; color:var(--text-light-mute); cursor:pointer; padding:4px;}
.ai-close svg{width:19px; height:19px;}
.ai-body{flex:1; overflow-y:auto; padding:18px; display:flex; flex-direction:column; gap:12px;}
.ai-msg{max-width:86%; padding:11px 14px; border-radius:14px; font-size:.87rem; line-height:1.55;}
.ai-msg.bot{align-self:flex-start; background:var(--paper-2); border-bottom-left-radius:4px;}
.ai-msg.user{align-self:flex-end; background:var(--ink); color:var(--text-light); border-bottom-right-radius:4px;}
.ai-msg.bot b{color:var(--rust);}
.ai-choices{display:flex; flex-wrap:wrap; gap:8px; align-self:flex-start; max-width:100%;}
.ai-choice{padding:9px 14px; border-radius:16px; border:1px solid var(--line); background:var(--paper); font-size:.83rem; font-weight:600; cursor:pointer; transition:border-color .2s ease, background .2s ease;}
.ai-choice:hover{border-color:var(--gold); background:rgba(200,154,61,.1);}
.ai-typing{align-self:flex-start; display:flex; gap:4px; padding:12px 14px; background:var(--paper-2); border-radius:14px; border-bottom-left-radius:4px;}
.ai-typing span{width:6px; height:6px; border-radius:50%; background:var(--text-mute); opacity:.5; animation:aityping 1s infinite;}
.ai-typing span:nth-child(2){animation-delay:.15s;} .ai-typing span:nth-child(3){animation-delay:.3s;}
@keyframes aityping{0%,60%,100%{transform:translateY(0); opacity:.4;} 30%{transform:translateY(-3px); opacity:1;}}
.ai-match-card{align-self:flex-start; max-width:92%; background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:13px 15px; width:100%;}
.ai-match-card .m-name{font-weight:700; font-size:.9rem;}
.ai-match-card .m-uni{font-size:.82rem; color:var(--text-mute); margin-top:1px;}
.ai-match-card .m-meta{display:flex; gap:12px; margin-top:7px; font-size:.76rem; color:var(--rust); font-weight:700;}
.ai-foot{flex:none; padding:12px 14px; border-top:1px solid var(--line); background:var(--paper);}
.ai-input-row{display:flex; align-items:center; gap:8px;}
.ai-input-row input{flex:1; padding:11px 14px; border-radius:20px; border:1px solid var(--line); background:var(--paper-2); font-size:.87rem; color:var(--text-dark); outline:none;}
.ai-input-row input:focus{border-color:var(--gold);}
.ai-send{flex:none; width:38px; height:38px; border-radius:50%; background:var(--ink); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s ease;}
.ai-send:hover{background:var(--ink-2);}
.ai-send svg{width:16px; height:16px; stroke:var(--text-light); fill:none; stroke-width:2;}
.ai-hint{font-size:.72rem; color:var(--text-mute); margin-top:7px; text-align:center;}
.ai-wa-card{align-self:stretch; background:var(--paper-2); border:1px solid var(--line); border-radius:12px; padding:13px; margin-top:2px;}
.ai-wa-cta{display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; border-radius:24px; background:#1F3A2C; color:#fff; font-weight:700; font-size:.9rem; border:none; cursor:pointer; transition:background .2s ease;}
.ai-wa-cta:hover{background:#152A20;}
.ai-wa-cta svg{width:17px; height:17px; fill:#fff;}
.ai-restart{display:block; text-align:center; margin-top:10px; font-size:.78rem; color:var(--text-mute); cursor:pointer; font-weight:600;}
.ai-restart:hover{color:var(--rust);}
@media (max-width:480px){ .ai-panel{right:12px; left:12px; width:auto; bottom:12px; height:min(560px, calc(100vh - 88px));} .ai-launcher{right:14px; bottom:14px;} }
