/* SK Bandar Tawau · Klasik theme · responsive stylesheet
 *
 * Breakpoints:
 *   - default (mobile-first): < 700px
 *   - tablet/desktop: ≥ 700px
 *   - full desktop max: ≥ 1024px (content caps at 1280px and centers)
 *
 * Theming is via CSS custom properties on .klasik (and .klasik.dark).
 * The accent is set inline as --accent on the root element.
 */

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; overscroll-behavior: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; cursor: pointer; }

/* ── Klasik root ── */
.klasik {
  --accent: #0b3b7a;          /* primary navy; can be overridden inline */
  --red: #cc0c1a;
  --yellow: #f5b300;
  --ink: #101626;
  --muted: #5a6884;
  --surface: #fbfaf6;
  --card: #ffffff;
  --line: rgba(11, 59, 122, 0.12);
  --subtle: #f3f0e7;
  --footer: #101626;
  --footer-ink: #dfe5f0;

  background: var(--surface);
  color: var(--ink);
  min-height: 100vh;
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
}
.klasik.dark {
  --ink: #e8eef8;
  --muted: #a6b4ce;
  --surface: #0d1320;
  --card: #171f30;
  --line: rgba(255, 255, 255, 0.08);
  --subtle: #101728;
  --footer: #070b14;
}

.k-sans { font-family: 'Inter', system-ui, sans-serif; }
.k-serif { font-family: 'Source Serif 4', Georgia, serif; }

/* ── Top ribbon (gov banner) ── */
.k-ribbon {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  flex-wrap: wrap;
}
.k-ribbon-left { display: flex; align-items: center; gap: 10px; opacity: 0.95; min-width: 0; }
.k-ribbon-left span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.k-ribbon-right { display: flex; align-items: center; gap: 12px; opacity: 0.9; flex-wrap: wrap; }
.k-ribbon-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.k-ribbon-toggle {
  appearance: none; background: rgba(255,255,255,0.12); border: 0; color: #fff;
  padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.4px;
}
.k-ribbon-toggle:hover { background: rgba(255,255,255,0.22); }
.k-ribbon-toggle[aria-pressed="true"] { background: rgba(255,255,255,0.3); }

/* ── Masthead ── */
.k-masthead {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  display: flex; align-items: center; gap: 16px;
}
.k-masthead-text { flex: 1; min-width: 0; }
.k-masthead-eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-family: 'Inter', system-ui, sans-serif;
}
.k-masthead-title {
  margin: 4px 0 0; font-weight: 700; letter-spacing: -0.4px;
  font-size: 22px; line-height: 1.15;
}
.k-masthead-meta {
  margin-top: 4px; color: var(--muted); font-size: 13px;
  font-family: 'Inter', system-ui, sans-serif;
}
.k-masthead-meta i { font-style: italic; }
.k-masthead-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0;
}
.k-btn-primary {
  background: var(--red); color: #fff; border: 0;
  padding: 10px 16px; font-weight: 700; font-size: 12px; letter-spacing: 0.4px;
  font-family: 'Inter', system-ui, sans-serif; text-transform: uppercase;
}
.k-btn-primary:hover { filter: brightness(1.08); }
.k-masthead-logo { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }

