/* ──────────────────────────────────────────── tokens */
  :root {
    /* paper + ink */
    --paper: #fbf6ec;
    --paper-2: #f3ecdb;
    --paper-edge: #e6dec9;
    --ink: #15172e;
    --ink-2: #4a4d6b;
    --ink-3: #8c8fa8;

    /* anchor colors (palette B) */
    --c-services: #ff2f86;       /* hot pink */
    --c-services-ink: #4a0a30;
    --c-rentals:  #0fb6b1;       /* teal */
    --c-rentals-ink: #053b3a;
    --c-games:    #ffb800;       /* sunny gold */
    --c-games-ink: #4a3500;

    /* type */
    --f-display: "Caprasimo", "Cooper Black", Georgia, serif;
    --f-italic:  "Boska", "Times New Roman", serif;
    --f-body:    "Switzer", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;

    --shadow-card: 0 1px 0 rgba(21,23,46,.04), 0 12px 32px -16px rgba(21,23,46,.18);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  /* ──────────────────────────────────────────── shared utilities */
  .wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 720px) {
    .wrap { padding: 0 20px; }
  }

  .display { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.01em; }
  .italic-kicker {
    font-family: var(--f-italic);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .eyebrow {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  a { color: inherit; }

  /* buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: var(--r-pill);
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    line-height: 1;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(21,23,46,.4); }
  .btn:active { transform: translateY(0); }
  .btn .arr { transition: transform .2s ease; }
  .btn:hover .arr { transform: translateX(3px); }
  .btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 12.5px 20.5px;
  }
  .btn.ghost:hover { background: var(--ink); color: var(--paper); }
  .btn.svc { background: var(--c-services); color: #fff; }
  .btn.rnt { background: var(--c-rentals); color: #fff; }
  .btn.gms { background: var(--c-games); color: var(--c-games-ink); }

  /* ──────────────────────────────────────────── nav */
  .nav-wrap { position: sticky; top: 0; z-index: 50; }
  .nav {
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background: rgba(251, 246, 236, 0.78);
    border-bottom: 1px solid rgba(21,23,46,.08);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--ink);
    font-family: var(--f-display);
    font-size: 22px;
    line-height: 1;
  }
  .brand-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-services);
    display: grid; place-items: center;
    font-family: var(--f-body); font-weight: 700; font-size: 8.5px;
    color: #fff;
    text-align: center; line-height: 1;
    letter-spacing: 0.04em;
    border: 1.5px solid var(--ink);
    flex-shrink: 0;
  }
  .nav-links {
    display: flex; gap: 28px; align-items: center;
    font-size: 15px; font-weight: 500;
  }
  .nav-links a { text-decoration: none; color: var(--ink-2); transition: color .15s ease; }
  .nav-links a:hover { color: var(--ink); }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .lang-toggle {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(21,23,46,.06);
    border: 1px solid rgba(21,23,46,.12);
    border-radius: var(--r-pill);
    padding: 3px 4px 3px 10px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    font-family: var(--f-body);
    color: var(--ink-2);
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .lang-toggle:hover { border-color: rgba(21,23,46,.3); background: rgba(21,23,46,.1); }
  .lang-toggle .lang-icon {
    font-size: 14px; line-height: 1;
    margin-right: 2px;
  }
  .lang-toggle span:not(.lang-icon) {
    padding: 5px 10px; border-radius: var(--r-pill);
    color: var(--ink-2); transition: all .15s ease;
  }
  .lang-toggle span.on { background: var(--ink); color: var(--paper); }
  @media (max-width: 720px) {
    .lang-toggle { padding: 3px; }
    .lang-toggle .lang-icon { margin-left: 4px; }
    .lang-toggle span:not(.lang-icon) { padding: 5px 8px; font-size: 12px; }
  }

  .nav-burger {
    display: none;
    width: 40px; height: 40px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-pill);
    background: transparent;
    cursor: pointer;
    align-items: center; justify-content: center;
  }
  .nav-burger span {
    display: block; width: 16px; height: 1.6px; background: var(--ink); position: relative;
  }
  .nav-burger span::before, .nav-burger span::after {
    content:""; position:absolute; left:0; right:0; height:1.6px; background: var(--ink);
  }
  .nav-burger span::before { top:-5px; }
  .nav-burger span::after { top:5px; }

  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: inline-flex; }
  }
  @media (max-width: 480px) {
    .brand { font-size: 19px; }
    .brand-mark { width: 32px; height: 32px; font-size: 7.5px; }
  }

  /* ──────────────────────────────────────────── hero (V1 Flash) */
  .hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 22px;
    color: var(--ink-2);
    margin-bottom: 18px;
  }
  .hero .kicker .pip {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--c-services);
    display: inline-block;
  }
  .hero h1 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(48px, 7.6vw, 96px);
    line-height: 0.94;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    color: var(--ink);
  }
  .hero h1 .em {
    font-family: var(--f-italic);
    font-style: italic;
    font-weight: 700;
    color: var(--c-services);
  }
  .hero h1 .underline {
    display: inline-block;
    position: relative;
  }
  .hero h1 .underline::after {
    content:"";
    position: absolute;
    left: 4%; right: 4%; bottom: 6%;
    height: 14%;
    background: var(--c-games);
    z-index: -1;
    border-radius: 6px;
    opacity: .9;
  }
  .hero .lede {
    font-size: 19px;
    color: var(--ink-2);
    max-width: 50ch;
    margin: 0 0 28px;
    line-height: 1.5;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 28px;
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
    font-size: 14px; color: var(--ink-3);
  }
  .hero-meta .dot { width: 4px; height: 4px; background: var(--ink-3); border-radius: 50%; }
  .hero-meta .stars { color: var(--c-games); letter-spacing: 1.5px; }

  /* hero poster (replaces the mascot splat) */
  .hero-poster {
    position: relative;
    aspect-ratio: 1 / 1.05;
    background: var(--ink);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--ink);
    box-shadow:
      0 24px 50px -28px rgba(21,23,46,.55),
      8px 8px 0 var(--ink);
    transform: rotate(-1.2deg);
    padding: 28px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-poster::before {
    content:"";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 88%, rgba(255,184,0,.18) 0 30%, transparent 31%),
      radial-gradient(circle at 12% 18%, rgba(255,47,134,.18) 0 24%, transparent 25%),
      repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 14px, transparent 14px 30px);
    pointer-events: none;
  }
  .poster-stack {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    gap: 10px;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: -0.005em;
  }
  .poster-row {
    display: flex; gap: 10px; align-items: center;
  }
  .poster-row span {
    flex: 1;
    color: var(--ink);
    padding: 14px 18px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--ink);
    font-size: clamp(15px, 2.2vw, 22px);
    line-height: 1;
    box-shadow: 3px 3px 0 var(--ink);
    text-align: center;
  }
  .poster-row.r1 { transform: rotate(-2deg); }
  .poster-row.r2 { transform: rotate(1.5deg) translateX(12px); }
  .poster-row.r3 { transform: rotate(-1deg) translateX(-8px); }
  .poster-row.r4 { transform: rotate(2deg) translateX(4px); }
  .hero-poster .badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--c-games);
    color: var(--c-games-ink);
    font-family: var(--f-body); font-weight: 700; font-size: 12px;
    padding: 8px 12px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--ink);
    transform: rotate(6deg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
  }
  .hero-poster .speech {
    position: absolute;
    bottom: 18px; left: 18px;
    background: var(--paper);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-md);
    padding: 10px 14px;
    font-family: var(--f-italic); font-style: italic;
    font-size: 16px;
    box-shadow: 3px 3px 0 var(--ink);
    transform: rotate(-3deg);
    z-index: 2;
  }

  /* hero corner sticker (sun/star) */
  .hero .corner-sticker {
    position: absolute;
    right: -40px;
    top: 32px;
    width: 130px; height: 130px;
    background: var(--c-games);
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--c-games-ink);
    font-family: var(--f-display);
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transform: rotate(-12deg);
    z-index: 3;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .hero .corner-sticker span { transform: rotate(0); }

  @media (max-width: 900px) {
    .hero { padding: 36px 0 48px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-poster { transform: rotate(-1deg); max-width: 460px; margin: 0 auto; }
    .hero .corner-sticker { width: 92px; height: 92px; right: -16px; top: -8px; font-size: 13px; }
  }
  @media (max-width: 480px) {
    .hero h1 { font-size: 52px; }
    .hero .kicker { font-size: 18px; }
    .hero .lede { font-size: 16px; }
  }

  /* ──────────────────────────────────────────── bucket strip (in hero base) */
  .bucket-strip {
    position: relative;
    z-index: 2;
    margin-top: 56px;
  }
  .bucket-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .bcard {
    position: relative;
    border-radius: var(--r-lg);
    padding: 28px 26px 26px;
    border: 1.5px solid var(--ink);
    overflow: hidden;
    text-decoration: none;
    display: flex; flex-direction: column;
    min-height: 260px;
    transition: transform .2s ease, box-shadow .2s ease;
    color: inherit;
  }
  .bcard:hover { transform: translateY(-3px); box-shadow: 6px 12px 0 var(--ink); }
  .bcard.svc { background: var(--c-services); color: #fff; }
  .bcard.svc { box-shadow: 4px 4px 0 var(--ink); }
  .bcard.rnt { background: var(--c-rentals); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
  .bcard.gms { background: var(--c-games); color: var(--c-games-ink); box-shadow: 4px 4px 0 var(--ink); }
  .bcard .b-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
  }
  .bcard h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 38px;
    margin: 0 0 12px;
    line-height: 0.95;
    letter-spacing: -0.01em;
  }
  .bcard h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 700; opacity: 0.78; font-size: 28px; display: block; margin-top: 4px; }
  .bcard ul {
    list-style: none; padding: 0; margin: 0;
    font-size: 15px; font-weight: 500;
  }
  .bcard ul li {
    padding: 7px 0;
    border-top: 1px dashed currentColor;
    opacity: 0.92;
  }
  .bcard ul li.soon { opacity: 0.6; font-weight: 400; font-style: italic; }
  .bcard .b-foot {
    margin-top: auto; padding-top: 18px;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 12px;
  }
  .bcard .b-foot .price {
    font-family: var(--f-display);
    font-size: 22px;
    line-height: 1;
  }
  .bcard .b-foot .price span {
    display: block;
    font-family: var(--f-body);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-bottom: 2px;
  }
  .bcard .browse {
    display: inline-flex; gap: 8px; align-items: center;
    font-weight: 700; font-size: 14px;
    background: rgba(255,255,255,.18);
    border: 1.5px solid currentColor;
    padding: 9px 14px;
    border-radius: var(--r-pill);
    transition: background .2s;
  }
  .bcard.gms .browse { background: rgba(21,23,46,.10); }
  .bcard:hover .browse { background: rgba(255,255,255,.32); }
  .bcard.gms:hover .browse { background: rgba(21,23,46,.18); }
  .bcard .b-deco {
    position: absolute;
    right: -30px; bottom: -30px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    pointer-events: none;
  }
  .bcard.gms .b-deco { background: rgba(21,23,46,.10); }

  @media (max-width: 900px) {
    .bucket-strip-grid { grid-template-columns: 1fr; gap: 14px; }
    .bcard { min-height: 200px; padding: 22px 22px; }
    .bcard h3 { font-size: 32px; }
  }

  /* ──────────────────────────────────────────── section base */
  .section {
    padding: 96px 0;
    position: relative;
  }
  .section.compact { padding: 72px 0; }
  .section.alt { background: var(--paper-2); }
  .section-hd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
  }
  .section-hd .left .eyebrow { color: var(--ink-3); margin-bottom: 14px; display: inline-block; }
  .section-hd h2 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 14ch;
  }
  .section-hd h2 em { font-family: var(--f-italic); font-style: italic; font-weight: 700; color: var(--c-services); }
  .section-hd .right p {
    font-family: var(--f-italic); font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink-2);
    margin: 0;
    max-width: 36ch;
  }
  @media (max-width: 900px) {
    .section { padding: 64px 0; }
    .section-hd { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
    .section-hd h2 { font-size: 44px; }
    .section-hd .right p { font-size: 18px; }
  }

  /* ──────────────────────────────────────────── packages mosaic */
  .pkgs {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    min-height: 640px;
  }
  .pkg {
    position: relative;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--ink);
    background: var(--paper);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 1px 0 rgba(21,23,46,.04), 0 16px 36px -22px rgba(21,23,46,.20);
  }
  .pkg:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(21,23,46,.04), 6px 14px 0 var(--ink); }
  .pkg .ph {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--paper-2);
    overflow: hidden;
    border-bottom: 1.5px solid var(--ink);
  }
  .pkg .ph::before {
    content:"";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 30%, var(--p-accent) 0 14%, transparent 15%),
      radial-gradient(circle at 75% 65%, color-mix(in srgb, var(--p-accent) 60%, var(--paper)) 0 20%, transparent 21%),
      repeating-linear-gradient(135deg, rgba(21,23,46,.05) 0 10px, transparent 10px 22px),
      var(--paper-2);
  }
  .pkg .ph .ph-tag {
    position: absolute;
    left: 16px; top: 16px;
    background: var(--paper);
    border: 1.3px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 6px 12px;
    font-family: ui-monospace, "SF Mono", monospace;
    font-size: 11px;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .pkg .ph .ph-tag.featured {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
  }
  .pkg .body {
    padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
    flex: 1;
  }
  .pkg .body h4 {
    font-family: var(--f-display); font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .pkg .body p {
    margin: 0;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.45;
  }
  .pkg .body .swatches {
    display: inline-flex; gap: 5px;
    margin-top: 4px;
  }
  .pkg .body .swatches span {
    width: 22px; height: 8px;
    border-radius: 2px;
    border: 1px solid var(--ink);
  }
  .pkg .swatches .s { background: var(--c-services); }
  .pkg .swatches .r { background: var(--c-rentals); }
  .pkg .swatches .g { background: var(--c-games); }
  .pkg .body .foot {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: auto;
    gap: 12px;
    padding-top: 8px;
  }
  .pkg .body .foot .price {
    font-family: var(--f-display); font-size: 26px; line-height: 1;
  }
  .pkg .body .foot .price span {
    font-family: var(--f-body); font-size: 11px; font-weight: 600;
    color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: block; margin-bottom: 2px;
  }
  .pkg .body .foot .cta {
    font-size: 14px; font-weight: 600;
    display: inline-flex; gap: 6px; align-items: center;
    color: var(--ink);
  }
  .pkg .body .foot .cta .arr { transition: transform .2s ease; }
  .pkg:hover .body .foot .cta .arr { transform: translateX(3px); }

  /* mosaic positions */
  .pkg.feat {
    grid-column: 1; grid-row: 1 / 3;
    --p-accent: var(--c-services);
  }
  .pkg.feat .body h4 { font-size: 44px; }
  .pkg.feat .ph { aspect-ratio: 4 / 5; }
  .pkg.p2 { grid-column: 2; grid-row: 1; --p-accent: var(--c-services); }
  .pkg.p3 { grid-column: 3; grid-row: 1; --p-accent: var(--c-rentals); }
  .pkg.p4 { grid-column: 2 / 4; grid-row: 2; --p-accent: var(--c-games); }
  .pkg.p4 { display: grid; grid-template-columns: 1fr 1.2fr; }
  .pkg.p4 .ph { border-right: 1.5px solid var(--ink); border-bottom: 0; aspect-ratio: auto; min-height: 100%; }
  .pkg.p4 .body h4 { font-size: 34px; }

  @media (max-width: 1100px) {
    .pkgs { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; min-height: 0; }
    .pkg.feat { grid-column: 1 / -1; grid-row: auto; }
    .pkg.feat .body h4 { font-size: 36px; }
    .pkg.feat .ph { aspect-ratio: 16 / 7; }
    .pkg.p2 { grid-column: 1; grid-row: auto; }
    .pkg.p3 { grid-column: 2; grid-row: auto; }
    .pkg.p4 { grid-column: 1 / -1; grid-row: auto; grid-template-columns: 1fr 1.2fr; }
  }
  @media (max-width: 720px) {
    .pkgs { grid-template-columns: 1fr; }
    .pkg.feat, .pkg.p2, .pkg.p3, .pkg.p4 { grid-column: 1; grid-row: auto; }
    .pkg.p4 { grid-template-columns: 1fr; }
    .pkg.p4 .ph { border-right: 0; border-bottom: 1.5px solid var(--ink); aspect-ratio: 16 / 9; min-height: 0; }
  }

  /* ──────────────────────────────────────────── builder pitch */
  .builder {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
  }
  .builder .b-copy h3 {
    font-family: var(--f-display); font-weight: 400;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    max-width: 14ch;
  }
  .builder .b-copy h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 700; color: var(--c-rentals); }
  .builder .b-copy > p {
    font-family: var(--f-italic); font-style: italic; font-size: 22px;
    color: var(--ink-2); margin: 0 0 28px;
    max-width: 36ch;
  }
  .steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
  }
  .step .n {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-rentals);
    color: #fff;
    border: 1.5px solid var(--ink);
    display: grid; place-items: center;
    font-family: var(--f-display); font-size: 20px;
    line-height: 1;
  }
  .step b {
    display: block;
    font-family: var(--f-body); font-weight: 700; font-size: 17px;
    margin-bottom: 2px;
  }
  .step p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }

  /* builder mock device */
  .b-mock {
    position: relative;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(21,23,46,.4), 8px 8px 0 var(--ink);
    transform: rotate(0.8deg);
  }
  .b-mock .b-mock-cap {
    background: var(--paper-2);
    border-bottom: 1.5px solid var(--ink);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .b-mock .b-mock-cap .dot { width: 10px; height: 10px; border-radius: 50%; border: 1.2px solid var(--ink); background: var(--paper); }
  .b-mock .b-mock-cap .url {
    flex: 1;
    font-family: ui-monospace, "SF Mono", monospace; font-size: 11px;
    color: var(--ink-2); text-align: center;
    background: var(--paper);
    border-radius: var(--r-pill);
    padding: 4px 10px;
    border: 1px solid var(--paper-edge);
  }
  .b-mock .b-mock-body {
    padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
    background:
      linear-gradient(transparent, transparent),
      radial-gradient(circle at 90% -10%, var(--c-rentals) 0 8%, transparent 9%),
      var(--paper);
  }
  .b-mock h5 {
    font-family: var(--f-display); font-size: 24px; margin: 0;
  }
  .b-mock h5 em { font-family: var(--f-italic); font-style: italic; font-weight: 700; color: var(--ink-3); font-size: 16px; }
  .b-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1.4px solid var(--paper-edge);
    border-radius: var(--r-md);
    background: var(--paper);
  }
  .b-row .thumb {
    width: 56px; height: 56px; border-radius: var(--r-sm);
    background:
      radial-gradient(circle at 30% 30%, var(--c-services) 0 30%, transparent 31%),
      var(--paper-2);
    border: 1.3px solid var(--ink);
  }
  .b-row.r2 .thumb { background: radial-gradient(circle at 30% 30%, var(--c-rentals) 0 30%, transparent 31%), var(--paper-2); }
  .b-row.r3 .thumb { background: radial-gradient(circle at 30% 30%, var(--c-games) 0 30%, transparent 31%), var(--paper-2); }
  .b-row .meta b { display: block; font-weight: 700; font-size: 14px; }
  .b-row .meta span { font-size: 12px; color: var(--ink-3); }
  .b-row .ctrl {
    display: inline-flex; align-items: center;
    border: 1.3px solid var(--ink);
    border-radius: var(--r-pill);
    overflow: hidden;
    font-size: 13px; font-weight: 600;
  }
  .b-row .ctrl span { padding: 4px 10px; }
  .b-row .ctrl span + span { border-left: 1.3px dashed rgba(21,23,46,.18); }
  .b-row .ctrl .v { background: var(--paper-2); }
  .b-mock .total {
    display: flex; align-items: baseline; justify-content: space-between;
    padding-top: 10px; margin-top: 4px;
    border-top: 1.3px dashed var(--paper-edge);
  }
  .b-mock .total b { font-family: var(--f-display); font-size: 24px; }
  .b-mock .total span { font-size: 12px; color: var(--ink-3); }
  .b-mock .submit {
    background: var(--c-rentals); color: #fff;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 12px 16px;
    font-weight: 700; font-size: 14px;
    text-align: center;
    box-shadow: 3px 3px 0 var(--ink);
  }

  @media (max-width: 900px) {
    .builder { grid-template-columns: 1fr; gap: 36px; }
    .b-mock { transform: rotate(0); }
  }

  /* ──────────────────────────────────────────── gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 12px;
  }
  .ph-img {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1.5px solid var(--ink);
    background: var(--paper-2);
    transition: transform .2s ease;
  }
  .ph-img:hover { transform: scale(1.015); }
  .ph-img::before {
    content:"";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at var(--cx, 30%) var(--cy, 30%), var(--ph-c1, var(--c-services)) 0 22%, transparent 23%),
      radial-gradient(circle at var(--cx2, 75%) var(--cy2, 65%), var(--ph-c2, var(--c-rentals)) 0 18%, transparent 19%),
      repeating-linear-gradient(135deg, rgba(21,23,46,.05) 0 10px, transparent 10px 22px),
      var(--paper-2);
  }
  .ph-img .ph-label {
    position: absolute; left: 12px; bottom: 12px;
    font-family: ui-monospace, "SF Mono", monospace; font-size: 11px;
    background: var(--paper);
    border: 1.2px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 4px 10px;
    color: var(--ink-2);
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .ph-img.tall { grid-row: span 2; }
  .ph-img.wide { grid-column: span 2; }

  @media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 160px 160px 160px; }
    .ph-img.tall, .ph-img.wide { grid-row: auto; grid-column: auto; }
  }

  /* ──────────────────────────────────────────── testimonials */
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .quote {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 26px 24px 22px;
    box-shadow: 4px 4px 0 var(--ink);
    display: flex; flex-direction: column; gap: 14px;
  }
  .quote.pink { background: var(--c-services); color: #fff; }
  .quote.teal { background: var(--c-rentals); color: #fff; }
  .quote .stars { color: var(--c-games); letter-spacing: 2px; font-size: 16px; }
  .quote.pink .stars, .quote.teal .stars { color: #fff; }
  .quote p {
    margin: 0;
    font-family: var(--f-italic); font-style: italic;
    font-size: 19px; line-height: 1.4;
  }
  .quote .who {
    margin-top: auto; padding-top: 8px;
    display: flex; align-items: center; gap: 12px;
    border-top: 1px dashed currentColor;
  }
  .quote .who .av {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--paper-2); border: 1.4px solid var(--ink);
    flex-shrink: 0;
    display: grid; place-items: center;
    font-family: var(--f-display); font-size: 14px; color: var(--ink);
  }
  .quote.pink .who .av, .quote.teal .who .av { background: var(--paper); }
  .quote .who b { display: block; font-weight: 700; font-size: 14px; }
  .quote .who span { font-size: 12px; opacity: 0.8; }

  @media (max-width: 900px) {
    .quotes { grid-template-columns: 1fr; }
  }

  /* ──────────────────────────────────────────── contact */
  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
  }
  .form {
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: 4px 4px 0 var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
  }
  .form .full { grid-column: 1 / -1; }
  .form label {
    display: flex; flex-direction: column; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--ink-2);
  }
  .form input, .form textarea, .form select {
    border: 1.4px solid var(--paper-edge);
    background: var(--paper);
    border-radius: var(--r-sm);
    padding: 11px 13px;
    font-family: var(--f-body); font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
    line-height: 1.4;
  }
  .form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2315172e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 36px;
    cursor: pointer;
  }
  .form input:focus, .form textarea:focus, .form select:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(255, 47, 134, .18);
  }
  .form textarea { min-height: 110px; resize: vertical; }
  .form input::placeholder, .form textarea::placeholder { color: var(--ink-3); font-weight: 400; }
  .form .submit-row {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  .form .submit-row p { margin: 0; font-size: 13px; color: var(--ink-3); max-width: 32ch; }
  .form .submit-row .btn { background: var(--c-services); color: #fff; }

  .contact-side {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
    position: relative;
    overflow: hidden;
  }
  .contact-side::before {
    content:"";
    position: absolute; right: -60px; bottom: -60px;
    width: 240px; height: 240px;
    background: var(--c-services);
    border-radius: 50%;
    opacity: 0.16;
  }
  .contact-side h3 { font-family: var(--f-display); font-size: 32px; margin: 0; line-height: 1; }
  .contact-side h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 700; color: var(--c-games); }
  .contact-side .line { display: flex; gap: 12px; align-items: center; font-size: 15px; }
  .contact-side .line .ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 16px;
  }
  .contact-side .line b { display: block; font-weight: 700; font-size: 15px; color: var(--paper); }
  .contact-side .line span { display: block; font-size: 12px; color: rgba(251,246,236,.6); }
  .contact-side .contact-cta-block {
    margin-top: auto;
    background: rgba(255, 184, 0, .12);
    border: 1.5px solid rgba(255, 184, 0, .4);
    border-radius: var(--r-md);
    padding: 18px;
    position: relative;
    z-index: 1;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  }
  .contact-side .contact-cta-block h4 {
    margin: 0;
    font-family: var(--f-display);
    font-size: 22px;
    color: var(--paper);
  }
  .contact-side .contact-cta-block p {
    margin: 0;
    font-size: 14px;
    color: rgba(251,246,236,.8);
    line-height: 1.5;
  }
  .contact-side .contact-cta-block .btn {
    background: var(--c-games);
    color: var(--c-games-ink);
    border: 0;
  }
  .contact-side .contact-cta-block .btn:hover { background: var(--paper); color: var(--ink); }

  @media (max-width: 900px) {
    .contact { grid-template-columns: 1fr; }
    .form { grid-template-columns: 1fr; padding: 22px; }
  }

  /* ──────────────────────────────────────────── footer */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 56px 0 24px;
  }
  .ftr-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
  }
  .ftr-brand .brand { color: var(--paper); font-size: 32px; margin-bottom: 12px; }
  .ftr-brand .brand-mark { background: var(--c-games); border-color: var(--paper); color: var(--ink); }
  .ftr-brand p { color: rgba(251,246,236,.7); max-width: 36ch; margin: 0 0 16px; font-size: 15px; }
  .ftr-col h5 {
    font-family: var(--f-body); font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.14em;
    margin: 0 0 14px;
    color: rgba(251,246,236,.6);
  }
  .ftr-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .ftr-col a { text-decoration: none; color: rgba(251,246,236,.85); font-size: 14px; }
  .ftr-col a:hover { color: var(--paper); }
  .ftr-col .sw {
    display: inline-block; width: 8px; height: 8px;
    border-radius: 2px; margin-right: 8px;
    vertical-align: middle;
  }
  .ftr-bot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(251,246,236,.12);
    font-size: 13px;
    color: rgba(251,246,236,.5);
    flex-wrap: wrap; gap: 12px;
  }

  @media (max-width: 900px) {
    .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  }
  @media (max-width: 480px) {
    .ftr-grid { grid-template-columns: 1fr; }
  }

  /* ──────────────────────────────────────────── floating event bag */
  .bag-pill {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 40;
    background: var(--paper);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-pill);
    padding: 10px 16px 10px 14px;
    display: inline-flex; align-items: center; gap: 12px;
    box-shadow: 4px 4px 0 var(--ink), 0 20px 30px -20px rgba(21,23,46,.4);
    font-family: var(--f-body);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    color: var(--ink);
  }
  .bag-pill .pulse {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--c-services);
    border: 1.3px solid var(--ink);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,47,134,.55); }
    50% { box-shadow: 0 0 0 8px rgba(255,47,134,0); }
  }
  .bag-pill b { font-weight: 700; }
  .bag-pill .sep { color: var(--ink-3); }
  .bag-pill .arr { font-size: 16px; line-height: 1; }

  @media (max-width: 480px) {
    .bag-pill { right: 12px; bottom: 12px; padding: 9px 14px 9px 12px; font-size: 13px; }
  }

  /* ──────────────────────────────────────────── decorative noise dots / squiggles */
  .deco-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(21,23,46,.05) 1px, transparent 1.4px);
    background-size: 22px 22px;
    background-position: 0 0;
    z-index: 0;
  }
  .section > .wrap, .hero > .wrap, footer > .wrap { position: relative; z-index: 1; }

  /* tweaks panel font lock */
  .twk-panel { font-family: var(--f-body) !important; }

