/* ============================================================
   FORTUNE GUARD — style.css
   Golden temple · Gem match-3 · Premium dark gold theme
   ============================================================ */

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body {
  font-family: 'Noto Sans Bengali', 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #100807;
  color: #c98d5a;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #22110f; }
::-webkit-scrollbar-thumb { background: #6f3b24; border-radius: 3px; }

/* ── BACKGROUND ──────────────────────────────────────────── */
.page-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 50% at 50% 20%, rgba(180,120,0,0.3) 0%, transparent 65%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(80,40,0,0.5) 0%, transparent 60%),
    linear-gradient(175deg, #22110f 0%, #100807 50%, #100807 100%);
}
.page-rays {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: conic-gradient(
    from 270deg at 50% -5%,
    transparent 0deg,   rgba(255,215,0,0.04) 6deg,
    transparent 12deg,  rgba(255,215,0,0.03) 20deg,
    transparent 28deg,  rgba(255,215,0,0.04) 36deg,
    transparent 44deg
  );
}

/* ── HEADER ──────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 24px;
  background: rgba(13,5,0,0.95);
  border-bottom: 2px solid rgba(255,215,0,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
header::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #ffcf5c, #c98d5a, #ffcf5c, transparent);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900; letter-spacing: 2px;
  color: #ffcf5c;
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}
.logo-icon { font-size: 1.4rem; filter: drop-shadow(0 0 8px rgba(255,215,0,0.8)); }
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-size: .8rem; font-weight: 600; letter-spacing: .5px;
  color: rgba(245,230,192,0.65); text-decoration: none;
  padding: 6px 11px; border-radius: 8px; transition: all .18s;
}
nav a:hover { color: #ffcf5c; background: rgba(255,215,0,0.1); }

/* Lang switcher */
#lang-switcher { position: relative; margin-left: 4px; }
#lang-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 600;
  color: rgba(245,230,192,0.65); background: none; border: none;
  padding: 6px 10px; border-radius: 8px; cursor: pointer; transition: all .18s;
}
#lang-btn:hover { color: #ffcf5c; background: rgba(255,215,0,0.1); }
#lang-btn .arrow { font-size: 10px; opacity: .6; transition: transform .18s; }
#lang-btn.open .arrow { transform: rotate(180deg); }
#lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #22110f; border: 1px solid rgba(255,215,0,0.3);
  border-radius: 14px; overflow: hidden; z-index: 200; min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,.8), 0 0 20px rgba(255,215,0,0.1);
}
#lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; font-size: .85rem; font-weight: 600;
  color: rgba(245,230,192,0.7); cursor: pointer; transition: background .12s;
}
.lang-option:not(:last-child) { border-bottom: 1px solid rgba(255,215,0,0.1); }
.lang-option:hover { background: rgba(255,215,0,0.1); color: #ffcf5c; }
.lang-option.active { color: #ffcf5c; font-weight: 700; }
.lang-flag { font-size: 17px; }

/* ── GAME SECTION ────────────────────────────────────────── */
#game-section {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 12px 64px; gap: 12px;
}

/* ── HUD BAR ─────────────────────────────────────────────── */
#hud {
  display: flex; align-items: stretch;
  width: 100%; max-width: 700px;
  background: rgba(26,10,0,0.92);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.6), 0 0 20px rgba(255,215,0,0.06);
}
.hud-cell {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px; padding: 10px 4px;
  border-right: 1px solid rgba(255,215,0,0.12);
}
.hud-cell:last-child { border-right: none; }
.hud-label {
  font-size: .48rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,215,0,0.45);
  font-family: 'Cinzel', serif;
}
.hud-val {
  font-family: 'Cinzel', serif; font-size: 1.15rem; font-weight: 700;
  color: #ffcf5c; letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
#hud-controls {
  display: flex; align-items: center; gap: 5px;
  padding: 0 12px; border-left: 1px solid rgba(255,215,0,0.12); flex-shrink: 0;
}
.diff-btn {
  font-family: 'Cinzel', serif; font-size: .65rem; font-weight: 700;
  padding: 5px 10px; border-radius: 20px;
  background: none; border: 1px solid rgba(255,215,0,0.2);
  color: rgba(245,230,192,0.5); cursor: pointer; transition: all .18s;
}
.diff-btn.active, .diff-btn:hover {
  background: linear-gradient(135deg, #d54a23, #ffcf5c);
  color: #22110f; border-color: #ffcf5c;
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}
#start-btn {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif; font-size: .85rem; font-weight: 700;
  padding: 8px 14px; white-space: nowrap;
  background: linear-gradient(135deg, #6f3b24, #ffcf5c, #d54a23);
  color: #22110f; border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 0 18px rgba(255,215,0,0.4); transition: all .15s;
  letter-spacing: .5px;
}
#start-btn:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(255,215,0,0.6); }
#start-btn:active { transform: scale(.97); }

/* ── GAME LAYOUT ─────────────────────────────────────────── */
#game-layout {
  display: flex; align-items: flex-start; gap: 14px;
  width: 100%; max-width: 700px;
}