/* ── Main nav ── */
.k-nav {
  background: var(--card);
  border-bottom: 2px solid var(--accent);
  padding: 0 20px;
  display: flex; align-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
}
.k-nav-items {
  display: flex; align-items: center; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
  overflow: visible;
  flex: 1;
}
.k-nav-items::-webkit-scrollbar { display: none; }
.k-nav a {
  padding: 13px 12px; font-size: 12.5px; font-weight: 600;
  color: var(--ink); white-space: nowrap; letter-spacing: 0.2px;
  display: block;
}
.k-nav a:hover { background: var(--subtle); }
.k-nav a.active { color: #fff; background: var(--accent); }
.k-nav-status {
  font-size: 11px; color: var(--muted); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; padding-left: 12px;
}
.k-nav-status::before {
  content: ''; width: 6px; height: 6px; background: #15a247; border-radius: 50%;
  display: inline-block;
}
/* Dropdown sub-menus (desktop hover / keyboard focus) */
.k-nav-li { position: relative; }
.k-caret { font-size: 9px; margin-left: 5px; opacity: 0.6; }
.k-nav-drop {
  position: absolute; top: 100%; left: 0; min-width: 216px;
  list-style: none; margin: 0; padding: 6px;
  background: var(--card); border: 1px solid var(--line); border-top: 2px solid var(--accent);
  border-radius: 0 0 10px 10px; box-shadow: 0 14px 30px rgba(16, 22, 38, 0.16);
  opacity: 0; visibility: hidden; transform: translateY(5px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 40;
}
.k-nav-li:hover > .k-nav-drop,
.k-nav-li:focus-within > .k-nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.k-nav-drop li { display: block; }
.k-nav-drop a { padding: 9px 12px; border-radius: 7px; font-size: 12.5px; font-weight: 500; }
.k-nav-drop a:hover { background: var(--subtle); color: var(--accent); }

/* ── Inner page (admin-built block content) ── */
.k-page { padding: 26px 20px 44px; }
.k-page-back { background: none; border: 0; color: var(--accent); font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; padding: 6px 0; }
.k-page-back:hover { text-decoration: underline; }
.k-page-title { font-family: 'Source Serif 4', Georgia, serif; font-size: 26px; line-height: 1.2; color: var(--ink); margin: 8px 0 22px; }
.k-page-empty { color: var(--muted); }
.k-blocks { display: flex; flex-direction: column; gap: 26px; max-width: 780px; }
.k-blk-text h3, .k-blk-vid h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 20px; color: var(--ink); margin: 0 0 8px; }
.k-blk-text p { color: var(--ink); line-height: 1.7; margin: 0 0 10px; }
.k-blk-img { margin: 0; }
.k-blk-img img { width: 100%; border-radius: 12px; display: block; }
.k-blk-img figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.k-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.k-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.k-blk-file { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.k-blk-file .t { font-weight: 600; color: var(--ink); }
.k-blk-file a { color: var(--accent); font-weight: 600; text-decoration: none; }
.k-blk-file a:hover { text-decoration: underline; }
.k-blk-link { display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); text-decoration: none; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.k-blk-link:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(11,59,122,0.08); }
.k-blk-link .t { display: block; font-weight: 600; color: var(--accent); }
.k-blk-link .d { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }
.k-staff-avatar { overflow: hidden; }
.k-staff-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@media (min-width: 700px) { .k-page { padding: 34px 32px 56px; } }
@media (min-width: 1024px) { .k-page { padding: 40px 56px 64px; } }
.k-hamburger {
  appearance: none; background: transparent; border: 0;
  padding: 12px; display: none; align-items: center; justify-content: center;
  color: var(--ink);
}
.k-hamburger svg { width: 22px; height: 22px; }

/* ── Content wrapper (caps width on big screens) ── */
.k-main { max-width: 1280px; margin: 0 auto; }

/* ── Hero (image + visi/misi aside) ── */
.k-hero { padding: 28px 20px; display: grid; gap: 20px; }
.k-hero-img {
  position: relative; border: 1px solid var(--line); background: var(--card);
  overflow: hidden;
}
.k-hero-img .k-placeholder { aspect-ratio: 16/9; }
.k-hero-overlay {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.k-tag {
  display: inline-block; background: var(--red); color: #fff;
  padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-family: 'Inter', system-ui, sans-serif;
}
.k-hero-headline {
  margin: 10px 0 6px; font-size: 22px; font-weight: 700; line-height: 1.2;
  max-width: 520px;
}
.k-hero-blurb {
  margin: 0; opacity: 0.92; font-size: 13px; line-height: 1.5;
  max-width: 520px; font-family: 'Inter', system-ui, sans-serif;
}
.k-aside {
  background: var(--card); border: 1px solid var(--line); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.k-aside-eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); font-weight: 700; font-family: 'Inter', system-ui, sans-serif;
}
.k-aside-h { font-size: 13px; color: var(--muted); margin-bottom: 4px;
  font-family: 'Inter', system-ui, sans-serif; }
.k-aside p { margin: 0; line-height: 1.4; }
.k-aside .visi { font-size: 17px; font-weight: 600; }
.k-aside .misi { font-size: 14px; line-height: 1.5; color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif; }
.k-aside-sep { height: 1px; background: var(--line); }
.k-aside-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 12px;
  gap: 12px;
}
.k-aside-foot .name { font-weight: 600; font-size: 13px; color: var(--ink); }
.k-aside-foot a { color: var(--accent); font-weight: 700; font-size: 12px; flex-shrink: 0; }

