/* ============================================================
   ORDUS ACADEMY — SHARED DESIGN SYSTEM
   Premium light theme · Corporate identity
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* §16: platform-wide responsive-image safety net — every <img> that doesn't
   already have explicit sizing rules stays within its container on mobile. */
img { max-width: 100%; height: auto; display: block; }

:root {
  --gold:       #c9a15b;
  --gold-light: #e8d4a8;
  --gold-pale:  #fdf6eb;
  --gold-dim:   rgba(201,161,91,0.12);
  --red:        #db0404;
  --black:      #000000;
  --ink:        #111111;
  --ink-mid:    #444444;
  --ink-muted:  #888888;
  --ink-faint:  #bbbbbb;
  --bg:         #ffffff;
  --bg-soft:    #f8f9fa;
  --bg-warm:    #fdfbf7;
  --border:     #e8e8e8;
  --border-gold: rgba(201,161,91,0.25);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 40px rgba(201,161,91,0.15), 0 2px 8px rgba(0,0,0,0.06);
  --radius:     12px;
  --radius-sm:  6px;
  --trans:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 10px; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { position: relative; width: 42px; height: 42px; flex-shrink: 0; }
.logo-mark img { width: 42px; height: 42px; display: block; object-fit: contain; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; justify-content: center; }
.logo-name { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 800; letter-spacing: 0.04em; color: var(--black); }
.logo-name .red { color: var(--gold); font-weight: 600; }

nav { display: flex; gap: 0.25rem; flex: 1; justify-content: center; }
nav a { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--ink-mid); text-decoration: none; padding: 8px 14px; border-radius: var(--radius-sm); transition: color var(--trans), background var(--trans); }
nav a:hover, nav a.active { color: var(--gold); background: var(--gold-dim); }

.nav-cta { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; margin-left: auto; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--ink); font-size: 16px; cursor: pointer; flex-shrink: 0; }
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-collapse { display: contents; }

/* ── MEGA MENU ("Услуги") ── */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--ink-mid); padding: 8px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: color var(--trans), background var(--trans); }
.nav-dropdown-trigger i { font-size: 9px; transition: transform var(--trans); }
.nav-item-dropdown:hover .nav-dropdown-trigger, .nav-item-dropdown.open .nav-dropdown-trigger { color: var(--gold); background: var(--gold-dim); }
.nav-item-dropdown.open .nav-dropdown-trigger i { transform: rotate(180deg); }
.mega-panel { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%); display: flex; gap: 2.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 1.5rem 2rem; opacity: 0; visibility: hidden; transition: opacity var(--trans); z-index: 950; }
.nav-item-dropdown:hover .mega-panel, .nav-item-dropdown.open .mega-panel { opacity: 1; visibility: visible; }
.mega-col { min-width: 200px; max-height: 360px; overflow-y: auto; }
.mega-col-title { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.mega-col-list { display: flex; flex-direction: column; gap: 2px; }
.mega-col-list a { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink-mid); text-decoration: none; padding: 6px 8px; border-radius: var(--radius-sm); transition: color var(--trans), background var(--trans); }
.mega-col-list a:hover { color: var(--gold); background: var(--gold-dim); }
@media (max-width: 900px) {
  /* header's `backdrop-filter: blur(16px)` (see the base `header {}` rule above)
     silently makes header the CSS containing block for any `position: fixed`
     descendant — and #navCollapse (below) is nested inside <header> in
     header.html. That squashes its `top:72px; bottom:0` down to header's own
     72px-tall box instead of the real viewport, so the mobile menu panel opens
     with ~0 visible height (toggles correctly in JS/aria-expanded, but nothing
     visible appears). Disabling the blur only at this breakpoint is the
     minimal fix — header's background is already 96% opaque white, so the
     lost blur is not noticeable, and desktop (where .nav-collapse relies on
     `display: contents` to stay a flex child of .nav-inner) is untouched. */
  header { backdrop-filter: none; }
  .nav-inner { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-collapse { display: block; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg); overflow-y: auto; padding: 1.25rem 1.5rem 2.5rem; transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--trans), transform var(--trans); z-index: 890; }
  .nav-collapse.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  nav { flex-direction: column; align-items: stretch; gap: 2px; }
  nav a { padding: 14px 10px; font-size: 13px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-item-dropdown { border-bottom: 1px solid var(--border); }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 14px 10px; }
  .mega-panel { position: static; left: 0; transform: none; flex-direction: column; gap: 1.25rem; max-height: none; overflow-y: visible; opacity: 1; visibility: visible; display: none; box-shadow: none; border: none; padding: 0.25rem 0 1rem 0.75rem; }
  .nav-item-dropdown.open .mega-panel { display: flex; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 1.25rem; }
  .nav-cta .btn-ghost, .nav-cta .btn-gold { width: 100%; justify-content: center; }
}

