/* ==========================================================================
   TOFKAP — a digital circle
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Archivo:wght@300;400;500;600;700;800&family=Caveat:wght@500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg: #0a0a0b;
  --surface: #121214;
  --ink: #ffffff;
  --dim: #ffffff;           /* full white body text per brief */
  --faint: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.18);
  --acid: #b4ff39;
  --acid-ink: #0a0a0b;
  --magenta: #ff3dce;
  --radius: 14px;

  --f-display: 'Unbounded', 'Archivo Black', system-ui, sans-serif;
  --f-hd: 'Unbounded', system-ui, sans-serif;
  --f-body: 'Archivo', system-ui, sans-serif;
  --f-script: 'Caveat', 'Comic Sans MS', cursive;
  --f-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Prevent horizontal scroll on small screens (stickers/bubble-glow/rotated
     decorations extend past viewport; we don't want any sideways scrolling). */
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.55;
  letter-spacing: 0.005em;
  cursor: default;
}
@media (min-width: 1200px) {
  body { font-size: 19px; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }

::selection { background: var(--acid); color: var(--acid-ink); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 2%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-2%, 3%); }
  80% { transform: translate(4%, -1%); }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}
.wide {
  width: min(1520px, 96vw);
  margin: 0 auto;
}

section { position: relative; }
.section { padding: clamp(64px, 8vw, 140px) 0; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10,10,11,0.68);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav .logo {
  width: 76px;
  color: var(--ink);
  transition: transform 0.3s ease;
}
.nav .logo:hover { transform: rotate(-4deg) scale(1.04); }
.nav .logo svg { width: 100%; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.nav-links a.join {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
  font-weight: 700;
}
.nav-links a.join:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.nav-links a.icon { padding: 10px; }
.nav-links a.icon svg { width: 16px; height: 16px; }

/* Hamburger toggle — desktop hidden */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  cursor: pointer;
  position: relative;
  z-index: 110;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin: 4px 0;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  /* On mobile, drop the backdrop-filter on .nav so our fixed overlay
     is actually positioned relative to the viewport (backdrop-filter
     on an ancestor makes position:fixed children behave like absolute). */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 11, 0.92);
  }

  /* Full-screen slide-in overlay menu */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 80px 24px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
    z-index: 100;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.28s ease, visibility 0s linear 0s;
  }
  .nav-links a {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.01em;
    padding: 18px 28px;
    width: auto;
    text-transform: none;
    border-radius: 999px;
  }
  .nav-links a.join {
    margin-top: 12px;
    font-size: 26px;
  }
  .nav-links a.icon {
    margin-top: 10px;
    padding: 14px;
  }
  .nav-links a.icon svg { width: 22px; height: 22px; }

  body.nav-open { overflow: hidden; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) 0 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-type {
  position: relative;
  z-index: 3;
}
/* Section kickers / eyebrows — kept in markup for SEO, hidden visually */
.eyebrow,
.section-kicker {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.headline {
  font-family: var(--f-display);
  font-weight: 400;
  /* Lowered min from 58px → 44px so "COWORKING" (the longest word) fits the
     ~330px container on 360–390px viewports. Previously the word forced the
     .headline wider than its container, spilling past the viewport edge. */
  font-size: clamp(44px, 11vw, 176px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  text-transform: uppercase;
  /* Safety net: never let a single long word force the block wider than its
     container, even if the font renders a touch larger than computed. */
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}
.headline .line { display: block; }
.headline .un {
  font-family: var(--f-script);
  font-weight: 700;
  color: var(--acid);
  display: inline-block;
  text-transform: lowercase;
  /* Caveat x-height is ~0.5em vs Unbounded caps ~0.72em, so we
     scale up by ~1.5x so "un" visually matches surrounding caps. */
  font-size: 1.55em;
  letter-spacing: -0.01em;
  transform: rotate(-6deg) translateY(-0.12em);
  transform-origin: left bottom;
  line-height: 0.72;
  padding: 0 0.04em;
  margin-right: 0.05em;
}
.headline .line:has(.un) {
  line-height: 0.7;
  margin-bottom: -0.1em;
}

/* Subtle "glitch" — just a soft magenta echo, no RGB split */
.glitch {
  position: relative;
  display: inline-block;
  text-shadow:
    0.03em 0 0 rgba(255, 61, 206, 0.18),
   -0.03em 0 0 rgba(180, 255, 57, 0.18);
}

.lede {
  max-width: 48ch;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--dim);
  margin: 0 0 34px;
  line-height: 1.55;
}
.lede b { color: var(--ink); font-weight: 700; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arr { transition: transform 0.2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn.primary {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
  font-weight: 700;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.btn.primary:hover {
  box-shadow: 0 0 0 0 var(--ink);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.btn.ghost:hover {
  border-color: var(--ink);
  background: rgba(243,241,234,0.05);
}

/* Hero right — bubble logo + stickers */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Contain decorative overflow (bubble glow, rotated stickers) so they
     can't bleed past the viewport edge on small screens. */
  overflow: hidden;
}
.hero-bubble {
  width: 100%;
  max-width: 520px;
  position: relative;
  color: var(--ink);
  animation: float 6s ease-in-out infinite;
}
.hero-bubble svg { width: 100%; height: auto; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}
.hero-bubble-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(closest-side, rgba(180,255,57,0.55), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.sticker {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 15px;
  border-radius: 4px;
  font-weight: 600;
  transform-origin: center;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.sticker:hover { transform: rotate(0deg) scale(1.08) !important; }

.sticker.acid   { background: var(--acid);    color: var(--acid-ink); }
.sticker.ink    { background: var(--ink);     color: var(--bg); }
.sticker.magenta{ background: var(--magenta); color: var(--ink); }
.sticker.outline{ background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }

.sticker-1 { top: 6%;  left: -4%;  transform: rotate(-10deg); }
.sticker-2 { bottom: 8%; right: -4%; transform: rotate(8deg); }
.sticker-3 { top: 50%; right: 2%; transform: rotate(-6deg); }

/* Mobile hero: keep everything inside the viewport.
   - Shrink the bubble glow so it doesn't bleed past the container.
   - Pull stickers inward and scale them down a touch so they never get
     clipped by the viewport edge.
   - Hide sticker-3 ("rotterdam · nl") on very narrow screens — it's
     redundant with the other two and causes crowding at 360–390px. */
@media (max-width: 720px) {
  .hero-visual { min-height: 340px; }
  .hero-bubble { max-width: min(320px, 78vw); }
  .hero-bubble-glow { inset: 0; filter: blur(24px); }

  .sticker {
    font-size: 11px;
    padding: 9px 12px;
    letter-spacing: 0.12em;
  }
  .sticker-1 { top: 2%; left: 2%; }
  .sticker-2 { bottom: 4%; right: 2%; }
  .sticker-3 { display: none; }
}

.hero-baseline {
  margin-top: 60px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.8;
  flex-wrap: wrap;
}
.hero-baseline .meta { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-baseline .meta span b { color: var(--ink); font-weight: 700; }
.scroll-hint { display: inline-flex; align-items: center; gap: 10px; color: var(--acid); }
.scroll-hint .line {
  width: 30px; height: 1px; background: var(--acid);
  position: relative; overflow: hidden;
}
.scroll-hint .line::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, var(--ink), transparent);
  animation: sweep 2s linear infinite;
}
@keyframes sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 22px 0;
  position: relative;
}
.marquee.acid {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
}
.marquee .track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 36s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(24px, 3.6vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee.acid .track { animation-duration: 28s; animation-direction: reverse; }
.marquee .track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee .track .sep {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--acid);
  display: inline-block;
}
.marquee.acid .track .sep { background: var(--acid-ink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .track { animation-play-state: paused; }

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillars-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .pillars-head { grid-template-columns: 1fr; } }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
.section-sub {
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--ink);
  max-width: 46ch;
  line-height: 1.55;
}
.section-sub b { color: var(--ink); font-weight: 700; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: 0 0 36px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pillar:nth-child(odd) { transform: translateY(24px); }
.pillar:hover { transform: translateY(-6px); }
.pillar:nth-child(odd):hover { transform: translateY(18px); }

.pillar-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--acid);
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.pillar-illo {
  width: 130px; height: 130px;
  margin-left: -8px;
  color: var(--ink);
  transition: color 0.35s ease, transform 0.5s ease;
}
.pillar:hover .pillar-illo { color: var(--acid); transform: rotate(-6deg) scale(1.05); }
.pillar h3 {
  font-family: var(--f-hd);
  font-size: clamp(26px, 2.2vw, 32px);
  text-transform: uppercase;
  margin: auto 0 12px;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
.pillar p {
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
  max-width: 26ch;
}

/* ==========================================================================
   "TOFKAP is..." list
   ========================================================================== */
.is-block {
  padding: clamp(50px, 7vw, 120px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.is-block .grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .is-block .grid { grid-template-columns: 1fr; } }
.is-block .label {
  font-family: var(--f-display);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0;
  color: var(--acid);
  position: sticky;
  top: 120px;
}
/* On mobile the grid stacks, so drop the sticky behaviour — otherwise
   the label slides down on top of the list as you scroll. */
@media (max-width: 900px) {
  .is-block .label {
    position: static;
    top: auto;
    margin-bottom: 48px;
    padding-bottom: 0.4em; /* breathing room for the rotated "is for…" tail */
  }
}
.is-block .label em {
  display: block;
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--ink);
  transform: rotate(-3deg);
  transform-origin: left top;
  font-size: 1.05em;
  line-height: 0.8;
  letter-spacing: -0.01em;
  margin-top: 0.1em;
}
.is-block .list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--f-hd);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.is-block .list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: default;
  transition: padding 0.3s ease, color 0.3s ease;
}
.is-block .list li:hover {
  padding-left: 20px;
  color: var(--acid);
}
.is-block .list .count {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--acid);
  font-weight: 400;
  text-transform: uppercase;
  width: 56px;
  flex-shrink: 0;
}
.is-block .list li:hover .count { color: var(--acid); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery figure:hover { transform: translateY(-6px) rotate(-0.5deg); z-index: 2; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .cap {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--bg); color: var(--ink);
  padding: 7px 11px;
  border-radius: 4px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--line);
}
.gallery .cap.acid { background: var(--acid); color: var(--acid-ink); border: none; }

/* bento layout — 11 tiles on a 12-col grid */
.gallery { grid-auto-flow: dense; }
.g-01 { grid-column: span 6; grid-row: span 4; }
.g-02 { grid-column: span 3; grid-row: span 2; }
.g-03 { grid-column: span 3; grid-row: span 2; }
.g-04 { grid-column: span 3; grid-row: span 2; }
.g-05 { grid-column: span 3; grid-row: span 2; }
.g-06 { grid-column: span 4; grid-row: span 3; }
.g-07 { grid-column: span 4; grid-row: span 3; }
.g-08 { grid-column: span 4; grid-row: span 3; }
.g-09 { grid-column: span 3; grid-row: span 3; }
.g-10 { grid-column: span 6; grid-row: span 3; }
.g-11 { grid-column: span 3; grid-row: span 3; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-01 { grid-column: span 6; grid-row: span 3; }
  .g-02 { grid-column: span 3; grid-row: span 2; }
  .g-03 { grid-column: span 3; grid-row: span 2; }
  .g-04 { grid-column: span 3; grid-row: span 2; }
  .g-05 { grid-column: span 3; grid-row: span 2; }
  .g-06 { grid-column: span 6; grid-row: span 3; }
  .g-07 { grid-column: span 3; grid-row: span 3; }
  .g-08 { grid-column: span 3; grid-row: span 3; }
  .g-09 { grid-column: span 6; grid-row: span 2; }
  .g-10 { grid-column: span 3; grid-row: span 2; }
  .g-11 { grid-column: span 3; grid-row: span 2; }
}

/* ==========================================================================
   Manifesto
   ========================================================================== */
.manifesto {
  position: relative;
}
.manifesto .stamp {
  position: absolute;
  top: -20px; right: 2%;
  font-family: var(--f-script);
  font-size: clamp(32px, 4.2vw, 56px);
  color: var(--magenta);
  transform: rotate(-8deg);
  letter-spacing: 0;
  font-weight: 700;
  line-height: 0.9;
}
.manifesto-body {
  font-family: var(--f-display);
  font-size: clamp(30px, 4.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0;
}
.manifesto-body .acid { color: var(--acid); }
.manifesto-body .out {
  color: var(--ink);
  opacity: 0.4;
}
.manifesto-sig {
  margin-top: 44px;
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--acid);
  letter-spacing: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-head {
  max-width: 880px;
  margin: 0 auto 60px;
}
.faq-sub {
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 60ch;
}
.faq-sub b { color: var(--ink); opacity: 1; font-weight: 700; }
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-hd);
  font-size: clamp(20px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--acid); }
.faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transition: all 0.3s;
}
.faq-q .plus::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus { background: var(--acid); border-color: var(--acid); }
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after { background: var(--acid-ink); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 18px;
  color: var(--ink);
  max-width: 70ch;
  line-height: 1.55;
}
.faq-a-inner a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  animation: marquee 60s linear infinite;
  padding: 20px 0;
  width: max-content;
}
.reviews:hover .reviews-track { animation-play-state: paused; }
.review {
  flex: 0 0 400px;
  padding: 0 32px;
  position: relative;
  border-left: 1px solid var(--line);
}
.review:first-child { border-left: 0; }
.review .stars {
  color: var(--acid);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
}
.review .who {
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.review .who b { color: var(--ink); opacity: 1; font-weight: 700; }

/* ==========================================================================
   Before / After
   ========================================================================== */
.ba-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .ba-row { grid-template-columns: 1fr; }
}
.ba-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  padding: 10px 0;
}
.ba-card h4 {
  font-family: var(--f-script);
  font-size: clamp(28px, 3vw, 42px);
  text-transform: lowercase;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 700;
}
.ba-card.after h4 { color: var(--acid); opacity: 1; }
.ba-card .illo {
  width: 80%;
  margin: 0 auto;
  color: currentColor;
  transition: transform 0.5s ease;
}
.ba-card:hover .illo { transform: rotate(-2deg); }
.ba-card p {
  font-family: var(--f-hd);
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.ba-arrow {
  font-family: var(--f-display);
  font-size: 64px;
  color: var(--acid);
}
@media (max-width: 720px) {
  .ba-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ==========================================================================
   Big CTA
   ========================================================================== */
.big-cta {
  position: relative;
  text-align: center;
  padding: clamp(90px, 12vw, 160px) 0;
}
.big-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(72px, 15vw, 240px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: var(--acid);
}
.big-cta h2 em {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  text-transform: lowercase;
  display: inline-block;
  transform: rotate(-5deg);
  letter-spacing: -0.01em;
  font-size: 0.9em;
  line-height: 0.8;
}
.big-cta .sub {
  font-size: clamp(19px, 1.5vw, 22px);
  color: var(--ink);
  max-width: 44ch;
  margin: 0 auto 44px;
  line-height: 1.5;
}
.big-cta .sub b { color: var(--acid); font-weight: 700; }
.big-cta .cta-row { justify-content: center; }

/* ==========================================================================
   Planning a visit
   ========================================================================== */
.visit-head { text-align: center; margin-bottom: 50px; }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) { .visit-grid { grid-template-columns: repeat(2, 1fr); } }
.visit {
  padding: 0;
  text-align: center;
  transition: transform 0.35s ease;
}
.visit:hover { transform: translateY(-4px); }
.visit .ico {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.3s ease;
}
.visit .ico img { width: 100%; height: 100%; object-fit: contain; }
.visit:hover .ico { color: var(--acid); transform: rotate(-4deg) scale(1.04); }
.visit h5 {
  font-family: var(--f-hd);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
}
.visit p {
  font-size: 18px;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   Tags & Footer
   ========================================================================== */
.tag-cloud {
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.tag-cloud .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink);
  opacity: 0.6;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.tag-cloud span { cursor: default; transition: color 0.2s, opacity 0.2s; }
.tag-cloud .container:hover { opacity: 1; }
.tag-cloud span:hover { color: var(--acid); }

/* ==========================================================================
   Balloon logo send-off — decorative, between tag-cloud and footer
   ========================================================================== */
.balloon-bed {
  padding: 80px 24px 40px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.balloon-wrap {
  position: relative;
  display: inline-block;
  /* subtle float drift so the balloon feels alive alongside the GIF's own stretch */
  animation: balloon-drift 7s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.balloon-logo {
  display: block;
  width: min(560px, 72vw);
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 24px 40px rgba(180, 255, 57, 0.18))
          drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}
@keyframes balloon-drift {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-8px) rotate(1.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .balloon-wrap { animation: none; }
}
@media (max-width: 720px) {
  .balloon-bed { padding: 56px 20px 24px; }
}

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 720px) { .footer .container { grid-template-columns: 1fr; } }
.footer-logo {
  width: 160px;
  color: var(--ink);
}
.footer-logo svg { width: 100%; height: auto; }
.footer-logo .tag {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin-top: 14px;
}
.footer .addr {
  font-family: var(--f-hd);
  font-size: 22px;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.3;
}
@media (max-width: 720px) { .footer .addr { text-align: left; } }
.footer .addr .line {
  color: var(--ink);
  opacity: 0.7;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-top: 16px;
  text-transform: none;
}
.footer .addr a { color: var(--acid); }
.footer .addr .socials {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
@media (max-width: 720px) { .footer .addr .socials { justify-content: flex-start; } }
.footer .addr .socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.footer .addr .socials a:hover { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }
.footer .addr .socials svg { width: 18px; height: 18px; }

.footer-meta {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0.6;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   Reveal on scroll (only when JS enabled; respects reduced-motion)
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .grain, body::before { animation: none; }
  .hero-bubble, .hero-bubble-glow { animation: none; }
  .marquee .track, .reviews-track { animation: none; }
}

/* ==========================================================================
   Cursor follower
   ========================================================================== */
.cursor-dot {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--acid);
  mix-blend-mode: difference;
  pointer-events: none;
  top: 0; left: 0;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
@media (max-width: 900px) { .cursor-dot { display: none; } }
.cursor-dot.big { width: 40px; height: 40px; }

/* ==========================================================================
   Founder section
   ========================================================================== */
.founder {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(180,255,57,0.06), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(255,61,206,0.05), transparent 55%),
    var(--bg);
}
.founder .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .founder .grid { grid-template-columns: 1fr; gap: 30px; } }
.founder-card {
  position: relative;
  padding: 0;
  transform: rotate(-2deg);
  max-width: 320px;
}
.founder-card::before {
  content: 'Gianluca';
  font-family: var(--f-script);
  position: absolute;
  top: -32px;
  left: -6px;
  font-size: 44px;
  color: var(--acid);
  transform: rotate(-6deg);
  line-height: 1;
  z-index: 2;
}
.founder-card .polaroid {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg);
}
.founder-card .polaroid svg { width: 62%; height: auto; }
.founder-card .polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02);
}
.founder-card .polaroid::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.founder-card .caption {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.founder-card .caption b { color: var(--ink); opacity: 1; font-weight: 700; }
.founder-body h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.founder-body h2 em {
  font-family: var(--f-script);
  font-style: normal;
  font-weight: 700;
  color: var(--acid);
  text-transform: lowercase;
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-3deg);
  line-height: 0.7;
  letter-spacing: -0.01em;
}
.founder-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
  max-width: 58ch;
}
.founder-body .sig {
  margin-top: 28px;
  font-family: var(--f-script);
  font-size: 36px;
  color: var(--acid);
  transform: rotate(-2deg);
  display: inline-block;
}
/* A warm side-note linking the founder story to the FAQ naming entry. */
.founder-body .founder-aside {
  margin: 4px 0 18px;
  font-family: var(--f-script);
  font-size: 22px;
  line-height: 1.25;
  color: var(--acid);
  transform: rotate(-1.2deg);
  transform-origin: left top;
  max-width: 42ch;
}
.founder-body .founder-aside a {
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.founder-body .founder-aside a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  transform: translateX(3px);
}
.founder-body .founder-aside b {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0 0.05em;
}