/* ──────────────────────────────────────────── Inside-page additions ──────────────────────────── */

/* Page hero (inside pages) */
.page-hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero.svc { background: linear-gradient(180deg, color-mix(in srgb, var(--c-services) 12%, var(--paper)) 0%, var(--paper) 100%); }
.page-hero.rnt { background: linear-gradient(180deg, color-mix(in srgb, var(--c-rentals) 12%, var(--paper)) 0%, var(--paper) 100%); }
.page-hero.gms { background: linear-gradient(180deg, color-mix(in srgb, var(--c-games) 14%, var(--paper)) 0%, var(--paper) 100%); }
.page-hero h1.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: var(--ink);
  max-width: 18ch;
}
.page-hero h1.display em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}
.page-hero.svc h1.display em { color: var(--c-services); }
.page-hero.rnt h1.display em { color: var(--c-rentals); }
.page-hero.gms h1.display em { color: var(--c-games); }
.page-lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}

/* Product grid on bucket pages */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.prod-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--ink); }
.prod-img {
  aspect-ratio: 16/9;
  background: var(--c, var(--c-services));
  position: relative;
  display: grid;
  place-items: center;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 24%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.14) 0 30%, transparent 31%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 14px, transparent 14px 30px);
}
.prod-tag {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 2px 2px 0 var(--ink);
}
.prod-body { padding: 24px; }
.prod-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.prod-body p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.prod-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--paper-edge);
}
.prod-foot .price { font-family: var(--f-display); font-size: 22px; color: var(--ink); }
.prod-foot .price span { display: block; font-family: var(--f-body); font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; }
.prod-foot .cta { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.prod-foot .cta:hover { color: var(--ink); }

/* Cross-promo section on bucket pages */
.cross-promo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.cross-promo-grid h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin: 12px 0 18px;
}
.cross-promo-grid h2 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 700;
  color: var(--c-services);
}
.cross-promo-grid p {
  color: var(--ink-2);
  font-size: 17px;
  margin: 0 0 22px;
  max-width: 50ch;
}
.bucket-otros {
  display: grid;
  gap: 14px;
}
.bcard.compact {
  padding: 22px;
  min-height: auto;
}
@media (max-width: 900px) {
  .cross-promo-grid { grid-template-columns: 1fr; }
}

