
    :root {
      --navy: #0B1C2C;
      --navy-2: #122536;
      --navy-3: #1A3348;
      --gold: #C4A35A;
      --gold-2: #D4B76E;
      --cream: #E8E0D4;
      --ink: #E8E0D4;
      --muted: #B4A994;
      --line: rgba(196,163,90,.22);
      --ok: #3ecf8e;
      --paper: #F3EEE6;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 86px; }
    body {
      font-family: Inter, system-ui, sans-serif;
      background: var(--navy);
      color: var(--ink);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      background: #07131d;
      border-bottom: 1px solid var(--line);
      font-size: 13px;
      color: var(--muted);
    }
    .topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; align-items: center; flex-wrap: wrap; }
    .live { display: flex; align-items: center; gap: 8px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(62,207,142,.15); animation: pulse 1.8s infinite; }
    @keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(62,207,142,.05); } }

    header.site {
      position: sticky; top: 0; z-index: 40;
      backdrop-filter: blur(16px);
      background: rgba(11,28,44,.86);
      border-bottom: 1px solid var(--line);
    }
    header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .06em; }
    .brand img.mark { width: 42px; height: 42px; object-fit: contain; }
    .brand span { display: block; line-height: 1.05; }
    .brand small { display: block; font-weight: 500; color: var(--muted); letter-spacing: .16em; font-size: 10px; margin-top: 3px; }
    nav.main { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
    nav.main a:hover, nav.main a.on { color: var(--gold-2); }
    .cta-row { display: flex; gap: 10px; align-items: center; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      border-radius: 999px; padding: 11px 18px; font-weight: 600; font-size: 14px; border: 1px solid transparent;
      cursor: pointer; transition: .2s ease;
    }
    .btn-gold { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1308; }
    .btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }
    .btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
    .menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--ink); border-radius: 10px; padding: 8px 10px; }

    .hero {
      position: relative; min-height: 52vh; display: grid; place-items: start start;
      overflow: hidden; background: #07131d;
    }
    .hero .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; z-index: 0; }
    .hero .shade {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(90deg, rgba(7,19,29,.94) 0%, rgba(7,19,29,.68) 46%, rgba(7,19,29,.28) 100%);
    }
    .hero .content { position: relative; z-index: 2; padding: 36px 0 48px; max-width: 700px; }
    .eyebrow {
      color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-weight: 600; margin-bottom: 16px;
    }
    h1 {
      font-family: "Playfair Display", serif; font-size: clamp(36px, 5.4vw, 64px);
      line-height: 1.08; font-weight: 500; margin-bottom: 18px; color: #fff;
    }
    .lede { font-size: 18px; color: #ddd4c4; max-width: 540px; margin-bottom: 28px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
    .trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .pill {
      font-size: 12px; color: var(--muted); border: 1px solid var(--line);
      padding: 6px 10px; border-radius: 999px; background: rgba(18,37,54,.55);
    }

    section { padding: 88px 0; }
    h2 { font-family: "Playfair Display", serif; font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; margin-bottom: 12px; color: #fff; }
    .sub { color: var(--muted); max-width: 620px; margin-bottom: 40px; }
    .light { background: var(--paper); color: var(--navy); }
    .light h2 { color: var(--navy); }
    .light .sub { color: #4a5560; }
    .mid { background: #0e1a26; }

    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -46px; position: relative; z-index: 2; }
    .stat { background: var(--navy-2); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
    .stat b { display: block; color: var(--gold); font-size: 28px; font-weight: 700; }
    .stat span { color: var(--muted); font-size: 13px; }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .card {
      background: var(--navy-2); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
      transition: .25s ease; color: inherit;
    }
    .light .card { background: #fff; border-color: #e4d9c8; }
    .card:hover { transform: translateY(-4px); border-color: rgba(196,163,90,.5); }
    .card img { height: 180px; width: 100%; object-fit: cover; }
    .card .pad { padding: 22px; }
    .card h3 { font-size: 20px; margin-bottom: 8px; }
    .card p { color: var(--muted); font-size: 14px; }
    .light .card p { color: #4a5560; }
    .card .more { display: inline-block; margin-top: 14px; color: var(--gold); font-size: 13px; font-weight: 600; }

    .split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
    .split img { border-radius: 20px; height: 460px; width: 100%; object-fit: cover; }
    .checks { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
    .checks li { display: flex; gap: 10px; color: #d7deea; }
    .light .checks li { color: #1a2a38; }
    .checks li::before { content: "✓"; color: var(--gold); font-weight: 700; }

    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .step-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
    .light .step-card { background: #fff; border-color: #e4d9c8; }
    .step-card .n { color: var(--gold); letter-spacing: .16em; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
    .step-card h3 { font-size: 22px; margin-bottom: 8px; }
    .step-card p { color: var(--muted); font-size: 14px; }
    .light .step-card p { color: #4a5560; }

    .wizard {
      background: linear-gradient(180deg, var(--navy-2), #0e1626);
      border: 1px solid var(--line); border-radius: 22px; padding: 28px;
    }
    .wiz-steps { display: flex; gap: 8px; margin-bottom: 22px; }
    .wiz-steps i { flex: 1; height: 4px; background: #24314a; border-radius: 99px; }
    .wiz-steps i.on { background: var(--gold); }
    .choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .choice {
      border: 1px solid var(--line); background: #10192b; border-radius: 14px; padding: 16px; text-align: left; color: var(--ink);
      cursor: pointer; font: inherit;
    }
    .choice:hover, .choice.active { border-color: var(--gold); background: #162038; }
    .wiz-form { display: grid; gap: 10px; }
    .wiz-form input, .wiz-form textarea, .wiz-form select {
      width: 100%; background: #0c1424; border: 1px solid var(--line); color: var(--ink);
      border-radius: 12px; padding: 12px 14px; font: inherit;
    }

    .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .review { background: var(--navy-2); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
    .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
    .review p { font-size: 14px; color: #d5dce8; }
    .review cite { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; font-style: normal; }

    .ticker-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0 12px; background: #07131d; }
    .ticker-kicker { text-align: center; letter-spacing: .2em; font-size: 11px; color: var(--gold); margin-bottom: 10px; }
    .ticker-track { display: flex; gap: 56px; width: max-content; animation: ticker 36s linear infinite; align-items: center; }
    .ticker-track img { height: 28px; width: auto; max-width: 130px; object-fit: contain; display: block; flex-shrink: 0; opacity: .92; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .price-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--navy-2); border-radius: 16px; overflow: hidden; }
    .price-table th { text-align: left; padding: 12px 16px; color: var(--cream); background: #122536; font-size: 12px; letter-spacing: .08em; }
    .price-table td { padding: 11px 16px; border-top: 1px solid var(--line); color: #d7deea; }
    .price-table td:last-child, .price-table th:last-child { text-align: right; color: var(--gold); font-weight: 600; }
    .tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
    .tabs button {
      background: transparent; border: 1px solid var(--line); color: var(--muted);
      border-radius: 999px; padding: 8px 14px; cursor: pointer; font: inherit; font-size: 13px;
    }
    .tabs button.on { border-color: var(--gold); color: var(--gold-2); background: rgba(196,163,90,.08); }

    .areas { display: flex; flex-wrap: wrap; gap: 8px; }
    .area { background: var(--navy-3); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 13px; }

    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
    .info-box { background: var(--navy-2); border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
    .info-box h3 { margin-bottom: 8px; }
    .info-box a { color: var(--gold-2); }

    footer { border-top: 1px solid var(--line); padding: 36px 0 24px; color: var(--muted); font-size: 13px; }
    footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    footer a { color: var(--gold); }

    .chat-fab {
      position: fixed; right: 22px; bottom: 22px; z-index: 50;
      width: 58px; height: 58px; border-radius: 50%; border: none;
      background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1a1308;
      font-weight: 700; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.35);
    }
    .chat {
      position: fixed; right: 22px; bottom: 92px; width: min(360px, calc(100% - 28px));
      background: #10182a; border: 1px solid var(--line); border-radius: 18px; display: none; overflow: hidden; z-index: 50;
    }
    .chat.open { display: block; }
    .chat header { background: var(--navy-3); padding: 12px 14px; font-weight: 600; }
    .chat .msgs { padding: 14px; height: 260px; overflow: auto; font-size: 14px; }
    .bubble { background: #1b2740; border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; }
    .chat form { display: flex; border-top: 1px solid var(--line); }
    .chat input { flex: 1; background: transparent; border: 0; color: var(--ink); padding: 12px; font: inherit; }
    .chat button { background: none; border: 0; color: var(--gold); padding: 0 14px; font-weight: 700; cursor: pointer; }

    .cookie {
      position: fixed; left: 16px; bottom: 16px; z-index: 45;
      background: #141d30; border: 1px solid var(--line); border-radius: 14px;
      padding: 14px; width: min(420px, calc(100% - 32px)); font-size: 13px; color: #c9d3e2;
    }

    .legal { display: none; max-width: 720px; margin: 24px auto 0; color: var(--muted); font-size: 14px; }
    .legal.on { display: block; }
    .legal p { margin-bottom: 10px; }

    @media (max-width: 900px) {
      nav.main { display: none; position: absolute; top: 76px; left: 0; right: 0; background: #0B1C2C; flex-direction: column; padding: 16px 20px 22px; gap: 14px; border-bottom: 1px solid var(--line); }
      nav.main.open { display: flex; }
      .menu-btn { display: block; }
      .stats, .grid-3, .reviews, .split, .contact-grid, .choices, .steps { grid-template-columns: 1fr; }
      .hero { min-height: 48vh; }
      .stats { margin-top: 24px; }
      .split img { height: 280px; }
      #tilbud .wrap { grid-template-columns: 1fr !important; }
    }

    #home.off { display: none; }
    .view { display: none; padding: 40px 0 80px; min-height: 70vh; }
    .view.on { display: block; }
    .back-link {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--gold); font-size: 13px; letter-spacing: .08em; margin-bottom: 18px;
    }
    .view h2 { margin-bottom: 10px; }
    .subgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
    button.subcard{width:100%;text-align:left;font:inherit;cursor:pointer;color:inherit;}
    .subcard {
      background: var(--navy-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
      color: inherit; display: flex; flex-direction: column; transition: .2s ease;
    }
    .subcard:hover { transform: translateY(-3px); border-color: rgba(196,163,90,.5); }
    .subcard img { height: 140px; width: 100%; object-fit: cover; }
    .subcard .pad { padding: 16px 16px 18px; }
    .subcard h3 { font-size: 17px; margin-bottom: 6px; }
    .subcard p { color: var(--muted); font-size: 13px; }
    .subcard .more { display: inline-block; margin-top: 10px; color: var(--gold); font-size: 12px; font-weight: 600; }
    header.site .ticker-wrap {
      position: relative; background: #07131d; border: 0; border-top: 1px solid var(--line);
      padding: 8px 0 10px;
    }
    header.site .ticker-kicker { margin-bottom: 6px; font-size: 10px; color: var(--gold); }
    header.site .ticker-track img { height: 26px; max-width: 120px; }
    @media (max-width: 900px) {
      .subgrid { grid-template-columns: 1fr; }
      section.view .wrap[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
      section.view .wrap img[style*="height:360px"] { height: 220px !important; }
    }

    .splash{
      position:fixed;inset:0;z-index:9999;background:#0B1C2C;
      overflow:hidden;
      transition:opacity .8s ease;
    }
    .splash.off{opacity:0;visibility:hidden;pointer-events:none}
    .splash.out{opacity:0}
    .splash-inner{
      position:absolute;inset:0;
      display:flex;align-items:center;justify-content:center;
    }
    .splash-rose{
      position:absolute;left:50%;top:50%;
      width:120px;height:120px;
      margin:0;
      object-fit:contain;
      transform:translate(-50%,-50%) rotate(0deg);
      transform-origin:center center;
      animation:spinrose 2.2s linear infinite;
    }
    .splash-word,.splash-line,.splash-sub{
      position:relative;top:96px;z-index:1;
      opacity:1;
    }
    .splash-word{
      color:#E8E0D4;letter-spacing:.28em;font-size:13px;margin:0;
    }
    .splash-line{
      margin:8px 0 0;color:#E8E0D4;font-size:15px;letter-spacing:.04em;
      text-align:center;max-width:320px;line-height:1.35;
    }
    .splash-sub{
      margin:8px 0 0;color:#C4A35A;font-size:11px;letter-spacing:.22em;
    }
    @keyframes spinrose{from{transform:translate(-50%,-50%) rotate(0deg)}to{transform:translate(-50%,-50%) rotate(360deg)}}
    @keyframes spinzoom{
      0%{transform:translate(-50%,-50%) rotate(0deg) scale(.92)}
      100%{transform:translate(-50%,-50%) rotate(360deg) scale(1)}
    }
    @keyframes fadetxt{to{opacity:0}}

    .fag-panel{
      display:none; margin-top:22px; padding:22px;
      background: var(--navy-2); border: 1px solid var(--line); border-radius: 18px;
    }
    .fag-panel.on{ display:block; }
    .fag-panel .panel-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:16px; }
    .fag-panel h3{ font-size:24px; margin:4px 0 6px; }
    .fag-panel .panel-lead{ color:var(--muted); font-size:14px; max-width:640px; }
    .fag-panel .close-fag{
      background:transparent; border:1px solid var(--line); color:var(--ink);
      border-radius:999px; padding:8px 14px; cursor:pointer; font:inherit; font-size:13px;
    }
    .fag-panel .close-fag:hover{ border-color:var(--gold); color:var(--gold-2); }
    .card.on{ border-color: var(--gold); }

    .choice { font-size: 14px; line-height: 1.35; }
    .btn:focus-visible, .choice:focus-visible, .card:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--gold); outline-offset: 2px;
    }
    section { padding: 72px 0; }
    .hero { padding: 0; }
    #model { background: #0e1a28; }
    #priser { background: #0b1c2c; }
    #cases { background: #0e1a28; }
    #tilbud { background: #0b1c2c; }
    header.site { z-index: 50; }
    .ticker-wrap { z-index: 30; }
    html { scroll-padding-top: 92px; }
    .chat-fab { letter-spacing: .04em; font-size: 13px; padding: 0 16px; width: auto; min-width: 64px; }

    #ydelser .fag-panel{
      margin-top: 8px; padding: 0; background: transparent; border: 0; border-radius: 0;
    }
    #ydelser .fag-panel .panel-top{ margin-bottom: 22px; }
    #ydelser .grid-3.is-hidden{ display:none; }

    #ydelser.fag-open .grid-3 { display: none !important; }
    #ydelser.fag-open .fag-panel { display: block !important; }
    #ydelser:not(.fag-open) .fag-panel { display: none !important; }
    .fag-panel .panel-top {
      position: sticky; top: 76px; z-index: 5;
      background: var(--navy); padding: 10px 0 14px;
    }
    .fag-panel .close-fag {
      background: var(--gold) !important; color: #0B1C2C !important;
      border: 0 !important; font-weight: 700 !important;
      padding: 10px 18px !important; cursor: pointer;
      pointer-events: auto !important; position: relative; z-index: 6;
    }
    .fag-back-wrap { margin: 22px 0 8px; }
    .close-fag-bottom { display: inline-flex; }
    #ydelser { scroll-margin-top: 96px; }

    .prose { color: var(--muted); font-size: 15px; max-width: 72ch; }
    .prose p { margin: 0 0 12px; }
    .fag-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
    .fag-copy article {
      background: var(--navy-2); border: 1px solid var(--line);
      border-radius: 16px; padding: 22px 22px 18px;
    }
    .fag-copy h3 { font-size: 20px; margin-bottom: 8px; color: var(--cream); }
    .fag-copy p { color: var(--muted); font-size: 14.5px; }
    .faq-list { margin-top: 22px; display: grid; gap: 10px; }
    .faq-item {
      background: var(--navy-2); border: 1px solid var(--line);
      border-radius: 14px; padding: 0; overflow: hidden;
    }
    .faq-item h3 { font-size: 16px; }
    .faq-item button.faq-q {
      width: 100%; text-align: left; background: transparent; border: 0;
      color: var(--cream); font: inherit; font-weight: 600;
      padding: 16px 18px; cursor: pointer;
    }
    .faq-item .faq-a { display: none; padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }
    .faq-item.open .faq-a { display: block; }
    @media (max-width: 800px) { .fag-copy { grid-template-columns: 1fr; } }
  
    .page-hero { position:relative; min-height:42vh; display:grid; place-items:end start; overflow:hidden; }
    .page-hero img.cover { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
    .page-hero .shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(11,28,44,.35),rgba(11,28,44,.82)); }
    .page-hero .content { position:relative; z-index:2; padding:48px 0 40px; max-width:760px; }
    .crumb { font-size:13px; color:var(--muted); margin-bottom:10px; }
    .crumb a { color:var(--gold-2); }
    .subgrid-static { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:22px; }
    .sub-art { background:var(--navy-2); border:1px solid var(--line); border-radius:16px; overflow:hidden; }
    .sub-art img { width:100%; height:160px; object-fit:cover; }
    .sub-art .pad { padding:16px 18px 18px; }
    .sub-art h2, .sub-art h3 { font-size:20px; margin-bottom:6px; }
    .price { color:var(--gold); font-size:13px; font-weight:600; }
    .other-fags { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
    .other-fags a { border:1px solid var(--line); border-radius:999px; padding:8px 14px; font-size:13px; }
    .other-fags a:hover { border-color:var(--gold); color:var(--gold-2); }
    .other-fags a.on { background:var(--gold); color:#0B1C2C; border-color:var(--gold); }
    @media(max-width:800px){ .subgrid-static { grid-template-columns:1fr; } }

    /* fagsider: vis menu som wrap, ikke skjult hamburger */
    @media (max-width: 900px) {
      header.site .wrap { flex-wrap: wrap; height: auto; padding: 10px 0; }
      nav.main { display: flex !important; position: static; flex-wrap: wrap; gap: 10px 14px; padding: 8px 0 4px; border: 0; background: transparent; }
      .menu-btn { display: none !important; }
    }


    /* —— mobil hele vejen —— */
    html { -webkit-text-size-adjust: 100%; }
    @media (max-width: 900px) {
      html, body { overflow-x: hidden; }
      .wrap { padding-left: 16px; padding-right: 16px; }
      .topbar { font-size: 11px; }
      .topbar .wrap { padding: 6px 0; gap: 8px; }
      header.site .wrap {
        height: auto; min-height: 58px; padding: 8px 0;
        gap: 8px; flex-wrap: nowrap;
      }
      .brand { gap: 8px; min-width: 0; }
      .brand img.mark { width: 34px; height: 34px; flex-shrink: 0; }
      .brand small { display: none !important; }
      .brand span { font-size: 15px; }
      .cta-row { gap: 8px; flex-shrink: 0; }
      .cta-row .btn-ghost { display: none; }
      .cta-row .btn-gold { padding: 9px 12px; font-size: 13px; white-space: nowrap; }
      .menu-btn { width: 42px; height: 42px; flex-shrink: 0; }
      nav.main {
        max-height: calc(100vh - 70px); overflow-y: auto;
      }
      .ticker-wrap { padding: 8px 0 10px; }
      .ticker-track { gap: 28px; }
      .ticker-track img { height: 22px; max-width: 88px; }
      .hero { min-height: 0; }
      .hero .content { padding: 16px 0 24px; max-width: 100%; }
      .hero h1 { font-size: clamp(28px, 8.5vw, 40px); line-height: 1.08; }
      .hero .lede, .lede { font-size: 15px; }
      .hero-actions { margin-bottom: 16px; }
      .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
      .trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
      .pill { font-size: 11px; }
      #tilbud .wrap { grid-template-columns: 1fr !important; gap: 20px !important; }
      .wizard, .choices { width: 100%; }
      .choices { grid-template-columns: 1fr 1fr; }
      .wiz-form input, .wiz-form textarea, .wiz-form select { width: 100%; max-width: 100%; }
      .grid-3, .reviews, .subgrid, .subgrid-static { grid-template-columns: 1fr !important; }
      .card img, .subcard img, .sub-art img { height: 180px; }
      .prose { max-width: 100%; }
      footer .wrap { display: block; }
      footer .wrap + .wrap { margin-top: 10px; }
      .cookie {
        left: 0; right: 0; bottom: 0; width: 100%;
        max-width: none; border-radius: 16px 16px 0 0;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        box-sizing: border-box;
      }
      .cookie > div { display: flex; flex-wrap: wrap; gap: 8px; }
      .cookie .btn { flex: 1; min-width: 120px; justify-content: center; }
      .chat-fab {
        right: 14px; bottom: 168px; height: 44px; width: auto;
        min-width: 52px; padding: 0 14px; border-radius: 999px;
        font-size: 12px;
      }
      .chat {
        right: 10px; left: 10px; width: auto;
        bottom: 148px; max-height: min(70vh, 480px);
      }
      .page-hero { min-height: 34vh; }
      .page-hero .content { padding: 28px 0 24px; }
      body { padding-bottom: 24px; }
    }
    @media (max-width: 420px) {
      .choices { grid-template-columns: 1fr; }
      .hero-actions .btn { font-size: 14px; }
    }
