/* ══════════════════════════════════════════
   Scavenger Hunt Gallery — shg-style.css
   Disney-inspired: magical midnight navy + gold
══════════════════════════════════════════ */

:root {
  --shg-navy:   #0d1b3e;
  --shg-gold:   #c9a84c;
  --shg-gold-l: #f0d080;
  --shg-white:  #ffffff;
  --shg-cream:  #fdf8ef;
  --shg-muted:  #7a8aaa;
  --shg-border: #d4c99a;
  --shg-radius: 14px;
  --shg-font:   'Georgia', 'Times New Roman', serif;
  --shg-sans:   'Trebuchet MS', 'Gill Sans', sans-serif;
}

/* ── SHARED ── */
#shg-upload-wrap,
#shg-gallery-wrap {
  font-family: var(--shg-font);
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 12px 48px;
  color: var(--shg-navy);
}

.shg-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--shg-navy);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}

.shg-subtitle {
  font-size: 15px;
  color: var(--shg-muted);
  font-style: italic;
  margin: 0 0 20px;
}

/* ── UPLOAD CARD ── */
.shg-upload-card {
  background: var(--shg-cream);
  border: 1.5px solid var(--shg-border);
  border-radius: var(--shg-radius);
  padding: 32px 36px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(13,27,62,0.07);
}

.shg-upload-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 12px;
}

.shg-upload-card .shg-title,
.shg-upload-card .shg-subtitle {
  text-align: center;
}

/* ── FORM FIELDS ── */
.shg-field {
  margin-bottom: 18px;
}

.shg-field label {
  display: block;
  font-family: var(--shg-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--shg-navy);
  margin-bottom: 6px;
}

.shg-field input[type="text"],
.shg-field input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--shg-border);
  border-radius: 8px;
  font-family: var(--shg-font);
  font-size: 15px;
  color: var(--shg-navy);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.shg-field input[type="text"]:focus,
.shg-field input[type="number"]:focus {
  outline: none;
  border-color: var(--shg-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ── DROP ZONE ── */
.shg-drop-zone {
  position: relative;
  border: 2px dashed var(--shg-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shg-drop-zone:hover,
.shg-drop-zone.shg-drag-over {
  border-color: var(--shg-gold);
  background: #fffbf0;
}

.shg-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.shg-drop-inner {
  text-align: center;
  padding: 24px;
  pointer-events: none;
}

.shg-drop-icon { font-size: 32px; margin-bottom: 8px; }

.shg-drop-inner p {
  font-size: 14px;
  color: var(--shg-navy);
  margin: 0 0 4px;
}

.shg-drop-inner span {
  font-size: 11px;
  color: var(--shg-muted);
  font-family: var(--shg-sans);
}

#shg-preview {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* ── MESSAGES ── */
.shg-msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
  font-family: var(--shg-sans);
}

.shg-msg-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}

.shg-msg-success {
  background: #eafaf1;
  color: #1e8449;
  border: 1px solid #a9dfbf;
}

/* ── SUBMIT BUTTON ── */
.shg-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--shg-navy);
  color: var(--shg-gold-l);
  border: none;
  border-radius: 8px;
  font-family: var(--shg-font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}

.shg-submit-btn:hover {
  background: #162a5e;
  transform: translateY(-1px);
}

.shg-submit-btn:active {
  transform: translateY(0);
}

.shg-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── SUCCESS STATE ── */
.shg-success-wrap {
  text-align: center;
  padding: 12px 0;
}

.shg-success-icon { font-size: 48px; margin-bottom: 12px; }

.shg-success-wrap h3 {
  font-size: 22px;
  color: var(--shg-navy);
  margin-bottom: 6px;
}

.shg-success-wrap p {
  color: var(--shg-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.shg-success-wrap a { color: var(--shg-gold); }

.shg-success-wrap img {
  max-width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid var(--shg-border);
}

/* ── GALLERY HEADER ── */
.shg-gallery-header {
  margin-bottom: 24px;
}

.shg-gallery-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.shg-count {
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-muted);
  font-style: italic;
}

.shg-gallery-controls select {
  padding: 7px 12px;
  border: 1.5px solid var(--shg-border);
  border-radius: 20px;
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-navy);
  background: #fff;
  cursor: pointer;
}

.shg-refresh-btn {
  padding: 7px 16px;
  background: transparent;
  border: 1.5px solid var(--shg-border);
  border-radius: 20px;
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-navy);
  cursor: pointer;
  transition: all 0.15s;
}