/* Product hero (product detail page) */
.prod-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.prod-hero-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.prod-price-big {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink-2);
}
.prod-price-big .price-cur { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.prod-price-big .price-num { font-family: var(--f-display); font-size: 44px; line-height: 1; color: var(--ink); display: block; margin: 4px 0; }
.prod-price-big .price-unit { display: block; font-size: 13px; color: var(--ink-2); }
.prod-hero-art {
  aspect-ratio: 1 / 1.05;
  background: var(--c, var(--c-services));
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-3deg);
  position: relative;
  display: grid;
  place-items: center;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 24%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.14) 0 30%, transparent 31%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 14px, transparent 14px 30px);
}
/* Vary rotation per category so adjacent product pages don't look identical */
.prod-hero-art.svc { transform: rotate(-3deg); }
.prod-hero-art.rnt { transform: rotate(2.5deg); }
.prod-hero-art.gms { transform: rotate(-2.2deg); }
.prod-hero-art .prod-tag { position: absolute; top: 18px; left: 18px; }
.prod-art-h {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.01em;
  padding: 0 16px;
  line-height: 0.95;
}
@media (max-width: 900px) {
  .prod-hero-grid { grid-template-columns: 1fr; }
  .prod-hero-art { max-width: 460px; margin: 0 auto; }
}