/* ── Stats strip ── */
.k-stats {
  margin: 0 20px; background: var(--accent); color: #fff;
  padding: 22px 24px;
  display: grid; gap: 18px; grid-template-columns: 1fr 1fr;
  position: relative;
  font-family: 'Inter', system-ui, sans-serif;
}
.k-stats::before, .k-stats::after {
  content: ''; position: absolute; top: 0; bottom: 0;
}
.k-stats::before { left: 0; width: 6px; background: var(--yellow); }
.k-stats::after { left: 6px; width: 3px; background: var(--red); }
.k-stat-n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px; font-weight: 700; letter-spacing: -1px; line-height: 1;
}
.k-stat-l {
  opacity: 0.85; font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  margin-top: 4px;
}

/* ── Section header ── */
.k-secthead {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.k-secthead h2 {
  margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--ink);
}
.k-secthead .rule { flex: 1; height: 1px; background: rgba(0,0,0,0.08); }
.klasik.dark .k-secthead .rule { background: rgba(255,255,255,0.08); }
.k-secthead .action {
  font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: 0.4px; text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── News + Calendar block ── */
.k-news-cal { padding: 28px 20px; display: grid; gap: 28px; }
.k-news-tabs {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px;
  font-family: 'Inter', system-ui, sans-serif;
}
.k-news-tab {
  padding: 6px 12px; border: 1px solid var(--line);
  background: transparent; color: var(--ink);
  font-size: 12px; font-weight: 600;
}
.k-news-tab.active {
  border-color: var(--accent); background: var(--accent); color: #fff;
}
.k-news-feat {
  background: var(--card); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr;
  overflow: hidden;
}
.k-news-feat .k-placeholder { aspect-ratio: 16/9; }
.k-news-feat-body { padding: 16px; display: flex; flex-direction: column; }
.k-news-feat-date {
  font-size: 11px; color: var(--muted); letter-spacing: 1.2px;
  text-transform: uppercase; font-family: 'Inter', system-ui, sans-serif;
}
.k-news-feat-title {
  margin: 6px 0 8px; font-size: 19px; line-height: 1.25; font-weight: 700;
}
.k-news-feat-blurb {
  margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted);
  font-family: 'Inter', system-ui, sans-serif;
}
.k-news-feat-more {
  margin-top: 12px; color: var(--accent); font-weight: 700; font-size: 13px;
  font-family: 'Inter', system-ui, sans-serif; align-self: flex-start;
}
.k-news-sub {
  margin-top: 16px; display: grid; gap: 14px; grid-template-columns: 1fr;
}
.k-news-sub-card {
  background: var(--card); border: 1px solid var(--line); padding: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}
.k-news-sub-meta {
  font-size: 11px; color: var(--muted); letter-spacing: 1.2px;
  text-transform: uppercase;
}
.k-news-sub-title {
  margin: 6px 0 0; font-size: 15px; font-weight: 700; line-height: 1.3;
  font-family: 'Source Serif 4', Georgia, serif;
}

