  :root {
    --red: #E22A2A;
    --red-deep: #B91C1C;
    --red-soft: #FCE3E3;
    --ink: #1A1614;
    --ink-soft: #4A403B;
    --cream: #F6EFE4;
    --cream-2: #EFE6D4;
    --paper: #FBF7EE;
    --line: #2A211E;
    --yellow: #F5C64A;
    --blue: #3F5BB6;
    --green: #2E7D4F;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  html, body { background: var(--cream); color: var(--ink); font-family: 'Work Sans', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: clip; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; border: none; background: none; cursor: pointer; }

  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  /* -------- TOPBAR -------- */
  .topbar {
    background: var(--ink);
    color: var(--cream);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow: hidden;
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 32px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 24px;
  }
  .topbar-scroll {
    display: flex;
    gap: 40px;
    overflow: hidden;
    flex: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
            mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
  }
  .topbar-scroll-track {
    display: inline-flex;
    gap: 40px;
    animation: topbar-scroll 42s linear infinite;
    white-space: nowrap;
  }
  .topbar-scroll span { opacity: 0.75; }
  .topbar-scroll span b { color: var(--yellow); font-weight: 500; margin-right: 6px; }
  .topbar-right { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }
  .topbar-right a { transition: color .2s; }
  .topbar-right a:hover { color: var(--yellow); }
  @keyframes topbar-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 20px)); }
  }
  @media (max-width: 760px) {
    .topbar-right { display: none; }
  }

  /* -------- NAV -------- */
  .nav {
    background: var(--red);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--ink);
    box-shadow: 0 2px 0 rgba(0,0,0,.04);
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s;
  }
  .nav-brand:hover { transform: translateY(-1px); }
  .nav-logo {
    height: 52px;
    width: auto;
    border-radius: 10px;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0,0,0,.18);
    background: white;
    padding: 2px;
    transform: rotate(-2deg);
    transition: transform .3s ease;
  }
  .nav-brand:hover .nav-logo { transform: rotate(0deg) scale(1.04); }
  .nav-name { line-height: 1; display: flex; flex-direction: column; }
  .nav-name .pap {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.22em;
    font-size: 13px;
  }
  .nav-name .ver {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 28px;
    margin-top: -2px;
    color: white;
  }
  .nav-links { display: flex; gap: 28px; font-weight: 500; font-size: 14px; list-style: none; }
  .nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--yellow);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--ink);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--ink);
    transition: transform .15s, box-shadow .15s;
    white-space: nowrap;
  }
  .nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 rgba(0,0,0,.25); }
  .wa-dot {
    width: 9px; height: 9px; background: #25D366; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    animation: wa-pulse 1.8s ease-in-out infinite;
  }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); }
    50%      { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  }

  /* -------- HERO -------- */
  .hero {
    background:
      radial-gradient(circle at 20% 0%, rgba(226,42,42,.08), transparent 50%),
      radial-gradient(circle at 85% 20%, rgba(245,198,74,.12), transparent 50%),
      var(--cream);
    padding: 72px 0 20px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--cream-2) 1px, transparent 1px);
    background-size: 100% 32px;
    opacity: 0.55;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--paper);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px dashed var(--ink);
    margin-bottom: 22px;
    animation: fadeUp .7s ease both;
  }
  .hero-kicker .pulse {
    width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(226,42,42,.6); }
    50%     { box-shadow: 0 0 0 6px rgba(226,42,42,0); }
  }

  .hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    animation: fadeUp .8s ease .1s both;
  }
  .hero h1 .script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.01em;
    display: inline-block;
    transform: rotate(-2deg);
    font-size: 1.15em;
    line-height: 0.9;
  }
  .hero p.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeUp .8s ease .25s both;
  }
  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    animation: fadeUp .8s ease .4s both;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--ink);
    transition: transform .15s, box-shadow .15s;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
  .btn-primary:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--ink); }
  .btn-ghost { background: transparent; color: var(--ink); }
  .btn-ghost:hover { background: var(--ink); color: var(--cream); }

  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px dashed var(--ink);
    max-width: 580px;
    animation: fadeUp .8s ease .55s both;
  }
  .stat .n { font-family: 'Archivo Black', sans-serif; font-size: 28px; color: var(--red); line-height: 1; }
  .stat .l { font-size: 12px; color: var(--ink-soft); font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

  /* Hero collage */
  .hero-collage {
    position: relative;
    height: 580px;
    animation: fadeIn 1s ease .3s both;
  }
  .collage-card {
    position: absolute;
    background: white;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 rgba(0,0,0,.08);
    transition: transform .35s cubic-bezier(.2,.7,.2,1.1);
    will-change: transform;
  }
  .collage-card:hover {
    transform: translate(-3px,-4px) rotate(0deg) !important;
    box-shadow: 10px 10px 0 rgba(0,0,0,.12);
    z-index: 10;
  }

  .cc-1 {
    top: 20px; left: 40px;
    width: 240px; height: 300px;
    transform: rotate(-5deg);
    background: var(--red);
    padding: 24px;
    color: white;
    animation: float1 7s ease-in-out infinite;
  }
  .cc-1 .tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; opacity: 0.8; text-transform: uppercase; }
  .cc-1 h3 { font-family: 'Archivo Black', sans-serif; font-size: 42px; line-height: 0.95; margin-top: 10px; }
  .cc-1 .script { font-family: 'Caveat', cursive; font-size: 44px; margin-top: 6px; color: white; transform: rotate(-3deg); display: inline-block; }
  .cc-1-lines {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .cc-1-lines span { height: 1px; background: rgba(255,255,255,.4); }
  .cc-1-lines span:nth-child(1) { width: 100%; }
  .cc-1-lines span:nth-child(2) { width: 80%; }
  .cc-1-lines span:nth-child(3) { width: 60%; }

  .cc-2 {
    top: 0; right: 10px;
    width: 200px; height: 260px;
    transform: rotate(4deg);
    background: var(--paper);
    padding: 20px;
    animation: float2 8s ease-in-out infinite;
  }
  .cc-2 .pencil {
    height: 160px; width: 20px;
    background: linear-gradient(180deg,
      var(--yellow) 0%, var(--yellow) 70%,
      #E8A832 70%, #E8A832 75%,
      #F4DCA8 75%, #F4DCA8 85%,
      var(--ink) 85%, var(--ink) 100%);
    margin: 0 auto;
    border-radius: 2px 2px 0 0;
    position: relative;
  }
  .cc-2 .pencil::before {
    content: ""; position: absolute; top: -20px; left: -2px;
    width: 24px; height: 24px;
    background: #E8A832;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .cc-2 .pencil::after {
    content: ""; position: absolute; top: -8px; left: 4px;
    width: 12px; height: 8px;
    background: var(--ink);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .cc-2 .caption { font-family: 'Caveat', cursive; font-size: 20px; text-align: center; margin-top: 12px; color: var(--ink-soft); transform: rotate(-2deg); }

  .cc-3 {
    bottom: 40px; left: 0;
    width: 240px;
    padding: 20px;
    background: var(--yellow);
    transform: rotate(3deg);
    animation: float3 9s ease-in-out infinite;
  }
  .cc-3 h4 { font-family: 'Archivo Black', sans-serif; font-size: 16px; margin-bottom: 10px; letter-spacing: 0.01em; }
  .cc-3 .note-line { display: flex; align-items: center; gap: 8px; font-family: 'DM Mono', monospace; font-size: 12px; padding: 5px 0; border-bottom: 1px dotted rgba(0,0,0,.3); }
  .cc-3 .note-line:last-child { border: none; }
  .cc-3 .check {
    width: 14px; height: 14px; border: 1.5px solid var(--ink);
    display: inline-block; flex-shrink: 0;
    position: relative;
  }
  .cc-3 .note-line.done .check {
    background: var(--ink);
  }
  .cc-3 .note-line.done .check::after {
    content: "✓"; position: absolute; top: -3px; left: 1px;
    color: var(--yellow); font-size: 12px; font-weight: 700;
  }
  .cc-3 .note-line.done span { text-decoration: line-through; opacity: 0.55; }

  .cc-4 {
    bottom: 0; right: 60px;
    width: 260px; height: 180px;
    transform: rotate(-4deg);
    background: var(--ink);
    color: var(--cream);
    padding: 20px;
    animation: float4 10s ease-in-out infinite;
  }
  .cc-4 .tag { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; }
  .cc-4 h4 { font-family: 'Archivo Black', sans-serif; font-size: 22px; margin-top: 8px; line-height: 1.05; }
  .cc-4 .sig { font-family: 'Caveat', cursive; font-size: 22px; color: var(--red-soft); margin-top: 12px; }

  .hero-stamp {
    position: absolute;
    top: 10px; right: -10px;
    width: 100px; height: 100px;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(246,239,228,.85);
    line-height: 1.3;
    letter-spacing: 0.08em;
    z-index: 5;
    transform: rotate(-12deg);
    animation: stamp-sway 6s ease-in-out infinite;
  }

  @keyframes float1 { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-4.2deg) translateY(-8px); } }
  @keyframes float2 { 0%,100% { transform: rotate(4deg) translateY(0); }   50% { transform: rotate(3.2deg) translateY(-10px); } }
  @keyframes float3 { 0%,100% { transform: rotate(3deg) translateY(0); }   50% { transform: rotate(2.2deg) translateY(-6px); } }
  @keyframes float4 { 0%,100% { transform: rotate(-4deg) translateY(0); }  50% { transform: rotate(-3.2deg) translateY(-12px); } }
  @keyframes stamp-sway { 0%,100% { transform: rotate(-12deg) scale(1); } 50% { transform: rotate(-8deg) scale(1.03); } }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* -------- TICKER -------- */
  .ticker {
    background: var(--ink);
    color: var(--cream);
    padding: 16px 0;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }
  .ticker-track {
    display: flex;
    gap: 40px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .ticker-track span { display: inline-flex; align-items: center; gap: 40px; flex-shrink: 0; }
  .ticker-track .star { color: var(--red); font-size: 18px; font-style: normal; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 20px)); }
  }

  /* -------- SECTIONS -------- */
  .section { padding: 100px 0; position: relative; }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -0.01em;
    max-width: 700px;
  }
  .section-head h2 .script { font-family: 'Caveat', cursive; font-weight: 700; color: var(--red); font-size: 1.1em; }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .section-label::before {
    content: ""; display: block; width: 24px; height: 2px; background: var(--red);
  }
  .section-head p {
    max-width: 340px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
  }

  /* -------- CATEGORIES -------- */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .cat {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 28px 24px;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .2s, color .2s;
    overflow: hidden;
  }
  .cat::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,.08) 60%, rgba(255,255,255,.08) 62%, transparent 62%);
    pointer-events: none; opacity: 0;
    transition: opacity .3s ease;
  }
  .cat:hover { transform: translate(-3px,-5px); box-shadow: 6px 8px 0 var(--ink); }
  .cat:hover::after { opacity: 1; }
  .cat.red { background: var(--red); color: white; }
  .cat.ink { background: var(--ink); color: var(--cream); }
  .cat.yellow { background: var(--yellow); }
  .cat-num {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 0.1em;
  }
  .cat h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    line-height: 0.95;
    margin-top: auto;
  }
  .cat .count {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    margin-top: 8px;
    opacity: 0.9;
  }
  .cat .arr {
    position: absolute;
    top: 24px; right: 24px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s;
  }
  .cat:hover .arr { transform: translate(2px,-2px) rotate(-10deg); }

  .cat-icon {
    width: 90px; height: 90px;
    margin: 20px 0;
    position: relative;
    transition: transform .4s ease;
  }
  .cat:hover .cat-icon { transform: scale(1.08) rotate(-3deg); }

  /* -------- SHOWCASE -------- */
  .products {
    background: var(--paper);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }
  .prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .prod {
    background: white;
    border: 2px solid var(--ink);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
  }
  .prod:hover { transform: translateY(-6px); box-shadow: 4px 6px 0 var(--ink); }
  .prod-img {
    aspect-ratio: 4/3;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prod-img::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(0,0,0,0.04) 10px, rgba(0,0,0,0.04) 11px);
  }
  .prod-img .illus {
    position: relative; z-index: 1;
    transition: transform .4s ease;
  }
  .prod:hover .prod-img .illus { transform: scale(1.08) rotate(-4deg); }

  .prod-body {
    padding: 16px 18px 20px;
  }
  .prod .cat-lbl {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .prod h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
  }
  .prod .sub {
    font-family: 'Caveat', cursive;
    font-size: 17px;
    color: var(--ink-soft);
    margin-top: 6px;
    transform: rotate(-1deg);
    display: inline-block;
  }

  /* -------- STORY -------- */
  .story {
    padding: 100px 0;
    background: var(--cream);
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .story-visual {
    position: relative;
    aspect-ratio: 4/5;
  }
  .story-visual .frame {
    position: absolute;
    inset: 0;
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 10px 10px 0 rgba(0,0,0,.12);
    overflow: hidden;
    background-image:
      repeating-linear-gradient(135deg, transparent 0, transparent 12px, rgba(0,0,0,.03) 12px, rgba(0,0,0,.03) 13px);
  }
  .story-visual .frame-inner {
    position: absolute;
    inset: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
  .story-visual .logo-display {
    width: 70%;
    max-width: 280px;
    background: var(--red);
    padding: 28px 20px;
    border: 2px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    transform: rotate(-2deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .story-visual .logo-display img { width: 100%; height: auto; display: block; }

  .story-visual .addr-tag {
    background: var(--cream);
    border: 1px dashed var(--ink);
    padding: 10px 16px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    transform: rotate(2deg);
  }

  .story-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid var(--ink);
    transform: rotate(-8deg);
    font-family: 'Archivo Black', sans-serif;
    line-height: 1;
    padding: 20px;
    box-shadow: 6px 6px 0 var(--ink);
    animation: badge-spin 14s linear infinite;
  }
  @keyframes badge-spin {
    0%,100% { transform: rotate(-8deg); }
    50%     { transform: rotate(-2deg); }
  }
  .story-badge .n { font-size: 44px; }
  .story-badge .l { font-family: 'Caveat', cursive; font-size: 18px; margin-top: 6px; }

  .story-tape {
    position: absolute;
    top: -14px; left: 40px;
    width: 100px; height: 28px;
    background: rgba(245,198,74,.65);
    border: 1px dashed rgba(0,0,0,.25);
    transform: rotate(-4deg);
    z-index: 2;
  }

  .story h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .story h2 .script { font-family: 'Caveat', cursive; color: var(--red); font-size: 1.15em; }
  .story .body p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 540px;
  }
  .story .body p:first-of-type::first-letter {
    font-family: 'Archivo Black', sans-serif;
    font-size: 64px;
    float: left;
    line-height: 0.9;
    margin: 6px 10px 0 0;
    color: var(--red);
  }
  .story-sig {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: var(--ink);
    margin-top: 24px;
  }
  .story-meta {
    display: flex;
    gap: 30px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid var(--ink);
    flex-wrap: wrap;
  }
  .story-meta .k { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
  .story-meta .v { font-family: 'Archivo Black', sans-serif; font-size: 18px; margin-top: 4px; }

  /* -------- CONTACT -------- */
  .contact {
    background: var(--cream);
    padding: 100px 0;
    position: relative;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .contact-card {
    background: var(--red);
    color: white;
    padding: 48px 44px;
    border: 2px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink);
    position: relative;
    overflow: hidden;
  }
  .contact-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
  }
  .contact-card::after {
    content: "";
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    border: 2px dashed rgba(255,255,255,.12);
    border-radius: 50%;
  }
  .contact-card > * { position: relative; z-index: 2; }
  .contact-card h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    line-height: 0.95;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .contact-card h2 .script { font-family: 'Caveat', cursive; color: var(--yellow); font-weight: 700; }
  .contact-card > p { font-size: 16px; line-height: 1.55; opacity: 0.95; margin-bottom: 28px; max-width: 420px; }

  .wa-big {
    background: white;
    color: var(--ink);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid var(--ink);
    font-weight: 600;
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 12px;
  }
  .wa-big:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
  .wa-big .icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 22px;
  }
  .wa-big .num { font-family: 'Archivo Black', sans-serif; font-size: 20px; letter-spacing: 0.02em; }
  .wa-big .sub { font-size: 12px; font-family: 'DM Mono', monospace; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
  .wa-big .arrow { margin-left: auto; font-size: 22px; transition: transform .2s; }
  .wa-big:hover .arrow { transform: translateX(4px); }

  .phone-row {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
  }
  .phone-row a {
    flex: 1;
    min-width: 140px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    justify-content: center;
    transition: background .2s, color .2s;
    font-family: 'DM Mono', monospace;
  }
  .phone-row a:hover { background: var(--ink); border-color: var(--ink); }

  .insta-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }
  .insta-btn {
    flex: 1;
    background: var(--ink);
    border: 2px solid var(--ink);
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    justify-content: center;
    transition: background .2s;
  }
  .insta-btn:hover { background: transparent; color: white; border-color: white; }

  .location {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 36px 32px;
    position: relative;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .location h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    margin-bottom: 4px;
  }
  .location .sub {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
  }
  .map-wrap-real {
    border: 2px solid var(--ink);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .map-wrap-real::before {
    content: "você está aqui";
    position: absolute;
    top: -12px; left: 20px;
    background: var(--red);
    color: white;
    padding: 4px 12px;
    font-family: 'Caveat', cursive;
    font-size: 16px;
    border: 2px solid var(--ink);
    transform: rotate(-3deg);
    z-index: 2;
  }
  .map-wrap-real iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
  }

  .loc-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
  .loc-info .k { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
  .loc-info .v { font-size: 14px; margin-top: 4px; font-weight: 500; line-height: 1.4; }

  .hours-list { list-style: none; }
  .hours-list li { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; border-bottom: 1px dashed var(--ink-soft); font-family: 'DM Mono', monospace; }
  .hours-list li:last-child { border: none; }
  .hours-list li.closed { opacity: 0.55; }
  .hours-list li.today { color: var(--red); font-weight: 600; }

  .loc-full {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px dashed var(--ink);
  }
  .loc-full .v {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
  }

  /* -------- FOOTER -------- */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 0 30px;
    position: relative;
    border-top: 4px solid var(--red);
  }
  .foot-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .foot-brand .foot-logo {
    height: 64px;
    width: auto;
    background: white;
    padding: 4px;
    border-radius: 10px;
    border: 2px solid var(--red);
    box-shadow: 4px 4px 0 var(--red);
    margin-bottom: 20px;
  }
  .foot-brand p { margin-top: 8px; opacity: 0.75; font-size: 14px; line-height: 1.55; max-width: 320px; }

  .foot-col h4 { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 8px; font-size: 14px; opacity: 0.85; transition: opacity .2s; }
  .foot-col li:hover { opacity: 1; }
  .foot-col a:hover { color: var(--yellow); }

  .foot-bot {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* -------- WHATSAPP FAB -------- */
  .fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    background: #25D366;
    color: white;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform .2s;
    animation: fab-pop .6s ease 1s both;
  }
  .fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0;
    animation: fab-ring 2.4s ease-out infinite;
  }
  .fab:hover { transform: scale(1.08) rotate(-5deg); }
  @keyframes fab-pop {
    from { transform: scale(0) rotate(-30deg); opacity: 0; }
    to   { transform: scale(1) rotate(0); opacity: 1; }
  }
  @keyframes fab-ring {
    0%   { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  /* -------- REVEAL ON SCROLL -------- */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* -------- RESPONSIVE -------- */
  @media (max-width: 1000px) {
    .hero-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-collage { height: 480px; max-width: 500px; margin: 0 auto; }
    .cat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .story-badge { width: 130px; height: 130px; }
    .story-badge .n { font-size: 36px; }
  }
  @media (max-width: 600px) {
    .wrap { padding: 0 20px; }
    .topbar-inner { padding: 10px 20px; }
    .nav-inner { padding: 12px 20px; }
    .cat-grid { grid-template-columns: 1fr; }
    .prod-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .foot-top { grid-template-columns: 1fr; }
    .hero { padding-top: 48px; }
    .section { padding: 72px 0; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-collage { height: 460px; }
    .cc-1 { width: 200px; height: 260px; left: 20px; }
    .cc-2 { width: 160px; height: 220px; right: 10px; }
    .cc-3 { width: 200px; left: 10px; bottom: 60px; }
    .cc-4 { width: 220px; height: 160px; right: 20px; }
    .nav-name { display: none; }
    .contact-card { padding: 32px 28px; }
    .contact-card h2 { font-size: 36px; }
    .location { padding: 28px 24px; }
    .story-meta { gap: 20px; }
    .nav-cta { font-size: 12px; padding: 8px 14px; }
    .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
    .prod h4 { font-size: 14px; }
    .prod-body { padding: 12px 14px 14px; }
  }
  @media (max-width: 420px) {
    .prod-grid { grid-template-columns: 1fr; }
  }