/* Product detail grid */
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.incl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.incl-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--paper-edge);
  font-size: 16px;
  color: var(--ink);
}
.incl-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-games);
  color: var(--c-games-ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-faq details {
  border-bottom: 1px dashed var(--paper-edge);
  padding: 14px 0;
}
.prod-faq summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--ink-2);
  font-weight: 400;
}
.prod-faq details[open] summary::after { content: "−"; }
.prod-faq details p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .prod-detail-grid { grid-template-columns: 1fr; }
}

/* Package pills on product pages */
.pkg-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pkg-pill {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pkg-pill:hover { border-color: var(--ink); transform: translateY(-1px); }

.prod-cta-box {
  background: var(--c, var(--c-services));
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.prod-cta-box h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--ink);
}
.prod-cta-box p {
  color: var(--ink);
  margin: 0 0 18px;
  font-size: 15px;
}
.prod-cta-box .btn {
  background: var(--ink);
  color: var(--paper);
}

/* Builder page */
.builder-page-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.builder-cart {
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  padding: 24px;
}
.builder-cart .b-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--paper-edge);
}
.builder-cart .b-row .thumb { width: 56px; height: 56px; border-radius: 12px; border: 1.5px solid var(--ink); }
.builder-cart .b-row .meta b { font-family: var(--f-display); font-size: 18px; display: block; }
.builder-cart .b-row .meta span { font-size: 13px; color: var(--ink-2); display: block; margin-top: 2px; }
.builder-cart .b-row .ctrl {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-pill);
  padding: 4px;
  font-size: 14px;
  font-weight: 600;
}
.builder-cart .b-row .ctrl span { padding: 4px 10px; cursor: pointer; }
.builder-cart .b-row .ctrl .v { background: var(--ink); color: var(--paper); border-radius: var(--r-pill); padding: 4px 10px; }
.builder-cart .b-row .rm {
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--ink-3);
  cursor: pointer;
  width: 32px; height: 32px;
}
.builder-cart .b-row .rm:hover { color: var(--c-services); }

