
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FAFAF8;
      color: #1A1A1A;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: #2E9E6B; text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; display: block; }

    /* ── Layout helpers */
    .container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

    /* ── Nav */
    .site-nav {
      background: #FFFFFF;
      border-bottom: 1px solid #E5E7EB;
      position: sticky; top: 0; z-index: 50;
    }
    .site-nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 56px; max-width: 1152px; margin: 0 auto; padding: 0 16px;
    }
    .site-nav__logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 20px; font-weight: 700; color: #1A1A1A;
      text-decoration: none; flex-shrink: 0;
    }
    .site-nav__logo:hover { text-decoration: none; }
    .site-nav__links a { font-size: 13px; font-weight: 500; color: #6B7280; transition: color .15s; white-space: nowrap; }
    .site-nav__links a:hover { color: #1A1A1A; text-decoration: none; }
    .site-nav__cta {
      background: #2E9E6B; color: #fff !important; font-size: 13px; font-weight: 600;
      padding: 8px 14px; border-radius: 8px; transition: opacity .15s;
    }
    .site-nav__cta:hover { opacity: .88; text-decoration: none; }

    /* ── Hamburger toggle (pure CSS, zero JS) ────────────────────────────────
       Mobile-first: hamburger VISIBLE by default; hidden only at ≥1025px.
       This guarantees the toggle always shows on phones regardless of cascade. */
    .nav-toggle-input { display: none; }
    .nav-toggle-label {
      display: flex;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; cursor: pointer; padding: 8px; margin-right: -4px;
      border-radius: 8px; flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle-label span {
      display: block; width: 22px; height: 2px;
      background: #1A1A1A; border-radius: 2px;
      transition: transform .25s ease, opacity .25s ease;
    }

    /* Mobile default: links panel hidden (opened by checkbox) */
    .site-nav__links { display: none; }

    @keyframes navOpen {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Bars → X animation when menu is open */
    .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
    .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Menu panel — open state */
    .nav-toggle-input:checked ~ .site-nav__links {
      display: flex; flex-direction: column; align-items: stretch; gap: 0;
      position: absolute; top: 56px; left: 0; right: 0; z-index: 49;
      background: #FFFFFF; border-bottom: 1px solid #E5E7EB;
      box-shadow: 0 8px 32px rgba(0,0,0,.12); padding: 4px 20px 24px;
      animation: navOpen .18s ease;
    }
    .nav-toggle-input:checked ~ .site-nav__links a {
      padding: 14px 0; border-bottom: 1px solid #F3F4F6;
      font-size: 15px; color: #1A1A1A; font-weight: 500;
      white-space: normal; display: block; text-align: left;
    }
    .nav-toggle-input:checked ~ .site-nav__links a:hover { color: #2E9E6B; text-decoration: none; }
    .nav-toggle-input:checked ~ .site-nav__links a:last-child { border-bottom: none; }
    .nav-toggle-input:checked ~ .site-nav__links .site-nav__cta {
      border-bottom: none; margin-top: 10px; text-align: center;
      border-radius: 10px; padding: 14px; font-size: 15px; display: block; color: #fff !important;
    }

    /* ── Desktop (≥1025px): hide hamburger, show inline nav ── */
    @media (min-width: 1025px) {
      .site-nav__inner { height: 64px; padding: 0 24px; }
      .nav-toggle-label { display: none; }
      .site-nav__links {
        display: flex; align-items: center; gap: 20px; flex-wrap: nowrap;
      }
    }

    /* ── Mobile positioning (≤1024px) ── */
    @media (max-width: 1024px) {
      .site-nav { position: relative; }
    }

    /* ── Breadcrumb */
    .breadcrumb {
      font-size: 13px; color: #6B7280; padding: 14px 0 0;
      display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
    }
    .breadcrumb a { color: #6B7280; }
    .breadcrumb a:hover { color: #2E9E6B; }
    .breadcrumb__sep { color: #CBD5E1; }

    /* ── Page hero */
    .page-hero { padding: 48px 0 40px; }
    .page-hero__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #2E9E6B; margin-bottom: 10px; }
    .page-hero__h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: #1A1A1A; margin-bottom: 16px; }
    .page-hero__sub { font-size: 17px; color: #6B7280; max-width: 680px; line-height: 1.7; }

    /* ── Cards and sections */
    .card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 24px; }
    .card--green { background: #EBF8F1; border-color: #A7E4C8; }
    .section { padding: 48px 0; }
    .section.card { padding: 24px; margin-bottom: 28px; }
    .section--alt { background: #FFFFFF; }
    .section-title { font-size: 22px; font-weight: 700; color: #1A1A1A; margin-bottom: 20px; }

    /* ── Stats grid — 2 col mobile, 3 col tablet, 6 col desktop */
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0; }
    @media (min-width: 641px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1025px) { .stats-grid { grid-template-columns: repeat(6, 1fr); } }
    .stat-card { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 20px; text-align: center; }
    .stat-card__num { font-size: 28px; font-weight: 800; color: #2E9E6B; display: block; white-space: nowrap; }
    .stat-card__label { font-size: 13px; color: #6B7280; margin-top: 4px; }

    /* ── Table */
    .data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
    .data-table th { text-align: left; font-weight: 600; color: #6B7280; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding: 10px 16px; border-bottom: 2px solid #E5E7EB; background: #F8FAF9; white-space: nowrap; }
    .data-table td { padding: 13px 16px; border-bottom: 1px solid #E5E7EB; vertical-align: top; }
    .data-table tr:last-child td { border-bottom: none; }
    .data-table tr:hover td { background: #F8FAF9; }
    .data-table a { font-weight: 600; color: #1A1A1A; }
    .data-table a:hover { color: #2E9E6B; }
    .table-scroll-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid #E5E7EB; border-radius: 12px; }

    /* ── Schedule pills */
    .pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
    .pill--burn    { background: #FEE2E2; color: #DC2626; }
    .pill--recycle { background: #DCFCE7; color: #16A34A; }
    .pill--nonburn { background: #DBEAFE; color: #2563EB; }
    .pill--bulky   { background: #FEF3C7; color: #92400E; }

    /* ── Quick Answer box — AEO direct-answer pattern */
    .quick-answer {
      background: #EBF8F1; border: 1.5px solid #A7E4C8; border-radius: 12px;
      padding: 18px 22px; margin: 0 0 32px;
      font-size: 15px; color: #1A4731; line-height: 1.7;
    }
    .quick-answer__label {
      font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: #2E9E6B; margin-bottom: 8px; display: block;
    }

    /* ── FAQ items (AEO) */
    .faq-list { display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 12px; padding: 22px; }
    .faq-item__q { font-size: 16px; font-weight: 700; color: #1A1A1A; margin-bottom: 10px; }
    .faq-item__a { font-size: 14px; color: #374151; line-height: 1.75; }

    /* ── Blog */
    .blog-hero { padding: 52px 0 34px; }
    .blog-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: end; }
    @media (min-width: 880px) { .blog-hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); } }
    .blog-kicker { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #2E9E6B; margin-bottom: 10px; }
    .blog-title { font-size: clamp(32px, 5vw, 58px); line-height: 1.05; letter-spacing: -.02em; color: #1A1A1A; margin-bottom: 16px; font-weight: 850; }
    .blog-subtitle { max-width: 740px; color: #4B5563; font-size: 17px; line-height: 1.78; }
    .blog-note { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 18px; color: #374151; font-size: 14px; line-height: 1.7; }
    .blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 12px 0 42px; }
    @media (min-width: 760px) { .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    .blog-card { display: block; background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 22px; min-height: 100%; color: inherit; text-decoration: none; transition: border-color .16s, transform .16s, box-shadow .16s; }
    .blog-card:hover { border-color: #A7E4C8; box-shadow: 0 14px 40px rgba(31, 41, 55, .08); transform: translateY(-2px); text-decoration: none; }
    .blog-card__tag { display: inline-flex; color: #2E9E6B; background: #EBF8F1; border: 1px solid #A7E4C8; border-radius: 999px; font-size: 11px; font-weight: 800; padding: 3px 9px; margin-bottom: 12px; }
    .blog-card__title { color: #1A1A1A; font-size: 20px; line-height: 1.28; font-weight: 800; margin-bottom: 10px; }
    .blog-card__desc { color: #4B5563; font-size: 14px; line-height: 1.72; }
    .article-wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; padding-bottom: 42px; }
    @media (min-width: 980px) { .article-wrap { grid-template-columns: minmax(0, 720px) minmax(240px, 1fr); align-items: start; } }
    .article-body { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: clamp(22px, 4vw, 42px); }
    .article-body h2 { font-size: clamp(22px, 3vw, 30px); line-height: 1.22; margin: 36px 0 14px; color: #1A1A1A; letter-spacing: 0; }
    .article-body h2:first-child { margin-top: 0; }
    .article-body h3 { font-size: 18px; margin: 26px 0 10px; color: #1A1A1A; }
    .article-body p { color: #374151; font-size: 16px; line-height: 1.86; margin: 0 0 16px; }
    .article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 18px; color: #374151; }
    .article-body li { margin: 8px 0; line-height: 1.75; }
    .article-aside { display: flex; flex-direction: column; gap: 16px; }
    .article-aside__box { background: #fff; border: 1px solid #E5E7EB; border-radius: 12px; padding: 18px; }
    .article-aside__box h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: #6B7280; margin-bottom: 12px; }
    .article-aside__box a { display: block; color: #1A1A1A; font-weight: 650; font-size: 14px; line-height: 1.45; padding: 8px 0; border-bottom: 1px solid #F3F4F6; }
    .article-aside__box a:last-child { border-bottom: 0; }
    .article-aside__box a:hover { color: #2E9E6B; text-decoration: none; }
    .source-list { list-style: none; padding: 0 !important; margin: 0 !important; }
    .source-list li { margin: 0; }
    .source-list a { font-weight: 600; color: #1A1A1A; }
    .source-list span { display: block; color: #6B7280; font-size: 12px; font-weight: 500; margin-top: 2px; }
    .fact-strip { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 28px 0 6px; }
    @media (min-width: 700px) { .fact-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
    .fact-strip__item { border: 1px solid #E5E7EB; border-radius: 10px; padding: 16px; background: #FAFAF8; }
    .fact-strip__value { color: #2E9E6B; display: block; font-size: 24px; font-weight: 850; line-height: 1.1; }
    .fact-strip__label { color: #4B5563; display: block; font-size: 12px; line-height: 1.45; margin-top: 6px; }

    /* ── CTA banner */
    .cta-banner { background: #2E9E6B; border-radius: 16px; padding: 40px 32px; text-align: center; margin: 48px 0; }
    .cta-banner h2 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .cta-banner p  { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 24px; }
    .cta-banner .btn { display: inline-block; background: #fff; color: #2E9E6B; font-size: 15px; font-weight: 700; padding: 13px 28px; border-radius: 10px; transition: opacity .15s; }
    .cta-banner .btn:hover { opacity: .9; text-decoration: none; }

    /* ── Footer */
    .site-footer { background: #FFFFFF; border-top: 1px solid #E5E7EB; padding: 56px 0 32px; margin-top: 64px; }
    .site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .site-footer__brand-name { font-size: 20px; font-weight: 700; color: #1A1A1A; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
    .site-footer__tagline { font-size: 14px; color: #6B7280; max-width: 320px; line-height: 1.65; }
    .site-footer__col h4 { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 16px; }
    .site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .site-footer__col a { font-size: 14px; color: #6B7280; transition: color .15s; }
    .site-footer__col a:hover { color: #2E9E6B; text-decoration: none; }
    .site-footer__bottom { border-top: 1px solid #E5E7EB; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #6B7280; }
    .site-footer__bottom a { color: #6B7280; }
    .site-footer__bottom a:hover { color: #1A1A1A; text-decoration: none; }
    @media (max-width: 768px) {
      .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ── Responsive layout grids */
    .layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
    .info-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .ward-grid     { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 16px; margin-bottom: 40px; }
    .related-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
    @media (max-width: 768px) {
      .layout-split { grid-template-columns: 1fr; }
      .info-grid     { grid-template-columns: 1fr; }
      .related-grid  { grid-template-columns: 1fr; }
    }

    /* ── Schedule rows */
    .sched-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 14px 0; border-bottom: 1px solid #E5E7EB;
    }
    .sched-row:last-of-type { border-bottom: none; }
    .sched-row__text { font-size: 14px; color: #374151; line-height: 1.6; flex: 1; min-width: 0; }
    @media (max-width: 640px) {
      .sched-row { flex-wrap: wrap; gap: 6px 10px; padding: 12px 0; }
      .sched-row__text { font-size: 13px; }
    }

    /* ── Interactive card hover effects (pure CSS) */
    .ward-card-link {
      display: block; background: #fff; border: 1px solid #E5E7EB;
      border-radius: 12px; padding: 20px;
      transition: box-shadow .15s, border-color .15s; text-decoration: none;
    }
    .ward-card-link:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #A7E4C8; text-decoration: none; }
    .related-card-link {
      display: flex; flex-direction: column; gap: 4px;
      padding: 16px; background: #fff; border: 1px solid #E5E7EB;
      border-radius: 10px; text-decoration: none; transition: border-color .15s;
    }
    .related-card-link:hover { border-color: #A7E4C8; text-decoration: none; }

    /* ── Section alt — full-bleed background without negative margins */
    .section--alt-bleed {
      background: #FFFFFF;
      padding: 48px 0;
      margin: 0;
    }

    /* ── Comprehensive mobile breakpoints ─────────────────────────────────── */
    @media (max-width: 640px) {
      .container { padding: 0 16px; }
      .page-hero { padding: 24px 0 18px; }
      .page-hero__sub { font-size: 15px; }
      .section { padding: 28px 0; }
      .section--alt-bleed { padding: 28px 0; }
      .card { padding: 16px; }
      .section-title { font-size: 18px; margin-bottom: 14px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0; }
      .stat-card { padding: 14px 12px; }
      .stat-card__num { font-size: 22px; }
      .stat-card__label { font-size: 11px; }
      .cta-banner { padding: 24px 18px; border-radius: 12px; margin: 24px 0; }
      .cta-banner h2 { font-size: 19px; }
      .cta-banner p { font-size: 14px; margin-bottom: 16px; }
      .cta-banner .btn { font-size: 14px; padding: 12px 22px; }
      .ward-grid { grid-template-columns: 1fr; }
      .layout-split { margin: 16px 0; gap: 14px; }
      .site-footer { padding: 32px 0 20px; margin-top: 36px; }
      .site-footer__grid { gap: 20px; }
      .site-footer__brand-name { font-size: 17px; }
      .data-table { font-size: 12px; }
      .data-table th, .data-table td { padding: 8px 10px; }
      .breadcrumb { padding: 10px 0 0; font-size: 12px; }
      .pill { font-size: 11px; padding: 3px 8px; }
      .quick-answer { padding: 14px 16px; font-size: 14px; margin-bottom: 20px; }
      .faq-item { padding: 16px; }
      .faq-item__q { font-size: 15px; }
    }

    /* ── Language picker dropdown */
    .lang-picker { position: relative; display: inline-flex; }
    .lp-trigger {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 11px; border-radius: 999px; cursor: pointer;
      border: 1.5px solid #E5E7EB; background: #fff;
      font-size: 12px; font-weight: 700; color: #6B7280;
      transition: border-color .15s, color .15s, box-shadow .15s;
      font-family: inherit; white-space: nowrap; line-height: 1;
    }
    .lp-trigger:hover { border-color: #2E9E6B; color: #2E9E6B; }
    .lp--open .lp-trigger { border-color: #2E9E6B; color: #2E9E6B; box-shadow: 0 0 0 3px rgba(46,158,107,.12); }
    .lp-globe { width: 13px; height: 13px; flex-shrink: 0; transition: transform .3s; }
    .lp--open .lp-globe { transform: rotate(20deg); }
    .lp-chevron { width: 11px; height: 11px; flex-shrink: 0; transition: transform .2s; opacity: .6; }
    .lp--open .lp-chevron { transform: rotate(180deg); opacity: 1; }
    .lp-panel {
      display: none; position: absolute; right: 0; top: calc(100% + 8px);
      width: 272px; border-radius: 16px; overflow: hidden; z-index: 100;
      border: 1px solid rgba(0,0,0,.09); background: rgba(255,255,255,.97);
      box-shadow: 0 20px 60px -10px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.06);
    }
    .lp--open .lp-panel { display: block; }
    .lp-panel-header {
      display: flex; align-items: center; gap: 7px;
      padding: 13px 16px 10px; border-bottom: 1px solid #f1f5f9;
    }
    .lp-panel-header .lp-globe { color: #2E9E6B; opacity: .7; }
    .lp-panel-label { font-size: 10px; font-weight: 800; color: #9ca3af; letter-spacing: .2em; text-transform: uppercase; }
    .lp-panel-count { margin-left: auto; font-size: 10px; color: #d1d5db; font-weight: 500; }
    .lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 8px; }
    .lp-item {
      position: relative; display: flex; align-items: center; gap: 10px;
      padding: 10px 12px; border-radius: 10px; text-decoration: none;
      color: #374151; transition: background .12s, color .12s;
    }
    .lp-item:hover { background: #f8fafc; color: #111827; text-decoration: none; }
    .lp-item--active { background: rgba(46,158,107,.09); }
    .lp-item--active:hover { background: rgba(46,158,107,.14); }
    .lp-bar { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 20px; border-radius: 999px; background: #2E9E6B; }
    .lp-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
    .lp-text { min-width: 0; flex: 1; overflow: hidden; }
    .lp-native { display: block; font-size: 13px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .lp-item--active .lp-native { color: #2E9E6B; }
    .lp-en { display: block; font-size: 10px; color: #9ca3af; margin-top: 2px; }
    .lp-check { flex-shrink: 0; margin-left: auto; }
    .lp-footer { padding: 7px 16px 9px; border-top: 1px solid #f1f5f9; background: #fafafa; }
    .lp-footer p { font-size: 10px; color: #d1d5db; }
    /* ── Gomi companion for SSR pages */
    .ssr-gomi {
      position: fixed;
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 55;
      width: clamp(76px, 8vw, 108px);
      aspect-ratio: 192 / 208;
      --ssr-gomi-x: 0%;
      --ssr-gomi-y: 0%;
    }
    html[dir="rtl"] .ssr-gomi { right: auto; left: max(1rem, env(safe-area-inset-left)); }
    .ssr-gomi__button {
      display: block; width: 100%; height: 100%; padding: 0; border: 0;
      background: transparent; cursor: grab; touch-action: none; user-select: none;
      filter: drop-shadow(0 18px 20px rgba(15, 23, 42, .16));
      transition: filter .18s ease, scale .18s ease;
    }
    .ssr-gomi:hover .ssr-gomi__button,
    .ssr-gomi__button:focus-visible {
      scale: 1.04;
      filter: drop-shadow(0 22px 26px rgba(15, 23, 42, .2));
      outline: none;
    }
    .ssr-gomi[data-dragging="true"] .ssr-gomi__button {
      cursor: grabbing;
      filter: drop-shadow(0 26px 32px rgba(15, 23, 42, .22));
    }
    .ssr-gomi__stage {
      display: block; width: 100%; height: 100%; overflow: hidden;
      pointer-events: none; transform-origin: 50% 100%;
      animation: ssr-gomi-float 2.8s ease-in-out infinite;
    }
    .ssr-gomi[data-mood="jump"] .ssr-gomi__stage { animation: ssr-gomi-hop .65s cubic-bezier(.16, 1, .3, 1) infinite; }
    .ssr-gomi[data-mood="run"] .ssr-gomi__stage,
    .ssr-gomi[data-mood="left"] .ssr-gomi__stage,
    .ssr-gomi[data-mood="right"] .ssr-gomi__stage { animation: ssr-gomi-scurry .48s linear infinite; }
    .ssr-gomi__sprite {
      display: block; width: 100%; height: 100%;
      background-image: url("/assets/gomi-companion.webp");
      background-repeat: no-repeat;
      background-size: 800% 900%;
      background-position: var(--ssr-gomi-x) var(--ssr-gomi-y);
    }
    .ssr-gomi__bubble {
      position: absolute;
      right: calc(100% + .65rem);
      bottom: calc(100% - 2.25rem);
      width: min(210px, calc(100vw - 7rem));
      padding: .7rem .8rem .78rem;
      border: 1px solid rgba(46, 158, 107, .16);
      border-radius: 1rem 1rem .35rem 1rem;
      background: rgba(255, 255, 255, .96);
      color: #1A1A1A;
      box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
      font-size: .78rem; font-weight: 750; line-height: 1.25; text-align: left;
      transform-origin: bottom right;
      animation: ssr-gomi-bubble-in .42s cubic-bezier(.16, 1, .3, 1) both;
    }
    .ssr-gomi__bubble::after {
      content: ""; position: absolute; right: -.28rem; bottom: 1.05rem;
      width: .72rem; height: .72rem;
      border-right: 1px solid rgba(46, 158, 107, .16);
      border-bottom: 1px solid rgba(46, 158, 107, .16);
      background: rgba(255, 255, 255, .96);
      transform: rotate(-45deg);
    }
    .ssr-gomi__bubble span,
    .ssr-gomi__bubble a { position: relative; z-index: 1; }
    .ssr-gomi__bubble span { display: block; }
    .ssr-gomi__bubble a {
      display: inline-flex; align-items: center; min-height: 1.8rem;
      margin-top: .48rem; padding: .35rem .62rem; border-radius: 999px;
      background: #2E9E6B; color: #fff; font-size: .68rem;
      font-weight: 800; line-height: 1; text-decoration: none;
      box-shadow: 0 8px 18px rgba(46, 158, 107, .2);
      transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    }
    .ssr-gomi__bubble a:hover,
    .ssr-gomi__bubble a:focus-visible {
      opacity: .92; transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(46, 158, 107, .24);
      outline: none; text-decoration: none;
    }
    html[dir="rtl"] .ssr-gomi__bubble {
      right: auto; left: calc(100% + .65rem);
      border-radius: 1rem 1rem 1rem .35rem;
      text-align: right; transform-origin: bottom left;
    }
    html[dir="rtl"] .ssr-gomi__bubble::after {
      right: auto; left: -.28rem; border-right: 0;
      border-left: 1px solid rgba(46, 158, 107, .16);
      transform: rotate(45deg);
    }
    @keyframes ssr-gomi-bubble-in {
      from { opacity: 0; transform: translateY(7px) scale(.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes ssr-gomi-float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-4px) rotate(1deg); }
    }
    @keyframes ssr-gomi-hop {
      0%, 100% { transform: translateY(0) scaleY(1); }
      34% { transform: translateY(-10px) scaleY(1.02); }
      68% { transform: translateY(2px) scaleY(.96); }
    }
    @keyframes ssr-gomi-scurry {
      0%, 100% { transform: translateX(0) rotate(-1deg); }
      50% { transform: translateX(1px) rotate(1deg); }
    }
    @media (max-width: 640px) {
      .ssr-gomi {
        width: 74px;
        right: max(.75rem, env(safe-area-inset-right));
        bottom: max(.75rem, env(safe-area-inset-bottom));
      }
      html[dir="rtl"] .ssr-gomi { right: auto; left: max(.75rem, env(safe-area-inset-left)); }
      .ssr-gomi__bubble {
        width: min(178px, calc(100vw - 6rem));
        padding: .62rem .68rem .7rem;
        font-size: .72rem;
      }
      .ssr-gomi__bubble a { min-height: 1.65rem; padding-inline: .54rem; font-size: .64rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .ssr-gomi__stage,
      .ssr-gomi__bubble,
      .ssr-gomi__button {
        animation: none !important;
        transition: none !important;
      }
    }
    /* Mobile: expand panel inline inside open hamburger menu */
    @media (max-width: 1024px) {
      .nav-toggle-input:checked ~ .site-nav__links .lang-picker { display: block; width: 100%; }
      .nav-toggle-input:checked ~ .site-nav__links .lp-trigger { display: none; }
      .nav-toggle-input:checked ~ .site-nav__links .lp-panel {
        display: block !important; position: static; width: 100%;
        border: none; border-radius: 0; box-shadow: none; background: transparent;
        border-top: 1px solid #F3F4F6;
      }
      .nav-toggle-input:checked ~ .site-nav__links .lp-panel-header,
      .nav-toggle-input:checked ~ .site-nav__links .lp-footer { display: none; }
      .nav-toggle-input:checked ~ .site-nav__links .lp-grid { grid-template-columns: 1fr 1fr; padding: 6px 0; }
      .nav-toggle-input:checked ~ .site-nav__links .lp-item { padding: 11px 8px; }
    }
  