:root{
    --maroon:#7A1F2B;
    --maroon-deep:#5A1620;
    --saffron:#E0762A;
    --gold:#D9A02B;
    --gold-light:#F0C878;
    --ivory:#FFF8EC;
    --ivory-deep:#FBEFDA;
    --teal:#0E6B58;
    --charcoal:#2B2119;
    --slate:#6E5F51;
    --line:rgba(43,33,25,0.12);
    --shadow:0 30px 60px -25px rgba(43,20,15,0.35);
    --ease:cubic-bezier(.22,.61,.36,1);
    --topbar-h:40px;
    --header-h:84px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    color:var(--charcoal);
    background:var(--ivory);
    line-height:1.65;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  button{font:inherit;}

  .display{ font-family:'Fraunces', serif; }
  .deva{ font-family:'Noto Sans Devanagari', sans-serif; }
  .mono{ font-family:'JetBrains Mono', monospace; letter-spacing:0.08em; }

  .eyebrow{
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase;
    color:var(--saffron);
    display:flex; align-items:center; gap:0.6em;
  }
  .eyebrow::before{ content:''; width:26px; height:1px; background:var(--saffron); display:inline-block; }

  .wrap{ max-width:1240px; margin:0 auto; padding:0 40px; }
  section{ position:relative; }

  .reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (prefers-reduced-motion: reduce){
    *{ animation:none !important; transition:none !important; }
    .reveal{ opacity:1; transform:none; }
  }

  /* ---------- ACADEMIC DIVIDER ---------- */
  .academic-divider{ padding:52px 0; }
  .academic-divider .wrap{ display:flex; align-items:center; gap:26px; }
  .academic-divider .rule{ flex:1; height:1px; background:currentColor; opacity:0.22; }
  .academic-divider .emblem{ display:flex; align-items:center; gap:14px; color:inherit; opacity:0.9; }
  .academic-divider svg{ width:22px; height:22px; stroke:currentColor; fill:none; stroke-width:1.1; }
  .academic-divider .motto{ font-family:'Noto Sans Devanagari', serif; font-size:0.82rem; letter-spacing:0.02em; opacity:0.75; white-space:nowrap; }
  @media (max-width:600px){ .academic-divider .motto{ display:none; } }

  /* ---------- TOP INFO BAR ---------- */
  .topbar{
    position:fixed; top:0; left:0; right:0; z-index:101;
    height:var(--topbar-h);
    background:var(--charcoal);
    color:rgba(255,248,236,0.82);
    font-family:'JetBrains Mono', monospace;
    font-size:0.72rem; letter-spacing:0.03em;
  }
  .topbar .wrap{ height:100%; display:flex; align-items:center; justify-content:space-between; }
  .topbar-left, .topbar-right{ display:flex; align-items:center; gap:22px; }
  .topbar a{ display:flex; align-items:center; gap:7px; transition:color .3s var(--ease); }
  .topbar a:hover{ color:var(--gold-light); }
  .topbar svg{ width:13px; height:13px; stroke:var(--gold-light); fill:none; stroke-width:1.6; flex-shrink:0; }
  .topbar-social{ display:flex; gap:12px; }
  .topbar-social a{ width:24px; height:24px; border-radius:50%; border:1px solid rgba(255,248,236,0.25); align-items:center; justify-content:center; }
  .topbar-social svg{ width:12px; height:12px; }
  @media (max-width:900px){ .topbar-left span.hide-sm, .topbar-right span.hide-sm{ display:none; } }
  @media (max-width:600px){ .topbar{ display:none; } }

  /* ---------- NAV ---------- */
  header{
    position:fixed; top:var(--topbar-h); left:0; right:0; z-index:100;
   background:rgba(255,248,236,0.95);
    backdrop-filter:blur(14px);
    padding:12px 0;
    border-bottom:1px solid var(--line);
    box-shadow:0 10px 30px -20px rgba(43,20,15,0.25);
    
  }
  header.solid{
    background:rgba(255,248,236,0.95);
    backdrop-filter:blur(14px);
    padding:12px 0;
    border-bottom:1px solid var(--line);
    box-shadow:0 10px 30px -20px rgba(43,20,15,0.25);
    top:0;
  }
  @media (max-width:600px){ header{ top:0; } }
  nav.wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
  .brand{ display:flex; align-items:center; gap:14px; }
  .crest{ width:44px; height:44px; flex-shrink:0; }
  .crest .rays{ transform-origin:23px 23px; animation:spin 40s linear infinite; }
  @keyframes spin{ to{ transform:rotate(360deg); } }
  .brand .word{ display:flex; flex-direction:column; line-height:1.15; }
  .brand .word b{ font-family:'Fraunces', serif; font-size:2.18rem; color:var(--ivory); transition:color .5s var(--ease); }
  header.solid .brand .word b{ color:var(--maroon-deep); }
  .brand .word span{ font-family:'JetBrains Mono', monospace; font-size:0.85rem; letter-spacing:0.18em; color:#fff; text-transform:uppercase; }
  header.solid .brand .word span{ color:var(--saffron); }

  .navlinks{ display:flex; gap:30px; align-items:center; }
  .navlinks a{ font-size:0.85rem; font-weight:500; position:relative; padding:4px 0; transition:color .5s var(--ease); }
  header.solid .navlinks a{ color:var(--charcoal); }
  .navlinks a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--saffron); transition:width .35s var(--ease); }
  .navlinks a:hover::after{ width:100%; }
  .navlinks a:hover{ color:var(--saffron); }

  .btn{
    font-family:'JetBrains Mono', monospace; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase;
    padding:13px 26px; border-radius:2px; display:inline-flex; align-items:center; gap:10px; cursor:pointer; border:1px solid transparent;
    transition:transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  }
  .btn-saffron{ background:var(--saffron); color:var(--ivory); }
  .btn-saffron:hover{ background:var(--maroon); transform:translateY(-2px); box-shadow:0 14px 30px -12px rgba(122,31,43,0.55); }
  .btn-ghost{ border-color:rgba(255,248,236,0.55); color:var(--ivory); }
  header.solid .btn-ghost{ border-color:var(--maroon); color:var(--maroon); }
  .btn-ghost:hover{ background:var(--ivory); color:var(--maroon); }
  header.solid .btn-ghost:hover{ background:var(--maroon); color:var(--ivory); }

  .navtoggle{ display:none; width:26px; height:20px; position:relative; background:none; border:none; cursor:pointer; }
  .navtoggle span{ position:absolute; left:0; right:0; height:2px; background:var(--ivory); transition:all .35s var(--ease); }
  header.solid .navtoggle span{ background:var(--maroon-deep); }
  .navtoggle span:nth-child(1){ top:0; } .navtoggle span:nth-child(2){ top:9px; } .navtoggle span:nth-child(3){ top:18px; }

  /* ---------- HERO SLIDER ---------- */
  .hero{ height:100vh; min-height:640px; position:relative; display:flex; align-items:flex-end; color:var(--ivory); isolation:isolate; overflow:hidden; }
  .hero-slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.2s var(--ease); z-index:-1; }
  .hero-slide.active{ opacity:1; }
  .hero-slide img{ width:100%; height:100%; object-position:top center;  transform:scale(1.06); transition:transform 7s linear; }
  .hero-slide.active img{ transform:scale(1); }
  .hero-slide::after{
    content:''; position:absolute; inset:0;
    /*background:linear-gradient(180deg, rgba(90,22,32,0.55) 0%, rgba(90,22,32,0.4) 35%, rgba(43,17,10,0.92) 100%);*/
  }
  .hero-content{ padding:0 40px 100px; max-width:1240px; margin:0 auto; width:100%; position:relative; z-index:2; }
  .hero .eyebrow{ color:var(--gold-light); }
  .hero .eyebrow::before{ background:var(--gold-light); }
  .hero h1{ font-size:clamp(2.4rem, 5.2vw, 4.6rem); font-weight:400; line-height:1.08; margin:22px 0 20px; max-width:17ch; }
  .hero h1 em{ font-style:italic; color:var(--gold-light); }
  .hero .deva-line{ font-size:1.02rem; color:var(--gold-light); margin-bottom:16px; }
  .hero p{ font-size:1.04rem; color:rgba(255,248,236,0.86); max-width:48ch; margin-bottom:34px; }
  .hero .cta-row{ display:flex; gap:18px; flex-wrap:wrap; }

  .hero-dots{ position:absolute; right:40px; bottom:120px; z-index:3; display:flex; flex-direction:column; gap:12px; }
  .hero-dots button{ width:9px; height:9px; border-radius:50%; border:1px solid rgba(255,248,236,0.6); background:transparent; cursor:pointer; transition:all .35s var(--ease); }
  .hero-dots button.active{ background:var(--gold-light); border-color:var(--gold-light); transform:scale(1.25); }
  .hero-arrows{ position:absolute; left:40px; bottom:44px; z-index:3; display:flex; gap:12px; }
  .hero-arrows button{ width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,248,236,0.4); background:rgba(43,17,10,0.25); color:var(--ivory); cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease); }
  .hero-arrows button:hover{ background:var(--saffron); border-color:var(--saffron); }
  .hero-arrows svg{ width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.8; }

  .scroll-cue{ position:absolute; right:40px; bottom:44px; z-index:3; display:flex; align-items:center; gap:12px; color:rgba(255,248,236,0.75); font-family:'JetBrains Mono',monospace; font-size:0.64rem; letter-spacing:0.2em; }
  .scroll-cue .line{ width:1px; height:38px; background:rgba(255,248,236,0.4); position:relative; overflow:hidden; }
  .scroll-cue .line::after{ content:''; position:absolute; top:-38px; left:0; width:100%; height:38px; background:var(--gold-light); animation:cueDrop 2.2s ease-in-out infinite; }
  @keyframes cueDrop{ to{ top:38px; } }
  @media (max-width:700px){ .hero-arrows{ display:none; } .scroll-cue{ display:none; } }

  /* ---------- STAT STRIP ---------- */
  .stat-strip{ background:var(--maroon-deep); color:var(--ivory); padding:56px 0; }
  .stat-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
  .stat{ text-align:center; padding:0 10px; border-left:1px solid rgba(255,248,236,0.14); }
  .stat:first-child{ border-left:none; }
  .stat .num{ font-family:'Fraunces', serif; font-size:2.3rem; color:var(--gold-light); }
  .stat .lbl{ font-family:'JetBrains Mono', monospace; font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,248,236,0.68); margin-top:8px; }
  @media (max-width:980px){ .stat-grid{ grid-template-columns:repeat(2,1fr); row-gap:30px; } .stat:nth-child(3){ border-left:none; } }

  /* ---------- SECTION HEADS ---------- */
  .section{ padding:50px 0; }
  .section-head{ max-width:640px; margin-bottom:70px; }
  .section-head h2{ font-size:clamp(2rem,3.4vw,2.8rem); font-weight:400; margin-top:20px; line-height:1.18; }
  .section-head p{ color:var(--slate); font-size:1.04rem; margin-top:18px; max-width:52ch; }
  .center{ margin-left:auto; margin-right:auto; text-align:center; }
  .center .eyebrow{ justify-content:center; }
  .center .eyebrow::before{ display:none; }

  /* ---------- WELCOME (About / Principal / Notice) ---------- */
  .welcome{ background:var(--ivory); }
  .welcome-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:70px; align-items:start; }
  .welcome-media{ position:relative; }
  .welcome-media img{ border-radius:2px; box-shadow:var(--shadow); }
  .welcome-media .frame{ position:absolute; top:24px; left:-24px; right:24px; bottom:-24px; border:1px solid var(--saffron); z-index:-1; border-radius:2px; }
  .welcome-copy h2{ font-size:clamp(1.85rem,3vw,2.4rem); font-weight:400; line-height:1.24; margin:20px 0 22px; }
  .welcome-copy p{ color:var(--slate); margin-bottom:16px; }

  .principal-card{ background:var(--ivory-deep); border:1px solid var(--line); border-radius:3px; padding:34px; margin-top:40px; display:flex; gap:22px; align-items:flex-start; }
  .principal-card img{ width:78px; height:78px; border-radius:50%; object-fit:cover; flex-shrink:0; }
  .principal-card .quote{ font-family:'Fraunces', serif; font-style:italic; font-size:1.05rem; color:var(--maroon-deep); margin-bottom:10px; }
  .principal-card .who{ font-family:'JetBrains Mono', monospace; font-size:0.68rem; letter-spacing:0.08em; color:var(--saffron); text-transform:uppercase; }

  .notice-board{ background:var(--maroon-deep); color:var(--ivory); border-radius:3px; padding:34px; }
  .notice-board .eyebrow{ color:var(--gold-light); margin-bottom:20px; }
  .notice-board .eyebrow::before{ background:var(--gold-light); }
  .notice-list{ display:flex; flex-direction:column; }
  .notice-item{ display:flex; gap:16px; padding:16px 0; border-bottom:1px solid rgba(255,248,236,0.14); }
  .notice-item:last-child{ border-bottom:none; padding-bottom:0; }
  .notice-date{ font-family:'JetBrains Mono', monospace; font-size:0.68rem; color:var(--gold-light); white-space:nowrap; padding-top:2px; }
  .notice-item p{ font-size:0.9rem; color:rgba(255,248,236,0.88); }
  .notice-item .tag{ display:inline-block; font-family:'JetBrains Mono',monospace; font-size:0.58rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--maroon-deep); background:var(--gold-light); padding:2px 8px; border-radius:2px; margin-bottom:6px; }

  /* ---------- FACILITIES ---------- */
  .facilities{ background:var(--ivory-deep); }
  .fac-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
  .fac-card{ position:relative; border-radius:3px; overflow:hidden; height:280px; box-shadow:var(--shadow); }
  .fac-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
  .fac-card:hover img{ transform:scale(1.09); }
  .fac-card::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(43,17,10,0) 35%, rgba(43,17,10,0.88) 100%); }
  .fac-card .fac-label{ position:absolute; left:20px; right:20px; bottom:20px; z-index:2; color:var(--ivory); }
  .fac-card .fac-icon{ width:34px; height:34px; stroke:var(--gold-light); fill:none; stroke-width:1.4; margin-bottom:10px; }
  .fac-card h4{ font-family:'Fraunces', serif; font-size:1.1rem; font-weight:600; }
  .fac-card p{ font-size:0.82rem; color:rgba(255,248,236,0.78); margin-top:4px; }
  @media (max-width:980px){ .fac-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:600px){ .fac-grid{ grid-template-columns:1fr; } }

  /* ---------- ACHIEVEMENTS ---------- */
  .achievers{ background:var(--ivory); }
  .t-wrap{ max-width:900px; margin:0 auto; position:relative; min-height:340px; }
  .t-slide{ position:absolute; inset:0; opacity:0; transform:translateY(14px); transition:opacity .7s var(--ease), transform .7s var(--ease); pointer-events:none; }
  .t-slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
  .achiever-card{ display:flex; gap:36px; align-items:center; background:var(--ivory-deep); border:1px solid var(--line); border-radius:3px; padding:40px; }
  .achiever-card img{ width:140px; height:140px; border-radius:50%; object-fit:cover; flex-shrink:0; box-shadow:var(--shadow); }
  .achiever-card h3{ font-family:'Fraunces', serif; font-size:1.5rem; font-weight:600; }
  .achiever-card .class{ font-family:'JetBrains Mono',monospace; font-size:0.68rem; letter-spacing:0.08em; color:var(--saffron); text-transform:uppercase; }
  .achiever-card .achievement, .achiever-card .event{ margin-top:16px; }
  .achiever-card strong{ font-family:'JetBrains Mono',monospace; font-size:0.66rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--maroon-deep); display:block; margin-bottom:4px; }
  .achiever-card p{ color:var(--slate); font-size:0.95rem; }
  .t-dots{ display:flex; gap:10px; justify-content:center; margin-top:36px; }
  .t-dots button{ width:8px; height:8px; border-radius:50%; border:none; background:rgba(43,33,25,0.2); cursor:pointer; transition:background .35s var(--ease), transform .35s var(--ease); }
  .t-dots button.active{ background:var(--saffron); transform:scale(1.3); }
  @media (max-width:700px){ .achiever-card{ flex-direction:column; text-align:center; padding:30px; } }

  /* ---------- GALLERY (masonry + lightbox) ---------- */
  .gallery{ background:var(--ivory-deep); }
  .gal-grid{ column-count:4; column-gap:14px; }
  .gal-grid figure{ position:relative; overflow:hidden; border-radius:2px; cursor:pointer; margin-bottom:14px; break-inside:avoid; }
  .gal-grid img{ width:100%; display:block; transition:transform .7s var(--ease); }
  .gal-grid figure:hover img{ transform:scale(1.06); }
  .gal-grid figcaption{
    position:absolute; left:0; right:0; bottom:0; padding:16px;
    background:linear-gradient(180deg, transparent, rgba(43,17,10,0.92));
    color:var(--ivory); font-family:'JetBrains Mono',monospace; font-size:0.64rem; letter-spacing:0.08em;
    transform:translateY(10px); opacity:0; transition:all .4s var(--ease);
  }
  .gal-grid figure:hover figcaption{ transform:translateY(0); opacity:1; }
  @media (max-width:980px){ .gal-grid{ column-count:2; } }
  @media (max-width:560px){ .gal-grid{ column-count:1; } }

  .lightbox{ position:fixed; inset:0; z-index:200; background:rgba(20,10,8,0.94); display:none; align-items:center; justify-content:center; padding:40px; }
  .lightbox.open{ display:flex; }
  .lightbox img{ max-width:min(90vw,1000px); max-height:82vh; border-radius:2px; box-shadow:0 40px 80px rgba(0,0,0,0.5); }
  .lightbox-close, .lightbox-nav{ position:absolute; background:rgba(255,248,236,0.08); border:1px solid rgba(255,248,236,0.3); color:var(--ivory); width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .3s var(--ease); }
  .lightbox-close:hover, .lightbox-nav:hover{ background:var(--saffron); border-color:var(--saffron); }
  .lightbox-close{ top:30px; right:30px; }
  .lightbox-nav svg, .lightbox-close svg{ width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.8; }
  .lightbox-prev{ left:30px; top:50%; transform:translateY(-50%); }
  .lightbox-next{ right:30px; top:50%; transform:translateY(-50%); }
  @media (max-width:700px){ .lightbox-nav{ width:38px; height:38px; } .lightbox-prev{ left:12px; } .lightbox-next{ right:12px; } .lightbox-close{ top:14px; right:14px; } }

  /* ---------- CONTACT ---------- */
  .contact{ background:var(--maroon-deep); color:var(--ivory); }
  .contact .eyebrow{ color:var(--gold-light); }
  .contact .eyebrow::before{ background:var(--gold-light); }
  .contact-grid{ display:grid; grid-template-columns:0.85fr 1fr; gap:70px; align-items:start; }
  .contact-info{ display:flex; flex-direction:column; gap:22px; }
  .contact-item{ display:flex; gap:16px; align-items:flex-start; }
  .contact-item svg{ width:20px; height:20px; stroke:var(--gold-light); fill:none; stroke-width:1.5; flex-shrink:0; margin-top:3px; }
  .contact-item h4{ font-family:'Fraunces', serif; font-size:1rem; font-weight:600; margin-bottom:3px; }
  .contact-item p, .contact-item a{ color:rgba(255,248,236,0.75); font-size:0.92rem; }
  .contact-item a:hover{ color:var(--gold-light); }
  .map-embed{ margin-top:8px; border-radius:3px; overflow:hidden; border:1px solid rgba(255,248,236,0.16); height:220px; }
  .map-embed iframe{ width:100%; height:100%; border:0; filter:grayscale(20%) sepia(10%); }

  .contact-form{ background:var(--ivory); color:var(--charcoal); border-radius:3px; padding:38px; }
  .contact-form h3{ font-family:'Fraunces', serif; font-size:1.3rem; font-weight:600; margin-bottom:22px; }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .form-field{ margin-bottom:16px; }
  .form-field label{ font-family:'JetBrains Mono',monospace; font-size:0.64rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--slate); display:block; margin-bottom:7px; }
  .form-field input, .form-field textarea{
    width:100%; border:1px solid var(--line); border-radius:2px; padding:12px 14px; font-family:'Work Sans',sans-serif; font-size:0.92rem; color:var(--charcoal); background:var(--ivory-deep);
    transition:border-color .3s var(--ease);
  }
  .form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--saffron); }
  .form-field textarea{ resize:vertical; min-height:100px; }
  .contact-form .btn-saffron{ width:100%; justify-content:center; border:none; }
  @media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

  /* ---------- ADMISSIONS BAND ---------- */
  .admissions{ background:var(--saffron); color:var(--ivory); padding:100px 0; text-align:center; }
  .admissions .eyebrow{ color:rgba(255,248,236,0.9); justify-content:center; }
  .admissions .eyebrow::before{ background:rgba(255,248,236,0.9); }
  .admissions h2{ font-size:clamp(2rem,3.6vw,2.9rem); font-weight:400; margin:20px auto 18px; max-width:20ch; }
  .admissions p{ max-width:52ch; margin:0 auto 36px; color:rgba(255,248,236,0.95); }
  .steps{ display:flex; justify-content:center; gap:48px; margin:46px 0 44px; flex-wrap:wrap; }
  .step{ max-width:200px; }
  .step .n{ font-family:'Fraunces', serif; font-size:2.1rem; color:rgba(255,248,236,0.45); margin-bottom:10px; }
  .step p{ font-size:0.87rem; color:rgba(255,248,236,0.92); margin:0; }
  .admissions .btn-saffron{ background:var(--maroon-deep); }
  .admissions .btn-saffron:hover{ background:var(--ivory); color:var(--maroon-deep); }

  /* ---------- FOOTER ---------- */
  footer{ background:var(--charcoal); color:rgba(255,248,236,0.75); padding:90px 0 30px; }
  .foot-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:60px; border-bottom:1px solid rgba(255,248,236,0.12); }
  .foot-brand .word b{ color:var(--ivory); font-family:'Fraunces', serif; font-size:1.25rem; }
  .foot-brand p{ margin-top:16px; font-size:0.88rem; max-width:30ch; color:rgba(255,248,236,0.55); }
  .foot-social{ display:flex; gap:10px; margin-top:20px; }
  .foot-social a{ width:32px; height:32px; border-radius:50%; border:1px solid rgba(255,248,236,0.2); display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease); }
  .foot-social a:hover{ background:var(--saffron); border-color:var(--saffron); }
  .foot-social svg{ width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:1.6; }
  footer h5{ font-family:'JetBrains Mono', monospace; font-size:0.64rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-light); margin-bottom:20px; }
  footer ul li{ margin-bottom:11px; }
  footer ul a{ font-size:0.88rem; transition:color .3s var(--ease); }
  footer ul a:hover{ color:var(--ivory); }
  .foot-contact li{ font-size:0.88rem; color:rgba(255,248,236,0.65); }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:30px; font-size:0.78rem; color:rgba(255,248,236,0.4); flex-wrap:wrap; gap:14px; }
  .foot-bottom a{ margin-left:20px; }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{ outline:2px solid var(--saffron); outline-offset:3px; }

  .whatsapp-fab{ position:fixed; right:26px; bottom:26px; z-index:90; width:56px; height:56px; border-radius:50%; background:#1EA952; display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -8px rgba(0,0,0,0.4); transition:transform .3s var(--ease); }
  .whatsapp-fab:hover{ transform:translateY(-3px) scale(1.05); }
  .whatsapp-fab svg{ width:26px; height:26px; fill:var(--ivory); }

  @media (max-width:980px){
    .navlinks{ display:none; }
    .welcome-grid{ grid-template-columns:1fr; gap:44px; }
    .principal-card{ flex-direction:column; }
    .foot-grid{ grid-template-columns:1fr 1fr; gap:40px; }
    .section{ padding:90px 0; }
    .wrap{ padding:0 24px; }
    .steps{ gap:28px; }
  }
  @media (max-width:600px){
    .foot-grid{ grid-template-columns:1fr; }
    .hero-content{ padding-bottom:60px; }
  }
  