.add-more {
  display: block;
  text-align: center;
  margin: 22px 0;
  padding: 16px;
  background: var(--paper-2);
  border: 1.5px dashed var(--paper-edge);
  border-radius: var(--r-md);
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
}
.add-more:hover { border-color: var(--ink); color: var(--ink); }

.event-details {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--paper-edge);
}
.ev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.ev-grid label {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}
.ev-grid label.full { grid-column: 1 / -1; }
.ev-grid input, .ev-grid textarea, .ev-grid select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-md);
  background: var(--paper-2);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
}
.ev-grid textarea { min-height: 100px; resize: vertical; }

.builder-summary {
  position: sticky;
  top: 88px;
}
.summary-inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--ink);
}
.summary-inner h3 { color: var(--paper); }
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 14px;
  color: rgba(251,246,236,.85);
}
.sum-row.total {
  border-bottom: 0;
  border-top: 2px solid var(--paper);
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--paper);
  margin-top: 14px;
  padding-top: 14px;
}
.sum-row.total b { font-size: 28px; }
.sum-note {
  font-size: 13px;
  color: rgba(251,246,236,.6);
  margin: 16px 0;
  line-height: 1.5;
}
.submit-btn {
  width: 100%;
  background: var(--c-games);
  color: var(--c-games-ink);
  border: 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
}
.submit-btn:hover { background: var(--paper); color: var(--ink); }
.sum-fine {
  font-size: 12px;
  color: rgba(251,246,236,.5);
  text-align: center;
  margin: 12px 0 0;
}

