@import 'base.css';

/* NAV */
 nav {
   position: fixed;
   inset: 0 0 auto 0;
   z-index: 60;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   padding: 13px clamp(16px, 4vw, 46px);
   transition: background .4s, box-shadow .4s, padding .4s
 }

 nav.solid {
   background: rgba(255, 255, 255, .9);
   backdrop-filter: blur(14px);
   box-shadow: 0 1px 0 var(--line);
   padding-top: 10px;
   padding-bottom: 10px
 }

 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   cursor: pointer;
   opacity: 0;
   transform: translateY(-6px);
   transition: opacity .45s, transform .45s
 }

 .brand.show {
   opacity: 1;
   transform: none
 }

 .brand img {
   height: 34px;
   width: auto
 }

 .brand .kia {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 20px;
   color: var(--blue);
   letter-spacing: .6px;
   line-height: 1
 }

 .nav-right {
   display: flex;
   align-items: center;
   gap: 22px
 }

 .nav-links {
   display: flex;
   align-items: center;
   gap: 26px
 }

 .nav-links a {
   font-size: 14px;
   font-weight: 500;
   color: var(--ink);
   opacity: .76;
   transition: opacity .2s;
   position: relative;
   cursor: pointer
 }

 .nav-links a::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: -7px;
   height: 2px;
   width: 0;
   background: var(--red);
   transition: width .25s
 }

 .nav-links a:hover {
   opacity: 1
 }

 .nav-links a:hover::after,
 .nav-links a.is-current::after {
   width: 100%
 }

 .nav-links a.is-current {
   opacity: 1;
   color: var(--blue)
 }

 .lang-switch {
   display: inline-flex;
   border: 1px solid var(--line);
   border-radius: 999px;
   overflow: hidden;
   background: #fff
 }

 .lang-switch button {
   font-family: var(--sans);
   border: 0;
   background: transparent;
   cursor: pointer;
   font-size: 12.5px;
   font-weight: 600;
   color: var(--muted);
   padding: 7px 12px;
   transition: background .2s, color .2s
 }

 .lang-switch button.on {
   background: var(--blue);
   color: #fff
 }

 .hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   background: none;
   border: 0;
   cursor: pointer;
   padding: 6px
 }

 .hamburger span {
   width: 22px;
   height: 2px;
   background: var(--ink);
   border-radius: 2px;
   transition: .3s
 }

 /* PAGES */
 [data-page] {
   display: none
 }

 [data-page].is-active {
   display: block;
   animation: pageIn .5s ease
 }

 @keyframes pageIn {
   from {
     opacity: 0;
     transform: translateY(10px)
   }

   to {
     opacity: 1;
     transform: none
   }
 }

 /* HERO */
 .hero {
   position: relative;
   height: 215vh
 }

 .hero-stage {
   position: sticky;
   top: 0;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   background: radial-gradient(1200px 700px at 80% 16%, rgba(204, 74, 75, .10), transparent 60%), radial-gradient(1100px 800px at 10% 90%, rgba(34, 72, 102, .16), transparent 55%), linear-gradient(180deg, #fff, #e9eff5)
 }

 .hero-stage::before {
   content: "";
   position: absolute;
   inset: 0;
   opacity: .5;
   background-image: radial-gradient(rgba(34, 72, 102, .09) 1px, transparent 1.4px);
   background-size: 26px 26px;
   -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 78%);
   mask-image: radial-gradient(circle at 50% 45%, #000 35%, transparent 78%)
 }

 .lockup {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   gap: clamp(14px, 3vw, 38px);
   width: min(1080px, 90vw);
   will-change: transform, opacity
 }

 .emblem {
   position: relative;
   height: clamp(118px, 21vw, 238px);
   aspect-ratio: 292/640;
   flex: 0 0 auto;
   opacity: 0;
   animation: embIn .7s .05s ease forwards;
   filter: drop-shadow(0 18px 26px rgba(22, 40, 58, .22))
 }

 .emblem img {
   position: absolute;
   left: 0;
   width: 100%;
   height: auto;
   display: block
 }

 .emb-body {
   bottom: 0;
   z-index: 2
 }

 .emb-nib {
   top: 0;
   z-index: 1;
   transform-origin: 50% 80%;
   animation: nibOut 1s .55s cubic-bezier(.34, 1.45, .5, 1) both
 }

 .namewrap {
   min-width: 0
 }

 .hero-extra {
   opacity: 0;
   transform: translateY(10px);
   transition: opacity .5s ease .15s, transform .5s ease .15s
 }

 .lockup.expanded .hero-extra {
   opacity: 1;
   transform: none
 }

 .eyebrow-hero {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--red)
 }

 .eyebrow-hero i {
   width: 26px;
   height: 2px;
   background: var(--red);
   display: inline-block
 }

 .name {
   font-family: var(--serif);
   font-weight: 600;
   color: var(--blue);
   font-size: clamp(30px, 6.2vw, 78px);
   line-height: 1;
   letter-spacing: -1px;
   white-space: nowrap;
   display: flex;
   align-items: baseline;
   margin: 14px 0 0;
   transform: translateX(-26px) scale(.94);
   transform-origin: left center;
   transition: transform .8s cubic-bezier(.6, 0, .18, 1)
 }

 .name .word {
   display: inline-flex;
   align-items: baseline;
   margin-right: 0;
   transition: margin-right .7s cubic-bezier(.6, 0, .18, 1)
 }

 .name .rest {
   display: inline-block;
   overflow: hidden;
   max-width: 0;
   opacity: 0;
   white-space: nowrap;
   transition: max-width .75s cubic-bezier(.6, 0, .18, 1), opacity .55s ease
 }

 .name .word:nth-child(1) .rest {
   transition-delay: .05s
 }

 .name .word:nth-child(2) .rest {
   transition-delay: .22s
 }

 .name .word:nth-child(3) .rest {
   transition-delay: .39s
 }

 .lockup.expanded .name {
   transform: none
 }

 .lockup.expanded .name .word {
   margin-right: .30em
 }

 .lockup.expanded .name .word:last-child {
   margin-right: 0
 }

 .lockup.expanded .name .word:nth-child(1) .rest {
   max-width: 3.7em;
   opacity: 1
 }

 .lockup.expanded .name .word:nth-child(2) .rest {
   max-width: 1.7em;
   opacity: 1
 }

 .lockup.expanded .name .word:nth-child(3) .rest {
   max-width: 4em;
   opacity: 1
 }

 .ink-underline {
   position: relative;
   height: 5px;
   width: 0;
   border-radius: 5px;
   margin-top: 16px;
   background: linear-gradient(90deg, var(--blue), var(--red));
   transition: width .65s cubic-bezier(.62, 0, .2, 1) .12s
 }

 .ink-underline::after {
   content: "";
   position: absolute;
   right: -4px;
   top: -3px;
   width: 11px;
   height: 11px;
   border-radius: 50%;
   background: var(--red);
   box-shadow: 0 0 14px rgba(204, 74, 75, .6);
   opacity: 0;
   transition: opacity .4s .35s
 }

 .lockup.expanded .ink-underline {
   width: min(100%, 520px)
 }

 .lockup.expanded .ink-underline::after {
   opacity: 1
 }

 .academy-tag {
   margin-top: 18px;
   font-size: clamp(15px, 1.7vw, 19px);
   color: var(--muted);
   max-width: 520px;
   line-height: 1.55
 }

 .tagline {
   margin-top: 16px;
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 2.6px;
   text-transform: uppercase;
   color: var(--blue)
 }

 .tagline span {
   color: var(--red);
   margin: 0 9px;
   font-weight: 700
 }

 .hero-cta {
   margin-top: 26px;
   display: flex;
   gap: 12px;
   flex-wrap: wrap
 }

 .scroll-cue {
   position: absolute;
   left: 50%;
   bottom: 30px;
   transform: translateX(-50%);
   z-index: 3;
   font-size: 11px;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--muted);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px
 }

 .scroll-cue .dotline {
   width: 2px;
   height: 30px;
   border-radius: 2px;
   background: linear-gradient(var(--blue), transparent);
   animation: cue 1.8s ease-in-out infinite
 }

 /* TICKER */
 .ticker {
   background: var(--blue-deep);
   color: #fff;
   position: relative;
   z-index: 4;
   border-top: 3px solid var(--red);
   overflow: hidden
 }

 .ticker-row {
   display: flex;
   white-space: nowrap;
   width: max-content;
   animation: marquee 34s linear infinite
 }

 .ticker:hover .ticker-row {
   animation-play-state: paused
 }

 .ticker-row .item {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 14px 28px;
   font-size: 14px;
   font-weight: 500
 }

 .ticker-row .item b {
   font-weight: 700
 }

 .ticker-row .d {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--red-soft);
   flex: 0 0 auto
 }

 .ticker-row .tag {
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   color: #ffd6d6;
   background: rgba(204, 74, 75, .26);
   padding: 3px 9px;
   border-radius: 999px
 }

 /* SECTIONS */
 section.block {
   padding: clamp(60px, 8vw, 110px) 0
 }

 .page-head {
   padding: calc(82px + clamp(40px, 6vw, 70px)) 0 0
 }

 .section-head {
   /* max-width: 700px; */
   margin-bottom: 44px
 }

 .eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--red);
   margin-bottom: 16px
 }

 .eyebrow i {
   width: 30px;
   height: 2px;
   background: var(--red)
 }

 .section-head h2 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: clamp(30px, 4.4vw, 50px);
   line-height: 1.04;
   letter-spacing: -.5px
 }

 .section-head p {
   margin-top: 16px;
   color: var(--muted);
   font-size: 17px;
   line-height: 1.6
 }

 .service-pills {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 22px
 }

 .pill {
   font-size: 13px;
   font-weight: 600;
   color: var(--blue);
   background: #fff;
   border: 1px solid var(--line);
   padding: 8px 15px;
   border-radius: 999px;
   box-shadow: 0 4px 14px -10px rgba(22, 40, 58, .4)
 }

 .pill b {
   color: var(--red)
 }

 .reveal {
   opacity: 0;
   transform: translateY(26px);
   transition: opacity .7s, transform .7s
 }

 .reveal.in {
   opacity: 1;
   transform: none
 }

 /* TILES */
 .grid {
   display: grid;
   gap: 20px;
   grid-template-columns: repeat(auto-fill, minmax(270px, 1fr))
 }

 .tile {
   position: relative;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 28px 26px 26px;
   overflow: hidden;
   transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s, border-color .35s
 }

 .tile::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   height: 4px;
   width: 100%;
   background: linear-gradient(90deg, var(--blue), var(--red));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .4s
 }

 .tile::after {
   content: "";
   position: absolute;
   top: -60%;
   left: -30%;
   width: 60%;
   height: 220%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
   transform: rotate(18deg) translateX(-160%);
   transition: transform .7s
 }

 .tile:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow);
   border-color: transparent
 }

 .tile:hover::before {
   transform: scaleX(1)
 }

 .tile:hover::after {
   transform: rotate(18deg) translateX(260%)
 }

 .tile .ico {
   width: 50px;
   height: 50px;
   border-radius: 13px;
   display: grid;
   place-items: center;
   margin-bottom: 18px;
   background: linear-gradient(150deg, var(--paper-2), #fff);
   border: 1px solid var(--line);
   color: var(--blue);
   transition: transform .35s, background .35s, color .35s
 }

 .tile:hover .ico {
   transform: translateY(-3px) rotate(-4deg);
   background: var(--blue);
   color: #fff
 }

 .tile .ico svg {
   width: 24px;
   height: 24px
 }

 .tile h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 21px;
   margin-bottom: 8px;
   letter-spacing: -.2px
 }

 .tile p {
   color: var(--muted);
   font-size: 14.5px;
   line-height: 1.55
 }

 .tile .lvl {
   margin-top: 16px;
   display: inline-flex;
   align-items: center;
   gap: 7px;
   font-size: 12.5px;
   font-weight: 600;
   color: var(--red);
   opacity: 0;
   transform: translateX(-6px);
   transition: opacity .3s, transform .3s
 }

 .tile:hover .lvl {
   opacity: 1;
   transform: none
 }

 /* HOME OVERVIEW CARDS */
 .twocol {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 22px
 }

 .ocard {
   position: relative;
   overflow: hidden;
   border-radius: 22px;
   padding: 36px;
   color: #fff;
   min-height: 230px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   cursor: pointer;
   transition: transform .35s
 }

 .ocard:hover {
   transform: translateY(-6px)
 }

 .ocard.upsc {
   background: linear-gradient(140deg, var(--blue-deep), var(--blue) 70%, #2d5d80)
 }

 .ocard.tnpsc {
   background: linear-gradient(140deg, #7d2526, var(--red) 78%, #e45354)
 }

 .ocard::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1.4px);
   background-size: 22px 22px;
   opacity: .5
 }

 .ocard>* {
   position: relative;
   z-index: 1
 }

 .ocard h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 26px;
   margin-bottom: 10px
 }

 .ocard p {
   color: rgba(255, 255, 255, .85);
   font-size: 14.5px;
   line-height: 1.55;
   max-width: 420px
 }

 .ocard .go {
   margin-top: 18px;
   font-weight: 600;
   font-size: 14px;
   display: inline-flex;
   gap: 7px;
   align-items: center
 }

 /* MENTORING BAND */
 .band {
   position: relative;
   overflow: hidden;
   border-radius: 26px;
   color: #fff;
   background: radial-gradient(700px 400px at 85% 10%, rgba(204, 74, 75, .42), transparent 60%), linear-gradient(120deg, var(--blue-deep), var(--blue) 62%, #2d5d80);
   padding: clamp(34px, 5vw, 60px);
   display: grid;
   grid-template-columns: 1.2fr .8fr;
   gap: 34px;
   align-items: center;
   box-shadow: var(--shadow)
 }

 .band::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1.4px);
   background-size: 22px 22px;
   opacity: .6
 }

 .band>* {
   position: relative;
   z-index: 1
 }

 .band .eyebrow {
   color: #ffd6d6
 }

 .band .eyebrow i {
   background: var(--red-soft)
 }

 .band h2 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: clamp(26px, 3.6vw, 40px);
   line-height: 1.08;
   letter-spacing: -.4px
 }

 .band p {
   margin-top: 14px;
   color: rgba(255, 255, 255, .82);
   font-size: 16px;
   line-height: 1.6;
   max-width: 520px
 }

 .stages {
   display: flex;
   flex-direction: column;
   gap: 12px
 }

 .stage {
   display: flex;
   align-items: center;
   gap: 14px;
   background: rgba(255, 255, 255, .09);
   border: 1px solid rgba(255, 255, 255, .18);
   padding: 14px 16px;
   border-radius: 13px;
   transition: transform .25s, background .25s
 }

 .stage:hover {
   transform: translateX(6px);
   background: rgba(255, 255, 255, .16)
 }

 .stage .n {
   font-family: var(--serif);
   font-size: 18px;
   color: #ffd6d6;
   width: 26px;
   flex: 0 0 auto
 }

 .stage b {
   font-size: 15px;
   display: block
 }

 .stage small {
   color: rgba(255, 255, 255, .72);
   font-size: 12.5px
 }

 /* TNPSC */
 .tnpsc-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 20px
 }

 .tn-card {
   position: relative;
   border-radius: 20px;
   padding: 30px;
   border: 1px solid var(--line);
   background: #fff;
   overflow: hidden;
   transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s
 }

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

 .tn-card .grp {
   font-family: var(--serif);
   font-size: 13px;
   font-weight: 600;
   color: #fff;
   background: var(--red);
   display: inline-block;
   padding: 5px 13px;
   border-radius: 999px
 }

 .tn-card h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 24px;
   margin: 16px 0 8px
 }

 .tn-card p {
   color: var(--muted);
   font-size: 14.5px;
   line-height: 1.55
 }

 .tn-card .arc {
   position: absolute;
   right: -40px;
   bottom: -40px;
   width: 150px;
   height: 150px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(34, 72, 102, .08), transparent 70%)
 }

 /* WHY */
 .approach {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 14px
 }

 @media(max-width:920px) {
   .approach {
     grid-template-columns: repeat(2, 1fr)
   }
 }

 .feat {
   padding: 18px;
   border-left: 3px solid var(--red);
   background: #fff;
   border-radius: 0 12px 12px 0;
   box-shadow: 0 10px 30px -22px rgba(22, 40, 58, .4)
 }

 .feat h4 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 15.5px;
   line-height: 1.25;
   margin-bottom: 7px
 }

 .feat p {
   color: var(--muted);
   font-size: 13px;
   line-height: 1.5
 }

 .prog-placeholder {
   display: grid;
   place-items: center;
   text-align: center;
   padding: 46px 24px;
   border: 2px dashed var(--line);
   border-radius: 18px;
   color: var(--muted);
   font-size: 15px;
   font-weight: 600;
   letter-spacing: .3px;
   background: linear-gradient(180deg, #fff, var(--paper-2))
 }

 .dlbtn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-family: var(--sans);
   font-size: 12.5px;
   font-weight: 600;
   color: var(--blue);
   background: var(--paper-2);
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 7px 13px;
   cursor: pointer;
   transition: background .2s, color .2s;
   white-space: nowrap
 }

 body.lang-ta .dlbtn {
   font-family: 'Noto Sans Tamil', var(--sans)
 }

 .dlbtn::after {
   content: "\2193";
   font-weight: 700
 }

 .dlbtn:hover {
   background: var(--blue);
   color: #fff
 }

 .tile .dlbtn {
   margin-top: 16px
 }

 .tn-card .dlbtn {
   margin-top: 16px;
   position: relative;
   z-index: 1
 }

 .prog-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   margin-top: 12px;
   padding-top: 12px;
   border-top: 1px solid var(--line);
   font-size: 14px;
   font-weight: 600;
   color: var(--ink);
   position: relative;
   z-index: 1
 }

 .prog-grid {
   display: grid;
   gap: 20px;
   grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))
 }

 .pcard {
   position: relative;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 26px;
   overflow: hidden;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s, border-color .35s
 }

 .pcard::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   height: 4px;
   width: 100%;
   background: linear-gradient(90deg, var(--blue), var(--red));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .4s
 }

 .pcard:hover {
   transform: translateY(-6px);
   box-shadow: var(--shadow);
   border-color: transparent
 }

 .pcard:hover::before {
   transform: scaleX(1)
 }

 .pcard>div:first-child {
   flex: 1
 }

 .pcard h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 20px;
   margin-bottom: 8px;
   letter-spacing: -.2px
 }

 .pcard p {
   color: var(--muted);
   font-size: 14px;
   line-height: 1.55
 }

 .pcard-foot {
   margin-top: 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px
 }

 .pcard-go {
   font-size: 13px;
   font-weight: 600;
   color: var(--red)
 }

 .cta-buttons {
   justify-content: center;
   margin-top: 4px
 }

 .alumni-band {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 26px;
   flex-wrap: wrap;
   background: linear-gradient(120deg, var(--paper), var(--paper-2));
   border: 1px solid var(--line);
   border-left: 4px solid var(--red);
   border-radius: 18px;
   padding: 26px 30px
 }

 .alumni-band h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 21px;
   line-height: 1.25;
   margin-bottom: 8px;
   letter-spacing: -.2px
 }

 .alumni-band p {
   color: var(--muted);
   font-size: 14.5px;
   line-height: 1.55;
   max-width: 62ch
 }

 .alumni-band .btn {
   flex: 0 0 auto
 }

 .team-scroll {
   margin-top: 6px;
   overflow: hidden;
   -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
   mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent)
 }

 .team-track {
   display: flex;
   width: max-content;
   padding: 14px 0;
   animation: teamScroll 48s linear infinite
 }

 .team-scroll:hover .team-track {
   animation-play-state: paused
 }

 @keyframes teamScroll {
   to {
     transform: translateX(-50%)
   }
 }

 .team-card {
   flex: 0 0 auto;
   width: 230px;
   height: 288px;
   margin-right: 20px;
  position: relative;
   border-radius: 16px;
   background: linear-gradient(160deg, var(--paper), var(--paper-2));
   border: 1px solid var(--line);
   overflow: hidden;
   box-shadow: 0 14px 34px -26px rgba(22, 40, 58, .55)
 }

 .team-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block
  }

  .team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 34px 14px 12px;
    background: linear-gradient(to top, rgba(16, 32, 48, 0.94) 0%, rgba(16, 32, 48, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
    z-index: 2;
  }

  .team-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }

  .team-role {
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.3;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

 }

 .team-ph {
   color: var(--navy-soft);
   opacity: .45
 }

 .team-ph svg {
   width: 62px;
   height: 62px
 }

 @media(prefers-reduced-motion:reduce) {
   .team-scroll {
     overflow-x: auto
   }

   .team-track {
     animation: none
   }
 }

 /* ADMISSIONS / FORM */
 .adm-grid {
   display: grid;
   grid-template-columns: 1fr .9fr;
   gap: 34px;
   align-items: start
 }

 .form-card {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 22px;
   padding: clamp(26px, 3vw, 38px);
   box-shadow: var(--shadow)
 }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 600px) {
    .field-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

 .field {
   margin-bottom: 16px
 }

 .field label {
   display: block;
   font-size: 13px;
   font-weight: 600;
   color: var(--ink);
   margin-bottom: 7px
 }

 .field input,
 .field select,
 .field textarea {
   width: 100%;
   font-family: inherit;
   font-size: 15px;
   color: var(--ink);
   background: var(--paper);
   border: 1.5px solid var(--line);
   border-radius: 11px;
   padding: 12px 14px;
   transition: border-color .2s, box-shadow .2s
 }

 .field textarea {
   resize: vertical;
   min-height: 90px
 }

 .field input:focus,
 .field select:focus,
 .field textarea:focus {
   outline: none;
   border-color: var(--blue);
   box-shadow: 0 0 0 3px rgba(34, 72, 102, .13)
 }

 .field .err {
   color: var(--red);
   font-size: 12.5px;
   margin-top: 6px;
   display: none
 }

 .field.bad input,
 .field.bad select {
   border-color: var(--red)
 }

 .field.bad .err {
   display: block
 }

  .form-card .btn {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    padding: 13px 16px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    font-size: 15px;
    line-height: 1.35;
    transition: opacity .2s ease, transform .15s ease;
  }

  .form-card .btn:disabled {
    cursor: not-allowed;
    opacity: .9;
  }

  .btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin .65s linear infinite;
    display: inline-block;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
  }

  @keyframes btnSpin {
    to {
      transform: rotate(360deg);
    }
  }

 .form-success {
   display: none;
   text-align: center;
   padding: 30px 10px
 }

 .form-success.show {
   display: block;
   animation: fadeUp .5s ease
 }

 .form-success .ok {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: linear-gradient(140deg, var(--blue), var(--blue-deep));
   display: grid;
   place-items: center;
   margin: 0 auto 18px
 }

 .form-success .ok svg {
   width: 30px;
   height: 30px;
   stroke: #fff
 }

 .form-success h3 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: 24px;
   margin-bottom: 8px
 }

 .form-success p {
   color: var(--muted);
   font-size: 15px;
   line-height: 1.55;
   max-width: 340px;
   margin: 0 auto
 }

  .brochures-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .brochures-panel-head {
    flex: 0 0 auto;
  }

  .brochures {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 6px 8px 6px 2px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12px, #000 calc(100% - 14px), transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 12px, #000 calc(100% - 14px), transparent 100%);
  }

  .brochures::-webkit-scrollbar {
    width: 5px;
  }

  .brochures::-webkit-scrollbar-track {
    background: transparent;
  }

  .brochures::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 999px;
  }

  .brochures::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
  }

 .broc {
   display: flex;
   align-items: center;
   gap: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 15px;
   padding: 18px 20px;
   transition: transform .25s, box-shadow .25s, border-color .25s
 }

 .broc:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow);
   border-color: transparent
 }

 .broc .fic {
   width: 44px;
   height: 44px;
   border-radius: 11px;
   background: linear-gradient(150deg, var(--paper-2), #fff);
   border: 1px solid var(--line);
   display: grid;
   place-items: center;
   color: var(--red);
   flex: 0 0 auto
 }

 .broc .fic svg {
   width: 22px;
   height: 22px
 }

 .broc .meta {
   flex: 1;
   min-width: 0
 }

 .broc .meta b {
   font-size: 15px;
   display: block;
   font-family: var(--serif);
   font-weight: 600
 }

 .broc .meta small {
   color: var(--muted);
   font-size: 12px
 }

 .broc button {
   font-family: var(--sans);
   font-size: 12.5px;
   font-weight: 600;
   color: var(--blue);
   background: var(--paper-2);
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 8px 14px;
   cursor: pointer;
   white-space: nowrap;
   transition: background .2s, color .2s
 }

 body.lang-ta .broc button {
   font-family: 'Noto Sans Tamil', var(--sans)
 }

 .broc button:hover {
   background: var(--blue);
   color: #fff
 }

  .broc-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted)
  }

  /* CONTACT & LOCATION */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: stretch;
  }

  .contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(26px, 3vw, 36px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contact-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .fic-loc {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(204, 74, 75, .12), rgba(204, 74, 75, .04));
    border: 1px solid rgba(204, 74, 75, .2);
    display: grid;
    place-items: center;
    color: var(--red);
    flex: 0 0 auto;
  }

  .fic-loc svg {
    width: 24px;
    height: 24px;
  }

  .contact-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 24px);
    color: var(--ink);
    margin: 0;
  }

  .contact-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
  }

  .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
  }

  .contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .ci-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--blue);
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .ci-ico svg {
    width: 18px;
    height: 18px;
  }

  .contact-info-item b {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .contact-info-item span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
  }

  .contact-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .2s ease;
    flex: 1 1 auto;
    justify-content: center;
  }

  .btn-contact--phone {
    background: var(--paper-2);
    color: var(--blue-deep);
    border: 1px solid var(--line);
  }

  .btn-contact--phone:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
  }

  .btn-contact--phone svg {
    width: 16px;
    height: 16px;
  }

  .btn-contact--wa {
    background: #25d366;
    color: #fff;
    border: 1px solid transparent;
  }

  .btn-contact--wa:hover {
    background: #1da851;
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
  }

  .btn-contact--wa svg {
    width: 17px;
    height: 17px;
  }

  /* MAP CARD */
  .map-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(22px, 2.5vw, 30px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .map-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .map-head-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
    margin: 0;
  }

  .map-head-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px;
  }

  .btn-directions-top {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }

  .btn-directions-top:hover {
    background: var(--blue);
    color: #fff;
  }

  .map-viewport {
    position: relative;
    width: 100%;
    height: 310px;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--line);
  }

  .map-loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--paper), var(--paper-2));
    transition: opacity .35s ease;
    z-index: 1;
  }

  .map-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .map-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--line);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: mapSpin .8s linear infinite;
  }

  @keyframes mapSpin {
    to { transform: rotate(360deg); }
  }

  .contact-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    position: relative;
    z-index: 2;
  }

  .map-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }

  .map-foot-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
  }

  .rating-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
  }

  .map-meta-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
  }

  .map-actions-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn-review-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: #b45309;
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  }

  .btn-review-cta:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, .18);
  }

  .btn-review-cta svg {
    width: 15px;
    height: 15px;
    color: #f59e0b;
  }

  .btn-directions-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(145deg, var(--blue), var(--blue-deep));
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }

  .btn-directions-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .btn-directions-cta svg {
    width: 15px;
    height: 15px;
  }

  .foot-directions {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: color .2s;
  }

  .foot-directions:hover {
    color: var(--red-soft);
    text-decoration: underline;
  }

 /* CTA */
 .cta-final {
   text-align: center;
   background: linear-gradient(180deg, #fff, var(--paper-2));
   border-radius: 26px;
   padding: clamp(44px, 6vw, 72px);
   border: 1px solid var(--line)
 }

 .cta-final h2 {
   font-family: var(--serif);
   font-weight: 600;
   font-size: clamp(28px, 4vw, 46px);
   letter-spacing: -.4px;
   line-height: 1.05
 }

 .cta-final p {
   margin: 16px auto 28px;
   color: var(--muted);
   font-size: 17px;
   max-width: 520px;
   line-height: 1.6
 }

 .cta-final .row {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap
 }

 /* FOOTER */
 footer {
   background: var(--blue-deep);
   color: #fff;
   padding: 54px 0 30px;
   margin-top: 10px
 }

 .foot-grid {
   display: grid;
   grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr;
   gap: 28px
 }

 .foot-brand {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 14px
 }

 .foot-brand .chip {
   background: #fff;
   border-radius: 12px;
   padding: 7px 9px;
   display: grid;
   place-items: center
 }

 .foot-brand .chip img {
   height: 40px;
   width: auto
 }

 .foot-brand b {
   font-family: var(--serif);
   font-size: 19px
 }

 .foot-slogan {
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #ffd6d6;
   margin: -6px 0 14px
 }

 footer p.f {
   color: rgba(255, 255, 255, .64);
   font-size: 14px;
   line-height: 1.6;
   max-width: 320px
 }

 .foot h5 {
   font-size: 12px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #ffd6d6;
   margin-bottom: 14px
 }

 .foot a,
 .foot span {
   display: block;
   color: rgba(255, 255, 255, .8);
   font-size: 14px;
   margin-bottom: 9px;
   cursor: pointer
 }

 .foot a:hover {
   color: #fff
 }

 .ph {
   color: #ffd6d6 !important
 }

 .foot-app-desc {
   font-size: 13px;
   color: rgba(255, 255, 255, .7);
   line-height: 1.5;
   margin-bottom: 12px
 }

 /* STORE BADGES */
 .store-badges {
   display: flex;
   gap: 10px
 }

 .store-badges-vertical {
   flex-direction: column
 }

 .store-badges-horizontal {
   flex-direction: row;
   flex-wrap: wrap
 }

 .store-badge {
   display: inline-flex !important;
   align-items: center;
   gap: 12px;
   padding: 8px 14px;
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .16);
   border-radius: 10px;
   color: #fff !important;
   text-decoration: none;
   transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
   margin-bottom: 0 !important;
   width: fit-content;
   min-width: 175px
 }

 .store-badge:hover {
   background: rgba(255, 255, 255, .14);
   transform: translateY(-2px);
   color: #fff !important
 }

 .store-badge-playstore:hover {
   border-color: rgba(66, 133, 244, .55);
   box-shadow: 0 4px 14px rgba(66, 133, 244, .18)
 }

 .store-badge-appstore:hover {
   border-color: rgba(255, 255, 255, .45);
   box-shadow: 0 4px 14px rgba(255, 255, 255, .12)
 }

 .store-badge-icon-wrap {
   display: grid;
   place-items: center;
   width: 24px;
   height: 24px;
   flex-shrink: 0;
   margin-bottom: 0 !important
 }

 .store-badge-icon {
   width: 22px;
   height: 22px;
   object-fit: contain;
   display: block
 }

 .store-badge-text {
   display: flex;
   flex-direction: column;
   line-height: 1.15;
   margin-bottom: 0 !important
 }

 .store-badge-sub {
   font-size: 9px;
   font-weight: 600;
   letter-spacing: .8px;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .7) !important;
   margin-bottom: 2px !important;
   display: block
 }

 .store-badge-title {
   font-size: 13.5px;
   font-weight: 700;
   color: #fff;
   font-family: var(--sans);
   letter-spacing: .2px
 }

 /* SOCIAL LINKS */
 .foot-social {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-top: 14px;
   flex-wrap: wrap
 }

 .social-link {
   display: inline-grid !important;
   place-items: center;
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .14);
   color: #fff !important;
   transition: background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
   margin-bottom: 0 !important;
   padding: 0
 }

 .social-link:hover {
   transform: translateY(-2px)
 }

 .social-link-facebook:hover {
   background: #1877f2;
   border-color: #1877f2;
   box-shadow: 0 4px 12px rgba(24, 119, 242, .4)
 }

 .social-link-instagram:hover {
   background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
   border-color: #d6249f;
   box-shadow: 0 4px 12px rgba(214, 36, 159, .4)
 }

 .social-link-youtube:hover {
   background: #ff0000;
   border-color: #ff0000;
   box-shadow: 0 4px 12px rgba(255, 0, 0, .4)
 }

 .social-link-telegram:hover {
   background: #229ed9;
   border-color: #229ed9;
   box-shadow: 0 4px 12px rgba(34, 158, 217, .4)
 }

 .social-link-whatsapp:hover {
   background: #25d366;
   border-color: #25d366;
   box-shadow: 0 4px 12px rgba(37, 211, 102, .4)
 }

 .social-icon {
   width: 16px;
   height: 16px;
   display: block;
   filter: brightness(0) invert(1)
 }

 .foot-bottom {
   border-top: 1px solid rgba(255, 255, 255, .14);
   margin-top: 34px;
   padding-top: 18px;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 8px;
   color: rgba(255, 255, 255, .5);
   font-size: 12.5px
 }

 /* TOAST */
 .toast {
   position: fixed;
   left: 50%;
   bottom: 26px;
   transform: translateX(-50%) translateY(20px);
   background: var(--ink);
   color: #fff;
   padding: 13px 20px;
   border-radius: 12px;
   font-size: 13.5px;
   box-shadow: var(--shadow);
   opacity: 0;
   pointer-events: none;
   transition: .35s;
   z-index: 90
 }

 .toast.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0)
 }

 @keyframes embIn {
   from {
     opacity: 0;
     transform: translateY(8px) scale(.96)
   }

   to {
     opacity: 1;
     transform: none
   }
 }

 @keyframes nibOut {
   0% {
     opacity: 0;
     transform: translateY(58%) scale(.9)
   }

   55% {
     opacity: 1
   }

   100% {
     opacity: 1;
     transform: translateY(0) scale(1)
   }
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(16px)
   }

   to {
     opacity: 1;
     transform: none
   }
 }

 @keyframes marquee {
   to {
     transform: translateX(-50%)
   }
 }

 @keyframes cue {

   0%,
   100% {
     opacity: .3;
     transform: translateY(0)
   }

   50% {
     opacity: 1;
     transform: translateY(5px)
   }
 }

 @media (max-width:900px) {
   .nav-links {
     position: fixed;
     inset: 62px 14px auto 14px;
     flex-direction: column;
     align-items: flex-start;
     gap: 4px;
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 16px;
     padding: 14px;
     box-shadow: var(--shadow);
     transform: translateY(-12px);
     opacity: 0;
     pointer-events: none;
     transition: .3s
   }

   .nav-links.open {
     transform: none;
     opacity: 1;
     pointer-events: auto
   }

   .nav-links a {
     padding: 10px 8px;
     width: 100%
   }

   .nav-links a::after {
     display: none
   }

   .hamburger {
     display: flex
   }

   nav {
     background: rgba(255, 255, 255, .92);
     backdrop-filter: blur(12px)
   }

   .band,
   .adm-grid,
   .contact-grid,
   .twocol {
     grid-template-columns: 1fr;
     gap: 22px
   }

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

   .brochures {
     max-height: 380px;
   }
 }

 @media (max-width:680px) {
   .hero {
     height: 200vh
   }

   .lockup {
     flex-direction: column;
     text-align: center;
     gap: 16px
   }

   .name {
     justify-content: center
   }

   .ink-underline,
   .eyebrow-hero,
   .academy-tag {
     margin-inline: auto
   }

   .hero-cta {
     justify-content: center
   }

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

   .emblem {
     height: 104px
   }

   .nav-right {
     gap: 12px
   }
 }

 @media (prefers-reduced-motion:reduce) {
   * {
     animation: none !important;
     transition: none !important
   }

   .reveal {
     opacity: 1;
     transform: none
   }

   .emblem {
     opacity: 1
   }

   html {
     scroll-behavior: auto
   }
 }