/* Calendar */
.k-cal-wrap {
  background: var(--card); border: 1px solid var(--line); padding: 18px;
  font-family: 'Inter', system-ui, sans-serif;
}
.k-cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.k-cal-head button {
  border: 0; background: transparent; color: var(--ink); font-size: 18px;
  padding: 4px 8px;
}
.k-cal-month {
  font-weight: 700; font-family: 'Source Serif 4', Georgia, serif; font-size: 18px;
}
.k-cal-dow, .k-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.k-cal-dow {
  font-size: 11px; color: var(--muted); margin-bottom: 4px;
}
.k-cal-dow > div { text-align: center; font-weight: 700; }
.k-cal-cell {
  aspect-ratio: 1/1; border: 0; background: transparent;
  color: var(--ink); font-weight: 500; font-size: 13px;
  position: relative; border-radius: 2px;
}
.k-cal-cell[disabled] { cursor: default; }
.k-cal-cell:not([disabled]):hover { background: var(--subtle); }
.k-cal-cell .dot {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
}
.k-cal-cell.has-event { font-weight: 700; }
.k-cal-cell.picked {
  background: var(--accent); color: #fff; font-weight: 700;
}
.k-cal-detail {
  margin-top: 14px; padding: 12px; background: var(--subtle);
  border-left: 4px solid var(--accent);
}
.k-cal-detail.no-event { border-left-color: var(--line); color: var(--muted); font-size: 13px; }
.k-cal-detail-date {
  font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px;
}
.k-cal-detail-label { font-weight: 700; font-size: 14px; margin-top: 2px; }

/* ── Staff grid ── */
.k-staff { padding: 0 20px 28px; }
.k-staff-grid {
  margin-top: 16px;
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.k-staff-card {
  background: var(--card); border: 1px solid var(--line);
  padding: 14px; position: relative; cursor: pointer;
  transition: all 0.18s;
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 180px;
}
.k-staff-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 59, 122, 0.18);
}
.k-staff-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700; font-size: 20px;
  margin-bottom: 12px;
}
.k-staff-name {
  font-weight: 700; font-size: 13px; line-height: 1.3;
  font-family: 'Source Serif 4', Georgia, serif;
}
.k-staff-role { font-size: 11px; color: var(--muted); margin-top: 4px; }
.k-staff-subj { font-size: 11px; color: var(--accent); margin-top: 6px; font-weight: 600; }
.k-staff-quote {
  /* Hover/focus state — uses :hover but also shows for keyboard focus */
  position: absolute; top: calc(100% + 8px); left: -4px; right: -4px; z-index: 10;
  background: var(--accent); color: #fff;
  padding: 12px 14px;
  font-size: 12px; line-height: 1.5; font-style: italic;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  font-family: 'Source Serif 4', Georgia, serif;
  display: none;
}
.k-staff-quote::before {
  content: ''; position: absolute; top: -6px; left: 24px;
  width: 12px; height: 12px; background: var(--accent); transform: rotate(45deg);
}
.k-staff-card:hover .k-staff-quote,
.k-staff-card:focus-within .k-staff-quote { display: block; }

/* ── Footer ── */
.k-footer {
  background: var(--footer); color: var(--footer-ink);
  padding: 22px 20px; font-family: 'Inter', system-ui, sans-serif; font-size: 12px;
}
.k-footer-row {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.k-footer-brand { display: flex; align-items: center; gap: 12px; }
.k-footer-brand-logo {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96) 60%, rgba(255,255,255,0) 75%);
  padding: 2px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.k-footer-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.k-footer-name { font-weight: 700; font-size: 13px; }
.k-footer-addr { opacity: 0.7; }
.k-footer-copy { opacity: 0.7; }