/* ==========================================================================
   Plan / Desks
   ========================================================================== */
.desks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 50px auto 0;
}
@media (max-width: 720px) { .desks { grid-template-columns: 1fr; gap: 30px; } }
.desk {
  padding: 0;
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.desk .tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 14px;
  padding: 0;
}
.desk h4 {
  font-family: var(--f-hd);
  font-size: clamp(26px, 2.6vw, 34px);
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.desk p {
  font-size: 18px;
  color: var(--ink);
  opacity: 0.9;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   Blog page specifics
   ========================================================================== */
.blog-hero {
  padding: clamp(80px, 10vw, 160px) 0 40px;
  text-align: left;
}
.blog-hero .section-kicker { color: var(--acid); }
.blog-hero h1 {
  font-family: var(--f-display);
  /* Reduced min from 64px so "HAPPENINGS." fits inside the container on
     ~375px viewports (iPhone mini / SE). */
  font-size: clamp(44px, 13vw, 180px);
  line-height: 0.88;
  margin: 0 0 24px;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}
.blog-hero h1 .dot { color: var(--acid); }
.blog-hero p {
  max-width: 54ch;
  color: var(--ink);
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
  margin: 0 0 34px;
}
.blog-hero p b { color: var(--ink); font-weight: 700; }

.newsletter {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  align-items: stretch;
}
.newsletter:focus-within { border-color: var(--acid); }
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18px;
  letter-spacing: 0;
  padding: 14px 0;
  outline: none;
}
.newsletter input::placeholder { color: var(--ink); opacity: 0.45; }
.newsletter button {
  padding: 12px 0 12px 22px;
  background: transparent;
  color: var(--acid);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s;
  white-space: nowrap;
}
.newsletter button:hover { transform: translateX(4px); }

/* On narrow phones, stack input + submit so the button can't overflow. */
@media (max-width: 480px) {
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-bottom: none;
  }
  .newsletter input {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .newsletter button {
    padding: 14px 0 0;
    align-self: flex-start;
  }
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.post {
  display: grid;
  grid-template-columns: 100px 170px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.3s;
}
.post:hover { background: rgba(180,255,57,0.04); }
@media (max-width: 780px) {
  .post { grid-template-columns: 80px 1fr; grid-auto-rows: min-content; gap: 18px; }
  .post .post-flyer { grid-column: span 2; order: 3; max-width: 280px; }
}
.post-year {
  display: inline-block;
  font-size: 12px;
  font-family: var(--f-mono);
  opacity: 0.5;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.post-date {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.2;
}
.post-date b { color: var(--ink); font-weight: 700; display: block; font-size: 22px; font-family: var(--f-hd); opacity: 1; }
.post-flyer {
  aspect-ratio: 1 / 1.1;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-display);
  padding: 10px;
  line-height: 0.9;
  font-size: 22px;
  text-transform: uppercase;
}
.post-flyer.pink { background: #fdd1ef; color: #cb1a6d; }
.post-flyer.acid { background: var(--acid); color: var(--acid-ink); }
.post-flyer.cyan { background: #b7ebf6; color: #064352; }
.post-flyer.photo {
  padding: 0;
  background: #0d0d10;
  aspect-ratio: 3 / 4;
}
.post-flyer.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.95);
}
.post:hover .post-flyer.photo img { transform: scale(1.04); filter: saturate(1.1); }
.post-flyer.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.post-body h3 {
  font-family: var(--f-hd);
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  line-height: 1.1;
}
.post:hover .post-body h3 { color: var(--acid); }
.post-excerpt {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 10px;
  color: var(--ink);
  opacity: 0.78;
  max-width: 64ch;
}
.post-body .tag {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-feature {
  margin: 40px 0 60px;
  padding: 0 0 50px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 860px) {
  .post-feature { grid-template-columns: 1fr; gap: 30px; }
}
.post-feature .flyer {
  aspect-ratio: 3 / 4;
  background: #fdd1ef; color: #cb1a6d;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  text-align: center;
  padding: 30px;
  line-height: 0.9;
}
.post-feature .flyer.photo {
  padding: 0;
  background: #0d0d10;
}
.post-feature .flyer.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-feature .flyer.photo::before { display: none; }
.post-feature .flyer .big {
  font-size: clamp(44px, 7vw, 92px);
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.post-feature .flyer .med {
  font-family: var(--f-hd);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-top: 16px;
  text-transform: uppercase;
}
.post-feature .flyer .sm {
  font-family: var(--f-mono);
  font-size: 13px;
  margin-top: 10px;
  letter-spacing: 0.14em;
}
.post-feature .flyer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.post-feature .flyer .scribble {
  position: absolute;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.02em;
  background: #cb1a6d;
  color: #fff;
  padding: 8px 12px;
  border-radius: 100px;
  transform: rotate(-8deg);
  top: 20px; left: 20px;
  text-transform: uppercase;
}
.post-feature .body h2 {
  font-family: var(--f-hd);
  font-size: clamp(30px, 3.4vw, 46px);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.post-feature .body .tag {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--acid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.post-feature .body p {
  font-size: 18px;
  color: var(--ink);
  opacity: 0.9;
  margin: 0 0 16px;
  line-height: 1.6;
}
.post-feature .body p b { color: var(--ink); opacity: 1; font-weight: 700; }
.post-feature .body ul {
  list-style: none;
  padding: 0; margin: 24px 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 15px;
}
.post-feature .body ul li { display: flex; align-items: center; gap: 8px; }
.post-feature .body .share {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.post-feature .body .share a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.post-feature .body .share a:hover { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }
.post-feature .body .share svg { width: 18px; height: 18px; }
