:root{--accent:#273272;--accent-lt:#eceffe;--red:#dc3545;--red-lt:#fdecea;--gold:#c8952a;--navy:#273272;--text:#2d3748;--muted:#718096;--border:#e2e8f0;--white:#fff;--bg:#f7f9fb;--marquee-bg:#273272;--top-bg:#f0f2f8;--nav-bg:#fff;--shadow-sm:0 2px 8px rgba(0,0,0,.07);--shadow-md:0 6px 24px rgba(0,0,0,.10);--radius:10px;--tr:.28s cubic-bezier(.4,0,.2,1)--navy:#14285c;--olive:#dc3545;--olive-light:#7aa31a;--cream:#faf8f4;--sand:#e8e4db;--muted:#7a7a7a;--radius:16px;--shadow:0 8px 40px rgba(20,40,92,.10)--font-head:'Playfair Display',Georgia,serif;--font-body:'DM Sans',sans-serif;--eas-navy:#01468c;--eas-sky:#0084c4;--eas-lime:#bcc53a;--eas-white:#ffffff;--eas-off:#f4f6f0;--eas-dark:#0d1a2b;--eas-muted:#6b7a8d;--eas-ease:cubic-bezier(.4,0,.2,1)}
/* /VARIABLES */

:root{
  --tk:38px;
  --hh:74px;
  --ink:#111214;
  --mid:#5a5f6a;
  --muted:#9198a4;
  --border:rgba(0,0,0,.08);
  --white:#ffffff;
  --off:#f8f7f4;
  --gold:#c8952a;
  --gold-lt:rgba(200,149,42,.12);
  --gold-glow:rgba(200,149,42,.35);
  --ease:cubic-bezier(.4,0,.2,1);
  --easeOut:cubic-bezier(0,0,.2,1)}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'DM Sans',sans-serif;color:var(--ink);background:#fff;overflow-x:hidden}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{background:none;border:none;cursor:pointer;font:inherit;color:inherit}
address{font-style:normal}
video{display:block}
.ticker-bar{
  position:fixed;top:0;left:0;right:0;z-index:300;
  height:var(--tk);
  background:linear-gradient(90deg,#0d0d0d 0%,#1a1208 30%,#251a06 50%,#1a1208 70%,#0d0d0d 100%);
  overflow:hidden;
  display:flex;align-items:center;
  border-bottom:1px solid rgba(200,149,42,.22);}
.ticker-bar::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),rgba(200,149,42,.4),var(--gold),transparent);
  animation:shimmer 3s ease infinite;}
@keyframes shimmer{0%,100%{opacity:.4}50%{opacity:1}}
.ticker-track{
  display:flex;align-items:center;gap:0;
  white-space:nowrap;
  animation:tick 36s linear infinite;
  will-change:transform;}
.ticker-bar:hover .ticker-track{animation-play-state:paused}
.ticker-item{
  display:inline-flex;align-items:center;gap:10px;
  padding:0 24px;
  border-right:1px solid rgba(200,149,42,.15);}
.ticker-label{
  font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);background:rgba(200,149,42,.12);
  padding:2px 7px;border-radius:3px;flex-shrink:0;}
.ticker-text{
  font-size:11px;font-weight:500;letter-spacing:.06em;text-transform:uppercase;
  color:rgba(255,255,255,.72);
  transition:color .2s;}
.ticker-item a.ticker-text:hover{color:var(--gold)}
.ticker-dot{
  width:3px;height:3px;border-radius:50%;
  background:var(--gold);opacity:.5;flex-shrink:0;}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}