/* ── Image placeholders (striped) ── */
.k-placeholder {
  width: 100%; aspect-ratio: 16/9; /* default; parent class can override */
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.k-placeholder.t-blue {
  background: repeating-linear-gradient(45deg, #dbe6f5 0 12px, #bdd0eb 12px 24px);
  color: #1d3a73;
}
.k-placeholder.t-red {
  background: repeating-linear-gradient(45deg, #f5dada 0 12px, #ecbcbc 12px 24px);
  color: #7a1f1f;
}
.k-placeholder.t-yellow {
  background: repeating-linear-gradient(45deg, #f8eccd 0 12px, #eed99a 12px 24px);
  color: #7a5a14;
}
.k-placeholder.t-light {
  background: repeating-linear-gradient(45deg, #f1efe9 0 12px, #e2dfd5 12px 24px);
  color: #6b6555;
}
.k-placeholder.t-navy {
  background: repeating-linear-gradient(45deg, #162848 0 12px, #1c3357 12px 24px);
  color: #9cb6dd;
}
.k-placeholder > span {
  background: rgba(255,255,255,0.6); padding: 4px 10px; border-radius: 999px;
}
.klasik.dark .k-placeholder.t-blue { background: repeating-linear-gradient(45deg, #162848 0 12px, #1c3357 12px 24px); color: #9cb6dd; }
.klasik.dark .k-placeholder.t-light { background: repeating-linear-gradient(45deg, #1d2536 0 12px, #232c40 12px 24px); color: #8b95a8; }

/* ── Flag mark (inline SVG sizing) ── */
.k-flag { display: block; border-radius: 2px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────
 * Tablet breakpoint: ≥ 700px
 * ───────────────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .k-ribbon { padding: 8px 32px; flex-wrap: nowrap; }
  .k-masthead { padding: 22px 32px; }
  .k-masthead-title { font-size: 28px; }
  .k-masthead-logo { width: 64px; height: 64px; }
  .k-nav { padding: 0 32px; }
  .k-hero { padding: 32px; grid-template-columns: 1.4fr 1fr; }
  .k-hero-headline { font-size: 26px; }
  .k-news-cal { padding: 36px 32px; grid-template-columns: 1.5fr 1fr; }
  .k-secthead h2 { font-size: 24px; }
  .k-news-sub { grid-template-columns: 1fr 1fr; }
  .k-news-feat { grid-template-columns: 1fr 1fr; }
  .k-news-feat .k-placeholder { aspect-ratio: 4/3; }
  .k-staff { padding: 0 32px 36px; }
  .k-staff-grid { grid-template-columns: repeat(3, 1fr); }
  .k-stats {
    margin: 0 32px; padding: 24px 32px; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .k-stats::before { width: 8px; }
  .k-stats::after { left: 8px; width: 4px; }
  .k-stat-n { font-size: 40px; }
  .k-stat-l { font-size: 13px; letter-spacing: 1.4px; }
  .k-footer { padding: 24px 32px; }
  .k-footer-row { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
}

/* ─────────────────────────────────────────────────────────────────
 * Desktop breakpoint: ≥ 1024px (Klasik's native intended layout)
 * ───────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .k-ribbon { padding: 8px 56px; }
  .k-masthead { padding: 22px 56px; }
  .k-masthead-title { font-size: 32px; }
  .k-masthead-logo { width: 66px; height: 66px; }
  .k-nav { padding: 0 56px; }
  .k-hero { padding: 32px 56px; gap: 28px; }
  .k-hero-headline { font-size: 28px; }
  .k-news-cal { padding: 36px 56px; gap: 28px; }
  .k-staff { padding: 0 56px 36px; }
  .k-staff-grid { grid-template-columns: repeat(6, 1fr); }
  .k-stats { margin: 0 56px; }
  .k-footer { padding: 24px 56px; }
}

/* ─────────────────────────────────────────────────────────────────
 * Mobile-specific overrides (< 700px)
 * ───────────────────────────────────────────────────────────────── */
@media (max-width: 699px) {
  .k-ribbon { font-size: 11px; }
  .k-ribbon-right span:not(.k-ribbon-toggle) { display: none; }
  .k-masthead { gap: 12px; }
  .k-masthead-cta { align-items: flex-end; }
  .k-masthead-cta .k-masthead-lang { display: none; } /* duplicated in ribbon */
  .k-nav { padding: 0; }
  .k-hamburger { display: inline-flex; }
  .k-nav-items {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--card); border-bottom: 1px solid var(--line);
    overflow: hidden; max-height: 0; transition: max-height 0.25s;
    z-index: 20;
  }
  .k-nav-items.open { max-height: 640px; }
  .k-nav a { padding: 14px 20px; border-bottom: 1px solid var(--line); }
  .k-nav a.active { background: var(--accent); color: #fff; }
  .k-nav-status { display: none; }
  .k-nav-drop { display: none; }
  .k-caret { display: none; }
  .k-staff-quote {
    /* On mobile, position quote relative inside the card (no popup) */
    position: relative; top: auto; left: auto; right: auto; margin-top: 12px;
  }
  .k-staff-quote::before { display: none; }
  .k-staff-card { min-height: 0; }
  .k-staff-card.show-quote .k-staff-quote { display: block; }
}
