
:root{--navy:#00337A;--royal:#004AAD;--gold:#FFD700;--ink:#1f2937;--muted:#6b7280;--bg:#f8fafc}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:var(--bg);color:var(--ink);font-family:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.6}
h1,h2,h3,h4{font-family:'Merriweather',serif;margin:0 0 .5rem}
h1{font-size:2.2rem}h2{font-size:1.6rem}h3{font-size:1.25rem}
.container{max-width:1100px;margin:0 auto;padding:0 1rem}
.list{list-style:none;margin:.25rem 0;padding:0}
a{color:var(--royal);text-decoration:none}
.btn{display:inline-block;padding:.8rem 1.1rem;border-radius:.5rem;background:var(--royal);color:#fff;font-weight:700}
.btn:hover{filter:brightness(.95)}
.btn-light{background:#fff;color:var(--royal)}
.site-header{background:linear-gradient(90deg,var(--navy),var(--royal));color:#fff;position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.6rem;color:#fff;font-weight:800}
.brand img{height:80px;width:auto;border-radius:4px}
.nav a{color:#fff;margin:0 .6rem;font-weight:600}
.nav .cta{background:var(--gold);color:#000;padding:.45rem .8rem;border-radius:.4rem}
.hero{padding:3.5rem 0;background:linear-gradient(180deg,var(--royal),var(--navy));color:#fff;text-align:center}
.hero-cta{margin-top:1rem;display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.features{padding:2.5rem 0}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.card{background:#fff;border-radius:.8rem;padding:1.1rem;box-shadow:0 6px 24px rgba(0,0,0,.06)}
.course-card{background:#fff;border:1px solid #e5e7eb;border-radius:.8rem;padding:1rem}
.page-hero{background:#fff;border-bottom:1px solid #e5e7eb;padding:2rem 0;margin-bottom:1rem}
.quote{background:#fff;border-left:6px solid var(--gold);padding:1rem;border-radius:.5rem}
.quote cite{display:block;margin-top:.6rem;color:var(--muted);font-style:normal}
.contact-form{background:#fff;padding:1rem;border-radius:.8rem;box-shadow:0 6px 24px rgba(0,0,0,.06)}
.contact-form label{display:block;margin:.6rem 0;font-weight:600}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:.7rem;border:1px solid #d1d5db;border-radius:.5rem}
.small{font-size:.85rem;color:var(--muted)}
.site-footer{background:#0f2a56;color:#e5e7eb;margin-top:2rem}
.site-footer a{color:#e5e7eb}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;padding:2rem 0;border-bottom:1px solid rgba(255,255,255,.1)}
.copyright{text-align:center;padding:1rem 0;color:#cbd5e1}
.whatsapp-float{position:fixed;bottom:20px;right:20px;background:#25D366;color:#fff;font-weight:800;padding:12px 18px;border-radius:50px;box-shadow:0 4px 12px rgba(0,0,0,.2);text-decoration:none;z-index:1000}
.whatsapp-float:hover{background:#1ebe57}
@media(max-width:900px){.grid-3{grid-template-columns:1fr 1fr}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){
  h1{font-size:1.9rem}
  .grid-2,.grid-3,.footer-grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;gap:.4rem}
  .brand img{height:64px}
}


/* v12 header/logo updates */
.brand span{display:none}
.brand img{height:120px;width:auto;filter:brightness(0) invert(1)}
@media(max-width:560px){.brand img{height:88px}}


/* v14 mobile banner improvements */
.hamburger{
  display:none;
  background:transparent;
  border:0;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  color:#fff;
}
.hamburger:focus{outline:2px solid rgba(255,255,255,.5);outline-offset:2px}

@media(max-width: 768px){
  .hamburger{display:block}
  .site-header .header-inner{flex-wrap:wrap;gap:.25rem 1rem;padding:.4rem 0}
  .site-header .brand{margin-bottom:.2rem}
  .site-header .nav{display:none;width:100%;flex-direction:column;align-items:center;padding:.35rem 0 0}
  .site-header .nav.nav--open{display:flex}
  .site-header .nav a{padding:.5rem 1rem;margin:.1rem 0}
}


/* v18 — Unified typography across the site (based on About page) */
:root{
  --font-sans:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --font-serif:'Merriweather',serif;
  --leading:1.65;
  --space-1:.5rem;
  --space-2:.75rem;
  --space-3:1rem;
  --space-4:1.5rem;
  --space-5:2rem;
  --space-6:3rem;
}

/* Base text */
html,body{font-size:16px}
body{font-family:var(--font-sans);line-height:var(--leading);color:var(--ink)}
p{margin:0 0 var(--space-3)}
ul,ol{margin:0 0 var(--space-3) var(--space-4)}
li{margin:0 0 .4rem}
strong{font-weight:700}
em{font-style:italic}

/* Headings */
h1,h2,h3,h4,h5,h6{font-family:var(--font-serif);margin:0 0 var(--space-2);line-height:1.25}
h1{font-size:2.2rem}
h2{font-size:1.7rem}
h3{font-size:1.25rem}
h4{font-size:1.1rem}

/* Section rhythm */
section{padding:var(--space-6) var(--space-3)}
.page-hero{padding:var(--space-5) 0;margin-bottom:var(--space-3)}
.features{padding:var(--space-6) 0}

/* Lists with ticks remain consistent */
.tick{list-style:none;padding-left:0}
.tick li{padding-left:1.6rem;position:relative;margin:.35rem 0}
.tick li:before{content:'✓';position:absolute;left:0;color:var(--royal);font-weight:700}

/* Blockquotes */
.quote{background:#fff;border-left:6px solid var(--gold);padding:1rem;border-radius:.5rem;margin-bottom:var(--space-3)}
.quote cite{display:block;margin-top:.6rem;color:var(--muted);font-style:normal}

/* Forms */
.contact-form label{display:block;margin:.6rem 0 .3rem;font-weight:600;font-family:var(--font-sans)}
.contact-form input,.contact-form textarea,.contact-form select{width:100%;padding:.7rem;border:1px solid #d1d5db;border-radius:.5rem;font-family:var(--font-sans)}

/* Buttons & links */
.btn{display:inline-block;padding:.8rem 1.1rem;border-radius:.5rem;background:var(--royal);color:#fff;font-weight:700;text-decoration:none}
.btn:hover{filter:brightness(.95)}
.link{font-weight:600}

/* Tables (future blog use) */
table{width:100%;border-collapse:collapse;margin:var(--space-3) 0}
th,td{padding:.6rem .75rem;border:1px solid #e5e7eb;text-align:left}
th{background:#f3f4f6;font-weight:700}

/* Responsive typography tweaks */
@media(max-width: 560px){
  h1{font-size:1.9rem}
  h2{font-size:1.45rem}
  section{padding:var(--space-5) var(--space-3)}
}
/* End v18 Typography */

/* v21 - Larger header logo */
.site-header .brand img {
  height: 120px !important;
  width: auto !important;
  max-width: none !important;
}




/* v24: reduce header banner height and logo size */
.site-header .header-inner {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.site-header .brand img {
  max-height: 50px !important;
  height: auto;
  width: auto;
}



/* v25: header/logo sizing + mobile order */
/* Make the banner just a touch taller than the logo */
.site-header .header-inner {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
  min-height: 64px !important; /* banner height baseline */
}

/* Let the logo nearly fill the banner while keeping some breathing room */
.site-header .brand img {
  max-height: 60px !important; /* ~94% of 64px bar */
  height: auto;
  width: auto;
  display: block;
}

/* Mobile layout: hamburger left, logo right, nav below */
@media (max-width: 768px){
  .site-header .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .site-header .hamburger{ order:0; }
  .site-header .brand{ order:1; margin-left:auto; }
  .site-header .nav{ order:2; width:100%; }
  /* Slightly smaller logo on phones so it doesn't crowd the button */
  .site-header .brand img{ max-height: 48px !important; }
}



/* v28: icon-only favicons, desktop logo size ~v23, mobile logo position reset */
/* Desktop header/logo sizing */
@media (min-width: 769px){
  .site-header .header-inner{
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
    min-height: 76px !important;
  }
  .site-header .brand img{
    max-height: 80px !important;
    height: auto;
    width: auto;
  }
}

/* Mobile header order: logo left (brand first), hamburger right */
@media (max-width: 768px){
  .site-header .header-inner{ display:flex; align-items:center; }
  .site-header .brand{ order:0; margin-right:auto; margin-left:0; }
  .site-header .hamburger{ order:1; margin-left:auto; }
  .site-header .nav{ order:2; width:100%; }
}



/* v31: make banner logo 2x larger and align logo top-left on mobile */

/* Desktop: banner logo much larger */
@media (min-width: 769px){
  .site-header .brand img {
    max-height: 160px !important; /* doubled from 80px */
    height: auto;
    width: auto;
  }
  .site-header .header-inner {
    min-height: 160px !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}

/* Mobile: align logo top-left, hamburger top-right */
@media (max-width: 768px){
  .site-header .header-inner {
    display: flex;
    align-items: flex-start !important;
    justify-content: space-between;
  }
  .site-header .brand {
    order: 0;
    margin: 0;
    align-self: flex-start !important;
  }
  .site-header .hamburger {
    order: 1;
    margin-left: auto;
    align-self: flex-start !important;
  }
}



/* v32: dominate banner with logo; enforce mobile logo top-left */

/* Desktop / large screens: let the logo define the bar height */
@media (min-width: 1025px){
  .site-header .header-inner{
    min-height: 200px !important;  /* tall bar */
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .site-header .brand img{
    max-height: 188px !important;  /* ~94% of bar height */
    height: auto;
    width: auto;
    display: block;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px){
  .site-header .header-inner{
    min-height: 160px !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .site-header .brand img{
    max-height: 150px !important;
  }
}

/* Mobile: force logo top-left and hamburger top-right */
@media (max-width: 768px){
  .site-header .header-inner{
    display:flex !important;
    align-items:flex-start !important;
    justify-content:space-between !important;
    gap: .25rem 1rem !important;
  }
  .site-header .brand{
    order:0 !important;
    margin: 0 !important;
    align-self:flex-start !important;
  }
  .site-header .brand img{
    max-height: 56px !important; /* comfortable size on phones */
    height:auto; width:auto;
  }
  .site-header .hamburger{
    order:1 !important;
    margin-left:auto !important;
    align-self:flex-start !important;
  }
  .site-header .nav{
    order:2 !important;
    width:100% !important;
  }
}



/* v34: reduce logo size ~30% */

/* Desktop */
@media (min-width: 1025px){
  .site-header .header-inner{
    min-height: 140px !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .site-header .brand img{
    max-height: 130px !important;
    height: auto;
    width: auto;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px){
  .site-header .header-inner{
    min-height: 120px !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .site-header .brand img{
    max-height: 110px !important;
  }
}

/* Mobile */
@media (max-width: 768px){
  .site-header .brand img{
    max-height: 40px !important;
  }
}



/* v35: logo vertically centered and left-justified on the dark blue banner */

/* Base header layout */
.site-header .header-inner{
  display:flex !important;
  align-items:center !important;     /* vertical centering */
  justify-content:space-between;      /* logo left, hamburger/nav to the right */
}

/* Ensure the logo container hugs the left edge */
.site-header .brand{
  margin-left:0 !important;
  margin-right:auto;                  /* push everything else to the right */
}

/* Keep hamburger to the far right on small screens */
@media (max-width: 768px){
  .site-header .hamburger{
    margin-left:auto !important;
  }
}

/* Sizes from v34 retained:
   - Desktop (>=1025px): header ~140px, logo ~130px
   - Tablet (769–1024px): header ~120px, logo ~110px
   - Mobile (<=768px): logo ~40px
*/



/* v36: halve logo size compared to v35 */

/* Desktop (>=1025px) */
@media (min-width: 1025px){
  .site-header .header-inner{
    min-height: 80px !important;
  }
  .site-header .brand img{
    max-height: 65px !important;
  }
}

/* Tablets (769–1024px) */
@media (min-width: 769px) and (max-width: 1024px){
  .site-header .header-inner{
    min-height: 70px !important;
  }
  .site-header .brand img{
    max-height: 55px !important;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px){
  .site-header .brand img{
    max-height: 20px !important;
  }
}



/* v37: shrink dark blue banner height to tightly wrap the smaller logo */

/* Desktop (>=1025px) */
@media (min-width: 1025px){
  .site-header .header-inner{
    min-height: 70px !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  .site-header .brand img{
    max-height: 65px !important;
  }
}

/* Tablets (769–1024px) */
@media (min-width: 769px) and (max-width: 1024px){
  .site-header .header-inner{
    min-height: 60px !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
  }
  .site-header .brand img{
    max-height: 55px !important;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px){
  .site-header .header-inner{
    min-height: 40px !important;
    padding-top: 0.15rem !important;
    padding-bottom: 0.15rem !important;
  }
  .site-header .brand img{
    max-height: 20px !important;
  }
}



/* v37.2: form alerts */
.form-alert{margin:.75rem 0;padding:.75rem 1rem;border-radius:.5rem;font-weight:600;}
.form-success{background:#e6ffed;border:1px solid #2ecc71;color:#1e824c;}
.form-error{background:#fff3f3;border:1px solid #e74c3c;color:#a82315;}



/* v38: simple layout helpers for new sections */
.section .card{background:#fff;border:1px solid #e6e6e6;border-radius:12px;padding:1rem;}
.section h2, .section h3{margin-bottom:.5rem}
.section ul{margin:0 0 0 1.25rem}
.section blockquote{margin:1rem 0;padding:.75rem 1rem;border-left:4px solid #003366;background:#f6f9ff}
.section .btn{display:inline-block;padding:.6rem 1rem;border-radius:.5rem;border:1px solid #003366;text-decoration:none}
.section.cta{border-top:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}



/* v39: offers and teachers sections */
.section.offer ul, .section.teachers ul{margin:0 0 1rem 1.25rem}
.section.offer li, .section.teachers li{margin-bottom:.5rem}



/* v40: uniform sections, grids, cards, buttons */
html{scroll-behavior:smooth;}
.section{padding:3rem 0;}
.section h2{font-size:clamp(1.5rem,2.2vw,2rem);margin:0 0 .75rem}
.section h3{font-size:clamp(1.1rem,1.8vw,1.25rem);margin:1rem 0 .5rem}
.grid{display:grid;gap:1.25rem}
.grid-auto{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.card{background:#fff;border:1px solid #e6e6e6;border-radius:14px;padding:1rem}
.btn{display:inline-block;line-height:1;border-radius:10px;border:1px solid #003366;text-decoration:none;padding:.7rem 1.1rem;font-weight:600}
.btn:hover{filter:brightness(0.95)}
.btn-primary{background:#003366;color:#fff;border-color:#003366}
.btn-primary:hover{background:#00264d;border-color:#00264d}
.btn-lg{font-size:1rem;padding:.9rem 1.35rem;border-radius:12px}
.section.cta{border-top:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;text-align:center}
.form-alert{margin:.75rem 0;padding:.75rem 1rem;border-radius:.5rem;font-weight:600}
.form-success{background:#e6ffed;border:1px solid #2ecc71;color:#1e824c}
.form-error{background:#fff3f3;border:1px solid #e74c3c;color:#a82315}



/* v44 header contacts + mobile hamburger on right */
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.contact-actions{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.contact-link{color:#fff;text-decoration:none;font-weight:600}
.contact-link:hover{text-decoration:underline}
.btn-whatsapp{background:#25D366;border-color:#25D366;color:#fff}
.btn-whatsapp:hover{filter:brightness(0.95)}
@media(max-width:640px){
  .header-inner{justify-content:space-between}
  .nav-toggle,.hamburger{margin-left:auto;order:2}
  .header-logo{order:1;display:flex;align-items:center}
}



/* v44.1 WhatsApp button reliability */
.btn-whatsapp{ background:#25D366; border-color:#25D366; color:#fff; text-decoration:none; }
.btn-whatsapp:hover{ filter:brightness(.95); }
.btn-whatsapp, .btn-whatsapp *{ pointer-events:auto; }
a.btn-whatsapp[disabled]{ pointer-events:auto; opacity:1; }



/* v44.2.1-bookingfix2: center booking form horizontally with strong selectors */
.form-center{display:flex;justify-content:center;width:100%;}
.form-center > form[name="booking"]{max-width:800px;width:100%;margin:0 auto;}
/* Defensive: if any grid wraps inputs, keep full width on mobile */
@media (max-width: 640px){
  .form-center > form[name="booking"]{max-width: 100%; padding-left: 0; padding-right: 0;}
}



/* v67: Kill stray blue strip + tighten CTA spacing + scale hamburger on tablets */
blockquote:empty, .section.proof blockquote:empty, .section.proof p:empty { display:none !important; margin:0 !important; padding:0 !important; }
.section.proof { display:none !important; padding:0 !important; margin:0 !important; }
@media (max-width: 640px){
  .section.cta { padding-top: 1.25rem !important; }
}
@media (min-width: 769px) and (max-width: 1024px){
  .site-header .hamburger { font-size: 1.5rem; padding: .25rem .4rem; line-height: 1; }
}
@media (min-width: 1025px) and (max-width: 1440px){
  .site-header .hamburger { font-size: 1.6rem; padding: .25rem .5rem; line-height: 1; }
}


/* v78: clean 11+ section on courses page */
.eleven-title{ font-size:18px; font-weight:700; margin:1rem 0 .25rem; }
.eleven-desc{ font-size:12px; font-family:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; margin:0 0 .75rem; }

/* ===== v22.3 fixes: subject-card styling + logo sizing ===== */
.subject-card{
  background:#fff;
  border-radius:.8rem;
  padding:1.1rem;
  box-shadow:0 6px 24px rgba(0,0,0,.06);
  margin:1rem 0;
}
.subject-card h3{font-size:1.25rem;margin-bottom:.35rem}
.subject-card p{margin:.4rem 0 0}

/* Ensure site logo isn't too small on mobile */
.site-header .brand img{height:120px;width:auto}
@media(max-width:560px){
  .site-header .brand img{height:100px}
}

/* ===== v22.4 responsive logo scaling ===== */
.site-header .brand img {
  height: 120px;
  width: auto;
}

@media (max-width: 900px) {
  .site-header .brand img {
    height: 110px;
  }
}

@media (max-width: 560px) {
  header.site-header .brand img {
    height: 100px !important;
    width: auto !important;
  }
}


/* ===== ETA v86: Responsive Logo/Brand Sizing ===== */
:root {
  /* Controls logo height across breakpoints */
  --logo-h: clamp(28px, 6vw, 80px);
  --brand-size: clamp(18px, 3.8vw, 32px);
}

/* Header alignment (kept generic to avoid theme conflicts) */
.site-header,
.header,
.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Image logo scaling */
.custom-logo-link img,
.site-logo img,
.logo img,
.header__logo img,
.navbar-brand img {
  height: var(--logo-h);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  /* Optional: set your logo's real aspect ratio to prevent CLS
     e.g., aspect-ratio: 240 / 60; */
  /* aspect-ratio: 240 / 60; */
}

/* Clickable wrapper should not constrain height */
.custom-logo-link,
.site-logo,
.logo,
.header__logo,
.navbar-brand {
  line-height: 0;
  display: inline-flex;
  align-items: center;
}

/* Neutralize any fixed heights previously set by theme */
.custom-logo-link img,
.site-logo img,
.logo img,
.header__logo img,
.navbar-brand img {
  max-height: none !important;
}

/* Text brand scaling */
.site-brand,
.brand,
.navbar-brand .text,
.header__brand,
header .brand a {
  font-size: var(--brand-size);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* Safari/iOS font-size adjustments */
.site-brand, .brand { -webkit-text-size-adjust: 100%; }

/* Optional: allow a touch more headroom on very large screens */
@media (min-width: 1200px) {
  :root { --logo-h: clamp(32px, 5vw, 88px); }
}


/* ===== ETA v86.1: Header vertical-centre + banner wrap ===== */
:root {
  /* Logo height across breakpoints (used for vertical centering) */
  --logo-h: clamp(32px, 6vw, 88px);
}

/* Header container: centre items vertically, allow wrapping, and keep comfy padding */
.site-header .header-inner {
  display: flex;
  align-items: center;
  align-content: center;   /* when it wraps to two rows */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .25rem 1rem;
  padding-block: clamp(.35rem, 1.2vw, .8rem) !important; /* banner wraps nicely around content */
}

/* Brand block (logo + text): keep a single row and centre vertically */
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  white-space: nowrap; /* avoid brand wrap; let nav wrap instead */
}

/* Kill old fixed heights and make the logo scale from the variable */
.site-header .brand img {
  height: var(--logo-h) !important;
  width: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
}

/* Make sure the banner never clips the logo on any device */
.site-header { line-height: 1; }

/* Mobile: keep row layout but allow wrapping (don’t force column) */
@media (max-width: 560px) {
  .site-header .header-inner {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    align-content: center !important;
    gap: .35rem .75rem !important;
  }
  /* Give a touch more room so the banner hugs content, not the other way round */
  .site-header .brand img { height: clamp(32px, 9vw, 76px) !important; }
}

/* Ensure nav wraps under brand cleanly on narrow widths */
.site-header .nav {
  margin-left: auto;
  gap: .25rem .5rem;
  flex-wrap: wrap;
}

/* Desktop & tablet: show nav inline; mobile uses hamburger + .nav--open */
@media (min-width: 769px) {
  .site-header .nav { display: flex !important; }
}

/* When the mobile menu is in collapsed state, it can still centre with the banner */
.site-header .hamburger { align-self: center; }


/* Ensure hamburger visibility logic is explicit */
@media (min-width: 769px) {
  .hamburger { display: none !important; }
}
@media (max-width: 768px) {
  .hamburger { display: block !important; }
}