@media (max-width: 900px) {
  .builder-page-grid { grid-template-columns: 1fr; }
  .builder-summary { position: static; }
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid h2.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
}
.about-grid p {
  color: var(--ink-2);
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
}
.about-art .ph-img {
  background:
    radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), var(--ph-c1) 0%, transparent 60%),
    linear-gradient(135deg, var(--ph-c1), var(--ph-c2));
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed var(--ink);
  position: relative;
  overflow: hidden;
}
.about-art .ph-label {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 13px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Rules grid (about page) */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.rule {
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--r-lg);
  padding: 28px;
}
.rule-num {
  font-family: var(--f-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 14px;
}
.rule h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px;
}
.rule p { color: var(--ink-2); margin: 0; font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) {
  .rules-grid { grid-template-columns: 1fr; }
}

/* FAQ on contact page */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.faq-grid details {
  border-bottom: 1px dashed var(--paper-edge);
  padding: 16px 0;
}
.faq-grid summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-grid summary::after { content: "+"; font-size: 22px; color: var(--ink-3); }
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex !important;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1.5px solid var(--paper-edge);
    padding: 12px 24px 24px;
    gap: 0;
    box-shadow: 0 12px 32px -16px rgba(21,23,46,.18);
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px dashed var(--paper-edge);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  .nav-links.open a:last-child { border-bottom: 0; }
}

