/* ===== Tokens ===== */
:root {
  --ink: #0a0a0a;
  --charcoal: #1c1a19;
  --sky: #5ab4f0;
  --sky-dark: #2f8fd1;
  --white: #ffffff;
  --paper: #eaf4fd;
  --paper-dim: #d7e9f7;
  --muted: #6b7280;
  --paper-shadow: rgba(10, 20, 30, 0.18);

  --font-display: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-marker: "Caveat", cursive;

  --radius-card: 14px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* ===== Texture ===== */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--sky);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  overflow: hidden;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.site-nav a { text-decoration: none; color: #cbd5e1; transition: color 0.15s; }
.site-nav a:hover { color: var(--sky); }

/* ===== Hero ===== */
.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}
.eyebrow {
  font-family: var(--font-marker);
  color: var(--sky);
  font-size: 22px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 6px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  text-transform: uppercase;
  margin: 0 0 20px;
  letter-spacing: 0.005em;
}
.hero h1 span { color: var(--sky); }
.hero p { font-size: 18px; color: #d5dbe2; max-width: 46ch; margin: 0 0 28px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sky { background: var(--sky); color: var(--ink); }
.btn-sky:hover { background: var(--sky-dark); color: var(--white); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--ink); }

/* Hero photo collage (built from live locations' hero images) */
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.collage-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 3px solid var(--sky);
  box-shadow: 0 16px 32px var(--paper-shadow);
}
.collage-item:nth-child(odd) { transform: rotate(-2deg); margin-top: 22px; }
.collage-item:nth-child(even) { transform: rotate(2deg); }
.collage-item img { width: 100%; height: 100%; object-fit: cover; }
.collage-placeholder {
  border-radius: var(--radius-card);
  border: 3px dashed rgba(90, 180, 240, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  font-family: var(--font-marker);
  font-size: 18px;
  color: var(--sky);
  text-align: center;
  padding: 20px;
}

.stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--sky) 0 24px,
    var(--ink) 24px 48px
  );
}

/* ===== Section shells ===== */
section { padding: 80px 0; }
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-label {
  font-family: var(--font-marker);
  color: var(--sky-dark);
  font-size: 19px;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}
.section-sub { color: var(--muted); margin-top: 10px; font-size: 16px; }

.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .section-sub { color: #b8c2cc; }
.section-dark .section-label { color: var(--sky); }

/* ===== Flyer cards (mission + signature element) ===== */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.flyer-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 4px;
  padding: 26px 24px 24px;
  position: relative;
  box-shadow: 0 14px 28px var(--paper-shadow);
}
.flyer-grid .flyer-card:nth-child(3n+1) { transform: rotate(-1.2deg); }
.flyer-grid .flyer-card:nth-child(3n+2) { transform: rotate(0.8deg); }
.flyer-grid .flyer-card:nth-child(3n+3) { transform: rotate(-0.4deg); }
.flyer-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}
.flyer-pin-hole {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  z-index: 2;
}
.flyer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tag-live { background: var(--sky); color: var(--ink); }
.tag-soon { background: #4a4a4a; color: var(--white); }
.flyer-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.1;
}
.flyer-card p { font-size: 14.5px; color: #d0d5db; margin: 0 0 14px; }
.flyer-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--white);
}

.empty-state {
  font-family: var(--font-marker);
  font-size: 18px;
  color: var(--muted);
  padding: 20px 0;
}

/* ===== Location cards ===== */
.location-card { padding: 0; overflow: hidden; }
.location-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #2a2a2a;
}
.location-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.location-card-body { padding: 22px 22px 24px; }
.location-card-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; margin: 0 0 4px; }
.location-card-place { font-size: 13px; color: #b8c2cc; margin: 0 0 12px; letter-spacing: 0.02em; }
.location-card.is-soon { filter: grayscale(0.7); opacity: 0.72; }
.location-card.is-soon .location-card-body h3 { color: #cfd6dc; }

/* ===== CTA (single, centered) ===== */
.cta-single {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  border: 2px solid var(--sky);
}
.cta-single h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 14px;
}
.cta-single p { color: #d0d5db; margin: 0 0 26px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #b8c2cc;
  padding: 48px 0 28px;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; color: #b8c2cc; }
.footer-links a:hover { color: var(--sky); }
.footer-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { color: var(--sky); text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 8px; }
  .hero-collage { order: -1; max-width: 380px; margin: 0 auto; }
  .site-nav { display: none; }
  section { padding: 56px 0; }
}
