/* Cardtropolis TCG — comic-city theme (badge: blue #0033a0, red #da0e1c, yellow skyline) */
:root {
  --blue: #0033a0;
  --blue-dark: #001d5c;
  --night: #001440;
  --red: #da0e1c;
  --yellow: #ffce33;
  --ink: #131b30;
  --gray: #5a6378;
  --paper: #fdfaf2;
  --white: #ffffff;
}

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

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(0, 51, 160, 0.07) 1px, transparent 1.4px);
  background-size: 20px 20px;
  color: var(--ink);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Bangers', 'Comic Sans MS', cursive;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--ink);
}

a { color: var(--blue); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Announcement bar */
.announce {
  background: var(--yellow); color: var(--ink); border-bottom: 2px solid var(--ink);
  text-align: center; padding: 8px 16px; font-size: 0.85rem; font-weight: 700;
}
.announce a { color: var(--blue); }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue); color: var(--white); padding: 10px 18px;
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }
a:focus-visible, .btn:focus-visible, nav a:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px;
}

/* Header / nav */
header {
  background: var(--white);
  border-bottom: 3px solid var(--ink);
  position: sticky; top: 0; z-index: 10;
}
.nav-wrap {
  max-width: 1080px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 48px; height: 48px; border-radius: 50%; }
.logo-text {
  font-family: 'Comic Sans MS', 'Comic Sans', 'Comic Neue', cursive;
  font-size: 1.22rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.02em; text-transform: uppercase;
}
.logo-text span { color: var(--blue); }

