    /* ═══ RESET & BASE ═══ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --void: #0D0D0D;
      --paper: #F5F5F0;
      --signal: #E8006F;
      --terminal: #00E676;
      --dybde: #7B2FBE;
      --digital: #3D5AFE;
      --system-gray: #C0C0C0;
      --mid-gray: #808080;
      --light-gray: #DFDFDF;
      --body-text: #DFDFDF;
      --win-blue-1: #000080;
      --win-blue-2: #1084d0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--void);
      color: var(--body-text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ═══ NAVIGATION ═══ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(13, 13, 13, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: -0.04em;
      color: var(--paper);
      text-decoration: none;
      cursor: pointer;
    }
    .nav-logo span { color: var(--signal); }

    .nav-links {
      display: flex;
      gap: 0.5rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Space Mono', monospace;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--mid-gray);
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border: 1px solid transparent;
      transition: all 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover {
      color: var(--paper);
      border-color: rgba(255,255,255,0.08);
    }
    .nav-links a.active {
      color: var(--signal);
      border-color: var(--signal);
      background: rgba(232, 0, 111, 0.06);
    }

    /* Mobile nav */
    .nav-toggle {
      display: none;
      background: none;
      border: 2px solid rgba(255,255,255,0.15);
      cursor: pointer;
      padding: 0.6rem;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--paper);
      margin: 4px 0;
      transition: 0.3s;
    }

    /* ═══ PAGES – SPA ROUTING ═══ */
    .page {
      display: none;
      min-height: 100vh;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .page.active {
      display: block;
      opacity: 1;
    }

    /* ═══ SHARED ═══ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .accent-line {
      width: 55px;
      height: 3px;
      background: linear-gradient(90deg, var(--signal), var(--digital));
      margin: 1.5rem 0;
      border-radius: 2px;
    }

    /* ═══ CATEGORY TAGS – BIGGER ═══ */
    .tag {
      font-family: 'Space Mono', monospace;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .tag-sm {
      font-size: 0.8rem;
    }
    .tag-filosofi { color: var(--dybde); }
    .tag-tech { color: var(--terminal); }
    .tag-samfund { color: var(--signal); }
    .tag-strategi { color: var(--digital); }

    .section-header {
      margin-bottom: 3.5rem;
    }
    .section-tag {
      font-family: 'Space Mono', monospace;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      display: inline-block;
    }
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -0.04em;
      line-height: 0.95;
      color: var(--paper);
    }

    /* ═══ WIN95 WINDOW ═══ */
    .win95 {
      background: var(--system-gray);
      border: 2px solid;
      border-color: #fff #808080 #808080 #fff;
      box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
      max-width: 480px;
    }
    .win95-titlebar {
      background: linear-gradient(90deg, var(--win-blue-1), var(--win-blue-2));
      padding: 3px 4px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .win95-title {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      color: #fff;
      padding-left: 2px;
    }
    .win95-buttons {
      display: flex;
      gap: 2px;
    }
    .win95-btn {
      width: 16px;
      height: 14px;
      background: var(--system-gray);
      border: 1px solid;
      border-color: #fff #808080 #808080 #fff;
      font-size: 8px;
      line-height: 12px;
      text-align: center;
      font-family: 'Space Mono', monospace;
      color: #000;
      cursor: default;
    }
    .win95-body {
      padding: 1rem 1.2rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: #000;
      line-height: 1.6;
    }
    .win95-body strong {
      font-weight: 700;
    }

    /* ═══ RETRO ICON INLINE ═══ */
    .retro-icon {
      display: inline-block;
      width: 28px;
      height: 28px;
      vertical-align: middle;
    }
    .retro-icon-lg {
      width: 40px;
      height: 40px;
    }
    .retro-icon-xl {
      width: 56px;
      height: 56px;
    }

    /* ═══ PAGE: FORSIDE (HERO) ═══ */
    .hero-page {
      display: block;
      position: relative;
      overflow: hidden;
      padding-top: 8rem;
      padding-bottom: 3rem;
    }

    .hero-watermark {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(15rem, 25vw, 32rem);
      color: var(--paper);
      opacity: 0.025;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.04em;
      line-height: 0.85;
    }

    .hero-layout {
      display: flex;
      align-items: center;
      gap: 4rem;
      width: 100%;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      flex: 1;
    }

    .hero-tags {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
    }

    .hero-page h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(3rem, 7vw, 5.5rem);
      letter-spacing: -0.04em;
      line-height: 0.95;
      color: var(--paper);
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--mid-gray);
      max-width: 520px;
      margin-bottom: 2rem;
      line-height: 1.75;
    }

    .hero-right {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-end;
    }

    .hero-win95 {
      width: 300px;
      max-width: 100%;
    }

    .hero-image {
      width: 300px;
      height: 380px;
      background: var(--void);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--signal);
      mix-blend-mode: multiply;
      opacity: 0.15;
      pointer-events: none;
    }
    .hero-image-placeholder {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 7rem;
      color: var(--signal);
      opacity: 0.3;
      letter-spacing: -0.04em;
    }

    .hero-terminal {
      font-family: 'Space Mono', monospace;
      font-size: 0.85rem;
      color: var(--terminal);
      opacity: 0.6;
    }
    .cursor { animation: blink 1s step-end infinite; }
    @keyframes blink { 50% { opacity: 0; } }

    /* Floating decorative icons on hero */
    .hero-deco {
      position: absolute;
      opacity: 0.06;
      pointer-events: none;
      color: var(--paper);
    }
    .hero-deco-1 { top: 15%; right: 8%; width: 80px; height: 80px; }
    .hero-deco-2 { bottom: 20%; left: 5%; width: 60px; height: 60px; }
    .hero-deco-3 { top: 60%; right: 25%; width: 50px; height: 50px; }

    /* ═══ PAGE: OM ═══ */
    .page-inner {
      padding-top: 8rem;
      padding-bottom: 5rem;
    }

    .om-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .om-text p {
      margin-bottom: 1.2rem;
      max-width: 580px;
    }

    .om-creative-image {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .om-creative-image img {
      display: block;
    }
    .om-creative-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--signal);
      mix-blend-mode: multiply;
      opacity: 0.1;
      pointer-events: none;
    }

    .om-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .fact-item {
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.02);
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .fact-icon {
      color: var(--mid-gray);
      flex-shrink: 0;
    }
    .fact-content {}
    .fact-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-bottom: 0.3rem;
    }
    .fact-value {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--paper);
    }

    /* ═══ PAGE: FOREDRAG ═══ */
    .foredrag-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
      gap: 2rem;
    }

    .foredrag-card {
      padding: 2.5rem 2rem 2rem;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.015);
      transition: border-color 0.3s, background 0.3s;
      position: relative;
    }
    .foredrag-card:hover {
      border-color: rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.035);
    }
    .card-accent {
      position: absolute;
      top: 0; left: 0;
      width: 55px;
      height: 3px;
    }
    .card-icon {
      margin-bottom: 1rem;
    }
    .foredrag-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--paper);
      margin-bottom: 1rem;
    }
    .foredrag-card p {
      color: var(--mid-gray);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .foredrag-cta {
      margin-top: 3rem;
      text-align: center;
    }

    /* ═══ PAGE: TEKSTER ═══ */
    .tekster-intro-text {
      color: var(--mid-gray);
    }

    /* Artikel-oversigt */
    .artikler-liste {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    .artikel-card {
      display: block;
      padding: 2rem 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.02);
      cursor: pointer;
      transition: padding-left 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
      position: relative;
    }
    .artikel-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--signal);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .artikel-card:first-child {
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .artikel-card:hover {
      padding-left: 2.5rem;
      background: rgba(255,255,255,0.035);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }
    .artikel-card:hover::before {
      opacity: 1;
    }
    .artikel-card:hover .tekst-arrow {
      transform: translateX(5px);
      color: var(--signal);
    }
    .artikel-card:hover .artikel-card-cta {
      color: var(--signal);
    }
    .artikel-card-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.6rem;
    }
    .artikel-card-dato {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
    .artikel-card-titel {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1.4rem;
      color: var(--paper);
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }
    .artikel-card-teaser {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--mid-gray);
      max-width: 680px;
      margin-bottom: 1rem;
    }
    .artikel-card-cta {
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      text-transform: uppercase;
      color: var(--mid-gray);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 0.8rem;
      border: 1px solid rgba(255,255,255,0.1);
      transition: color 0.2s, border-color 0.2s;
    }
    .artikel-card:hover .artikel-card-cta {
      border-color: var(--signal);
    }

    /* Artikel fuld visning */
    .artikel-viewer {
      max-width: 680px;
    }
    .artikel-tilbage {
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: var(--mid-gray);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem 0;
      margin-bottom: 2rem;
      transition: color 0.2s;
    }
    .artikel-tilbage:hover {
      color: var(--signal);
    }
    .artikel-header-bar {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .artikel-dato {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
    .artikel-titel {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      color: var(--paper);
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .artikel-body {
      margin-top: 2rem;
    }
    .artikel-body p {
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      line-height: 1.85;
      color: #DFDFDF;
      margin-bottom: 1.5rem;
      max-width: 680px;
    }
    .artikel-body h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600;
      font-size: 1.3rem;
      color: var(--paper);
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }
    .artikel-body blockquote {
      border-left: 3px solid var(--signal);
      padding-left: 1.5rem;
      margin: 2rem 0;
      font-style: italic;
      color: var(--mid-gray);
    }
    .artikel-body a {
      color: var(--signal);
      text-decoration: none;
      border-bottom: 1px solid rgba(232, 0, 111, 0.3);
      transition: border-color 0.2s;
    }
    .artikel-body a:hover {
      border-color: var(--signal);
    }
    .artikel-img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 4px;
      margin: 2rem 0;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .artikel-billeder-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 2rem 0;
    }
    .artikel-img-half {
      width: 100%;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    @media (max-width: 600px) {
      .artikel-billeder-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Social feed på forsiden */
    .social-feed-grid {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .social-card {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1.4rem 1.2rem;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.02);
      text-decoration: none;
      color: inherit;
      transition: padding-left 0.2s, background 0.2s, border-color 0.2s;
    }
    .social-card:first-child {
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .social-card:hover {
      padding-left: 1.6rem;
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.15);
    }
    .social-card:hover .tekst-arrow {
      transform: translateX(4px);
      color: var(--signal);
    }
    .social-card:hover .social-card-icon {
      background: var(--digital);
      color: #fff;
    }
    .social-card-icon {
      width: 42px;
      height: 42px;
      background: rgba(61, 90, 254, 0.15);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--digital);
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .social-card-content {
      flex-grow: 1;
      min-width: 0;
    }
    .social-card-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--paper);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .social-card-meta {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      color: var(--mid-gray);
      margin-top: 0.3rem;
      display: block;
    }
    .tekst-arrow {
      font-size: 1.2rem;
      color: var(--mid-gray);
      transition: transform 0.2s, color 0.2s;
      flex-shrink: 0;
    }

    /* ═══ PAGE: KONTAKT ═══ */
    .kontakt-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .kontakt-text p {
      max-width: 480px;
      margin-bottom: 1.5rem;
    }
    .kontakt-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .kontakt-item {
      padding: 1.8rem;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.015);
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .kontakt-item .kontakt-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-bottom: 0.3rem;
    }
    .kontakt-item a, .kontakt-item .kontakt-value {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 500;
      font-size: 1.1rem;
      color: var(--paper);
      text-decoration: none;
      transition: color 0.2s;
    }
    .kontakt-item a:hover { color: var(--signal); }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    .social-link {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--mid-gray);
      text-decoration: none;
      font-size: 0.85rem;
      font-family: 'Space Mono', monospace;
      font-weight: 700;
      transition: all 0.2s;
    }
    .social-link:hover {
      border-color: var(--signal);
      color: var(--signal);
      background: rgba(232, 0, 111, 0.06);
    }

    /* ═══ BTN BEVEL (Win95) ═══ */
    .btn-bevel {
      display: inline-block;
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.9rem 2.2rem;
      color: var(--void);
      background: var(--system-gray);
      border: none;
      box-shadow:
        inset 2px 2px 0 #fff,
        inset -2px -2px 0 #808080,
        3px 3px 0 rgba(0,0,0,0.3);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.1s;
    }
    .btn-bevel:hover {
      transform: translate(1px, 1px);
      box-shadow:
        inset 2px 2px 0 #fff,
        inset -2px -2px 0 #808080,
        1px 1px 0 rgba(0,0,0,0.3);
    }
    .btn-bevel:active {
      box-shadow:
        inset -2px -2px 0 #fff,
        inset 2px 2px 0 #808080;
    }

    /* ═══ FOOTER ═══ */
    footer {
      padding: 3rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-left {
      font-family: 'Space Mono', monospace;
      font-size: 0.75rem;
      color: var(--mid-gray);
    }
    .footer-center {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
    }
    .footer-right {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      color: var(--mid-gray);
      opacity: 0.5;
    }

    /* Retro hit counter – 90s LCD style */
    .retro-counter {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: linear-gradient(180deg, #3a3a4a 0%, #2a2a38 100%);
      border: 3px solid;
      border-color: #606078 #1a1a24 #1a1a24 #606078;
      padding: 6px 12px;
      border-radius: 3px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 2px 4px rgba(0,0,0,0.4),
        0 0 0 1px rgba(0,0,0,0.3);
    }
    .retro-counter-label {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      color: #8888a0;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .retro-counter-digits {
      display: inline-flex;
      gap: 2px;
      background: #0a0a14;
      border: 2px solid;
      border-color: #1a1a28 #4a4a5c #4a4a5c #1a1a28;
      padding: 4px 6px;
      border-radius: 2px;
      font-family: 'Space Mono', monospace;
      font-size: 0.95rem;
      font-weight: 700;
      color: #7ec8e3;
      letter-spacing: 0.2em;
      text-shadow:
        0 0 8px rgba(126, 200, 227, 0.6),
        0 0 16px rgba(126, 200, 227, 0.2);
      line-height: 1;
    }
    .retro-counter-digits span {
      display: inline-block;
      min-width: 0.65em;
      text-align: center;
      background: rgba(126, 200, 227, 0.04);
      border-right: 1px solid rgba(126, 200, 227, 0.08);
      padding: 2px 1px;
    }
    .retro-counter-digits span:last-child {
      border-right: none;
    }

    /* ═══ RESPONSIVE ═══ */

    /* Mellem-størrelse: tablet / smalle vinduer */
    @media (max-width: 1100px) {
      nav { padding: 1.2rem 2rem; }
      .container { padding-left: 2rem; padding-right: 2rem; }
      footer { padding: 3rem 2rem; }
    }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(13, 13, 13, 0.97);
        padding: 1.5rem;
        gap: 0.3rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-toggle { display: block; }
      .nav-links a { padding: 0.8rem 1.2rem; display: block; }
      .container { padding-left: 1.5rem; padding-right: 1.5rem; }
      .hero-layout { flex-direction: column-reverse; gap: 2rem; }
      .hero-right { align-items: center; }
      .hero-image { width: 200px; height: 250px; }
      .hero-image-placeholder { font-size: 5rem; }
      .hero-page h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
      .om-grid { grid-template-columns: 1fr; gap: 2rem; }
      .foredrag-grid { grid-template-columns: 1fr; }
      .kontakt-layout { grid-template-columns: 1fr; gap: 2rem; }
      .social-card-text { white-space: normal; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 3rem 1.5rem; }
      .hero-deco { display: none; }
      .win95 { max-width: 100%; }
    }

    @media (max-width: 480px) {
      nav { padding: 0.8rem 1rem; }
      .container { padding-left: 1rem; padding-right: 1rem; }
      footer { padding: 2rem 1rem; }
      .nav-logo { font-size: 1.2rem; }
      .hero-page { padding-top: 5rem; }
      .page-inner { padding-top: 6rem; padding-bottom: 3rem; }
      .hero-win95 { width: 100%; }
      .hero-image { width: 160px; height: 200px; }
    }