/* ── GARUDA PANEL (left) ─────────────────────────────────── */
#garuda-panel {
  width: 130px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.garuda-img {
  width: 100%; height: auto;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
  animation: garudaFloat 4s ease-in-out infinite;
}
@keyframes garudaFloat {
  0%,100% { transform: translateY(0) rotate(0.5deg); }
  50%      { transform: translateY(-8px) rotate(-0.5deg); }
}
.score-badge {
  text-align: center;
  background: rgba(26,10,0,0.92);
  border: 1px solid rgba(255,215,0,0.28);
  border-radius: 12px; padding: 8px 12px;
  width: 100%;
}
.score-badge-label {
  font-family: 'Cinzel', serif; font-size: .48rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,215,0,0.5);
  display: block; margin-bottom: 2px;
}
.score-badge-val {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700;
  color: #ffcf5c; text-shadow: 0 0 10px rgba(255,215,0,0.6);
}
/* Hint & shuffle buttons */
.panel-btn {
  width: 100%; font-size: .72rem; font-weight: 700; padding: 8px 6px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25); border-radius: 10px;
  color: rgba(245,230,192,0.8); cursor: pointer; transition: all .18s;
  text-align: center; letter-spacing: .3px;
}
.panel-btn:hover { background: rgba(255,215,0,0.18); color: #ffcf5c; }
.panel-btn:disabled { opacity: .35; cursor: default; }

/* ── BOARD AREA ──────────────────────────────────────────── */
#board-wrap {
  flex: 1; position: relative;
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(255,215,0,0.35);
  box-shadow: 0 8px 40px rgba(0,0,0,.75), 0 0 40px rgba(255,215,0,0.1);
  background: #100807;
  min-width: 0;
}
#bg-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
#game-canvas {
  display: block; width: 100%; height: 100%;
  position: relative; z-index: 1;
  cursor: pointer; touch-action: none;
  -webkit-user-select: none; user-select: none;
}
/* gold corner ornaments */
#board-wrap::before {
  content: '✦';
  position: absolute; top: 6px; left: 10px;
  font-size: 14px; color: rgba(255,215,0,0.25); z-index: 5; pointer-events: none;
}
#board-wrap::after {
  content: '✦';
  position: absolute; top: 6px; right: 10px;
  font-size: 14px; color: rgba(255,215,0,0.25); z-index: 5; pointer-events: none;
}

