:root {
    --ink: #1a1d1a;
    --ink-soft: #3d403c;
    --paper: #f6f4ee;
    --paper-warm: #ebe6d8;
    --line: #d8d3c4;
    --line-soft: #e8e3d4;
    --moss: #4a5d2f;
    --moss-deep: #2a3520;
    --rust: #b85a36;
    --sun: #d4a548;
    --gravel: #8b8678;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Geist', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
  }

  ::selection { background: var(--ink); color: var(--paper); }

  a { color: inherit; text-decoration: none; }

  /* === GLOBAL EMPHASIS — clean, readable === */
  em {
    font-style: normal;
    font-weight: inherit;
    color: var(--moss);
    background-image: linear-gradient(transparent 88%, var(--sun) 88%, var(--sun) 100%);
    background-size: 100% 100%;
    padding: 0 1px;
  }

  /* Dark backgrounds — emphasis becomes sun-colored, underline becomes moss */
  .lines-section em,
  .quote-section em,
  .contact-band em,
  .job-hero em,
  .locations em,
  .offer-block.dark em,
  footer em {
    color: var(--sun);
    background-image: linear-gradient(transparent 88%, rgba(212,165,72,0.35) 88%, rgba(212,165,72,0.35) 100%);
  }

  /* === IMAGE PLACEHOLDERS === */
  .img-ph {
    background:
      repeating-linear-gradient(
        45deg,
        rgba(26,29,26,0.04),
        rgba(26,29,26,0.04) 12px,
        rgba(26,29,26,0.07) 12px,
        rgba(26,29,26,0.07) 24px
      ),
      var(--paper-warm);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--ink-soft);
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 24px;
    overflow: hidden;
  }

  .img-ph::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(26,29,26,0.18);
    pointer-events: none;
  }

  .img-ph-label {
    background: var(--paper);
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    max-width: 85%;
  }

  .img-ph-label strong {
    display: block;
    font-weight: 600;
    color: var(--ink);
    font-size: 11px;
    margin-bottom: 4px;
  }

  .img-ph-label span {
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 10px;
    opacity: 0.7;
  }

  /* === HEADER === */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .topbar {
    background: var(--ink);
    color: var(--paper);
    padding: 8px 24px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .topbar .status {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .live-dot {
    width: 7px; height: 7px;
    background: #6abe3a;
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .topbar .right {
    display: flex;
    gap: 20px;
  }

  .nav {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }

  .logo {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .logo-mark {
    width: 32px; height: 32px;
    background: var(--moss);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    font-size: 18px;
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
  }

  .nav-links a {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
    cursor: pointer;
  }

  .nav-links a:hover { border-bottom-color: var(--moss); }
  .nav-links a.active { border-bottom-color: var(--ink); }

  .nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .phone-cta {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.15s;
  }
  .phone-cta:hover { background: var(--ink); color: var(--paper); }

  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: all 0.15s;
  }
  .btn-primary:hover { background: var(--moss); border-color: var(--moss); }

  .mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ink);
    padding: 10px 14px;
    cursor: pointer;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
  }

  /* === PAGE SYSTEM === */
  .page { display: none; }
  .page.active { display: block; }

  /* === HERO (forside) === */
  .hero {
    padding: 80px 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--moss);
  }

  .hero h1 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    color: var(--ink);
  }

  .hero h1 em {
    font-weight: 400;
    color: var(--moss);
  }

  .hero-lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .btn-big {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.15s;
  }
  .btn-big:hover { background: var(--moss); border-color: var(--moss); }

  .btn-big.outline {
    background: transparent;
    color: var(--ink);
  }
  .btn-big.outline:hover { background: var(--ink); color: var(--paper); }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }

  .proof-item .num {
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .proof-item .label {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
  }

  .hero-visual .img-ph {
    height: 100%;
    width: 100%;
  }

  .hero-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--ink);
    color: var(--paper);
    padding: 20px 24px;
    max-width: 240px;
    z-index: 3;
  }

  .hero-badge .top {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 8px;
  }

  .hero-badge .big {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 4px;
  }

  .hero-badge .small {
    font-size: 13px;
    opacity: 0.8;
  }

  /* === DIRECT LINES === */
  .lines-section {
    background: var(--ink);
    color: var(--paper);
    padding: 60px 24px;
  }

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

  .lines-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .lines-header h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 22ch;
  }

  .lines-header h2 em {
    font-weight: 400;
    color: var(--sun);
  }

  .lines-header p {
    font-size: 15px;
    color: rgba(246,244,238,0.7);
    max-width: 36ch;
  }

  .lines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(246,244,238,0.15);
    border-left: 1px solid rgba(246,244,238,0.15);
  }

  .line {
    padding: 28px 24px;
    border-right: 1px solid rgba(246,244,238,0.15);
    border-bottom: 1px solid rgba(246,244,238,0.15);
    display: block;
    transition: background 0.15s;
  }
  .line:hover { background: rgba(246,244,238,0.04); }

  .line .who {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(246,244,238,0.55);
    margin-bottom: 12px;
  }

  .line .number {
    font-family: 'Geist', sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .line .detail {
    font-size: 13px;
    color: rgba(246,244,238,0.6);
    line-height: 1.45;
  }

  /* === SECTION GENERIC === */
  .section {
    padding: 100px 24px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-head {
    margin-bottom: 60px;
    max-width: 720px;
  }

  .section-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--moss);
  }

  .section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--ink);
  }

  .section h2 em {
    font-weight: 400;
    color: var(--moss);
  }

  .section-lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 56ch;
  }

  /* === SERVICES INDEX (forside-blok) === */
  .services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .service-card {
    padding: 36px 28px 36px 0;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }
  .service-card:last-child { border-right: none; }
  .service-card:hover { background: var(--paper-warm); padding-left: 16px; }
  .service-card { padding-left: 28px; }

  .service-card .num {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--gravel);
    margin-bottom: 24px;
  }

  .service-card h3 {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .service-card h3 em {
    font-weight: 400;
  }

  .service-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .service-card .more {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--moss);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .service-card .more::after {
    content: '→';
    transition: transform 0.2s;
  }
  .service-card:hover .more::after {
    transform: translateX(4px);
  }

  /* === CASES TEASER === */
  .cases-bg {
    background: var(--paper-warm);
  }

  .cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .case-card {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }

  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,29,26,0.08);
  }

  .case-card .img-ph {
    aspect-ratio: 16/10;
    border: none;
    border-bottom: 1px solid var(--line);
  }

  .case-card-body {
    padding: 28px;
  }

  .case-card .tag {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 12px;
  }

  .case-card h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .case-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.5;
  }

  /* === QUOTE === */
  .quote-section {
    padding: 100px 24px;
    background: var(--moss-deep);
    color: var(--paper);
  }

  .quote-wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-mark {
    font-family: 'Geist', sans-serif;
    font-size: 80px;
    font-weight: 300;
    line-height: 0.7;
    color: var(--sun);
    opacity: 0.4;
    margin-bottom: 16px;
  }

  .quote-text {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-attr {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(246,244,238,0.7);
  }

  /* === CONTACT BAND === */
  .contact-band {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 24px;
  }

  .contact-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-band h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .contact-band h2 em {
    font-weight: 400;
    color: var(--sun);
  }

  .contact-band p {
    font-size: 17px;
    color: rgba(246,244,238,0.75);
    margin-bottom: 32px;
    max-width: 48ch;
    line-height: 1.55;
  }

  .contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-light {
    background: var(--paper);
    color: var(--ink);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--paper);
    cursor: pointer;
    transition: all 0.15s;
  }
  .btn-light:hover { background: var(--sun); border-color: var(--sun); }

  .btn-ghost {
    background: transparent;
    color: var(--paper);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(246,244,238,0.4);
    cursor: pointer;
    transition: all 0.15s;
  }
  .btn-ghost:hover { border-color: var(--paper); background: rgba(246,244,238,0.06); }

  .contact-visual .img-ph {
    aspect-ratio: 4/3;
    background-color: var(--moss-deep);
    border-color: rgba(246,244,238,0.15);
    color: rgba(246,244,238,0.6);
  }
  .contact-visual .img-ph::before {
    border-color: rgba(246,244,238,0.18);
  }
  .contact-visual .img-ph-label {
    background: var(--ink);
    border-color: rgba(246,244,238,0.2);
    color: rgba(246,244,238,0.8);
  }
  .contact-visual .img-ph-label strong { color: var(--paper); }

  /* === SUB-PAGE HERO === */
  .page-hero {
    padding: 60px 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
  }

  .breadcrumb {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .breadcrumb .sep { opacity: 0.5; }
  .breadcrumb a { cursor: pointer; }
  .breadcrumb a:hover { color: var(--moss); }

  .page-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 20ch;
  }

  .page-hero h1 em {
    font-weight: 400;
    color: var(--moss);
  }

  .page-hero-lead {
    font-size: 19px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 60ch;
  }

  /* === VI TILBYDER PAGE === */
  .offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .offer-block {
    padding: 56px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .offer-block.dark {
    background: var(--moss-deep);
    color: var(--paper);
  }
  .offer-block.dark h3 em { color: var(--sun); }

  .offer-block.warm {
    background: var(--paper-warm);
  }

  .offer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .offer-block h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  .offer-block h3 em {
    font-weight: 400;
    color: var(--moss);
  }

  .offer-block .num-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    opacity: 0.6;
    padding-top: 8px;
  }

  .offer-block > p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 50ch;
  }
  .offer-block.dark > p { color: rgba(246,244,238,0.75); }

  .offer-list {
    list-style: none;
    margin-top: 8px;
  }

  .offer-list li {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
  }
  .offer-block.dark .offer-list li { border-top-color: rgba(246,244,238,0.15); }

  .offer-list li::before {
    content: '→';
    margin-right: 12px;
    color: var(--moss);
    font-weight: 500;
  }
  .offer-block.dark .offer-list li::before { color: var(--sun); }

  .offer-list li span:first-of-type { flex-grow: 1; }

  /* === ABOUT PAGE === */
  .story-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .story-text h2 {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 32px;
  }

  .story-text h2 em {
    font-weight: 400;
    color: var(--moss);
  }

  .story-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }

  .story-visual .img-ph {
    aspect-ratio: 4/5;
  }

  .timeline {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    padding-top: 60px;
  }

  .timeline-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .timeline-year {
    font-size: 32px;
    color: var(--moss);
    line-height: 1;
  }

  .timeline-content h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .timeline-content p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* === VALUES === */
  .values-bg {
    background: var(--paper-warm);
    padding: 100px 24px;
  }

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

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
  }

  .value-card {
    background: var(--paper);
    padding: 36px 28px;
    border: 1px solid var(--line);
  }

  .value-card .ico {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 24px;
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--moss);
    background: rgba(74,93,47,0.05);
  }

  .value-card h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .value-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  /* === CASES PAGE === */
  .cases-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 60px 24px 100px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .cases-filter {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .filter-chip {
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
  }
  .filter-chip:hover, .filter-chip.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }

  /* === JOB PAGE === */
  .job-hero {
    padding: 100px 24px;
    background: var(--moss-deep);
    color: var(--paper);
  }

  .job-hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .job-hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .job-hero h1 em {
    font-weight: 400;
    color: var(--sun);
  }

  .job-hero p {
    font-size: 19px;
    color: rgba(246,244,238,0.85);
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 52ch;
  }

  .job-hero .img-ph {
    aspect-ratio: 4/5;
    background-color: rgba(246,244,238,0.04);
    border-color: rgba(246,244,238,0.15);
    color: rgba(246,244,238,0.6);
  }
  .job-hero .img-ph::before { border-color: rgba(246,244,238,0.18); }
  .job-hero .img-ph-label {
    background: var(--moss-deep);
    border-color: rgba(246,244,238,0.2);
    color: rgba(246,244,238,0.8);
  }
  .job-hero .img-ph-label strong { color: var(--paper); }

  .openings {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 24px;
  }

  .opening-list {
    border-top: 1px solid var(--line);
    margin-top: 40px;
  }

  .opening-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    cursor: pointer;
    transition: padding-left 0.2s;
  }
  .opening-row:hover { padding-left: 16px; }

  .opening-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .opening-meta {
    font-size: 14px;
    color: var(--ink-soft);
  }

  .opening-cta {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--moss);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .opening-cta::after { content: '→'; transition: transform 0.2s; }
  .opening-row:hover .opening-cta::after { transform: translateX(4px); }

  /* === CONTACT PAGE === */
  .contact-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }

  .contact-left h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .contact-left h2 em {
    font-weight: 400;
    color: var(--moss);
  }

  .contact-left p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 50ch;
  }

  .contact-block {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
  }

  .contact-block .label {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gravel);
  }

  .contact-block .value {
    font-size: 17px;
    font-weight: 500;
  }
  .contact-block .value.big {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    letter-spacing: -0.01em;
  }

  .contact-form {
    background: var(--paper-warm);
    padding: 40px;
    border: 1px solid var(--line);
  }

  .contact-form h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  .contact-form h3 em {
    font-weight: 400;
  }

  .contact-form .helper {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .form-row label {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--ink-soft);
  }

  .form-row input,
  .form-row textarea,
  .form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.15s;
  }
  .form-row input:focus,
  .form-row textarea:focus,
  .form-row select:focus {
    outline: none;
    border-color: var(--moss);
  }
  .form-row textarea { resize: vertical; min-height: 100px; }

  .form-actions {
    margin-top: 24px;
  }

  /* === LOCATIONS === */
  .locations {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 24px;
  }

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

  .locations h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .locations h2 em {
    font-weight: 400;
    color: var(--sun);
  }

  .locations .sub {
    color: rgba(246,244,238,0.6);
    margin-bottom: 40px;
    font-size: 15px;
  }

  .loc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid rgba(246,244,238,0.15);
    border-left: 1px solid rgba(246,244,238,0.15);
  }

  .loc {
    padding: 24px 20px;
    border-right: 1px solid rgba(246,244,238,0.15);
    border-bottom: 1px solid rgba(246,244,238,0.15);
  }

  .loc .city {
    font-size: 24px;
    color: var(--sun);
    margin-bottom: 4px;
  }

  .loc .hq {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    background: var(--moss);
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .loc address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(246,244,238,0.75);
  }

  /* === BILLUND CARD (single location) === */
  .billund-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    border: 1px solid rgba(246,244,238,0.15);
  }

  .billund-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .hq-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--paper);
    background: var(--moss);
    padding: 4px 10px;
    display: inline-block;
    width: fit-content;
  }

  .billund-city {
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 600;
    color: var(--sun);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .billund-address {
    font-style: normal;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(246,244,238,0.9);
  }

  .billund-meta {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(246,244,238,0.15);
    padding-top: 24px;
  }

  .billund-meta > div {
    display: flex;
    align-items: baseline;
    gap: 16px;
  }

  .billund-meta a {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--paper);
    transition: color 0.15s;
  }
  .billund-meta a:hover { color: var(--sun); }

  .meta-label {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(246,244,238,0.55);
    min-width: 70px;
  }

  .billund-map {
    border: none;
    border-left: 1px solid rgba(246,244,238,0.15);
    background-color: rgba(246,244,238,0.04);
    color: rgba(246,244,238,0.6);
  }
  .billund-map::before { border-color: rgba(246,244,238,0.18); }
  .billund-map .img-ph-label {
    background: var(--ink);
    border-color: rgba(246,244,238,0.2);
    color: rgba(246,244,238,0.8);
  }
  .billund-map .img-ph-label strong { color: var(--paper); }

  /* === FOOTER === */
  footer {
    background: var(--moss-deep);
    color: var(--paper);
    padding: 60px 24px 30px;
  }

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

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(246,244,238,0.15);
  }

  .footer-brand .logo-mark {
    background: var(--sun);
    color: var(--moss-deep);
  }

  .footer-brand p {
    color: rgba(246,244,238,0.7);
    font-size: 14px;
    line-height: 1.55;
    margin-top: 16px;
    max-width: 36ch;
  }

  footer h4 {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(246,244,238,0.6);
    margin-bottom: 18px;
    font-weight: 400;
  }

  footer ul { list-style: none; }
  footer li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(246,244,238,0.85);
  }
  footer a { cursor: pointer; }
  footer a:hover { color: var(--sun); }

  .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(246,244,238,0.5);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* === MOBILE === */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      flex-direction: column;
      background: var(--paper);
      padding: 20px 24px;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
      gap: 4px;
    }
    .nav-links.open a {
      padding: 12px 0;
      border-bottom: 1px solid var(--line-soft);
    }
    .nav-cta .btn-primary { display: none; }

    .hero {
      grid-template-columns: 1fr;
      gap: 50px;
      padding-top: 50px;
    }

    .hero-proof { grid-template-columns: 1fr; gap: 18px; }

    .lines-grid { grid-template-columns: 1fr 1fr; }
    .services-row { grid-template-columns: 1fr 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: 1fr; }
    .cases-page-grid { grid-template-columns: 1fr 1fr; }
    .job-hero-wrap { grid-template-columns: 1fr; }
    .contact-page { grid-template-columns: 1fr; gap: 40px; }
    .loc-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .opening-row { grid-template-columns: 1fr; gap: 8px; }
    .timeline-row { grid-template-columns: 80px 1fr; gap: 20px; }
    .billund-card { grid-template-columns: 1fr; }
    .billund-map { border-left: none; border-top: 1px solid rgba(246,244,238,0.15); aspect-ratio: 4/3; }
  }

  @media (max-width: 600px) {
    .lines-grid { grid-template-columns: 1fr; }
    .services-row { grid-template-columns: 1fr; }
    .service-card { border-right: none; }
    .cases-page-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 20px; }
    .hero { padding: 40px 20px 40px; }
    .topbar { font-size: 10px; padding: 8px 16px; }
    .topbar .hide-mobile { display: none; }
    .hero-badge { left: 0; right: 0; max-width: none; }
  }