/* ============================================================================
 * UTILITY & DRY REFACTOR ADDITIONS
 * ============================================================================ */
.block--flush { padding-top: 0 !important; }
.block--tight { padding-top: 30px !important; }

.eyebrow__rule {
  width: 30px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.btn-download {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body.lang-ta .btn-download {
  font-family: 'Noto Sans Tamil', var(--sans);
}

.btn-download::after {
  content: "↓";
  font-weight: 700;
}

.btn-download:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-download[disabled],
.btn-download.disabled {
  opacity: .55;
  cursor: not-allowed;
  background: var(--paper-2);
  color: var(--muted);
}

.team-ph-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--paper-2), #fff);
  color: var(--blue-deep);
  padding: 16px;
  text-align: center;
}

.team-ph-avatar .initials {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.team-ph-avatar small {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* --- Team card caption --- */
body.lang-ta .team-name {
  font-size: 13px;
  line-height: 1.3;
}

body.lang-ta .team-role {
  font-size: 11px;
  line-height: 1.35;
}

.brochures-head {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* ==========================================================================
   BILINGUAL & TAMIL TYPOGRAPHY OVERRIDES (body.lang-ta)
   - ~20% font size reduction on headings for taller/wider glyphs
   - Increased line-height (1.3 - 1.45) to prevent glyph clipping
   - Normalized letter-spacing to prevent Tamil overlap
   ========================================================================== */
body.lang-ta .section-head h2,
body.lang-ta .page-head h2,
body.lang-ta section h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.3;
  letter-spacing: 0;
}

body.lang-ta .band h2 {
  font-size: clamp(21px, 2.9vw, 32px);
  line-height: 1.35;
  letter-spacing: 0;
}

body.lang-ta .cta-final h2 {
  font-size: clamp(22px, 3.2vw, 37px);
  line-height: 1.3;
  letter-spacing: 0;
}

body.lang-ta .brochures-head {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.lang-ta .eyebrow {
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   PROMO POPUP COMPONENT (Mobile-First)
   ========================================================================== */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.promo-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 48, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

/* Base Dialog Frame */
.promo-dialog {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 64px -12px rgba(22, 40, 58, 0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.promo-overlay.is-active .promo-dialog {
  transform: scale(1) translateY(0);
}

/* Close Button on Header */
.promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(22, 40, 58, 0.12);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.promo-close:hover {
  background: var(--paper-2);
  color: var(--red);
  transform: scale(1.06);
}

.promo-close:active {
  transform: scale(0.95);
}

/* Layout 1: Mobile-First Image Lightbox (.promo-dialog--image) */
.promo-dialog--image {
  width: min(94vw, 440px);
  max-height: min(95vh, 840px);
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.promo-dialog--image .promo-header {
  padding: 12px 46px 10px 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.promo-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.25;
}

.promo-subtitle {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

.promo-dialog--image .promo-body {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-flyer-img {
  width: 100%;
  height: auto;
  max-height: min(65vh, 560px);
  object-fit: contain;
  display: block;
}

/* Bottom Action Buttons Bar */
.promo-actions {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.promo-actions .btn {
  flex: 1;
  min-height: 38px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 9px;
  text-align: center;
  white-space: nowrap;
}

/* WhatsApp Branded Button */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  border: 1px solid #20ba5a;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff !important;
}

/* Layout 2: Slide-Down Top Banner (.promo-overlay--popup-top-banner) */
.promo-overlay--popup-top-banner {
  align-items: flex-start;
  padding: 0;
}

.promo-overlay--popup-top-banner .promo-dialog--top {
  width: 100%;
  border-radius: 0 0 20px 20px;
  border-top: none;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-overlay--popup-top-banner.is-active .promo-dialog--top {
  transform: translateY(0);
}

.promo-top-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  position: relative;
}

.promo-top-thumb img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.promo-top-content {
  flex: 1;
  min-width: 0;
}

.promo-top-actions {
  border: none;
  padding: 0;
  background: transparent;
}

@media (max-width: 640px) {
  .promo-top-wrap {
    flex-direction: column;
    align-items: stretch;
    padding-top: 18px;
  }
  .promo-top-thumb {
    display: none;
  }
}

/* Desktop Polish */
@media (min-width: 640px) {
  .promo-dialog--image {
    width: min(92vw, 530px);
    max-height: min(92vh, 840px);
    border-radius: 20px;
  }
  .promo-dialog--image .promo-header {
    padding: 12px 48px 10px 18px;
  }
  .promo-title {
    font-size: 17.5px;
    line-height: 1.3;
  }
  .promo-subtitle {
    font-size: 12px;
    margin-top: 2px;
    line-height: 1.3;
  }
  .promo-close {
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .promo-flyer-img {
    max-height: min(68vh, 620px);
  }
  .promo-actions {
    padding: 10px 16px;
    gap: 10px;
  }
  .promo-actions .btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13.5px;
    border-radius: 10px;
  }
}

/* Slide Animation Variants */
.promo-dialog--slide_bottom {
  transform: translateY(100vh) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.promo-overlay.is-active .promo-dialog--slide_bottom {
  transform: translateY(0) scale(1);
}

.promo-dialog--slide_top {
  transform: translateY(-100vh) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.promo-overlay.is-active .promo-dialog--slide_top {
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Mobile-First & Clean)
   ========================================================================== */
.whatsapp-float-wrap {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 850;
  pointer-events: none;
}

.whatsapp-float {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.whatsapp-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ae06f 0%, #20ba5a 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42), 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.whatsapp-float:hover .whatsapp-float__btn {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.52), 0 4px 10px rgba(0, 0, 0, 0.12);
}

.whatsapp-float:active .whatsapp-float__btn {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:focus-visible .whatsapp-float__btn {
  outline: 3px solid rgba(37, 211, 102, 0.7);
  outline-offset: 3px;
}

.whatsapp-float__ping {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: 1;
  pointer-events: none;
  animation: wa-beacon 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes wa-beacon {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float__icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  display: block;
  pointer-events: none;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink, #16283a);
  color: #ffffff;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 7px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(16, 32, 48, 0.2);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink, #16283a);
}

.whatsapp-float:hover .whatsapp-float__tooltip,
.whatsapp-float:focus-visible .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .whatsapp-float-wrap {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: 18px;
  }

  .whatsapp-float__btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float__ping {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float__icon {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__ping {
    display: none;
  }

  .whatsapp-float,
  .whatsapp-float__btn {
    transition: none;
    transform: none;
  }
}