.shg-refresh-btn:hover {
  border-color: var(--shg-gold);
  color: var(--shg-gold);
}

/* ── GALLERY GRID ── */
.shg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.shg-grid-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: #e8edf5;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid var(--shg-border);
}

.shg-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,27,62,0.15);
}

.shg-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.shg-grid-item:hover img {
  transform: scale(1.04);
}

.shg-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,27,62,0.85));
  padding: 28px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shg-item-clue {
  font-family: var(--shg-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--shg-gold-l);
}

.shg-item-name {
  font-size: 13px;
  color: #fff;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── LOADING / EMPTY ── */
.shg-loading,
.shg-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--shg-muted);
  font-size: 15px;
  font-style: italic;
}

/* ── LIGHTBOX ── */
.shg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,35,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.shg-lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.shg-lightbox-inner img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid rgba(201,168,76,0.4);
  display: block;
  margin: 0 auto 14px;
}

.shg-lightbox-meta {
  color: #cdd4e8;
  font-size: 15px;
  font-style: italic;
}

.shg-lightbox-meta strong {
  color: var(--shg-gold-l);
  font-style: normal;
}

.shg-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--shg-navy);
  border: 1.5px solid var(--shg-gold);
  color: var(--shg-gold-l);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.shg-lightbox-close:hover {
  background: #1a3070;
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .shg-upload-card { padding: 20px 16px; }
  .shg-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .shg-title { font-size: 20px; }
}

/* ── PROGRESS BAR ── */
.shg-progress-wrap {
  margin-bottom: 14px;
}

.shg-progress-track {
  background: #e8edf5;
  border-radius: 99px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.shg-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--shg-navy), var(--shg-gold));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.shg-progress-label {
  font-family: var(--shg-sans);
  font-size: 12px;
  color: var(--shg-muted);
  display: block;
  text-align: center;
}

/* ── SIZE INFO (shown after compression) ── */
.shg-size-info {
  font-family: var(--shg-sans);
  font-size: 12px;
  color: #2e7d32;
  text-align: center;
  margin: 6px 0 0;
}

/* ── COMPRESSING SPINNER TEXT ── */
.shg-compressing {
  font-family: var(--shg-sans);
  font-size: 14px;
  color: var(--shg-muted);
  text-align: center;
  padding: 32px 0;
  font-style: italic;
}

/* ════════════════════════════════════════
   LEADERBOARD STYLES
════════════════════════════════════════ */

#shg-leaderboard-wrap {
  font-family: var(--shg-font);
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 12px 48px;
  color: var(--shg-navy);
}

.shg-lb-header {
  text-align: center;
  margin-bottom: 28px;
}

.shg-lb-trophy {
  font-size: 52px;
  margin-bottom: 10px;
}

.shg-lb-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 16px;
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-muted);
}

.shg-lb-legend span {
  background: var(--shg-cream);
  border: 1px solid var(--shg-border);
  border-radius: 20px;
  padding: 4px 14px;
}

/* ── SUMMARY BAR ── */
.shg-lb-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.shg-lb-stat {
  background: var(--shg-cream);
  border: 1px solid var(--shg-border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.shg-lb-stat span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--shg-navy);
}

.shg-lb-stat small {
  font-family: var(--shg-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--shg-muted);
}

/* ── PODIUM ── */
.shg-lb-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  height: 160px;
}

.shg-podium-slot {
  flex: 1;
  max-width: 180px;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 8px;
  text-align: center;
}