/* Packages page category nav */
.cat-nav {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-2);
}
.cat-nav .cat-jump {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--c-services);
  text-decoration: none;
  padding-bottom: 1px;
}
.cat-nav .cat-jump:hover { color: var(--c-services); }
.pkg-cat { padding-top: 56px; padding-bottom: 56px; }
.pkg-cat .section-hd { margin-bottom: 28px; }
.pkg-cat .section-hd h2.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.01em;
}

/* Cart-empty state */
.cart-empty p a:hover { opacity: 0.8; }

/* Add-more row on Your Event page (replaces the dead "Add more from a bucket" link) */
.add-more-row {
  margin: 22px 0;
  padding: 18px;
  background: var(--paper-2);
  border: 1.5px dashed var(--paper-edge);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.add-more-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  margin-right: 6px;
}
.add-more-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  background: var(--paper);
  transition: transform 0.12s ease;
}
.add-more-pill:hover { transform: translateY(-1px); }
.add-more-pill.svc { background: var(--c-services); color: #fff; border-color: var(--c-services); }
.add-more-pill.rnt { background: var(--c-rentals); color: #fff; border-color: var(--c-rentals); }
.add-more-pill.gms { background: var(--c-games); color: var(--c-games-ink); border-color: var(--c-games); }
.add-more-pill.pkg-link { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Clear event button on Your Event summary panel */
.clear-cart-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: transparent;
  border: 1px solid rgba(251, 246, 236, 0.25);
  color: rgba(251, 246, 236, 0.7);
  padding: 10px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.clear-cart-btn:hover {
  color: #ffb4c4;
  border-color: rgba(255, 47, 134, 0.4);
  background: rgba(255, 47, 134, 0.06);
}

/* Bucket page product card — split clickable layout */
.prod-card { display: flex; flex-direction: column; }
.prod-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.prod-card .prod-foot {
  padding: 16px 24px 18px;
  border-top: 1px dashed var(--paper-edge);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.prod-card .prod-body { padding: 24px 24px 14px; }
.prod-foot-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-link-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.card-link-btn:hover {
  color: var(--ink);
  border-color: var(--paper-edge);
}
.card-add-btn {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.card-add-btn.svc { background: var(--c-services); color: #fff; border-color: var(--c-services); }
.card-add-btn.rnt { background: var(--c-rentals); color: #fff; border-color: var(--c-rentals); }
.card-add-btn.gms { background: var(--c-games); color: var(--c-games-ink); border-color: var(--c-games); }
.card-add-btn:hover { transform: translateY(-1px); }
.card-add-btn.added {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}


/* Real-photo overrides for gallery cells and prod-hero-art */
.real-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1.5px solid var(--ink);
}
.real-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery .real-photo {
  /* match the .ph-img sizing inherited from the parent grid */
  min-height: 240px;
}
.prod-hero-art.has-photo {
  padding: 0;
  background-image: none;
  background: var(--c, var(--c-games));
}
.prod-hero-art.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--r-lg) - 2px);
}
.prod-hero-art.has-photo .prod-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
}


/* Bucket page product card with real photo */
.prod-img.has-photo {
  background: none;
  padding: 0;
  position: relative;
}
.prod-img.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.prod-img.has-photo .prod-tag {
  position: relative;
  z-index: 1;
}

/* ────────────────────────────────────────────  PARTY MOTION  ──────────────────────────── */

/* Hero kicker pip pulses gently */
@keyframes pip-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}
.hero .kicker .pip {
  animation: pip-pulse 1.8s ease-in-out infinite;
}

/* Hero poster gentle idle wobble */
@keyframes wobble {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(-0.4deg) translateY(-3px); }
}
.hero-poster {
  animation: wobble 6s ease-in-out infinite;
}