/* ── SCORE POPUP (canvas overlay) ───────────────────────── */
#score-flash {
  position: absolute; left: 50%; top: 28%;
  transform: translateX(-50%);
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: clamp(1rem, 3vw, 1.4rem); font-weight: 700;
  color: #ffcf5c; pointer-events: none; opacity: 0; z-index: 20;
  white-space: nowrap; text-shadow: 0 0 16px rgba(255,215,0,0.9);
  letter-spacing: 1px;
}
#score-flash.show { animation: flashRise 1.1s ease-out forwards; }
@keyframes flashRise {
  0%   { opacity: 1; transform: translateX(-50%) scale(.8); }
  20%  { opacity: 1; transform: translateX(-50%) scale(1.1); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-60px); }
}

/* Level up banner */
#level-banner {
  position: absolute; left: 50%; top: 40%;
  transform: translateX(-50%);
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem); font-weight: 900; letter-spacing: 3px;
  color: #ffcf5c; pointer-events: none; opacity: 0; z-index: 20;
  text-shadow: 0 0 28px rgba(255,215,0,1);
}
#level-banner.show { animation: bannerPop 2s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes bannerPop {
  0%   { opacity: 0; transform: translateX(-50%) scale(.4); }
  15%  { opacity: 1; transform: translateX(-50%) scale(1.15); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scale(.9); }
}

