/* ===== Tokens ===== */
:root {
  --ink: #0a0a0a;
  --charcoal: #1c1a19;
  --brick: #c8102e;
  --brick-dark: #9c0c23;
  --cream: #f5f0e6;
  --cream-dim: #eae2d2;
  --leaf: #0b7a3b;
  --amber: #d98e1e;
  --paper-shadow: rgba(0, 0, 0, 0.35);

  --font-display: "Anton", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-marker: "Permanent Marker", cursive;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  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.05;
  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(--brick);
}
.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(--cream);
}
.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
  overflow: hidden;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a {
  text-decoration: none;
  color: var(--cream-dim);
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--brick); }
.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  background: var(--ink);
  color: var(--cream);
  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(--amber);
  font-size: 20px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 6px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.hero h1 span { color: var(--brick); }
.hero p {
  font-size: 18px;
  color: var(--cream-dim);
  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-brick { background: var(--brick); color: var(--cream); }
.btn-brick:hover { background: var(--brick-dark); }
.btn-outline { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn-outline:hover { background: var(--cream); color: var(--ink); }

.hero-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 4px solid var(--brick);
  transform: rotate(2deg);
  box-shadow: 0 20px 40px var(--paper-shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--brick) 0 24px,
    var(--ink) 24px 48px,
    var(--leaf) 48px 72px,
    var(--ink) 72px 96px,
    var(--amber) 96px 120px,
    var(--ink) 120px 144px
  );
}

/* ===== Section shells ===== */
section { padding: 80px 0; }
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-label {
  font-family: var(--font-marker);
  color: var(--brick);
  font-size: 18px;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.02;
}
.section-sub { color: #5a5248; margin-top: 10px; font-size: 16px; }

.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .section-sub { color: var(--cream-dim); }

/* ===== Carousel ===== */
.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: var(--brick); border-radius: 8px; }
.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  scroll-snap-align: start;
  border: 3px solid var(--ink);
  position: relative;
}
.carousel-item:nth-child(even) { transform: rotate(1.5deg); }
.carousel-item:nth-child(odd) { transform: rotate(-1.5deg); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.carousel-empty {
  font-family: var(--font-marker);
  color: #8a8072;
  font-size: 18px;
}

/* ===== Flyer cards (updates + events signature element) ===== */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.flyer-card {
  background: var(--charcoal);
  color: var(--cream);
  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(--brick);
  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-pinned { background: var(--amber); color: var(--ink); }
.tag-event { background: var(--leaf); color: var(--cream); }
.flyer-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1.08;
}
.flyer-card p { font-size: 14.5px; color: #d8cfc0; margin: 0 0 14px; }
.flyer-meta {
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.flyer-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--cream);
}

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

/* ===== Resources ===== */
.resource-list { display: grid; gap: 12px; }
.resource-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--cream-dim);
  border-left: 5px solid var(--brick);
  border-radius: 8px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.resource-row:hover { background: var(--cream-dim); }
.resource-title { font-weight: 700; }
.resource-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a8072;
}
.resource-arrow { font-size: 18px; color: var(--brick); }

/* ===== CTA cards (newsletter / kulture key) ===== */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cta-card {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 40px 34px;
  border: 2px solid var(--brick);
}
.cta-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 14px;
}
.cta-card p { color: var(--cream-dim); margin-bottom: 24px; }

/* ===== IG strip ===== */
.ig-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--brick);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 28px 34px;
}
.ig-strip h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin: 0; }
.ig-strip p { margin: 4px 0 0; color: #ffd9de; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream-dim);
  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: var(--cream-dim); }
.footer-links a:hover { color: var(--brick); }
.footer-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,230,0.12);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6b6255;
}
.footer-credit a { color: inherit; text-decoration: none; }
.footer-credit a:hover { color: var(--brick); text-decoration: underline; }

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