/* ── BUTTONS ── */
.btn-ghost { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--ink-mid); padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; background: transparent; text-decoration: none; transition: border-color var(--trans), color var(--trans); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: #000; background: var(--gold); padding: 10px 22px; border: none; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 6px; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); }
.btn-gold:hover { background: #b8903d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,161,91,0.35); }

.btn-outline { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--ink); background: transparent; padding: 10px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: all var(--trans); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-white { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: #000; background: #fff; padding: 12px 24px; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: opacity var(--trans); }
.btn-white:hover { opacity: 0.88; }

/* ── CHIPS ── */
.chip { font-size: 11px; font-weight: 400; letter-spacing: 0.03em; padding: 6px 13px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 100px; color: var(--ink-mid); white-space: nowrap; }
.chip-gold { background: var(--gold-dim); border-color: var(--border-gold); color: #9a7a3a; }
.chip-dark { background: var(--black); border-color: var(--black); color: var(--gold-light); }
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }

/* ── SECTION COMMON WRAPPER ── */
.section { padding: 7rem 0; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; position: relative; }
.section-label { font-size: 10px; font-weight: 300; letter-spacing: 0.5em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: 0.04em; color: var(--black); line-height: 1.15; margin-bottom: 0.75rem; }
.section-title .accent { color: var(--gold); }
.section-sub { font-size: 15px; font-weight: 300; color: var(--ink-muted); max-width: 540px; line-height: 1.8; }
.section-head { margin-bottom: 3.5rem; position: relative; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner { background: var(--black); padding: 5rem 0; }
.cta-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.cta-title { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 2.5vw, 34px); font-weight: 800; letter-spacing: 0.05em; color: #fff; line-height: 1.2; margin-bottom: 0.75rem; }
.cta-title .g { color: var(--gold); }
.cta-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); }
.cta-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
/* Scoped to .site-footer (see templates/includes/footer.html), NOT a bare `footer`
   element selector — the mini-CMS QUOTE block (§19, homepage_blocks.html) also uses
   a semantic <footer class="cms-quote-author"> for its citation byline, and a bare
   `footer {}` rule would silently paint THAT footer black too (same bug class as
   the mobile-nav "⚠️ Vacib CSS tələsi #5" bare-selector cascade — see progress doc). */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.footer-logo-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 12px; }