/* ── OVERLAY ─────────────────────────────────────────────── */
#overlay {
  position: absolute; inset: 0; z-index: 30;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 24px;
  background: rgba(5,2,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  transition: opacity .3s;
}
#overlay.hidden { opacity: 0; pointer-events: none; }
/* decorative lines */
.ol-rule {
  display: flex; align-items: center; gap: 10px;
  width: 100%; justify-content: center;
}
.ol-line     { flex: 1; max-width: 60px; height: 1px; background: linear-gradient(90deg, transparent, #ffcf5c); }
.ol-line.r   { background: linear-gradient(90deg, #ffcf5c, transparent); }
.ol-deco-chr { font-size: .9rem; color: rgba(255,215,0,0.6); }
.ol-icon {
  font-size: 4rem; line-height: 1;
  filter: drop-shadow(0 0 16px rgba(255,215,0,0.6));
  animation: olFloat 3s ease-in-out infinite;
}
@keyframes olFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.ol-title {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 900; letter-spacing: 2px;
  color: #ffcf5c; text-align: center;
  text-shadow: 0 0 24px rgba(255,215,0,0.8);
}
.ol-sub {
  font-size: .75rem; font-weight: 600; letter-spacing: 2px;
  color: rgba(255,215,0,0.55); text-align: center;
}
.ol-body {
  font-size: .88rem; color: rgba(245,230,192,0.7);
  text-align: center; max-width: 320px; line-height: 1.65;
  font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
}
.ol-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ol-chip {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px;
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25);
  border-radius: 10px; min-width: 72px;
}
.chip-l { font-family: 'Cinzel', serif; font-size: .45rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,215,0,0.45); }
.chip-v { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: #ffcf5c; }
.new-best-badge {
  font-family: 'Cinzel', serif; font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(255,215,0,0.12); border: 1px solid rgba(255,215,0,0.35); color: #ffcf5c;
}
.ol-btn {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif; font-size: .95rem; font-weight: 700;
  letter-spacing: 1px; padding: 13px 40px; margin-top: 4px;
  background: linear-gradient(135deg, #6f3b24, #ffcf5c, #d54a23);
  color: #22110f; border: none; border-radius: 18px; cursor: pointer;
  box-shadow: 0 0 24px rgba(255,215,0,0.4); transition: all .18s;
}
.ol-btn:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,215,0,0.65); }
.ol-btn:active { transform: scale(.97); }

/* ── ABOUT / LEGAL PAGES ─────────────────────────────────── */
.legal-page { display: flex; flex-direction: column; min-height: 100dvh; }
.legal-hdr {
  background: rgba(13,5,0,0.96); border-bottom: 1px solid rgba(255,215,0,0.18);
  padding: 20px 24px; text-align: center; position: relative; z-index: 1;
}
.legal-hdr-link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.legal-hdr-icon { font-size: 1.3rem; filter: drop-shadow(0 0 6px rgba(255,215,0,0.6)); }
.legal-hdr-name {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif; font-size: 1.1rem; font-weight: 700;
  color: #ffcf5c; text-shadow: 0 0 14px rgba(255,215,0,0.5);
}
.legal-back-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
  font-size: .82rem; font-weight: 600;
  color: #6f3b24; text-decoration: none; transition: color .18s;
}
.legal-back-link:hover { color: #ffcf5c; }
.legal-tools { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:10px; }
.legal-tools .legal-back-link { margin-top:0; }
.legal-tools #lang-dropdown { top:42px; }
.legal-body-wrap {
  flex: 1; position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; padding: 50px 24px 72px; width: 100%;
}
.legal-body-wrap h1 {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 900; letter-spacing: 2px;
  color: #ffcf5c; margin-bottom: 6px;
}
.legal-updated { font-size: .82rem; color: #6f3b24; margin-bottom: 42px; }
.legal-body-wrap h3 {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif;
  font-size: .92rem; font-weight: 700; letter-spacing: 1px;
  color: #d54a23; margin: 34px 0 10px;
}
.legal-body-wrap h3:first-of-type { margin-top: 0; }
.legal-body-wrap p {
  font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
  font-size: .92rem; line-height: 1.82; color: #c98d5a;
}
.legal-lead { margin:18px 0 36px; padding:18px 20px; border-left:3px solid #ffcf5c; background:rgba(255,215,0,.05); }
.guardian-code { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; background:rgba(255,215,0,.14); border:1px solid rgba(255,215,0,.14); }
.guardian-code article { min-width:0; display:grid; grid-template-columns:42px minmax(0,1fr); gap:16px; padding:25px; background:rgba(13,7,0,.96); }
.code-no { width:34px; height:34px; display:grid; place-items:center; color:#22110f; background:#d54a23; font-size:.7rem; font-weight:900; }
.guardian-code h3,.data-vault h3 { margin:0 0 8px; color:#ffcf5c; font-size:1rem; letter-spacing:0; }
.guardian-code p,.data-vault p { margin:0; }
.data-vault { border-top:3px solid #d54a23; }
.data-vault article { display:grid; grid-template-columns:170px minmax(0,1fr) 110px; gap:24px; align-items:start; padding:24px 12px; border-bottom:1px solid rgba(255,215,0,.15); }
.vault-place { color:#6f3b24; font-size:.72rem; font-weight:800; text-transform:uppercase; overflow-wrap:anywhere; }
.about-panels { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid rgba(255,215,0,.2); border-left:1px solid rgba(255,215,0,.15); }
.about-panels article { padding:28px; border-right:1px solid rgba(255,215,0,.15); border-bottom:1px solid rgba(255,215,0,.15); }
.about-panels h3 { margin-top:0; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; margin-top:38px; border:1px solid rgba(255,215,0,.2); }
.contact-grid a { min-width:0; min-height:180px; display:flex; flex-direction:column; justify-content:space-between; gap:16px; padding:26px; border-right:1px solid rgba(255,215,0,.16); border-bottom:1px solid rgba(255,215,0,.16); text-decoration:none; }
.contact-grid a:nth-child(2n) { border-right:0; }
.contact-grid span,.contact-business span { color:#d54a23; font-size:.68rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; }
.contact-grid strong { color:#c98d5a; overflow-wrap:anywhere; }
.contact-grid small { color:#c98d5a; line-height:1.6; }
.contact-business { display:grid; grid-template-columns:.65fr 1.35fr auto; gap:24px; align-items:center; margin-top:34px; padding:25px; border-left:4px solid #d54a23; background:rgba(20,12,0,.88); }
.contact-business strong,.contact-business span { display:block; }
.contact-business p { margin:4px 0 0; }
.contact-business a { color:#ffcf5c; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 1;
  background: rgba(7,3,0,0.98); border-top: 1px solid rgba(255,215,0,0.1);
  padding: 44px 24px 36px; margin-top: 52px;
}
.footer-inner {
  max-width: 580px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { font-size: 1.2rem; filter: drop-shadow(0 0 6px rgba(255,215,0,0.5)); }
.footer-logo-name {
  font-family: 'Cinzel', 'Noto Sans Bengali', serif; font-size: 1.05rem; font-weight: 700;
  color: #ffcf5c;
}
.footer-nav { display: flex; align-items: center; gap: 8px; font-size: .84rem; }
.footer-nav a { color: #6f3b24; text-decoration: none; transition: color .18s; }
.footer-nav a:hover { color: #ffcf5c; }
.footer-dot { color: #22110f; }
.footer-badge-row { display: flex; justify-content: center; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 2.5px solid rgba(255,215,0,0.45);
  font-family: 'Cinzel', serif; font-size: .9rem; font-weight: 700;
  color: rgba(255,215,0,0.8);
}
.footer-disc { font-size: .76rem; line-height: 1.72; color: #6f3b24; max-width: 490px; }
.footer-copy { font-size: .72rem; color: #22110f; margin-top: 4px; }
.footer-owner { margin:2px 0 0; color:#c98d5a; font-size:.78rem; font-weight:700; }
.footer-address { max-width:620px; margin:-10px 0 0; color:#6f3b24; font-size:.72rem; line-height:1.6; overflow-wrap:anywhere; }
.site-info-grid { position:relative; z-index:1; width:min(1120px,calc(100% - 32px)); margin:48px auto 0; display:grid; grid-template-columns:1fr 1fr .8fr; border-top:1px solid rgba(255,215,0,.25); border-bottom:1px solid rgba(255,215,0,.16); }
.site-info-grid article,.site-info-grid aside { min-width:0; padding:32px clamp(20px,3vw,38px); border-right:1px solid rgba(255,215,0,.15); }
.site-info-grid > :last-child { border-right:0; }
.info-index { color:#d54a23; font-size:.68rem; font-weight:800; letter-spacing:2px; }
.site-info-grid h2 { margin:12px 0; color:#c98d5a; font-family:Georgia,'Times New Roman',serif; font-size:1.35rem; letter-spacing:0; }
.site-info-grid p { margin:0; color:#c98d5a; line-height:1.75; }
.site-info-grid aside { display:flex; flex-direction:column; align-items:flex-start; }
.site-info-grid aside a { margin:5px 0; color:#ffcf5c; text-decoration-color:#6f3b24; text-underline-offset:4px; overflow-wrap:anywhere; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  header { padding: 0 12px; }
  nav a { display: none; } nav a.always { display: block; }
  #game-section { padding: 12px 8px 48px; gap: 9px; }
  #hud { flex-wrap: wrap; }
  .hud-cell { min-width: calc(33%); }
  #hud-controls { width: 100%; justify-content: center; border-left: none; border-top: 1px solid rgba(255,215,0,.1); padding: 8px; }
  #game-layout { gap: 8px; }
  #garuda-panel { width: 90px; }
  .legal-body-wrap { padding: 32px 14px 56px; }
  footer { padding: 14px; flex-direction: column; }
  .site-info-grid { grid-template-columns:1fr; }
  .site-info-grid article,.site-info-grid aside { border-right:0; border-bottom:1px solid rgba(255,215,0,.15); }
  .legal-tools { flex-wrap:wrap; }
  .guardian-code,.about-panels,.contact-grid { grid-template-columns:1fr; }
  .contact-grid a { border-right:0; }
  .data-vault article { grid-template-columns:1fr; gap:8px; }
  .contact-business { grid-template-columns:1fr; }
}
@media (max-width: 420px) {
  #garuda-panel { display: none; }
  .logo { font-size: 1rem; }
}