/* Poster cards inside hero — staggered floating */
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.poster-row.r1 span { animation: float-up 3.2s ease-in-out infinite; }
.poster-row.r2 span { animation: float-up 3.6s ease-in-out infinite 0.4s; }
.poster-row.r3 span { animation: float-up 3.4s ease-in-out infinite 0.8s; }
.poster-row.r4 span { animation: float-up 3.8s ease-in-out infinite 1.2s; }

/* Hero ¡Dale! badge wiggles */
@keyframes badge-wiggle {
  0%, 100% { transform: rotate(6deg); }
  25%      { transform: rotate(10deg) scale(1.04); }
  75%      { transform: rotate(2deg); }
}
.hero-poster .badge {
  animation: badge-wiggle 4s ease-in-out infinite;
}

/* Bucket cards — playful hover lift + slight tilt */
.bucket-strip-grid .bcard {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.bucket-strip-grid .bcard:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 16px 32px -12px rgba(21,23,46,0.35);
}
.bucket-strip-grid .bcard.rnt:hover { transform: translateY(-6px) rotate(1deg); }
.bucket-strip-grid .bcard.gms:hover { transform: translateY(-6px) rotate(-1.5deg); }

/* Package cards lift + slight rotation on hover */
.pkg {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.pkg:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 18px 36px -16px rgba(21,23,46,0.35);
}
.pkg.feat:hover { transform: translateY(-8px) rotate(0.4deg); }

/* Product cards on bucket pages — subtle lift */
.prod-card {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
}

/* "+ Add" buttons get a wiggle when hovered */
@keyframes button-wiggle {
  0%, 100% { transform: translateY(-1px) rotate(0deg); }
  25%      { transform: translateY(-2px) rotate(-3deg); }
  75%      { transform: translateY(-2px) rotate(3deg); }
}
.card-add-btn:hover { animation: button-wiggle 0.5s ease-in-out; }

/* Bag pill heartbeat — gentle attention pulse */
@keyframes bag-pulse {
  0%, 100% { box-shadow: 4px 4px 0 var(--ink), 0 20px 30px -20px rgba(21,23,46,.4), 0 0 0 0 rgba(255, 47, 134, 0.4); }
  50%      { box-shadow: 4px 4px 0 var(--ink), 0 20px 30px -20px rgba(21,23,46,.4), 0 0 0 8px rgba(255, 47, 134, 0); }
}
.bag-pill {
  animation: bag-pulse 2.2s ease-out infinite;
}
.bag-pill:hover {
  animation: none;
  transform: translateY(-2px);
  transition: transform 0.15s ease;
}

/* Bag pill little dot pulses too */
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}
.bag-pill .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-services);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* Scroll-reveal: sections fade + slide in as they enter viewport */
.section, .page-hero {
  animation: section-rise 0.7s ease-out both;
}
@keyframes section-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .hero-poster, .poster-row.r1 span, .poster-row.r2 span, .poster-row.r3 span, .poster-row.r4 span,
  .hero-poster .badge, .hero .kicker .pip, .bag-pill, .bag-pill .pulse,
  .section, .page-hero {
    animation: none !important;
  }
}

/* Clean inline CTA link (used in section descriptions) */
.cta-text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-services);
  text-decoration: none;
  transition: color 0.15s ease, gap 0.15s ease;
}
.cta-text-link .arr { font-size: 14px; transition: transform 0.2s ease; display: inline-block; }
.cta-text-link:hover { color: var(--ink); gap: 8px; }
.cta-text-link:hover .arr { transform: translateX(2px); }


/* Real-photo gallery cells: hide the colored gradient overlay from ::before */
.ph-img.real-photo::before { display: none; }
.ph-img.real-photo {
  background: var(--ink);
  aspect-ratio: 1 / 1;
  min-height: 0;
}
.ph-img.real-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 1;
}
/* Real photo on tall cell (spans 2 rows) — different aspect ratio */
.ph-img.tall.real-photo { aspect-ratio: 1 / 1.6; }
/* Real photo on wide cell (spans 2 cols) — landscape */
.ph-img.wide.real-photo { aspect-ratio: 16 / 9; }