/* Mobile nav toggle (CSS-only) */
.nav-toggle-box { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 42px; padding: 8px 10px; cursor: pointer;
  border: 2px solid var(--ink); border-radius: 8px; background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-toggle span { display: block; height: 3px; background: var(--ink); border-radius: 2px; }
.nav-toggle-box:focus-visible + .nav-toggle { outline: 3px solid var(--red); outline-offset: 2px; }

nav ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
nav a {
  text-decoration: none; color: var(--ink); font-weight: 800; font-size: 0.9rem;
  padding: 6px 2px; border-bottom: 3px solid transparent;
}
nav a:hover { color: var(--blue); }
nav a.active { color: var(--blue); border-bottom-color: var(--yellow); }
nav a.shop-btn {
  background: var(--red); color: var(--white); padding: 9px 18px;
  border: 2px solid var(--ink); border-radius: 6px; box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
nav a.shop-btn:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }

/* Social icons in the nav */
.social-nav { display: flex; align-items: center; gap: 8px; }
.social-ico {
  width: 36px; height: 36px; border-radius: 50%; padding: 0; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
.social-ico:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.social-ico svg { width: 19px; height: 19px; fill: #fff; display: block; }
.social-ico.fb { background: #1877F2; }
.social-ico.dc { background: #5865F2; }

/* Hero — night sky like the badge */
.hero {
  position: relative; overflow: hidden;
  color: var(--white); text-align: center; padding: 76px 24px 0;
  background:
    radial-gradient(1.6px 1.6px at 12% 22%, #fff 60%, transparent 100%),
    radial-gradient(1.4px 1.4px at 26% 64%, #fff 60%, transparent 100%),
    radial-gradient(2px 2px at 38% 18%, #fff 60%, transparent 100%),
    radial-gradient(1.3px 1.3px at 49% 46%, #fff 60%, transparent 100%),
    radial-gradient(1.8px 1.8px at 62% 14%, #fff 60%, transparent 100%),
    radial-gradient(1.4px 1.4px at 71% 58%, #fff 60%, transparent 100%),
    radial-gradient(2px 2px at 84% 26%, #fff 60%, transparent 100%),
    radial-gradient(1.3px 1.3px at 92% 66%, #fff 60%, transparent 100%),
    radial-gradient(1.5px 1.5px at 7% 74%, #fff 60%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 78%, #fff 60%, transparent 100%),
    linear-gradient(180deg, var(--night) 0%, var(--blue) 100%);
}
.hero .wordmark {
  max-width: min(500px, 84vw); height: auto; margin-bottom: 16px;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,0.35));
}
.hero h1 {
  color: var(--yellow); font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  margin-bottom: 12px; text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.hero p { max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; color: #dbe4fb; }
.page-hero { padding: 48px 24px 0; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); color: var(--yellow); }

/* Yellow skyline strip (like the badge) */
.skyline {
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 120' preserveAspectRatio='none'%3E%3Cpolyline points='6,124 6,74 40,74 40,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='13.2' cy='83.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='23.1' cy='82.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='32' cy='81.9' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='13' cy='92' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='23.8' cy='92.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='32.3' cy='94.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='13.8' cy='104.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='23.9' cy='102.5' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='31.1' cy='102.5' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='23.2' cy='113.3' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='32.1' cy='112' r='1.5' fill='%23ffce33'/%3E%3Cpolyline points='50,124 50,46 60,46 60,32 92,32 92,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='66.6' cy='41.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='75.5' cy='41.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='67.2' cy='51.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='68.2' cy='60.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='76.6' cy='60.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='56.9' cy='71.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='76.9' cy='70.6' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='67.2' cy='80.9' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='67.4' cy='89.9' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='57.7' cy='111.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='66.9' cy='110.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='74.9' cy='111.6' r='1.5' fill='%23ffce33'/%3E%3Cpolyline points='104,124 104,46 136,46 136,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Crect x='110' y='40' width='20' height='6' fill='none' stroke='%23ffce33' stroke-width='1.6'/%3E%3Crect x='116' y='34' width='8' height='6' fill='none' stroke='%23ffce33' stroke-width='1.6'/%3E%3Cline x1='120' y1='34' x2='120' y2='22' stroke='%23ffce33' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='117' y1='27' x2='123' y2='27' stroke='%23ffce33' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='120' cy='21' r='1.7' fill='%23ffce33'/%3E%3Ccircle cx='111.4' cy='54.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='111.9' cy='65.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='111.8' cy='84.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='120.2' cy='94.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='112' cy='105.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='119.8' cy='104.8' r='1.5' fill='%23ffce33'/%3E%3Cpolyline points='148,124 148,34 186,34 186,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='156.2' cy='44.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='174.3' cy='43.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='157' cy='53.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='155.8' cy='62' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='173' cy='62.3' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='155.6' cy='71.9' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='164.2' cy='72' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='172.9' cy='73.9' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='155.2' cy='82.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='164.7' cy='82.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='165' cy='92' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='173.6' cy='92.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='163.9' cy='104.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='173.2' cy='103.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='156.1' cy='114.1' r='1.5' fill='%23ffce33'/%3E%3Cpolyline points='194,124 194,56 201,48 225,48 232,56 232,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='201.7' cy='58.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='220.7' cy='58.6' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='202.7' cy='70.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='220' cy='78.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='200.9' cy='88.5' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='211.5' cy='90.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='221' cy='90.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='210.3' cy='98.3' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='219.3' cy='99.3' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='220.4' cy='109.7' r='1.5' fill='%23ffce33'/%3E%3Cpolyline points='240,124 240,58 274,58 274,124' fill='none' stroke='%23ffce33' stroke-width='1.6' stroke-linejoin='round'/%3E%3Crect x='250' y='52' width='14' height='6' fill='none' stroke='%23ffce33' stroke-width='1.6'/%3E%3Ccircle cx='248.4' cy='68' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='247.2' cy='77.7' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='257.7' cy='78.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='265.8' cy='78.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='256.1' cy='86.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='257.8' cy='98.2' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='248.1' cy='106.1' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='258.1' cy='107.4' r='1.5' fill='%23ffce33'/%3E%3Ccircle cx='267' cy='106.8' r='1.5' fill='%23ffce33'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 149px 64px;
}
.hero-skyline { margin: 34px -24px 0; }

/* Home hero: taller skyline that rises up behind the buttons */
.hero-home { padding-bottom: 100px; }
.hero-home > :not(.hero-skyline) { position: relative; z-index: 1; }
.hero-skyline-home {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 150px; margin: 0; z-index: 0;
  background-size: 350px 150px;
}
/* Sub-page heroes: skyline band at the bottom (in-flow, correctly proportioned) */
.hero-skyline-page { height: 120px; background-size: 280px 120px; }

/* Buttons — comic style */
.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  padding: 12px 26px; font-size: 0.95rem;
  border: 2px solid var(--ink); border-radius: 8px; box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--ink); }
.btn-discord { background: #5865F2; color: var(--white); }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 60px 0; }
.section-head { margin-bottom: 34px; }
.section-head .overline {
  display: inline-block; background: var(--red); color: var(--white);
  font-weight: 800; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 3px 12px; border-radius: 4px; margin-bottom: 10px;
  transform: rotate(-1.5deg); border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
}
.section-head h2 { font-size: 2.3rem; color: var(--blue); }
.section-head p { color: var(--gray); max-width: 640px; margin-top: 8px; }

/* Comic-panel cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--white); border: 2px solid var(--ink); border-radius: 10px;
  padding: 24px 26px; box-shadow: 5px 5px 0 rgba(0, 51, 160, 0.9);
}
.card h3 { margin-bottom: 8px; font-size: 1.35rem; color: var(--blue); }
.card p { color: var(--gray); font-size: 0.95rem; }

/* Games carousel — auto-scrolling marquee (grab to drag) */
.carousel { overflow: hidden; position: relative; padding: 8px 0 18px; cursor: grab; touch-action: pan-y; }
.carousel.is-grabbing { cursor: grabbing; }
.carousel::before, .carousel::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.carousel::before { left: 0; background: linear-gradient(90deg, var(--paper), rgba(253,250,242,0)); }
.carousel::after { right: 0; background: linear-gradient(270deg, var(--paper), rgba(253,250,242,0)); }
.carousel-track {
  display: flex; width: max-content; user-select: none;
  animation: carousel-scroll 46s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel .card { flex: 0 0 300px; width: 300px; margin-right: 22px; }
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
}

/* Stats row */
.stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.stat {
  background: var(--white); border: 2px solid var(--ink); border-radius: 10px;
  padding: 16px 28px; text-align: center; box-shadow: 4px 4px 0 var(--yellow);
  transform: rotate(-1deg);
}
.stat:nth-child(2) { transform: rotate(1deg); box-shadow: 4px 4px 0 rgba(218,14,28,0.9); }
.stat:nth-child(3) { transform: rotate(-0.5deg); box-shadow: 4px 4px 0 rgba(0,51,160,0.9); }
.stat strong {
  display: block; font-family: 'Bangers', cursive; font-size: 1.9rem;
  color: var(--red); letter-spacing: 0.04em;
}
.stat span { color: var(--gray); font-size: 0.85rem; font-weight: 700; }

/* Photo gallery — snapshot style */
.gallery { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.gallery figure {
  background: var(--white); border: 2px solid var(--ink); border-radius: 6px;
  padding: 10px 10px 6px; margin: 0; box-shadow: 5px 5px 0 rgba(0,51,160,0.9);
  transform: rotate(-1.2deg);
}
.gallery figure:nth-child(2) { transform: rotate(1deg); box-shadow: 5px 5px 0 rgba(218,14,28,0.9); }
.gallery figure:nth-child(3) { transform: rotate(-0.6deg); box-shadow: 5px 5px 0 var(--yellow); }
.gallery img { width: 100%; height: 225px; object-fit: cover; display: block; border-radius: 3px; }
.gallery figcaption {
  padding: 10px 6px 6px; color: var(--ink); font-size: 0.9rem; font-weight: 800; text-align: center;
  font-family: 'Comic Sans MS', 'Comic Neue', cursive;
}

.photo-card {
  background: var(--white); border: 2px solid var(--ink); border-radius: 6px;
  padding: 10px; box-shadow: 5px 5px 0 rgba(0,51,160,0.9); transform: rotate(-0.8deg);
}
.photo-card:nth-child(even) { transform: rotate(0.8deg); box-shadow: 5px 5px 0 rgba(218,14,28,0.9); }
.photo-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; display: block; border-radius: 3px; }

/* Info strip — night sky */
.strip {
  background: linear-gradient(180deg, var(--blue) 0%, var(--night) 100%);
  color: var(--white);
}
.strip .section-head h2 { color: var(--yellow); }
.strip .section-head .overline { background: var(--yellow); color: var(--ink); }
.strip .section-head p { color: #dbe4fb; }
.strip .card { background: var(--white); box-shadow: 5px 5px 0 var(--yellow); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 8px 4px; border-bottom: 2px dotted rgba(19,27,48,0.2); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; }

/* Weekly schedule */
.schedule-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 10px; }
.day-card {
  background: var(--white); border: 2px solid var(--ink); border-radius: 10px;
  padding: 20px 22px; box-shadow: 5px 5px 0 rgba(0,51,160,0.9);
}
.day-card h3 {
  font-size: 1.4rem; margin-bottom: 10px; color: var(--blue);
  padding-bottom: 8px; border-bottom: 2px solid var(--yellow);
}
.day-card.saturday { box-shadow: 5px 5px 0 rgba(218,14,28,0.9); }
.day-card.saturday h3 { color: var(--red); }
.day-card ul { list-style: none; }
.day-card li { padding: 7px 0; border-bottom: 2px dotted rgba(19,27,48,0.15); font-size: 0.93rem; }
.day-card li:last-child { border-bottom: none; }
.day-card li span {
  display: inline-block; min-width: 74px; font-weight: 800; color: var(--blue);
  font-variant-numeric: tabular-nums; font-size: 0.86rem;
}
.day-card li em { font-style: normal; font-weight: 800; color: var(--red); font-size: 0.82rem; }

/* Event list */
.event-row {
  background: var(--white); border: 2px solid var(--ink); border-radius: 10px;
  padding: 20px 26px; margin-bottom: 16px; box-shadow: 4px 4px 0 rgba(0,51,160,0.9);
}
.event-row:nth-child(even) { box-shadow: 4px 4px 0 rgba(218,14,28,0.9); }
.event-row h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--blue); }
.event-row p { color: var(--gray); font-size: 0.95rem; }

.note {
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 10px;
  padding: 16px 22px; font-size: 0.92rem; color: var(--ink); margin-top: 30px;
  font-weight: 700; box-shadow: 4px 4px 0 var(--ink);
}
.note a { color: var(--blue); }

/* Contact */
.contact-line { display: flex; gap: 12px; align-items: baseline; margin-bottom: 12px; font-size: 0.95rem; }
.contact-line strong {
  min-width: 86px; color: var(--red); font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Map embed */
.map-wrap {
  border: 2px solid var(--ink); border-radius: 10px; overflow: hidden;
  margin-top: 26px; line-height: 0; box-shadow: 6px 6px 0 rgba(0,51,160,0.9);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

/* Footer — night sky with skyline on top */
footer {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--night) 100%);
  color: #b9c5e8; padding: 48px 24px 36px; font-size: 0.92rem;
}
.footer-grid {
  max-width: 1080px; margin: 0 auto 30px; display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-col h4 { color: var(--yellow); font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 0.08em; }
.footer-col p { margin-bottom: 10px; }
.footer-col a { color: #dbe4fb; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.foot-logo { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 12px; }
.footer-brand .foot-tag { max-width: 220px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px;
  max-width: 1080px; margin: 0 auto; text-align: center; font-size: 0.8rem; color: #8593c0;
}

html { scroll-behavior: smooth; }

/* ---------- Responsive / mobile ---------- */
img { max-width: 100%; }

@media (max-width: 820px) {
  /* Collapsible nav */
  .nav-wrap { padding: 10px 16px; }
  .nav-toggle { display: flex; }
  nav { display: none; width: 100%; }
  .nav-toggle-box:checked ~ nav { display: block; }
  nav ul {
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 0 6px; text-align: center;
  }
  nav li { border-top: 1px dashed rgba(19,27,48,0.15); }
  nav li:first-child { border-top: none; }
  nav a { display: block; padding: 12px 8px; border-bottom: none; font-size: 1rem; }
  nav a.active { background: rgba(0,51,160,0.06); border-bottom: none; }
  nav a.shop-btn { margin: 10px auto 4px; max-width: 240px; }
  .social-nav { justify-content: center; padding: 12px 8px; }

  section { padding: 44px 0; }
  .section-head h2 { font-size: 1.9rem; }
  .hero { padding: 52px 16px 0; }
  .hero-skyline { margin: 28px -16px 0; }
  .page-hero { padding: 40px 16px 0; }
  .hero p { font-size: 0.98rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .skyline { height: 52px; background-size: 121px 52px; }
  .hero-home { padding-bottom: 80px; }
  .hero-skyline-home { height: 124px; background-size: 289px 124px; }
  .hero-skyline-page { height: 84px; background-size: 196px 84px; }
  .stats { gap: 14px; }
  .stat { padding: 12px 20px; }
  .gallery img { height: 190px; }
  .photo-card img { min-height: 200px; }
  .map-wrap iframe { height: 280px; }
  .announce { font-size: 0.78rem; padding: 7px 12px; }
  .day-card, .card, .event-row { padding: 18px 20px; }
}

@media (max-width: