*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --slate:      #1e293b;
    --slate-mid:  #334155;
    --slate-light:#475569;
    --amber:      #b45309;
    --amber-mid:  #d97706;
    --amber-light:#fbbf24;
    --amber-pale: #fef3c7;
    --ivory:      #fafaf7;
    --paper:      #f4f3ef;
    --white:      #ffffff;
    --border:     rgba(30,41,59,0.10);
    --border-amber: rgba(180,83,9,0.20);
    --text-dark:  #0f172a;
    --text-mid:   #374151;
    --text-muted: #6b7280;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 6px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--ivory); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--slate); padding: 8px clamp(1.5rem, 5vw, 4rem);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
  }
  .topbar a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .topbar a:hover { color: var(--amber-light); }
  .topbar-left { display: flex; gap: 1.5rem; }
  .topbar-right { display: flex; gap: 1.5rem; align-items: center; }
  .topbar-divider { color: rgba(255,255,255,0.2); }

  /* ===== NAVBAR ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 66px; display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.04);
  }
  .nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .nav-brand-text { }
  .nav-brand-main { font-size: 15px; font-weight: 600; color: var(--slate); letter-spacing: -0.01em; }
  .nav-brand-sub { font-size: 11px; color: var(--amber); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 1px; }
  .nav-links { display: flex; gap: 0; list-style: none; }
  .nav-links a {
    display: block; padding: 0 1.1rem; height: 66px; line-height: 66px;
    color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 500;
    border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--slate); border-bottom-color: var(--amber); }
  .nav-links a.active { color: var(--amber); border-bottom-color: var(--amber); }
  .nav-cta {
    background: var(--amber); color: white; border: none; padding: 9px 18px;
    border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: var(--font-body); transition: background 0.2s; letter-spacing: 0.02em;
  }
  .nav-cta:hover { background: var(--amber-mid); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; }
  .hamburger span { width: 22px; height: 2px; background: var(--slate); border-radius: 1px; }
  .mobile-nav {
    display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 99;
    background: white; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 0.8rem clamp(1.5rem,5vw,4rem); color: var(--text-mid); text-decoration: none; font-size: 14px; border-bottom: 1px solid var(--border); }
  .mobile-nav a:hover { background: var(--paper); color: var(--amber); }

  /* ===== BREADCRUMB ===== */
  .breadcrumb {
    background: var(--paper); border-bottom: 1px solid var(--border);
    padding: 10px clamp(1.5rem, 5vw, 4rem);
    display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted);
  }
  .breadcrumb a { color: var(--amber); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb-sep { color: var(--border); font-size: 14px; }

  /* ===== HERO ===== */
  .hero {
    background: var(--slate);
    padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; right: -100px; top: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(180,83,9,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; }
  .hero-dept-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.25);
    color: var(--amber-light); padding: 5px 14px; border-radius: 100px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0; animation: fadeUp 0.6s var(--ease) 0.1s forwards;
  }
  .hero-dept-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber-light); }
  .hero-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: white; font-weight: 700; line-height: 1.1; margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0; animation: fadeUp 0.6s var(--ease) 0.22s forwards;
  }
  .hero-title span { color: var(--amber-light); font-style: italic; }
  .hero-desc {
    font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 540px;
    margin-bottom: 2rem;
    opacity: 0; animation: fadeUp 0.6s var(--ease) 0.34s forwards;
  }
  .hero-meta {
    display: flex; gap: 2rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.6s var(--ease) 0.46s forwards;
  }
  .hero-meta-item { }
  .hero-meta-item strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--amber-light); line-height: 1; font-weight: 700; }
  .hero-meta-item span { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
  .hero-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }
  .hero-visual-block {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 1.5rem 2rem; text-align: center; min-width: 220px;
    opacity: 0; animation: fadeIn 0.8s var(--ease) 0.3s forwards;
  }
  .hero-visual-icon { font-size: 3.5rem; margin-bottom: 0.75rem; display: block; }
  .hero-visual-block h3 { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
  .hero-visual-block p { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.5; }
  .hero-visual-block .contact-row { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 1rem; font-size: 12px; color: var(--amber-light); }

  /* ===== SECTION BASE ===== */
  .section { padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .sec-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
  .sec-heading { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); color: var(--slate); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
  .sec-heading em { font-style: italic; color: var(--amber); }
  .sec-rule { width: 40px; height: 2px; background: var(--amber); border-radius: 1px; margin: 1rem 0 1.5rem; }

  /* ===== ABOUT / MANDATE ===== */
  .about-bg { background: var(--paper); }
  .about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .about-body { color: var(--text-mid); font-size: 15px; line-height: 1.85; }
  .about-body + .about-body { margin-top: 1rem; }
  .mandate-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .mandate-item { display: flex; gap: 1rem; align-items: flex-start; }
  .mandate-num { width: 32px; height: 32px; background: var(--amber-pale); color: var(--amber); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; font-family: var(--font-display); }
  .mandate-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; padding-top: 5px; }
  .about-sidebar { }
  .sidebar-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    margin-bottom: 1rem; position: relative; overflow: hidden;
  }
  .sidebar-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--amber); }
  .sidebar-card h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
  .sidebar-card p, .sidebar-card address { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; font-style: normal; }
  .sidebar-card a { color: var(--amber); text-decoration: none; }
  .sidebar-card a:hover { text-decoration: underline; }

  /* ===== HOD / DIRECTOR ===== */
  .leadership-bg { background: var(--white); }
  .leadership-layout { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
  .leader-card {
    background: var(--paper); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; text-align: center;
  }
  .leader-img { height: 260px; overflow: hidden; background: var(--slate); position: relative; }
  .leader-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .leader-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; opacity: 0.2; }
  .leader-badge { background: var(--amber); color: white; padding: 8px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .leader-info { padding: 1.25rem; }
  .leader-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--slate); }
  .leader-title { font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
  .leader-contact { margin-top: 1rem; font-size: 12px; color: var(--amber); }
  .msg-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }
  .msg-quote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--slate); line-height: 1.6; border-left: 3px solid var(--amber); padding-left: 1.5rem; margin-bottom: 1.5rem; }
  .msg-body { color: var(--text-mid); font-size: 15px; line-height: 1.85; }
  .msg-sig { margin-top: 1.5rem; display: flex; align-items: center; gap: 12px; }
  .msg-sig-line { flex: 1; height: 1px; background: var(--border); }
  .msg-sig-name { font-size: 13px; font-weight: 600; color: var(--slate); white-space: nowrap; }

  /* ===== FUNCTIONS / SERVICES ===== */
  .functions-bg { background: var(--paper); }
  .functions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
  .func-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; position: relative; overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s;
    opacity: 0; transform: translateY(20px);
  }
  .func-card.visible { opacity: 1; transform: none; }
  .func-card:hover { box-shadow: 0 12px 28px rgba(30,41,59,0.08); transform: translateY(-3px); border-color: var(--border-amber); }
  .func-icon-wrap {
    width: 44px; height: 44px; border-radius: var(--radius);
    background: var(--amber-pale); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
  }
  .func-title { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 0.4rem; }
  .func-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
  .func-tag { display: inline-block; margin-top: 0.75rem; background: var(--paper); color: var(--amber); padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border-amber); }

  /* ===== OFFICE HOURS ===== */
  .hours-bg { background: var(--slate); }
  .hours-header .sec-eyebrow { color: var(--amber-light); }
  .hours-header .sec-heading { color: white; }
  .hours-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
  .hours-table { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
  .hours-table-head { background: var(--amber); padding: 0.85rem 1.25rem; display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: white; letter-spacing: 0.1em; text-transform: uppercase; }
  .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
  .hours-row:last-child { border-bottom: none; }
  .hours-row:hover { background: rgba(255,255,255,0.03); }
  .hours-row.today-row { background: rgba(251,191,36,0.08); }
  .hours-day { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; display: flex; align-items: center; gap: 8px; }
  .hours-time { font-size: 13px; color: var(--amber-light); font-weight: 600; }
  .hours-closed { font-size: 13px; color: rgba(255,255,255,0.3); font-style: italic; }
  .today-badge { background: var(--amber); color: white; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; }
  .hours-note { margin-top: 1rem; font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; display: flex; gap: 8px; align-items: flex-start; }
  .hours-note::before { content: 'ⓘ'; flex-shrink: 0; margin-top: 1px; }
  .hours-info-cards { display: flex; flex-direction: column; gap: 1rem; }
  .hours-info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color 0.2s; }
  .hours-info-card:hover { border-color: rgba(251,191,36,0.3); }
  .hours-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
  .hours-info-title { font-size: 13px; font-weight: 600; color: white; margin-bottom: 4px; }
  .hours-info-body { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.65; }
  .hours-info-body a { color: var(--amber-light); text-decoration: none; }
  .hours-info-body a:hover { text-decoration: underline; }

  /* ===== TEAM ===== */
  .team-bg { background: var(--ivory); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
  .team-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    opacity: 0; transform: translateY(18px);
  }
  .team-card.visible { opacity: 1; transform: none; }
  .team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(30,41,59,0.09); }
  .team-img { height: 190px; overflow: hidden; background: var(--slate); }
  .team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); }
  .team-card:hover .team-img img { transform: scale(1.04); }
  .team-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.15; }
  .team-info { padding: 1rem; }
  .team-name { font-size: 14px; font-weight: 600; color: var(--slate); }
  .team-role { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; line-height: 1.4; }
  .team-grade { display: inline-block; margin-top: 8px; background: var(--amber-pale); color: var(--amber); padding: 2px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; }

  /* ===== DEPARTMENTS GRID ===== */
  .depts-bg { background: var(--paper); }
  .depts-search-bar { margin-top: 2rem; margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .search-input {
    flex: 1; min-width: 200px; padding: 10px 16px; border: 1px solid var(--border);
    border-radius: var(--radius); font-size: 14px; font-family: var(--font-body);
    color: var(--text-dark); background: var(--white); outline: none;
    transition: border-color 0.2s;
  }
  .search-input:focus { border-color: var(--amber); }
  .filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
  .filter-btn {
    padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600;
    border: 1px solid var(--border); background: var(--white); color: var(--text-muted);
    cursor: pointer; font-family: var(--font-body); transition: all 0.2s; white-space: nowrap;
  }
  .filter-btn.active, .filter-btn:hover { background: var(--amber); border-color: var(--amber); color: white; }
  .admin-depts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
  .dept-tile {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
    text-decoration: none; color: inherit; transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    opacity: 0; transform: translateY(16px);
  }
  .dept-tile.visible { opacity: 1; transform: none; }
  .dept-tile:hover { border-color: var(--amber); box-shadow: 0 8px 20px rgba(30,41,59,0.08); transform: translateY(-2px); }
  .dept-tile-icon { font-size: 1.6rem; }
  .dept-tile-name { font-size: 13.5px; font-weight: 600; color: var(--slate); line-height: 1.3; }
  .dept-tile-cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
  .dept-tile-arrow { margin-top: auto; font-size: 12px; color: var(--amber); font-weight: 600; opacity: 0; transition: opacity 0.2s; }
  .dept-tile:hover .dept-tile-arrow { opacity: 1; }
  .dept-tile[data-hidden="true"] { display: none; }

  /* ===== NOTICE BOARD ===== */
  .notices-bg { background: var(--white); }
  .notices-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
  .notice-card {
    border-radius: var(--radius); border: 1px solid var(--border);
    overflow: hidden; background: var(--paper);
  }
  .notice-card-head { padding: 1rem 1.25rem; background: var(--slate); display: flex; align-items: center; gap: 8px; }
  .notice-card-head h3 { font-size: 13px; font-weight: 600; color: white; letter-spacing: 0.04em; }
  .notice-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-light); flex-shrink: 0; }
  .notice-item { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; background: var(--white); transition: background 0.2s; }
  .notice-item:hover { background: var(--paper); }
  .notice-item:last-child { border-bottom: none; }
  .notice-date { flex-shrink: 0; text-align: center; background: var(--amber-pale); border-radius: var(--radius); width: 44px; padding: 6px 0; }
  .notice-date .nd { font-size: 18px; font-weight: 700; color: var(--amber); font-family: var(--font-display); line-height: 1; }
  .notice-date .nm { font-size: 9px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 0.06em; }
  .notice-content { }
  .notice-title { font-size: 13px; font-weight: 600; color: var(--slate); line-height: 1.4; }
  .notice-body { font-size: 12px; color: var(--text-muted); margin-top: 3px; line-height: 1.55; }

  /* ===== FOOTER ===== */
  footer { background: var(--text-dark); padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,4rem) 2rem; }
  .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-brand-area .brand-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
  .footer-brand-name { color: white; font-weight: 600; font-size: 15px; }
  .footer-brand-sub { color: rgba(255,255,255,0.4); font-size: 11px; }
  .footer-desc { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.75; max-width: 280px; margin-bottom: 1.25rem; }
  .footer-contact-row { display: flex; gap: 8px; align-items: flex-start; color: rgba(255,255,255,0.45); font-size: 12.5px; margin-bottom: 6px; }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--amber-light); }
  .footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual-block { min-width: unset; }
    .about-cols { grid-template-columns: 1fr; }
    .leadership-layout { grid-template-columns: 1fr; }
    .hours-layout { grid-template-columns: 1fr; }
    .notices-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .topbar-left { display: none; }
  }
  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-meta { gap: 1.25rem; }
  }