.shg-podium-1 {
  background: linear-gradient(to top, #c9a84c, #f0d080);
  height: 160px;
  border: 2px solid #c9a84c;
}

.shg-podium-2 {
  background: linear-gradient(to top, #9ea8b8, #ccd4e0);
  height: 120px;
  border: 2px solid #9ea8b8;
}

.shg-podium-3 {
  background: linear-gradient(to top, #b87333, #d4956a);
  height: 90px;
  border: 2px solid #b87333;
}

.shg-podium-medal {
  font-size: 26px;
  margin-bottom: 4px;
}

.shg-podium-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--shg-navy);
  word-break: break-word;
  line-height: 1.3;
  margin-bottom: 4px;
}

.shg-podium-pts {
  font-family: var(--shg-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--shg-navy);
}

.shg-podium-empty {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
}

/* ── LEADERBOARD TABLE ── */
.shg-lb-table-wrap {
  background: #fff;
  border: 1px solid var(--shg-border);
  border-radius: 12px;
  overflow: hidden;
}

.shg-lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.shg-lb-table thead tr {
  background: var(--shg-navy);
  color: var(--shg-gold-l);
}

.shg-lb-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--shg-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.shg-lb-table tbody tr {
  border-bottom: 1px solid #edf0f5;
  transition: background 0.12s;
}

.shg-lb-table tbody tr:last-child { border-bottom: none; }
.shg-lb-table tbody tr:hover { background: #f8f9fd; }

.shg-lb-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
}

.shg-lb-rank {
  font-family: var(--shg-sans);
  font-size: 12px;
  color: var(--shg-muted);
  font-weight: 700;
  width: 36px;
}

.shg-lb-name { font-weight: 600; color: var(--shg-navy); }

.shg-lb-points { color: var(--shg-navy); }
.shg-lb-points strong { font-size: 16px; color: #1a3a6b; }

.shg-lb-firsts { color: #b8860b; font-weight: 600; font-family: var(--shg-sans); font-size: 13px; }
.shg-lb-clues  { font-family: var(--shg-sans); font-size: 13px; color: var(--shg-muted); }

/* Top 3 row highlights */
.shg-lb-top-1 { background: #fffbea !important; }
.shg-lb-top-2 { background: #f8f9fb !important; }
.shg-lb-top-3 { background: #fff7f2 !important; }

/* ── GALLERY FIRST-FIND RIBBON ── */
.shg-grid-item.shg-first-find {
  border-color: var(--shg-gold) !important;
}

.shg-first-ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--shg-gold);
  color: var(--shg-navy);
  font-family: var(--shg-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── UPLOAD PAGE — POINTS BADGE ── */
.shg-points-badge {
  text-align: center;
  background: var(--shg-navy);
  color: var(--shg-gold-l);
  font-family: var(--shg-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.shg-field-hint {
  display: block;
  font-family: var(--shg-sans);
  font-size: 11px;
  color: var(--shg-muted);
  margin-top: 4px;
  font-style: italic;
}

/* ── POINTS CELEBRATION ── */
.shg-pts-celebration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.shg-pts-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--shg-gold);
  line-height: 1;
}

.shg-pts-label {
  font-family: var(--shg-sans);
  font-size: 14px;
  color: var(--shg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shg-first-badge {
  background: var(--shg-navy);
  color: var(--shg-gold-l);
  font-family: var(--shg-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 4px;
}

/* ── SUCCESS LINKS ── */
.shg-success-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.shg-link-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--shg-sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: var(--shg-cream);
  border: 1.5px solid var(--shg-border);
  color: var(--shg-navy);
  transition: all 0.15s;
}

.shg-link-btn:hover { background: #f0e8d0; border-color: var(--shg-gold); }
.shg-link-gold { background: var(--shg-navy); color: var(--shg-gold-l) !important; border-color: var(--shg-navy); }
.shg-link-gold:hover { background: #162a5e; }

.shg-submit-outline {
  background: transparent !important;
  border: 2px solid var(--shg-navy) !important;
  color: var(--shg-navy) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .shg-lb-podium { height: auto; flex-direction: row; align-items: flex-end; }
  .shg-lb-summary { grid-template-columns: repeat(3,1fr); }
  .shg-lb-table thead th:nth-child(4),
  .shg-lb-table tbody td:nth-child(4) { display: none; }
  .shg-podium-1 { height: 120px; }
  .shg-podium-2 { height: 90px; }
  .shg-podium-3 { height: 70px; }
}

/* ════════════════════════════════════════
   INSTAGRAM SHARE STYLES v5.0
════════════════════════════════════════ */

.shg-instagram-wrap {
  margin: 16px 0;
  padding: 16px;
  background: linear-gradient(135deg, #f9f0ff, #fff0f5);
  border: 1.5px solid #e0c8f0;
  border-radius: 12px;
  text-align: center;
}

.shg-instagram-label {
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-muted);
  margin: 0 0 10px;
}

.shg-instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: var(--shg-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 280px;
}

.shg-instagram-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.shg-instagram-hint {
  font-family: var(--shg-sans);
  font-size: 12px;
  color: var(--shg-muted);
  margin: 10px 0 0;
  line-height: 1.6;
}

.shg-caption-box {
  background: #fff;
  border: 1px solid #e0c8f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--shg-navy);
  margin: 8px 0;
  text-align: left;
  line-height: 1.6;
  word-break: break-word;
}

.shg-copy-btn {
  background: var(--shg-navy);
  color: var(--shg-gold-l);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--shg-sans);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 6px;
}

.shg-copy-btn:hover { background: #162a5e; }

/* ════════════════════════════════════════
   LANDING PAGE STYLES v5.0
════════════════════════════════════════ */

#shg-landing-wrap {
  font-family: var(--shg-font);
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 12px 48px;
}

/* ── HERO ── */
.shg-landing-hero {
  text-align: center;
  padding: 32px 0 24px;
}

.shg-landing-stars {
  font-size: 13px;
  letter-spacing: 12px;
  color: var(--shg-gold);
  margin-bottom: 20px;
}

.shg-landing-logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

.shg-landing-tagline {
  font-size: 18px;
  color: var(--shg-navy);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.shg-landing-tagline span {
  font-size: 14px;
  color: var(--shg-muted);
  font-style: normal;
  font-family: var(--shg-sans);
}

.shg-landing-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 28px;
}

.shg-landing-divider::before,
.shg-landing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--shg-border), transparent);
}

.shg-landing-divider span {
  color: var(--shg-gold);
  font-size: 14px;
}

/* ── CARDS ── */
.shg-landing-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shg-landing-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid var(--shg-border);
  background: var(--shg-cream);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
  overflow: hidden;
}

.shg-landing-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}

.shg-card-hunt::before      { background: var(--shg-navy); }
.shg-card-leaderboard::before { background: var(--shg-gold); }
.shg-card-trivia::before    { background: #7b5ea7; }

.shg-landing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,27,62,0.12);
  border-color: var(--shg-gold);
  text-decoration: none;
}

.shg-landing-card-icon {
  font-size: 36px;
  min-width: 48px;
  text-align: center;
  line-height: 1;
}

.shg-landing-card-body {
  flex: 1;
}

.shg-landing-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--shg-navy);
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}

.shg-landing-card-body p {
  font-size: 13px;
  color: var(--shg-muted);
  margin: 0;
  font-family: var(--shg-sans);
  line-height: 1.5;
}

.shg-landing-card-arrow {
  font-size: 20px;
  color: var(--shg-gold);
  font-weight: 700;
  transition: transform 0.18s;
  min-width: 24px;
  text-align: right;
}

.shg-landing-card:hover .shg-landing-card-arrow {
  transform: translateX(4px);
}

/* ── FOOTER NOTE ── */
.shg-landing-footer {
  text-align: center;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--shg-navy);
  border-radius: 10px;
}

.shg-landing-footer p {
  font-family: var(--shg-sans);
  font-size: 13px;
  color: var(--shg-gold-l);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .shg-landing-logo { max-width: 180px; }
  .shg-landing-tagline { font-size: 16px; }
  .shg-landing-card { padding: 16px; gap: 12px; }
  .shg-landing-card-icon { font-size: 28px; min-width: 36px; }
  .shg-landing-card-body h3 { font-size: 16px; }
}