.footer-logo-mark { display: block; flex-shrink: 0; }
.footer-logo-name { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: 0.04em; color: #fff; }
.footer-logo-name .r { color: var(--gold); font-weight: 600; }
.footer-brand-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 300px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); text-decoration: none; transition: all var(--trans); }
.footer-social:hover { background: var(--gold); color: #000; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,0.25); }

/* ================================================================
   MODAL & TOAST
   ================================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg); border-radius: 16px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); transform: translateY(20px) scale(0.98); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header { padding: 1.75rem 1.75rem 0; display: flex; align-items: flex-start; justify-content: space-between; }
.modal-eyebrow { font-size: 10px; font-weight: 300; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; }
.modal-title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: var(--black); }
.modal-close { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-soft); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gold); color: #000; }
.modal-specialist-info { display: flex; align-items: center; gap: 12px; padding: 1rem 1.75rem; background: var(--gold-pale); border: 1px solid var(--border-gold); margin: 1.25rem 1.75rem 0; border-radius: var(--radius-sm); }
.modal-spec-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-dim); border: 2px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--gold); }
.modal-spec-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--black); }
.modal-spec-title { font-size: 12px; font-weight: 300; color: var(--gold); }
.modal-service-row { display: flex; align-items: center; gap: 10px; padding: 0.7rem 1.75rem; margin: 0.6rem 1.75rem 0; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.modal-service-row i { color: var(--gold); font-size: 14px; }
.modal-service-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.modal-service-value { font-size: 13px; font-weight: 600; color: var(--black); }
.modal-body { padding: 1.25rem 1.75rem 1.75rem; }
.form-row { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--ink-mid); text-transform: uppercase; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: var(--bg); outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,91,0.12); }
.form-textarea { resize: vertical; min-height: 90px; }
.channel-toggle { display: flex; gap: 10px; margin-bottom: 8px; }
.channel-opt { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; color: var(--ink-mid); cursor: pointer; transition: border-color var(--trans), background var(--trans), color var(--trans); }
.channel-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.channel-opt.selected, .channel-opt:has(input:checked) { border-color: var(--gold); background: var(--gold-dim); color: var(--black); }
.form-hint { font-size: 11px; color: var(--ink-muted); margin-top: 4px; }
.form-submit { width: 100%; padding: 14px; background: var(--gold); border: none; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: #000; cursor: pointer; margin-top: 0.5rem; }
.form-submit:hover { background: #b8903d; box-shadow: 0 6px 20px rgba(201,161,91,0.35); }
.modal-success { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.75rem; text-align: center; gap: 1rem; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,161,91,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold); }
.success-title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; }
.success-sub { font-size: 14px; font-weight: 300; color: var(--ink-muted); }
.toast { position: fixed; bottom: 2rem; right: 2rem; z-index: 10000; background: var(--black); color: var(--gold); border: 1px solid var(--border-gold); border-radius: var(--radius-sm); padding: 12px 20px; font-family: 'Montserrat', sans-serif; font-size: 12px; opacity: 0; transform: translateY(10px); transition: all 0.25s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ── SPECIALIST CARDS (shared between home and profile related) ── */
.spec-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans); display: flex; flex-direction: column; text-decoration: none; }
.spec-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--border-gold); }
.spec-photo { display: block; width: 100%; aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; position: relative; text-decoration: none; }
.spec-name-link { display: block; text-decoration: none; color: inherit; }
.spec-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.45s ease; }
.spec-card:hover .spec-photo img { transform: scale(1.04); }
.spec-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #f0ede8 0%, var(--gold-pale) 100%); }
.spec-photo-placeholder .initials, .spec-photo .initials { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.spec-photo .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0ede8, var(--gold-pale)); }
.spec-photo-placeholder .initials { width: 64px; height: 64px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; border: 2px solid var(--border-gold); }
.spec-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.spec-name { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.03em; color: var(--black); margin-bottom: 3px; }
.spec-title { font-size: 12px; font-weight: 300; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.spec-desc { font-size: 12px; font-weight: 300; color: var(--ink-muted); line-height: 1.7; margin-bottom: 0.75rem; flex: 1; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1rem; }
.spec-cta { width: 100%; padding: 11px 0; background: var(--gold); border: none; border-radius: var(--radius-sm); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: #000; cursor: pointer; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); text-transform: uppercase; }
.spec-cta:hover { background: #b8903d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,161,91,0.3); }
.empty-state { grid-column: 1/-1; text-align: center; padding: 5rem 0; color: var(--ink-muted); }
.empty-state i { font-size: 40px; color: var(--gold-light); margin-bottom: 1rem; display: block; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
@media (max-width: 650px) { .spec-grid { grid-template-columns: 1fr; } }

/* ── FILTER BAR (search / method / city / qualification / online) ── */
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem; }
.filter-input, .filter-select { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; min-width: 160px; flex: 1 1 160px; }
.filter-input:focus, .filter-select:focus { outline: none; border-color: var(--gold); }
.filter-checkbox { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-mid); white-space: nowrap; cursor: pointer; }
.filter-checkbox input { accent-color: var(--gold); }
.filter-reset { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-mid); background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 16px; cursor: pointer; transition: border-color var(--trans), color var(--trans); white-space: nowrap; }
.filter-reset:hover { border-color: var(--gold); color: var(--gold); }

/* ── SHARED RESPONSIVE ── */
@media (max-width: 900px) {
  /* `nav { display: none; }` used to live here — there is no other <nav> element
     anywhere in the templates (grep confirms it), so its only real target was the
     header's own <nav> (the mobile menu's link list, inside #navCollapse). Same
     specificity as the mobile nav rules above (line ~112-125) + later in source
     order = it always won, so the mobile menu opened with every link invisible
     (only .nav-cta, a <div> and therefore unaffected, showed). Removed — nothing
     else was relying on it. */
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .footer-top { grid-template-columns: 1fr; }
}