/* ══ HEADER ══ */
#hdr{
  position:fixed;top:var(--tk);left:0;right:0;z-index:200;
  height:var(--hh);
  transition:background .4s var(--ease),box-shadow .4s var(--ease);
  background:transparent;
}
#hdr.solid{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  box-shadow:0 1px 0 var(--border);
}
.hdr-in{
  max-width:1440px;margin:0 auto;padding:0 48px;
  height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.logo{
  display:flex;align-items:center;gap:0;
  flex-shrink:0;text-decoration:none;}
.logo-img{
  height:55px;width:auto;
  display:block;
  transition:opacity .3s,transform .25s var(--ease);
  filter:drop-shadow(0 1px 4px rgba(0,0,0,.12));}
.logo:hover .logo-img{transform:scale(1.03);opacity:.9}
.logo-img.dark{display:none}
.logo-img.light{display:block}
#hdr.solid .logo-img.dark{display:block}
#hdr.solid .logo-img.light{display:none}
#main-nav{display:flex;align-items:center;gap:4px}
.nav-head,.nav-foot{display:none}
.nav-ul{display:flex;align-items:center;gap:0}
.nav-ul>li>a,.dd-btn{
  display:inline-flex;align-items:center;gap:5px;
  font-size:13.5px;font-weight:500;
  padding:8px 14px;border-radius:8px;
  color:rgba(255,255,255,.88);
  transition:color .2s,background .2s;white-space:nowrap;}
.nav-ul>li>a:hover,.dd-btn:hover{color:var(--white);background:rgba(255,255,255,.1)}
#hdr.solid .nav-ul>li>a,#hdr.solid .dd-btn{color:var(--ink)}
#hdr.solid .nav-ul>li>a:hover,#hdr.solid .dd-btn:hover{background:rgba(0,0,0,.05);color:var(--gold)}
.chev{width:10px;height:7px;flex-shrink:0;transition:transform .25s var(--ease)}
.has-dd:hover .chev,.dd-btn[aria-expanded="true"] .chev{transform:rotate(180deg)}
.has-dd{position:relative}
.dd{
  position:absolute;top:calc(100%+10px);left:50%;
  transform:translateX(-50%) translateY(-8px);
  background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:14px;
  min-width:200px;padding:8px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s;
  box-shadow:0 16px 52px rgba(0,0,0,.12),0 2px 8px rgba(0,0,0,.06);}
.has-dd:hover .dd{opacity:1;visibility:visible;pointer-events:all;transform:translateX(-50%) translateY(0)}
.dd::before{
  content:'';position:absolute;top:-5px;left:50%;transform:translateX(-50%) rotate(45deg);
  width:10px;height:10px;background:#fff;
  border-top:1px solid rgba(0,0,0,.07);border-left:1px solid rgba(0,0,0,.07);}
.dd li a{
  display:block;padding:10px 15px;font-size:13px;font-weight:400;
  color:var(--ink);border-radius:9px;transition:background .15s,color .15s;}
.dd li a:hover{background:var(--gold-lt);color:#9a6e10}
.btn-apply{
  display:inline-block;flex-shrink:0;
  padding:10px 22px;margin-left:8px;
  font-size:13px;font-weight:600;letter-spacing:.03em;
  background:var(--gold);color:#fff;border-radius:9px;
  transition:background .22s,transform .18s,box-shadow .22s;white-space:nowrap;}
.btn-apply:hover{background:#a87820;transform:translateY(-1px);box-shadow:0 6px 20px var(--gold-glow)}
.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;padding:6px}
.burger span{display:block;width:100%;height:1.8px;background:var(--white);border-radius:2px;transition:background .3s,transform .35s var(--ease),opacity .22s;transform-origin:center}
#hdr.solid .burger span{background:var(--ink)}
.burger.open span:nth-child(1){transform:translateY(6.8px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.open span:nth-child(3){transform:translateY(-6.8px) rotate(-45deg)}

/* ══ HERO ══ */
.hero{
  position:relative;width:100%;height:100vh;min-height:640px;
  overflow:hidden;
  margin-top:calc(var(--tk)+var(--hh));
}
.hero-film{position:absolute;inset:0}
.hero-film video{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-veil{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 28% 54%,rgba(0,0,0,.24) 0%,transparent 65%),
    linear-gradient(to bottom,rgba(0,0,0,.35) 0%,rgba(0,0,0,.06) 40%,rgba(0,0,0,.08) 65%,rgba(0,0,0,.55) 100%);}
.hero-glow{
  position:absolute;bottom:-1px;left:0;right:0;height:220px;
  background:linear-gradient(to top,rgba(200,149,42,.08),transparent);
  pointer-events:none;}
.hero-content{
  position:absolute;bottom:100px;left:0;right:0;
  padding:0 60px;
  display:flex;align-items:flex-end;justify-content:space-between;
  pointer-events:none;}
.hero-tagline{
  max-width:600px;}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:10.5px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);margin-bottom:18px;
}
.hero-tag::before{content:'';display:block;width:28px;height:1px;background:var(--gold)}
.hero-tagline h1{
   font-size:clamp(42px,5.5vw,74px);
  font-weight:700;line-height:1.08;
  color:#fff;
  letter-spacing:-.02em;
  text-shadow:0 2px 32px rgba(0,0,0,.3);}
.hero-tagline h1 em{font-style:italic;color:var(--gold)}
.mute-btn{
  position:absolute;bottom:28px;right:32px;z-index:10;
  width:46px;height:46px;border-radius:50%;
  background:rgba(0,0,0,.38);border:1.5px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  transition:background .22s,border-color .22s,transform .18s;}
.mute-btn:hover{background:rgba(0,0,0,.62);border-color:rgba(255,255,255,.7);transform:scale(1.08)}
.mute-btn svg{width:17px;height:17px}
.scroll-hint{
  position:absolute;bottom:34px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  opacity:.6;
  animation:bounce 2.4s ease infinite;}
.scroll-hint span{font-size:9px;letter-spacing:.15em;text-transform:uppercase;color:#fff;font-weight:500}
.scroll-hint svg{width:18px;height:18px;color:#fff}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)}}
@media (max-width:900px){
  :root{--tk:32px;--hh:62px}
  .hdr-in{padding:0 20px}
  #main-nav{
    position:fixed;top:0;right:0;width:330px;max-width:92vw;height:100%;
    z-index:260;background:#fff;
    flex-direction:column;align-items:stretch;gap:0;padding:0;
    transform:translateX(110%);
    transition:transform .4s var(--easeOut);
    overflow-y:auto;-webkit-overflow-scrolling:touch;
    box-shadow:-8px 0 40px rgba(0,0,0,.12);  }
  #main-nav.open{transform:translateX(0);height:fit-content;}
  .nav-head{display:flex;align-items:center;justify-content:space-between;padding:22px 24px 18px;border-bottom:1px solid #f0f0f0;flex-shrink:0}
  .nav-head .logo-img.dark{display:block}
  .nav-head .logo-img.light{display:none}
  .nav-close-btn{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--ink);transition:background .2s}
  .nav-close-btn svg{width:18px;height:18px}
  .nav-close-btn:hover{background:rgba(0,0,0,.06)}
  .nav-ul{flex-direction:column;align-items:stretch;gap:0;padding:8px 14px 0;flex:1}
  .nav-ul>li{border-bottom:1px solid #f4f4f4}
  .nav-ul>li:last-child{border-bottom:none}
  .nav-ul>li>a,.dd-btn{width:100%;justify-content:space-between;padding:14px 10px;font-size:15.5px;font-weight:500;color:var(--ink);border-radius:0;background:none}
  .nav-ul>li>a:hover,.dd-btn:hover{color:var(--gold);background:none}
  .dd{position:static;transform:none;box-shadow:none;border:none;border-radius:0;background:transparent;padding:0 0 6px 14px;opacity:1;visibility:visible;pointer-events:all;max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
  .dd::before{display:none}
  .dd.open{max-height:320px}
  .dd li a{border-radius:6px;font-size:13.5px;color:var(--mid);padding:9px 12px}
  .dd li a:hover{color:var(--gold);background:var(--gold-lt)}
  .btn-apply{margin:18px 24px 6px;align-self:auto;text-align:center;padding:14px;font-size:14px;border-radius:10px}
  .nav-foot{display:block;padding:20px 24px 32px;border-top:1px solid #f0f0f0;margin-top:8px}
  .nav-social{display:flex;gap:12px;margin-bottom:18px}
  .nav-social a{width:36px;height:36px;border-radius:50%;border:1.5px solid #e5e5e5;display:flex;align-items:center;justify-content:center;color:var(--mid);transition:border-color .2s,color .2s,background .2s}
  .nav-social a:hover{border-color:var(--gold);color:var(--gold);background:var(--gold-lt)}
  .nav-social svg{width:14px;height:14px}
  .nav-foot address{font-size:12px;line-height:1.8;color:var(--muted)}
  .nav-ov{position:fixed;inset:0;z-index:250;background:rgba(0,0,0,.48);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);opacity:0;visibility:hidden;transition:opacity .35s,visibility .35s}
  .nav-ov.on{opacity:1;visibility:visible}
  .burger{display:flex}
  .hero{height:270px;min-height:270px}
  .hero-content{bottom:72px;padding:0 24px;flex-direction:column;gap:20px;align-items:flex-start}
  .hero-tagline h1{font-size:clamp(32px,8vw,52px)}
  .mute-btn{bottom:20px;right:20px;width:40px;height:40px}
  .mute-btn svg{width:15px;height:15px}
  .scroll-hint{bottom:24px}
  .has-dd:hover .dd{transform:translateX(-0%) translateY(0)}

}
@media (max-width:480px){
  .ticker-label{display:none}}


  /* About */
        .eas-about-h1,.eas-about-p{color:#fff}
        .eas-about-h1 span{color:#fff}
        .eas-about-banner{display:flex;justify-content:space-between;align-items:center;position:relative;padding:40px;border-radius:10px;color:white;background:url('https://excelsioramericanschooladmissions.com/wp-content/uploads/2024/02/middle-page-bg-img_0.webp')center/cover no-repeat}
        .eas-about-banner::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(1,70,142,0.75);z-index:1}
        .eas-about-banner-content{position:relative;z-index:2;width:80%;padding:20px}
        .eas-about-h1{font-size:2.5rem;margin-bottom:15px}
        .eas-about-p{font-size:1rem;line-height:1.8}
        .eas-about-image-container-right{position:relative;z-index:2;width:350px}
        .eas-about-image-container-right img{width:100%;border-radius:10px;object-fit:cover}
        .eas-about-image-container-left{position:relative;z-index:2;width:350px;top:120px;right:0px;left:-140px}
        .eas-about-image-container-left img{width:100%;border-radius:10px;object-fit:cover}@keyframes eas-about-fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
        .eas-about-banner-content,.eas-about-image-container-right,.eas-about-image-container-left{animation:eas-about-fadeInUp 1s ease-out both}
        @media(max-width:768px){.eas-about-banner{flex-direction:column;text-align:center;padding:20px;height:970px}
        .eas-about-banner-content{width:100%;margin-bottom:20px}
        .eas-about-image-container-right{width:260px;margin-bottom:20px;left:-50px;top:0}
        .eas-about-image-container-left{width:260px;margin-bottom:20px;position:relative;left:70px;top:-280px}
        .eas-about-image-container-right img,.eas-about-image-container-left img{width:90%;max-width:none}}
        .eas-about-p{font-size:18px;text-align:justify}
        .eas-about-h1{text-shadow:2px 2px 4px rgba(0,0,0,0.7);font-size:30px}

        /*Pillars*/
  .eas-pillars-wrapper{max-width:1200px;margin:0 auto;padding:60px 30px;position:relative}
      .eas-pillars-title{text-align:center;font-size:3.2rem;font-weight:700;margin-bottom:30px;color:#273272;}
      .eas-pillars-title.animate-in{opacity:1;transform:translateY(0)}
      .eas-pillars-intro{text-align:center;font-size:1.2rem;color:#4a5568;margin-bottom:40px;opacity:0;transform:translateY(30px);transition:all 0.8s cubic-bezier(0.25,0.46,0.45,0.94)}
      .eas-pillars-intro.animate-in{opacity:1;transform:translateY(0)}
      .eas-pillars-programme{display:grid;grid-template-columns:repeat(5,270px);/*gap:35px;*/justify-content:center;margin-top:50px}
      .eas-pillars-card{width:260px;height:400px;opacity:0;transform:translateY(60px);transition:all 0.7s cubic-bezier(0.25,0.46,0.45,0.94)}
      .eas-pillars-card.animate-in{opacity:1;transform:translateY(0)}
      .eas-pillars-card-content{width:100%;height:100%;background:#ffffff;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,0.08);transition:all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);position:relative;cursor:pointer}
      .eas-pillars-card-content:hover{transform:translateY(-12px) scale(1.03);box-shadow:0 20px 50px rgba(0,0,0,0.15)}
      .eas-pillars-card-image{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease-out;filter:brightness(0.92) contrast(1.05)}
      .eas-pillars-card-content:hover 
      .eas-pillars-card-image{transform:scale(1.1);filter:brightness(1) contrast(1.1)}
      .eas-pillars-side-panel{position:absolute;top:0;writing-mode:vertical-rl;background:#5BB7D3;width:max-content;height:200px;right:0;text-align:center;padding:10px 7px;z-index:2;transition:all 0.3s ease;border-radius:0 16px 0 12px;box-shadow:0 4px 12px rgba(0,0,0,0.15)}
      .eas-pillars-panel-text{color:#ffffff;font-weight:600;font-size:0.95rem;text-transform:uppercase;letter-spacing:2.5px;text-align:center;text-shadow:0 2px 4px rgba(0,0,0,0.2);white-space:nowrap}
      .eas-pillars-side-panel{background:#5BB7D3}
      .eas-pillars-panel-red{background:#01468E}
      .eas-pillars-panel-yellow{background:#008CBA}
      .eas-pillars-panel-teal{background:#940015}
      .eas-pillars-panel-teal1{background:#8BBE65}
      .eas-pillars-info-overlay{position:absolute;bottom:0;left:0;right:0;background:#01468E;color:#ffffff;padding:35px 28px;transform:translateY(100%);transition:transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);z-index:3;border-radius:0 0 16px 16px;backdrop-filter:blur(10px)}
      .eas-pillars-card-content:hover 
      .eas-pillars-info-overlay{transform:translateY(0)}
      .eas-pillars-overlay-description{font-size:1.05rem;line-height:1.7;margin:0;font-weight:400;text-shadow:0 2px 4px rgba(0,0,0,0.2);letter-spacing:0.3px}.eas-pillars-card-content:hover 
      .eas-pillars-side-panel{transform:scale(1.08) translateX(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.25)}
      @media(max-width:1320px)
      {.eas-pillars-programme{grid-template-columns:repeat(2,305px);gap:40px}
      .eas-pillars-wrapper{padding:50px 25px}
      .eas-pillars-title{font-size:2.8rem;margin-bottom:70px}}
      @media(max-width:768px)
      {.eas-pillars-programme{grid-template-columns:1fr;gap:30px;padding:0 15px}
      .eas-pillars-card{width:100%;max-width:305px;margin:0 auto}
      .eas-pillars-wrapper{padding:40px 20px}
      .eas-pillars-title{font-size:2.4rem;margin-bottom:60px;line-height:1.3}
      .eas-pillars-side-panel{padding:8px 6px}
      .eas-pillars-panel-text{font-size:0.88rem;letter-spacing:2px}
      .eas-pillars-info-overlay{padding:30px 24px}
      .eas-pillars-overlay-description{font-size:1rem;line-height:1.6}}
      @media(max-width:480px){.eas-pillars-wrapper{padding:30px 15px;margin-top: 160px;}
      .eas-pillars-title{font-size:2rem;margin-bottom:50px}
      .eas-pillars-card{height:360px}
      .eas-pillars-side-panel{padding:7px 5px}
      .eas-pillars-panel-text{font-size:0.82rem;letter-spacing:1.5px}
      .eas-pillars-info-overlay{padding:25px 20px}
      .eas-pillars-overlay-description{font-size:0.95rem}
      }@media(max-width:360px){.eas-pillars-card{height:340px}
      .eas-pillars-title{font-size:1.8rem}
      .eas-pillars-wrapper{padding:25px 12px}}

 /*Timeline*/
 .eas-timeline{width:100%;max-width:1000px;margin:0 auto;padding:0px 20px 48px}.eas-timeline__header{text-align:center;margin-bottom:44px}.eas-timeline__eyebrow{display:inline-block;font-size:.72rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--olive);background:rgba(90,122,15,.1);padding:5px 14px;border-radius:40px;margin-bottom:16px}.eas-timeline__heading{font-size:clamp(1.4rem,4vw,2.2rem);font-weight:700;color:var(--navy);line-height:1.25}.eas-timeline__heading em{font-style:italic;color:var(--olive)}.eas-timeline__slider{background:var(--cream);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;position:relative}.eas-timeline__meta{display:flex;align-items:center;gap:6px;padding:20px 24px 0}.eas-timeline__ring{position:relative;width:44px;height:44px}.eas-timeline__ring-svg{width:44px;height:44px;transform:rotate(-90deg)}.eas-timeline__ring-bg{fill:none;stroke:var(--sand);stroke-width:3}.eas-timeline__ring-fill{fill:none;stroke:var(--olive);stroke-width:3;stroke-linecap:round;stroke-dasharray:113.1;stroke-dashoffset:101.79;transition:stroke-dashoffset .6s cubic-bezier(.4,0,.2,1)}.eas-timeline__counter{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-size:.65rem;font-weight:700;color:var(--navy)}.eas-timeline__total{font-size:.75rem;color:var(--muted);font-weight:500}.eas-timeline__card{padding:0}.eas-timeline__panels{position:relative;min-height:340px}.eas-timeline__panel{display:none;animation:easSlide .42s cubic-bezier(.4,0,.2,1)}.eas-timeline__panel.active{display:block}.eas-timeline__panel-inner{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch}.eas-timeline__text{padding:32px 36px 36px;display:flex;flex-direction:column;justify-content:center;gap:12px}.eas-timeline__num{font-size:3.2rem;font-weight:700;color:var(--sand);line-height:1;user-select:none}.eas-timeline__title{font-size:clamp(1.6rem,3.5vw,2rem);font-weight:700;color:var(--navy);line-height:1.15}.eas-timeline__desc{font-size:.92rem;color:var(--muted);line-height:1.7;max-width:320px}.eas-timeline__visual{position:relative;overflow:hidden;min-height:300px;background:var(--sand)}.eas-timeline__img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}.eas-timeline__panel.active .eas-timeline__img{transform:scale(1.03)}.eas-timeline__img-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(20,40,92,.18) 0%,transparent 60%);pointer-events:none}.eas-timeline__controls{display:flex;align-items:center;justify-content:center;gap:16px;padding:20px 24px;border-top:1px solid var(--sand)}.eas-timeline__btn{width:38px;height:38px;border-radius:50%;border:1.5px solid var(--sand);background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--navy);transition:border-color .2s,background .2s,color .2s;flex-shrink:0}.eas-timeline__btn svg{width:16px;height:16px}.eas-timeline__btn:hover{border-color:var(--olive);background:var(--olive);color:#fff}.eas-timeline__dots{display:flex;align-items:center;gap:7px;flex-wrap:wrap;justify-content:center}.eas-timeline__dot{width:7px;height:7px;border-radius:50%;background:var(--sand);border:none;cursor:pointer;padding:0;transition:background .25s,width .25s;flex-shrink:0}.eas-timeline__dot.active{background:var(--olive);width:22px;border-radius:4px}.eas-timeline__bar{height:3px;background:var(--sand)}.eas-timeline__bar-fill{height:100%;width:10%;background:linear-gradient(90deg,var(--olive),var(--olive-light));transition:width .6s cubic-bezier(.4,0,.2,1)}@keyframes easSlide{from{opacity:0;transform:translateX(18px)}to{opacity:1;transform:translateX(0)}}@media(max-width:720px){.eas-timeline{padding:36px 16px 32px}.eas-timeline__panel-inner{grid-template-columns:1fr;grid-template-rows:auto auto}.eas-timeline__visual{min-height:220px;order:-1}.eas-timeline__text{padding:24px 24px 20px;gap:8px}.eas-timeline__num{font-size:2.2rem}.eas-timeline__desc{max-width:100%}.eas-timeline__meta{padding:16px 20px 0}.eas-timeline__controls{padding:16px 20px}}@media(max-width:480px){.eas-timeline__heading{font-size:1.25rem}.eas-timeline__visual{min-height:180px}.eas-timeline__text{padding:20px 18px 18px;gap:8px}.eas-timeline__title{font-size:1.5rem}.eas-timeline__desc{font-size:.88rem}.eas-timeline__num{font-size:1.8rem}.eas-timeline__dots{gap:5px}.eas-timeline__dot{width:6px;height:6px}.eas-timeline__dot.active{width:18px}.eas-timeline__btn{width:34px;height:34px}}

 /*Awards*/
 .eas-awards{display:grid;grid-template-columns:48% 52%;width:100%;min-height:520px;background:#fff;border-radius:16px;overflow:hidden;}
.eas-awards__img-wrap{position:relative;overflow:hidden}
.eas-awards__img-wrap img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;display:block;transition:transform .8s ease}
.eas-awards__img-wrap:hover img{transform:scale(1.04)}
.eas-awards__img-overlay{position:absolute;inset:0;background:linear-gradient(160deg,rgba(139,24,24,.15) 0%,transparent 50%),linear-gradient(to top,rgba(20,39,78,.4) 0%,transparent 55%);pointer-events:none}
.eas-awards__img-badge{position:absolute;bottom:22px;left:22px;z-index:2;background:#8b1818;color:#fff;font-size:.75rem;letter-spacing:.16em;text-transform:uppercase;padding:7px 18px;border-radius:40px;box-shadow:0 4px 16px rgba(139,24,24,.45)}
.eas-awards__info{background:#faf7f2;padding:48px 44px 40px;display:flex;flex-direction:column;gap:16px;position:relative;overflow:hidden}

.eas-awards__eyebrow{display:inline-block;font-size:.72rem;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:#8b1818;background:rgba(139,24,24,.08);padding:5px 14px;border-radius:40px;width:fit-content}
.eas-awards__heading{font-size:32px;line-height:1.15;color:#273272}
.eas-awards__rule{width:48px;height:3px;background:linear-gradient(90deg,#8b1818,#c4900a);border-radius:2px}
.eas-awards__para{font-size:.93rem;line-height:1.8;color:#6b6b6b;flex:1}
.eas-awards__accolade-wrap{border-top:1px solid #e2d5bc;padding-top:14px}
.eas-awards__accolade-label{font-size:.6rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:#c4900a;margin-bottom:10px}
.eas-awards__marquee-outer{overflow:hidden;height:150px;-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.eas-awards__marquee{display:flex;flex-wrap:nowrap;align-items:center;gap:16px;width:max-content;height:150px;animation:easScroll 26s linear infinite;will-change:transform}
.eas-awards__marquee:hover{animation-play-state:paused}
@keyframes easScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.eas-awards__badge{flex-shrink:0;display:flex;align-items:center;justify-content:center;cursor:default;transition:transform .25s}
.eas-awards__badge:hover{transform:translateY(-4px) scale(1.04)}
.eas-awards__wreath{position:relative;width:138px;height:138px;flex-shrink:0}
.eas-awards__wreath-svg{position:absolute;inset:0;width:100%;height:100%}
.wr{fill:none;stroke:#c8952a;stroke-width:5;stroke-dasharray:4 7.2;stroke-linecap:round;filter:drop-shadow(0 0 3px rgba(196,144,10,.35))}
.eas-awards__wreath::before{content:'';position:absolute;inset:6px;border-radius:50%;border:1.5px solid rgba(196,144,10,.3)}
.eas-awards__wreath::after{content:'';position:absolute;inset:12px;border-radius:50%;border:1px solid rgba(196,144,10,.15)}
.eas-awards__wreath-inner{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:18px 12px;gap:3px}
.eas-awards__wreath-inner strong{font-size:.62rem;font-weight:700;letter-spacing:.05em;color:#c4900a;line-height:1.25;text-transform:uppercase}
.eas-awards__wreath-inner strong sup{font-size:.5em;vertical-align:super}
.eas-awards__wreath-inner em{font-style:normal;font-size:.56rem;font-weight:700;letter-spacing:.08em;color:#14274e;text-transform:uppercase;line-height:1.2}
.eas-awards__badge-desc{font-size:.5rem;color:#6b6b6b;line-height:1.3;text-align:center}
.eas-awards__badge-src{font-size:.58rem;font-weight:700;letter-spacing:.06em;color:#8b1818;text-transform:uppercase;margin-top:1px;background:rgba(139,24,24,.08);padding:1px 6px;border-radius:3px}
@media(max-width:780px){.eas-awards{grid-template-columns:1fr}.eas-awards__img-wrap{height:260px}.eas-awards__img-wrap img{position:relative;height:260px}.eas-awards__info{padding:32px 24px}}

/*curriculum*/
.curriclum-eas{width:100%;max-width:1200px;margin:0 auto;margin-top:40px;overflow: hidden;}.curriclum-eas__header{text-align:center;margin-bottom:52px}.curriclum-eas__badge{display:inline-block;background:#f0ede6;color:#b85c4a;font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding:8px 22px;border-radius:50px;margin-bottom:24px}.curriclum-eas__heading{font-size:40px;font-weight:700;color:#273272;line-height:1.2;margin-bottom:20px}.curriclum-eas__heading em{font-style:italic;color:#b85c4a}.curriclum-eas__subtext{max-width:580px;margin:0 auto;font-size:1rem;color:#6b7280;line-height:1.75;font-weight:400}.curriclum-eas__carousel{position:relative;padding:0 56px}.curriclum-eas__wrapper{overflow:hidden}.curriclum-eas__track{display:flex;gap:24px;transition:transform .45s cubic-bezier(.4,0,.2,1);will-change:transform}.curriclum-eas__card{flex:0 0 calc((100% - 48px) / 3);min-width:0;background:#faf7f2;border-radius:20px;overflow:hidden;box-shadow:0 2px 20px rgba(0,0,0,.06);display:flex;flex-direction:column;transition:box-shadow .3s,transform .3s}.curriclum-eas__card:hover{box-shadow:0 12px 40px rgba(0,0,0,.12);transform:translateY(-5px)}.curriclum-eas__img-wrap{margin:12px 12px 0;border-radius:14px;overflow:hidden;aspect-ratio:4/3}.curriclum-eas__img-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s}.curriclum-eas__card:hover .curriclum-eas__img-wrap img{transform:scale(1.05)}.curriclum-eas__body{padding:18px 22px 24px;display:flex;flex-direction:column;flex:1}.curriclum-eas__title{font-size:1.25rem;font-weight:400;color:#1a2340;margin-bottom:10px}.curriclum-eas__desc{font-size:.9rem;color:#6b7280;line-height:1.6;flex:1;margin-bottom:20px}.curriclum-eas__btn{width:100%;padding:12px 16px;border:1.5px solid #e2e5ee;border-radius:50px;background:#fff;color:#1a2340;font-size:.9rem;font-weight:500;cursor:pointer;transition:all .25s;letter-spacing:.01em}.curriclum-eas__btn:hover{background:#1a2340;color:#fff;border-color:#1a2340}.curriclum-eas__nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;background:#fff;border:1.5px solid #e2e5ee;color:#1a2340;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:all .25s;z-index:10}.curriclum-eas__nav svg{width:20px;height:20px}.curriclum-eas__nav:hover:not(:disabled){background:#1a2340;color:#fff;border-color:#1a2340;box-shadow:0 6px 20px rgba(26,35,64,.2)}.curriclum-eas__nav:disabled{opacity:.3;cursor:not-allowed}.curriclum-eas__nav--prev{left:0}.curriclum-eas__nav--next{right:0}.curriclum-eas__dots{display:flex;justify-content:center;gap:8px;margin-top:32px}.curriclum-eas__dot{width:8px;height:8px;border-radius:50%;background:#d5d8e2;border:none;cursor:pointer;padding:0;transition:all .25s}.curriclum-eas__dot--active{background:#b85c4a;width:24px;border-radius:4px}@media(max-width:1023px){.curriclum-eas__card{flex:0 0 calc((100% - 24px) / 2)}}@media(max-width:639px){.curriclum-eas__carousel{padding:0 44px}.curriclum-eas__card{flex:0 0 100%}}

/*Educational Outcomes*/
.eas-section{padding:40px 0 40px;position:relative;overflow:hidden}
.eas-container{width:min(1200px,94%);margin:0 auto}
.eas-header{text-align:center;margin-bottom:42px;position:relative}
.eas-header__eyebrow{display:inline-block;background:#f0ede6;color:#b85c4a;font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding:8px 22px;border-radius:50px;margin-bottom:24px}
.eas-header__title{font-size:40px;font-weight:700;line-height:1.08;color:#273272;}
.eas-header__title em{font-style:italic;color:var(--eas-sky)}
.eas-header__sub{font-size:17px;color:var(--eas-muted);font-weight:300;max-width:480px;margin:0 auto;line-height:1.7}
.eas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--eas-dark);border-radius:16px;overflow:hidden;box-shadow:0 40px 80px rgba(1,22,44,.18)}
.eas-card{position:relative;overflow:hidden;cursor:pointer;min-height:320px}
.eas-card:nth-child(1){grid-column:span 2}
.eas-card:nth-child(4){grid-column:span 2}
.eas-card:nth-child(7){grid-column:span 1}
.eas-card__image{position:absolute;inset:0;z-index:0}
.eas-card__image img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--eas-ease),filter .8s var(--eas-ease);filter:brightness(.75) saturate(.8)}
.eas-card:hover .eas-card__image img{transform:scale(1.06);filter:brightness(.35) saturate(.5)}
.eas-card--yellow .eas-card__image{background:var(--eas-lime)}
.eas-card--sky .eas-card__image{background:var(--eas-sky)}
.eas-card--blue .eas-card__image{background:var(--eas-navy)}
.eas-card::before{content:'';position:absolute;inset:0;z-index:1;background:linear-gradient(160deg,transparent 30%,rgba(1,22,44,.8) 100%);transition:background .8s var(--eas-ease)}
.eas-card:hover::before{background:linear-gradient(160deg,rgba(1,22,44,.65) 0%,rgba(1,22,44,.92) 100%)}
.eas-card__stripe{position:absolute;left:0;bottom:0;width:5px;height:60%;z-index:2;transition:height .6s var(--eas-ease)}
.eas-card--yellow .eas-card__stripe{background:var(--eas-lime)}
.eas-card--sky .eas-card__stripe{background:var(--eas-sky)}
.eas-card--blue .eas-card__stripe{background:#5bb8f5}
.eas-card:hover .eas-card__stripe{height:100%}
.eas-card__body{position:relative;z-index:3;padding:36px 36px 32px 44px;height:100%;display:flex;flex-direction:column;justify-content:flex-end;min-height:320px}
.eas-card__num{position:absolute;top:28px;right:32px;font-size:72px;font-weight:900;line-height:1;color:rgba(255,255,255,.07);transition:color .5s,transform .5s var(--eas-ease);user-select:none}
.eas-card:hover .eas-card__num{color:rgba(255,255,255,.14);transform:scale(1.1) translateY(-4px)}
.eas-card__tag{display:inline-block;font-size:10px;font-weight:600;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:10px;transition:color .4s}
.eas-card--yellow .eas-card__tag{color:rgba(188,197,58,.9)}
.eas-card--sky .eas-card__tag{color:rgba(91,184,245,.9)}
.eas-card--blue .eas-card__tag{color:rgba(188,197,58,.9)}
.eas-card__title{font-size:clamp(22px,2.4vw,30px);font-weight:700;color:var(--eas-white);line-height:1.2;margin-bottom:0;transition:margin .6s var(--eas-ease)}
.eas-card:hover .eas-card__title{margin-bottom:20px}
.eas-card__list{overflow:hidden;max-height:0;opacity:0;transition:max-height .7s var(--eas-ease),opacity .5s .1s var(--eas-ease)}
.eas-card:hover .eas-card__list,.eas-card.active .eas-card__list{max-height:260px;opacity:1}
.eas-card__list li{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:400;color:rgba(255,255,255,.82);padding:5px 0;border-bottom:1px solid rgba(255,255,255,.08);transform:translateX(-10px);transition:transform .4s var(--eas-ease),color .3s}
.eas-card:hover .eas-card__list li,.eas-card.active .eas-card__list li{transform:translateX(0)}
.eas-card:hover .eas-card__list li:nth-child(1){transition-delay:.05s}
.eas-card:hover .eas-card__list li:nth-child(2){transition-delay:.10s}
.eas-card:hover .eas-card__list li:nth-child(3){transition-delay:.15s}
.eas-card:hover .eas-card__list li:nth-child(4){transition-delay:.20s}
.eas-card:hover .eas-card__list li:nth-child(5){transition-delay:.25s}
.eas-card__list li::before{content:'';flex-shrink:0;width:6px;height:6px;border-radius:50%;background:var(--eas-lime)}
.eas-card--sky .eas-card__list li::before{background:#5bb8f5}
.eas-card--blue .eas-card__list li::before{background:var(--eas-lime)}
.eas-card__list li:last-child{border-bottom:none}
.eas-card__arrow{position:absolute;bottom:32px;right:32px;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);transition:background .3s,transform .4s var(--eas-ease),opacity .4s;opacity:0;transform:translateY(8px);z-index:3}
.eas-card--yellow .eas-card__arrow{background:rgba(188,197,58,.2);border-color:rgba(188,197,58,.4)}
.eas-card--sky .eas-card__arrow{background:rgba(91,184,245,.2);border-color:rgba(91,184,245,.4)}
.eas-card:hover .eas-card__arrow{opacity:1;transform:translateY(0)}
.eas-card__arrow svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2}
@keyframes easFadeUp{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)}}
.eas-header{animation:easFadeUp .9s var(--eas-ease) both}
.eas-grid{animation:easFadeUp 1.1s .2s var(--eas-ease) both}
@media(max-width:960px){.eas-grid{grid-template-columns:repeat(2,1fr)}.eas-card:nth-child(1),.eas-card:nth-child(4),.eas-card:nth-child(7){grid-column:span 1}}
@media(max-width:600px){.eas-section{padding:64px 0 80px}.eas-grid{grid-template-columns:1fr;gap:2px}.eas-card:nth-child(1),.eas-card:nth-child(4),.eas-card:nth-child(7){grid-column:span 1}.eas-card{min-height:240px}.eas-card__body{min-height:240px;padding:24px 24px 20px 30px}.eas-card__num{font-size:52px;top:16px;right:20px}}

/* ─── FOOTER WRAPPER ─── */
.footer-section__topbar{background:linear-gradient(160deg,#07102f 0%,#0b1a6d 50%,#1535c8 100%);border-bottom:1px solid rgba(255,255,255,.12);position:relative;overflow:hidden}
.footer-section__topbar::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 100% at 50% 0%,rgba(100,140,255,.08) 0%,transparent 70%);pointer-events:none}
.footer-section__topbar-inner{max-width:1240px;margin:0 auto;padding:0 52px;display:grid;grid-template-columns:1fr 1px 1fr 1px 1fr;align-items:stretch}
.footer-section__topbar-divider{background:linear-gradient(to bottom,transparent,rgba(255,255,255,.30),transparent);width:1px;margin:20px 0}
.footer-section__topbar-item{display:flex;align-items:center;gap:20px;padding:32px 36px;text-decoration:none;transition:background .25s}
.footer-section__topbar-item:hover{background:rgba(255,255,255,.04)}
.footer-section__topbar-item--mail{cursor:default}
.footer-section__topbar-item--mail:hover{background:none}
.footer-section__topbar-icon{width:54px;height:54px;background:linear-gradient(135deg,rgba(255,255,255,.08) 0%,rgba(255,255,255,.02) 100%);border:1px solid rgba(255,255,255,.12);border-radius:14px;display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0;box-shadow:0 4px 16px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.1);backdrop-filter:blur(8px);transition:border-color .25s,box-shadow .25s}
.footer-section__topbar-item:hover .footer-section__topbar-icon{border-color:rgba(255,255,255,.30);box-shadow:0 6px 20px rgba(30,80,255,.25),inset 0 1px 0 rgba(255,255,255,.15)}
.footer-section__topbar-content{display:flex;flex-direction:column;gap:5px}
.footer-section__topbar-title{font-size:.95rem;font-weight:700;color:#fff;letter-spacing:.01em}
.footer-section__topbar-content p,.footer-section__mail-link{font-size:.84rem;color:rgba(255,255,255,.55);line-height:1.6;font-weight:300}
.footer-section__mail-link{text-decoration:none;display:block;transition:color .2s}
.footer-section__mail-link:hover{color:#fff}
.footer-section{background:linear-gradient(160deg,#060d2e 0%,#0a1660 35%,#1230b8 68%,#1a3bd6 100%);position:relative;overflow:hidden}
.footer-section__mesh{position:absolute;inset:0;pointer-events:none;z-index:0;background-image:radial-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:32px 32px}
.footer-section::before{content:'';position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:900px;height:500px;background:radial-gradient(ellipse,rgba(80,120,255,.07) 0%,transparent 70%);pointer-events:none;z-index:0}
.footer-section::after{content:'';position:absolute;bottom:-100px;right:-150px;width:500px;height:500px;background:radial-gradient(circle,rgba(30,60,200,.1) 0%,transparent 70%);pointer-events:none;z-index:0}
.footer-section__main{position:relative;z-index:1;max-width:1240px;margin:0 auto;padding:60px 52px 48px;display:grid;grid-template-columns:1.65fr 1fr 1fr 1.35fr;gap:56px;border-bottom:1px solid rgba(255,255,255,.06)}
.footer-section__brand-col{display:flex;flex-direction:column;gap:20px;padding-right:12px;border-right:1px solid rgba(255,255,255,.06)}
.footer-section__logo-wrap{padding-bottom:4px}
.footer-section__school-logo{height:78px;width:auto;max-width:230px;object-fit:contain;display:block;filter:brightness(0) invert(1);opacity:.92;transition:opacity .25s}
.footer-section__school-logo:hover{opacity:1}
.footer-section__brand-desc{font-size:.87rem;font-weight:300;color:rgba(255,255,255,.55);line-height:1.8;max-width:290px}
.footer-section__follow{display:flex;flex-direction:column;gap:12px;margin-top:6px}
.footer-section__follow-label{font-size:.75rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.55)}
.footer-section__socials{display:flex;gap:10px}
.footer-section__soc{width:38px;height:38px;border-radius:50%;border:1.5px solid rgba(255,255,255,.30);display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;backdrop-filter:blur(4px);background:rgba(255,255,255,.04);transition:all .22s}
.footer-section__soc:hover{border-color:#fff;background:rgba(255,255,255,.15);transform:translateY(-3px);box-shadow:0 6px 18px rgba(0,0,0,.2)}
.footer-section__nav-col{display:flex;flex-direction:column;gap:20px;padding-top:4px}
.footer-section__nav-title{font-size:.82rem;font-weight:700;color:#fff;letter-spacing:.08em;text-transform:uppercase;position:relative;padding-bottom:14px}
.footer-section__nav-title::after{content:'';position:absolute;bottom:0;left:0;width:28px;height:2.5px;background:linear-gradient(90deg,#5b8fff,#3060dd);border-radius:3px}
.footer-section__nav-list{list-style:none;display:flex;flex-direction:column;gap:2px}
.footer-section__nav-list li a{font-size:.875rem;font-weight:300;color:rgba(255,255,255,.55);text-decoration:none;display:flex;align-items:center;gap:8px;padding:7px 10px;border-radius:8px;transition:all .2s}
.footer-section__nav-list li a svg{flex-shrink:0;color:rgba(255,255,255,.30);transition:color .2s,transform .2s}
.footer-section__nav-list li a:hover{color:#fff;background:rgba(255,255,255,.06);padding-left:14px}
.footer-section__nav-list li a:hover svg{color:#7aaaff;transform:translateX(2px)}
.footer-section__map-col{display:flex;flex-direction:column;gap:16px;padding-top:4px}
.footer-section__map-wrap{border-radius:12px;overflow:hidden;border:1px solid rgba(255,255,255,.12);box-shadow:0 8px 32px rgba(0,0,0,.35);flex:1}
.footer-section__map-wrap iframe{width:100%;height:195px;display:block;border:none}
.footer-section__directions-btn{display:inline-flex;align-items:center;gap:8px;padding:9px 16px;background:linear-gradient(135deg,rgba(255,255,255,.08) 0%,rgba(255,255,255,.02) 100%);border:1px solid rgba(255,255,255,.30);color:rgba(255,255,255,.80);font-size:.77rem;font-weight:500;letter-spacing:.05em;text-decoration:none;border-radius:8px;backdrop-filter:blur(8px);transition:all .22s;align-self:flex-start}
.footer-section__directions-btn:hover{border-color:#fff;color:#fff;background:rgba(255,255,255,.1);transform:translateY(-1px)}
.footer-section__carousel-section{position:relative;z-index:1;border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);padding:8px 0}
.footer-section__carousel-label{display:flex;align-items:center;gap:20px;justify-content:center;padding:28px 52px 22px}
.footer-section__cl-line{flex:1;max-width:220px;height:1px;background:linear-gradient(to right,transparent,rgba(255,255,255,.30),transparent)}
.footer-section__cl-text{font-size:.62rem;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:rgba(255,255,255,.30);white-space:nowrap}
.footer-section__carousel-outer{overflow:hidden;position:relative}
.footer-section__carousel-fade{position:absolute;top:0;height:100%;width:150px;z-index:2;pointer-events:none}
.footer-section__carousel-fade--l{left:0;background:linear-gradient(to right,#0d1c7a 30%,transparent)}
.footer-section__carousel-fade--r{right:0;background:linear-gradient(to left,#0d1c7a 30%,transparent)}
.footer-section__carousel-track{display:flex;align-items:center;width:max-content;animation:fs-scroll 22s linear infinite;padding-bottom:28px}
.footer-section__carousel-track:hover{animation-play-state:paused}
@keyframes fs-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.footer-section__logo-tile{flex-shrink:0;padding:0 44px;display:flex;align-items:center;justify-content:center;position:relative}
.footer-section__logo-tile::after{content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:48px;background:rgba(255,255,255,.06)}
.footer-section__logo-tile img{height:62px;width:auto;max-width:175px;object-fit:contain;display:block;background:#fff;padding:10px 18px;border-radius:10px;box-shadow:0 4px 20px rgba(0,0,0,.3);transition:transform .3s,box-shadow .3s}
.footer-section__logo-tile:hover img{transform:translateY(-4px) scale(1.05);box-shadow:0 10px 32px rgba(0,0,0,.4)}
.footer-section__bottom{position:relative;z-index:1;max-width:1240px;margin:0 auto;padding:18px 52px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px}
.footer-section__copy{font-size:.76rem;font-weight:300;color:rgba(255,255,255,.55)}
.footer-section__bottom-links{display:flex;align-items:center;gap:14px;justify-content:center}
.footer-section__bottom-links a{font-size:.76rem;font-weight:400;color:rgba(255,255,255,.55);text-decoration:none;transition:color .2s}
.footer-section__bottom-links a:hover{color:#fff}
.footer-section__pipe{color:rgba(255,255,255,.30);font-size:.7rem}
.footer-section__credit{font-size:.76rem;font-weight:300;color:rgba(255,255,255,.55);display:flex;align-items:center;justify-content:flex-end;gap:4px}
.footer-section__edelytics{color:#6b9fff;font-weight:600;text-decoration:none;transition:color .2s}
.footer-section__edelytics:hover{color:#9dc0ff}
.footer-section__scroll-top{position:fixed;bottom:28px;right:28px;width:44px;height:44px;background:#e02b2b;border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;cursor:pointer;box-shadow:0 4px 20px rgba(220,40,40,.45);transition:all .22s;z-index:999}
.footer-section__scroll-top:hover{background:#f03535;transform:translateY(-3px);box-shadow:0 8px 28px rgba(220,40,40,.5)}
@media(max-width:1024px){.footer-section__topbar-inner{grid-template-columns:1fr;padding:0 32px}.footer-section__topbar-divider{display:none}.footer-section__topbar-item{border-bottom:1px solid rgba(255,255,255,.06);padding:24px 0}.footer-section__topbar-item:last-child{border-bottom:none}.footer-section__main{grid-template-columns:1fr 1fr;gap:40px;padding:48px 32px 40px}.footer-section__brand-col{grid-column:1/-1;border-right:none;border-bottom:1px solid rgba(255,255,255,.06);padding-bottom:28px;padding-right:0}.footer-section__map-col{grid-column:1/-1}.footer-section__bottom{grid-template-columns:1fr;gap:8px;padding:18px 32px;text-align:center}.footer-section__credit{justify-content:center}.footer-section__carousel-label{padding:24px 32px 18px}}
@media(max-width:600px){.footer-section__main{grid-template-columns:1fr;padding:36px 24px 32px}.footer-section__brand-col,.footer-section__map-col{grid-column:auto}.footer-section__bottom{padding:16px 24px}.footer-section__carousel-label{padding:20px 24px 14px}.footer-section__carousel-fade--l,.footer-section__carousel-fade--r{width:60px}.footer-section__topbar-inner{padding:0 24px}}

/*Boarding Page*/
.eas-hero{display:flex;align-items:center;gap:3.5rem;padding:5rem 6% 4rem;position:relative;overflow:hidden;background:#f5f0e8}.eas-hero__bg-grid{position:absolute;inset:0;z-index:0;pointer-events:none;background-image:linear-gradient(rgba(201,168,76,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(201,168,76,.07) 1px,transparent 1px);background-size:60px 60px}.eas-hero__blob{position:absolute;border-radius:50%;filter:blur(80px);z-index:0;pointer-events:none}.eas-hero__blob--1{width:500px;height:500px;background:radial-gradient(circle,rgba(201,168,76,.14),transparent 70%);top:-80px;right:8%;animation:easBlob 9s ease-in-out infinite alternate}.eas-hero__blob--2{width:340px;height:340px;background:radial-gradient(circle,rgba(13,27,42,.1),transparent 70%);bottom:0;left:4%;animation:easBlob 12s ease-in-out infinite alternate-reverse}@keyframes easBlob{from{transform:translate(0,0) scale(1)}to{transform:translate(22px,28px) scale(1.08)}}.eas-hero__left{position:relative;z-index:2;flex:1 1 460px;max-width:540px;animation:easLeft .9s cubic-bezier(.4,0,.2,1) both}@keyframes easLeft{from{opacity:0;transform:translateX(-36px)}to{opacity:1;transform:translateX(0)}}.eas-hero__label{display:flex;align-items:center;gap:.8rem;margin-bottom:1.3rem}.eas-hero__label-line{display:block;width:34px;height:2px;background:#c9a84c;border-radius:2px}.eas-hero__label-text{font-size:.74rem;font-weight:500;letter-spacing:.18em;color:#c9a84c;text-transform:uppercase}.eas-hero__discover{font-size:.7rem;font-weight:500;letter-spacing:.42em;color:#5a6a7e;text-transform:uppercase;margin-bottom:.45rem}.eas-hero__title{display:flex;flex-direction:column;line-height:1;margin-bottom:1.1rem}.eas-hero__title-thin{font-size:clamp(2.6rem,5vw,4.2rem);font-weight:300;color:#5a6a7e;letter-spacing:.04em}.eas-hero__title-bold{font-size:clamp(3.2rem,6vw,5.5rem);font-weight:900;color:#01468E;line-height:.93;letter-spacing:-.01em}.eas-hero__title-italic{font-size:clamp(2.2rem,4.2vw,3.6rem);font-weight:400;font-style:italic;color:#c9a84c;letter-spacing:.02em}.eas-hero__sub{font-size:clamp(1.15rem,2vw,1.5rem);font-weight:300;color:#1a2636;margin-bottom:.9rem;letter-spacing:.02em}.eas-hero__sub em{font-style:italic;color:#0d1b2a;font-weight:600}.eas-hero__body{font-size:.92rem;line-height:1.76;color:#5a6a7e;max-width:420px;margin-bottom:2.2rem}.eas-hero__stats{display:flex;align-items:center;gap:1.4rem;padding:1.3rem 1.7rem;background:rgba(13,27,42,.04);border:1px solid rgba(201,168,76,.22);border-radius:1rem;backdrop-filter:blur(4px);flex-wrap:wrap}.eas-hero__stat{display:flex;flex-direction:column;align-items:center;gap:.12rem}.eas-hero__stat-num{font-size:1.55rem;font-weight:700;color:#0d1b2a;line-height:1}.eas-hero__stat-num sup{font-size:.65rem;vertical-align:super;color:#c9a84c}.eas-hero__stat-label{font-size:.7rem;color:#5a6a7e;letter-spacing:.04em;white-space:nowrap}.eas-hero__stat-divider{width:1px;height:34px;background:rgba(201,168,76,.28)}.eas-hero__right{position:relative;z-index:2;flex:0 0 580px;width:580px;height:580px;display:flex;align-items:center;justify-content:center;animation:easScale .9s .3s cubic-bezier(.4,0,.2,1) both}@keyframes easScale{from{opacity:0;transform:scale(.92)}to{opacity:1;transform:scale(1)}}.eas-hero__ring{position:absolute;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%)}.eas-hero__ring--outer{width:560px;height:560px;border:1.5px dashed rgba(201,168,76,.35);animation:easSpin 28s linear infinite}.eas-hero__ring--inner{width:370px;height:370px;border:1.5px solid rgba(201,168,76,.15);animation:easSpin 18s linear infinite reverse}@keyframes easSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}.eas-hero__orbit{position:absolute;width:0;height:0}.eas-hero__orbit-card{position:absolute;transform:translate(-50%,-50%);background:#fff;border:1px solid rgba(201,168,76,.3);border-radius:.75rem;padding:.48rem .82rem;display:flex;align-items:center;gap:.45rem;white-space:nowrap;font-size:.76rem;font-weight:500;color:#0d1b2a;box-shadow:0 4px 18px rgba(13,27,42,.1);animation:easCounter 28s linear infinite}@keyframes easCounter{to{transform:translate(-50%,-50%) rotate(-360deg)}}.eas-hero__orbit--1{top:calc(50% - 280px);left:50%}.eas-hero__orbit--2{top:50%;left:calc(50% + 280px)}.eas-hero__orbit--3{top:calc(50% + 280px);left:50%}.eas-hero__orbit--4{top:50%;left:calc(50% - 280px)}.eas-hero__inner-dot{position:absolute;width:9px;height:9px;border-radius:50%;background:#c9a84c;opacity:.55}.eas-hero__inner-dot--1{top:calc(50% - 185px);left:50%}.eas-hero__inner-dot--2{top:calc(50% + 92px);left:calc(50% + 160px)}.eas-hero__inner-dot--3{top:calc(50% + 92px);left:calc(50% - 160px)}.eas-hero__photo-wrap{position:relative;z-index:3;width:320px;height:320px}.eas-hero__photo-circle{width:320px;height:320px;border-radius:50%;overflow:hidden;border:5px solid #fff;box-shadow:0 0 0 8px rgba(201,168,76,.2),0 0 0 16px rgba(201,168,76,.08),0 0 40px rgba(201,168,76,.22),0 20px 60px rgba(13,27,42,.25)}.eas-hero__photo-circle img{width:100%;height:100%;object-fit:cover;display:block}.eas-hero__badge{position:absolute;display:flex;align-items:center;gap:.6rem;background:#fff;border:1px solid rgba(201,168,76,.25);border-radius:.85rem;padding:.55rem 1rem;box-shadow:0 8px 30px rgba(13,27,42,.12);white-space:nowrap;z-index:4}.eas-hero__badge strong{display:block;font-size:.82rem;color:#0d1b2a;font-weight:700}.eas-hero__badge small{font-size:.7rem;color:#5a6a7e}.eas-hero__badge-icon{font-size:1.2rem}.eas-hero__badge--top{top:-18px;right:-60px;animation:easFloat 3.5s ease-in-out infinite}.eas-hero__badge--bottom{bottom:-18px;left:-55px;animation:easFloat 4s ease-in-out infinite .6s}@keyframes easFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}@media(max-width:1024px){.eas-hero{flex-direction:column;gap:2.5rem;padding:4rem 5% 3rem;text-align:center;justify-content:center;min-height:auto}.eas-hero__left{max-width:100%;flex:1 1 auto;display:flex;flex-direction:column;align-items:center}.eas-hero__label,.eas-hero__stats{justify-content:center}.eas-hero__body{text-align:center;max-width:480px}.eas-hero__right{flex:0 0 380px;width:380px;height:380px}.eas-hero__ring--outer{width:370px;height:370px}.eas-hero__ring--inner{width:250px;height:250px}.eas-hero__orbit--1{top:calc(50% - 185px)}.eas-hero__orbit--3{top:calc(50% + 185px)}.eas-hero__orbit--2{left:calc(50% + 185px)}.eas-hero__orbit--4{left:calc(50% - 185px)}}@media(max-width:640px){.eas-hero{padding:3rem 5% 3rem;gap:2rem}.eas-hero__right{flex:0 0 300px;width:300px;height:300px}.eas-hero__ring--outer{width:295px;height:295px}.eas-hero__ring--inner{width:195px;height:195px}.eas-hero__orbit--1{top:calc(50% - 147px)}.eas-hero__orbit--3{top:calc(50% + 147px)}.eas-hero__orbit--2{left:calc(50% + 147px)}.eas-hero__orbit--4{left:calc(50% - 147px)}.eas-hero__orbit-card{font-size:.66rem;padding:.36rem .58rem;gap:.3rem}.eas-hero__photo-wrap,.eas-hero__photo-circle{width:160px;height:160px}.eas-hero__badge--top{right:-10px;top:-14px}.eas-hero__badge--bottom{left:-10px;bottom:-14px}.eas-hero__badge{padding:.4rem .65rem;gap:.4rem}.eas-hero__badge strong{font-size:.74rem}.eas-hero__badge small{font-size:.62rem}.eas-hero__stat-divider{display:none}.eas-hero__stats{gap:.8rem;justify-content:space-evenly;padding:1rem 1.2rem}}

/*Why Krm*/
.why-eas-in{max-width:1230px;margin:0 auto;padding:40px 20px}
.section-header{text-align:center;margin-bottom:50px}
.section-title{font-size:2.5rem;font-weight:600;color:#273272;margin-bottom:15px;letter-spacing:-0.5px}
.section-description{font-size:1.1rem;color:#666;max-width:600px;margin:0 auto;line-height:1.6}
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{position:relative;overflow:hidden;cursor:pointer;box-shadow:0 4px 15px rgba(0,0,0,0.1)}
.card-image{position:relative;height:300px;background-size:cover;background-position:center;transition:transform 0.5s ease}
.card:hover .card-image{transform:scale(1.05)}
.card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.3) 40%,rgba(0,0,0,0.1) 100%);transition:background 0.4s ease}
.card:hover .card-overlay{background:linear-gradient(to top,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.4) 100%)}
.card-content{position:absolute;bottom:0;left:0;right:0;padding:25px;color:#fff;z-index:2;text-align:center}
.card-title{font-size:1.5rem;font-weight:600;margin-bottom:0;text-shadow:0 2px 4px rgba(0,0,0,0.3);transition:transform 0.4s ease}
.card-description{font-size:0.95rem;line-height:1.6;margin-top:15px;opacity:0;max-height:0;overflow:hidden;transform:translateY(30px);transition:opacity 0.4s ease,max-height 0.5s ease,transform 0.4s ease;text-shadow:0 1px 3px rgba(0,0,0,0.5)}
.card:hover .card-title{transform:translateY(-5px)}
.card:hover .card-description{opacity:1;max-height:200px;transform:translateY(0)}
.fade-in-up{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease-out,transform 0.6s ease-out}
.fade-in-up.visible{opacity:1;transform:translateY(0)}
@media(max-width:992px){.cards-grid{grid-template-columns:repeat(2,1fr)}.card-image{height:280px}}
@media(max-width:600px){.cards-grid{grid-template-columns:1fr}.card-image{height:280px}.section-title{font-size:2rem}.section-description{font-size:1rem}.card-title{font-size:1.3rem}.card-description{font-size:0.9rem}}

/*why EAs Bottom*/
.eas33-page{max-width:1200px;margin:0 auto;padding:60px 20px}.section-grid5{display:grid;grid-template-columns:70% 30%;gap:30px;margin-bottom:40px}.section-grid5.reverse{grid-template-columns:30% 70%}.text-conten5t{background:linear-gradient(135deg,#d4e7f5 0%,#e3f0f9 100%);padding:40px;border-radius:20px;box-shadow:0 8px 24px rgba(0,0,0,.08);display:flex;flex-direction:column;justify-content:center}.text-conten5t.quad-sharing{background:#f5f0e8}.content-section5{margin-bottom:25px}.content-section5:last-child{margin-bottom:0}.section-text{font-size:1rem;color:#4a5568;line-height:1.8;font-weight:400}.image-content5{border-radius:20px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.12);height:100%;min-height:400px}.image-content5 img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}.image-content5:hover img{transform:scale(1.05)}@media (max-width:968px){.section-grid5,.section-grid5.reverse{grid-template-columns:1fr;gap:25px}.text-conten5t{padding:30px}.image-content5{min-height:300px}}@media (max-width:576px){.eas33-page{padding:40px 15px}.text-conten5t{padding:25px;border-radius:15px}.image-content5{border-radius:15px;min-height:250px}}

/*Boarding Facility*/
.boarding-facility{width:100%;background:#fafaf8}.section-label{display:inline-block;font-size:.68rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase;padding:4px 14px;border-radius:30px;margin-bottom:18px;background:#f0ebe3;color:#8b6e4f}.section-label-green{background:#eaf3ec;color:#4a7c55}.section-label-light{background:rgba(255,255,255,.14);color:rgba(255,255,255,.85)}.section-label-navy{background:#ecf0f6;color:#3d526e}.section-label-amber{background:rgba(255,248,235,.2);color:#f5c87a}.section-heading{font-size:clamp(2rem, 4vw, 2.9rem);font-weight:400;color:#2e2a26;line-height:1.18;letter-spacing:-.01em;margin-bottom:18px}.section-heading-light{color:#fff}.section-text{color:#7a726b;font-weight:300;font-size:.97rem}.section-text-light{color:rgba(255,255,255,.7)}.section-text-muted{color:#8b98a8}.dining{background:#fff;padding:88px 52px;position:relative;overflow:hidden;border-left:3px solid #e9d9c4}.dining-layout{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;position:relative}.dining-watermark{position:absolute;font-size:220px;font-weight:300;color:#f0ebe3;top:-55px;left:-20px;line-height:1;pointer-events:none;user-select:none;z-index:0}.dining-content{position:relative;z-index:2}.dining-figure{position:relative;display:flex;align-items:center;justify-content:center;height:300px}.dining-ring{position:absolute;border-radius:50%;border:1px solid #e9d9c4}.dining-ring-outer{width:260px;height:260px;opacity:.5}.dining-ring-inner{width:170px;height:170px;opacity:.7}.dining-icon{font-size:72px;position:relative;z-index:2;filter:drop-shadow(0 6px 20px rgba(205,163,110,.2))}.feature-list{list-style:none;margin-top:24px;display:flex;flex-direction:column;gap:8px}.feature-list li{font-size:.88rem;font-weight:400;color:#8b6e4f;padding:10px 16px;background:#faf5ee;border-radius:8px;display:flex;align-items:center;gap:10px}.feature-list li::before{content:'';width:5px;height:5px;border-radius:50%;background:#c9a06a;flex-shrink:0}.pastoral{background:#fafaf8;padding:88px 52px;position:relative;overflow:hidden}.pastoral::after{content:'';position:absolute;bottom:0;left:0;right:0;height:1px;background:linear-gradient(to right,transparent,#c8dcc9,transparent)}.pastoral-layout{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:320px 1fr;gap:88px;align-items:start}.pastoral-aside{position:sticky;top:48px}.quote-mark{display:block;font-size:110px;font-weight:300;color:#c8dcc9;line-height:.7;margin-bottom:12px}.pull-quote{font-size:1.45rem;font-weight:400;font-style:italic;color:#4a7c55;line-height:1.5;border-left:2px solid #c8dcc9;padding-left:18px}.care-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}.care-tag{font-size:.8rem;font-weight:400;color:#4a7c55;background:#eaf3ec;padding:8px 14px;border-radius:8px}.activities{background:#01468E;padding:88px 52px;position:relative;overflow:hidden}.activities-layout{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;position:relative;z-index:2}.activities-note{margin-top:26px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.7);font-size:.88rem;font-weight:300;padding:14px 18px;border-radius:10px;display:flex;align-items:center;gap:10px}.activities-note span{font-size:1.1rem}.activities-note em{font-style:italic;color:#f5c87a}.sports-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.sport-item{border-radius:14px;padding:20px 14px;display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;transition:transform .2s ease}.sport-item:hover{transform:translateY(-3px)}.sport-item span{font-size:2rem}.sport-item p{font-size:.78rem;font-weight:500;margin:0;line-height:1.2;color:inherit}.sport-amber{background:#fef6e4;color:#92671b}.sport-sage{background:#eaf3ec;color:#385e3f}.sport-sky{background:#e6f3fa;color:#1e5e87}.sport-rose{background:#fbe9ef;color:#8c2945}.sport-violet{background:#eeeaf8;color:#4d3587}.sport-peach{background:#fbf0e8;color:#8c4a1e}.activities-watermark{position:absolute;font-size:340px;font-weight:300;color:rgba(255,255,255,.03);bottom:-90px;right:-10px;line-height:1;pointer-events:none;user-select:none;z-index:1}.comprises{background:#fff;padding:88px 52px}.comprises-header{text-align:center;max-width:580px;margin:0 auto 60px}.comprises-lead{color:#9b9490;font-size:.95rem}.comprises-grid{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.item-wide{grid-column:span 2}.comprises-item{border-radius:18px;padding:32px;position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease}.comprises-item:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.07)}.item-sand{background:#fbf6ef}.item-mint{background:#edf7f0}.item-sky{background:#e8f4fb}.item-ivory{background:#fafaf5;border:1px solid #edeae4}.item-blush{background:#fbf0f2}.item-dark{background:#01468E}.item-number{position:absolute;top:18px;right:22px;font-size:3.5rem;font-weight:300;color:rgba(46,42,38,.08);line-height:1;user-select:none}.item-number-light{color:rgba(255,255,255,.1)}.item-icon{font-size:2.2rem;display:block;margin-bottom:12px}.item-title{font-size:1.45rem;font-weight:400;color:#2e2a26;margin-bottom:10px;line-height:1.2}.item-title-light{color:#fff}.item-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:16px}.item-tag{font-size:.72rem;font-weight:400;padding:4px 11px;border-radius:20px;background:rgba(46,42,38,.07);color:#5e574f}.item-tags-light .item-tag{background:rgba(255,255,255,.12);color:rgba(255,255,255,.75)}.item-badge{display:inline-block;margin-top:14px;font-size:.75rem;font-weight:500;padding:5px 13px;border-radius:20px;background:rgba(46,42,38,.08);color:#5e574f}.communication{background:#01468e;padding:88px 52px;position:relative;overflow:hidden}.communication-layout{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;position:relative;z-index:2}.communication-features{display:grid;grid-template-columns:1fr 1fr;gap:12px}.feature-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:22px 18px}.feature-icon{font-size:1.6rem;display:block;margin-bottom:10px}.feature-title{font-size:.9rem;font-weight:500;color:#fff;margin-bottom:3px}.feature-desc{font-size:.78rem;font-weight:300;color:rgba(255,255,255,.5);margin:0}.communication-rings{position:absolute;inset:0;pointer-events:none;z-index:1}.comm-ring{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.05)}.comm-ring-1{width:480px;height:480px;top:-160px;right:-120px}.comm-ring-2{width:280px;height:280px;bottom:-90px;right:80px}@media (max-width:960px){.activities,.communication,.comprises,.dining,.pastoral{padding:64px 32px}.activities-layout,.communication-layout,.dining-layout{grid-template-columns:1fr;gap:44px}.pastoral-layout{grid-template-columns:1fr;gap:40px}.pastoral-aside{position:static}.comprises-grid{grid-template-columns:1fr}.item-wide{grid-column:auto}.dining-figure{height:220px}.dining-ring-outer{width:200px;height:200px}.dining-ring-inner{width:130px;height:130px}.dining-icon{font-size:56px}.dining-watermark{font-size:160px}.activities-watermark{font-size:220px}}@media (max-width:600px){.activities,.communication,.comprises,.dining,.pastoral{padding:48px 20px}.sports-grid{grid-template-columns:repeat(2,1fr)}.care-tags{flex-direction:column}.communication-features{grid-template-columns:1fr}.comprises-grid{grid-template-columns:1fr}}

/*Schdule*/
.boarding-schedule{width:100%;background:#f9f7f4;padding:80px 48px;}.boarding-schedule-inner{max-width:860px;margin:0 auto}.boarding-schedule-tag{display:inline-block;font-size:.68rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:#8c7355;background:#f0e8dc;padding:4px 14px;border-radius:30px;margin-bottom:16px}.boarding-schedule-title{font-size:clamp(1.9rem,4vw,2.8rem);font-weight:400;color:#2c2926;line-height:1.2;letter-spacing:-.01em;margin-bottom:18px}.boarding-schedule-intro{font-size:.95rem;font-weight:300;color:#7a736c;line-height:1.85;max-width:640px;margin-bottom:56px}.boarding-schedule-body{display:flex;flex-direction:column;gap:28px}.schedule-period-group{background:#fff;border-radius:16px;overflow:hidden;border:1px solid #ede8e1}.schedule-period-label{display:flex;align-items:center;gap:8px;padding:12px 24px;background:#f5f1ec;border-bottom:1px solid #ede8e1;font-size:.68rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:#9b9187}.schedule-item{display:grid;grid-template-columns:1fr 1px 1fr;align-items:center;padding:18px 24px;border-bottom:1px solid #f3efe9;transition:background .15s ease;gap:0}.schedule-item:last-child{border-bottom:none}.schedule-item:hover{background:#fdfbf8}.schedule-item-event{display:flex;align-items:center;gap:12px;padding-right:28px}.schedule-item-emoji{font-size:1.1rem;flex-shrink:0;opacity:.8}.schedule-item-name{font-size:.92rem;font-weight:400;color:#3a3530;line-height:1.3}.schedule-item-note{display:block;font-size:.74rem;font-weight:300;color:#a89e94;margin-top:2px}.schedule-item-sep{width:1px;height:24px;background:#e8e3db;flex-shrink:0}.schedule-item-time{padding-left:28px;font-size:1.22rem;font-weight:400;color:#3a3530;text-align:right;white-space:nowrap}.schedule-item-time em{font-style:normal;font-size:.7rem;font-weight:400;color:#a89e94;letter-spacing:.08em;text-transform:uppercase;margin-left:3px}.schedule-item-time .schedule-item-range{font-size:.78rem;font-weight:300;color:#7a736c;letter-spacing:.04em}@media(max-width:640px){.boarding-schedule{padding:52px 20px}.schedule-item{grid-template-columns:1fr;gap:6px;padding:16px 18px}.schedule-item-sep{display:none}.schedule-item-event{padding-right:0}.schedule-item-time{padding-left:0;text-align:left;font-size:1rem}}

/*Awards*/
  .sfs-awards{max-width:1600px;margin:0 auto}
        .awards-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:40px;padding:20px}
        @media(max-width:768px)
        {.awards-container{grid-template-columns:1fr;gap:30px}}
        .award-card{background:#fff;border-radius:16px;padding:32px 24px 24px;box-shadow:0 8px 24px rgba(0,0,0,.08);transition:all .4s cubic-bezier(.4,0,.2,1);position:relative;overflow:visible}
        .award-card:hover{transform:translateY(-12px);box-shadow:0 16px 48px rgba(0,0,0,.15)}
        .award-visual{position:relative;display:flex;justify-content:center;align-items:center;margin-bottom:24px;perspective:1000px;min-height:320px}
        .award-frame{background:#000;padding:3px;border-radius:8px;box-shadow:0 12px 32px rgba(0,0,0,.25);transform:translateZ(20px);transition:transform .4s ease;position:relative;z-index:2}
        .award-card:hover .award-frame{transform:translateZ(30px) scale(1.02)}
        .award-frame .award-image{width:180px;height:280px;object-fit:cover;display:block;border:3px solid #fff}
        .award-frame.landscape{padding:3px}
        .award-frame.landscape .award-image{width:250px;height:200px;object-fit:cover;display:block;border:3px solid #fff}
        .pedestal{position:absolute;bottom:-60px;left:50%;transform:translateX(-50%);width:220px;z-index:1}
        .pedestal-top{width:100%;height:20px;background:linear-gradient(to bottom,#f8f8f8,#e8e8e8);border-radius:50%;box-shadow:0 4px 12px rgba(0,0,0,.15)}
        .pedestal-body{width:90%;height:80px;margin:0 auto;background:linear-gradient(to bottom,#fff 0%,#f5f5f5 50%,#fff 100%);border-left:4px solid #e0e0e0;border-right:4px solid #e0e0e0;position:relative;box-shadow:inset 0 0 20px rgba(0,0,0,.05)}
        .pedestal-body::before{content:'';position:absolute;top:50%;left:0;right:0;height:12px;background:linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);}
        .pedestal-bottom{width:100%;height:20px;background:linear-gradient(to top,#f8f8f8,#e8e8e8);border-radius:50%;box-shadow:0 -4px 12px rgba(0,0,0,.1)}
        .trophy-icon{position:absolute;right:-15px;top:50%;transform:translateY(-50%);width:60px;height:60px;background:linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:3;animation:float 3s ease-in-out infinite}
        .trophy-icon svg{width:32px;height:32px;color:#fff;filter:drop-shadow(0 2px 4px rgba(0,0,0,.3))}@keyframes float{0%,100%{transform:translateY(-50%)}50%{transform:translateY(-60%)}}
        .award-details{text-align:left;margin-top:80px;padding-top:20px}
        .award-title{font-size:20px;font-weight:700;color:#1e3a8a;margin-bottom:8px;line-height:1.3;letter-spacing:.3px}
        .award-year{font-size:15px;color:#6c757d;font-weight:400;letter-spacing:.2px}@media(max-width:1200px){.awards-container{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px}
        .award-visual{min-height:280px}.award-frame{padding:6px}
        .award-frame .award-image{width:160px;height:240px}
        .award-frame.landscape .award-image{width:280px;height:180px}
        .pedestal{width:200px}.trophy-icon{width:50px;height:50px}.trophy-icon svg{width:28px;height:28px}}@media(max-width:768px){.awards-container{padding:10px}.award-card{padding:28px 20px 20px}.award-visual{min-height:260px}.award-frame{padding:6px}.award-frame .award-image{width:140px;height:220px}.award-frame.landscape .award-image{width:260px;height:160px}.pedestal{width:180px;bottom:-50px}.pedestal-body{height:70px}.trophy-icon{width:45px;height:45px;right:-10px}.trophy-icon svg{width:24px;height:24px}.award-details{margin-top:70px}.award-title{font-size:18px}.award-year{font-size:14px}}@media(max-width:480px){.award-card{padding:24px 16px 16px}.award-visual{min-height:220px}.award-frame{padding:5px}.award-frame .award-image{width:120px;height:180px}.award-frame.landscape .award-image{width:220px;height:140px}.pedestal{width:150px;bottom:-40px}.pedestal-body{height:60px}.pedestal-body::before{height:10px}.trophy-icon{width:40px;height:40px}.trophy-icon svg{width:20px;height:20px}.award-details{margin-top:60px}.award-title{font-size:16px}.award-year{font-size:13px}}