/* ============================================
   Grumpy Productions — Kursus virksomheder
   Fælles stylesheet for alle kursussider
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0C263D;
      --navy2:  #1C3D5A;
      --navy3:  #0a1e30;
      --gold:   #F4C542;
      --cream:  #F0E5D8;
      --white:  #FFFFFF;
      --text:   #4a6a82;
      --light:  #b0c8df;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--navy);
    }

    /* ── NAV ── */
    nav {
      background: var(--navy3);
      padding: 18px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 2px solid var(--gold);
    }
    nav img.logo { height: 44px; }
    .btn-nav {
      background: var(--gold);
      color: var(--navy);
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 22px;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: opacity 0.2s;
    }
    .btn-nav:hover { opacity: 0.85; }

    /* ── HERO ── */
    .hero {
      background: var(--navy);
      padding: 0;
      display: grid;
      grid-template-columns: 55% 45%;
      min-height: 500px;
      align-items: stretch;
    }
    .hero-left {
      padding: 80px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-left .eyebrow {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .hero-left h1 {
      font-size: clamp(30px, 3.2vw, 50px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-left h1 span { color: var(--gold); }
    .hero-left .sub {
      font-size: 16px;
      color: var(--light);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .btn-primary {
      display: inline-block;
      align-self: flex-start;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      font-size: 15px;
      padding: 16px 36px;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: opacity 0.2s;
    }
    .btn-primary:hover { opacity: 0.85; }
    .hero-right {
      position: relative;
      overflow: hidden;
      background: #000;
    }
    .hero-right iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--navy2);
      padding: 28px 0 24px;
      overflow: hidden;
    }
    .ticker-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light);
      opacity: 0.6;
      text-align: center;
      margin-bottom: 16px;
    }
    .ticker {
      overflow: hidden;
      width: 100%;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: ticker-scroll 40s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    .ticker-item {
      font-family: 'Roboto Slab', serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      white-space: nowrap;
      padding: 0 8px;
    }
    .ticker-sep {
      color: var(--gold);
      font-size: 14px;
      padding: 0 4px;
      opacity: 0.7;
    }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── INFO STRIP ── */
    .info-strip {
      background: var(--gold);
      padding: 22px 56px;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: center;
    }
    .info-strip .item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .info-strip .icon { font-size: 18px; }
    .info-strip .label {
      font-family: 'Roboto Slab', serif;
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }

    /* ── SECTION SHARED ── */
    .section-label {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy2);
      margin-bottom: 12px;
    }

    /* ── WHY ── */
    .why {
      background: var(--cream);
      padding: 88px 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-text h2 {
      font-size: clamp(24px, 2.6vw, 34px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 24px;
      line-height: 1.25;
    }
    .why-text p {
      font-size: 16px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .why-text .highlight { font-weight: 700; color: var(--navy); }
    .why-image img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .why-image {
      position: relative;
    }
    .why-image::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 60%;
      height: 60%;
      border: 3px solid var(--gold);
      z-index: 0;
    }

    /* ── LEARN ── */
    .learn {
      background: var(--navy);
      padding: 88px 56px;
    }
    .learn .section-label {
      color: var(--gold);
      opacity: 0.75;
      margin-bottom: 12px;
    }
    .learn h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 48px;
    }
    .modules {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2px;
    }
    .module {
      background: var(--navy2);
      padding: 36px 28px;
      border-top: 3px solid var(--gold);
    }
    .module .num {
      font-family: 'Roboto Slab', serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.12em;
      margin-bottom: 16px;
    }
    .module h3 {
      font-size: 17px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .module p {
      font-size: 14px;
      color: var(--light);
      line-height: 1.7;
    }

    /* ── PRICING ── */
    .pricing {
      background: var(--white);
      padding: 88px 56px;
    }
    .pricing h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .pricing .pricing-intro {
      font-size: 16px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 48px;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .price-card {
      border: 2px solid var(--gold);
      background: var(--gold);
      padding: 40px 36px;
      position: relative;
    }
    .price-card.featured {
      border-color: var(--gold);
      background: var(--navy);
    }
    .price-card .duration {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--navy2);
      margin-bottom: 10px;
    }
    .price-card.featured .duration { color: var(--light); }
    .price-card h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .price-card:not(.featured) h3 { color: var(--navy); }
    .price-card.featured h3 { color: var(--white); }
    .price-card .price {
      font-family: 'Roboto Slab', serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--gold);
      display: block;
      margin: 16px 0 4px;
    }
    .price-card:not(.featured) .price { color: var(--navy); }
    .price-card .vat {
      font-size: 13px;
      color: var(--navy2);
      margin-bottom: 24px;
    }
    .price-card.featured .vat { color: var(--light); }
    .price-card ul {
      list-style: none;
      margin-bottom: 28px;
    }
    .price-card ul li {
      font-size: 14px;
      color: var(--navy);
      line-height: 1.6;
      padding: 6px 0;
      border-bottom: 1px solid rgba(12,38,61,0.15);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .price-card.featured ul li {
      color: var(--light);
      border-bottom-color: rgba(255,255,255,0.1);
    }
    .price-card ul li::before {
      content: '✓';
      color: var(--navy);
      font-weight: 700;
      flex-shrink: 0;
    }
    .price-card.featured ul li::before { color: var(--gold); }
    .price-card:not(.featured) .btn-primary {
      background: var(--navy);
      color: var(--gold);
    }
    .price-card:not(.featured) .btn-primary:hover { opacity: 0.85; }
    .price-note {
      font-size: 13px;
      color: var(--text);
      margin-top: 24px;
      line-height: 1.6;
    }

    /* ── FOR WHOM ── */
    .for-whom {
      background: var(--cream);
      padding: 88px 56px;
    }
    .for-whom h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 40px;
    }
    .for-whom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .for-whom-card {
      background: var(--white);
      padding: 28px 24px;
      border-left: 4px solid var(--gold);
    }
    .for-whom-card .icon {
      font-size: 26px;
      display: block;
      margin-bottom: 14px;
    }
    .for-whom-card h4 {
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .for-whom-card p {
      font-size: 14px;
      color: var(--text);
      line-height: 1.6;
    }

    /* ── PRACTICAL ── */
    .practical {
      background: var(--navy);
      padding: 88px 56px;
    }
    .practical .section-label {
      color: var(--gold);
      opacity: 0.75;
      margin-bottom: 12px;
    }
    .practical h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 48px;
    }
    .practical-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2px;
    }
    .practical-item {
      background: var(--navy2);
      padding: 36px 28px;
      border-top: 3px solid var(--gold);
    }
    .practical-item .icon {
      font-size: 28px;
      display: block;
      margin-bottom: 16px;
    }
    .practical-item h4 {
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 10px;
    }
    .practical-item p {
      font-size: 14px;
      color: var(--light);
      line-height: 1.7;
    }

    /* ── INSTRUCTOR ── */
    .instructor {
      background: var(--white);
      padding: 88px 56px;
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 72px;
      align-items: start;
    }
    .instructor-photo-wrap {
      position: relative;
    }
    .instructor-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      display: block;
    }
    .instructor-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: -12px;
      width: 50%;
      height: 40%;
      border: 3px solid var(--gold);
      z-index: 0;
    }
    .instructor-text .section-label { margin-bottom: 12px; }
    .instructor-text h2 {
      font-size: clamp(24px, 2.5vw, 34px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .instructor-text .title {
      font-family: 'Roboto Slab', serif;
      font-size: 14px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 28px;
      display: block;
    }
    .instructor-text p {
      font-size: 16px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .instructor-stats {
      display: flex;
      gap: 40px;
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .stat-block .num {
      font-family: 'Roboto Slab', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      display: block;
    }
    .stat-block .lbl {
      font-size: 13px;
      color: var(--text);
      letter-spacing: 0.06em;
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--navy3);
      padding: 88px 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }
    .contact-intro .section-label { color: var(--gold); opacity: 0.75; margin-bottom: 12px; }
    .contact-intro h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .contact-intro p {
      font-size: 16px;
      color: var(--light);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--light);
      font-size: 15px;
      margin-top: 16px;
      line-height: 1.5;
    }
    .contact-detail .icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
    .contact-form {
      background: var(--white);
      padding: 40px 36px;
    }
    .contact-form h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 28px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy2);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1px solid #ccd8e4;
      padding: 12px 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: var(--navy);
      background: #f8fbfd;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .btn-submit {
      width: 100%;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      font-size: 15px;
      padding: 16px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.05em;
      transition: opacity 0.2s;
      margin-top: 8px;
    }
    .btn-submit:hover { opacity: 0.85; }
    .form-note {
      font-size: 12px;
      color: var(--text);
      text-align: center;
      margin-top: 12px;
      line-height: 1.6;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--cream);
      padding: 88px 56px;
    }
    .testimonials .section-label { margin-bottom: 12px; }
    .testimonials h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 48px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      padding: 36px 32px;
      border-top: 3px solid var(--gold);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .quote-text {
      font-size: 16px;
      color: var(--navy);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 28px;
    }
    .quote-author {
      border-top: 1px solid #dde8f0;
      padding-top: 16px;
    }
    .author-name {
      display: block;
      font-weight: 700;
      font-size: 14px;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .author-title {
      display: block;
      font-size: 13px;
      color: var(--text);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy3);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 32px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    footer img.logo { height: 36px; opacity: 0.7; }
    footer p {
      font-size: 13px;
      color: var(--light);
      opacity: 0.6;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .hero { grid-template-columns: 1fr; min-height: unset; }
      .hero-left { padding: 60px 24px; }
      .hero-right { min-height: 260px; }
      .info-strip { padding: 16px 24px; gap: 20px; }
      .why { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
      .why-image { display: none; }
      .learn { padding: 60px 24px; }
      .pricing { padding: 60px 24px; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
      .for-whom { padding: 60px 24px; }
      .practical { padding: 60px 24px; }
      .instructor { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
      .instructor-photo-wrap { max-width: 240px; }
      .contact { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
      .testimonials { padding: 60px 24px; }
      footer { padding: 24px; flex-direction: column; align-items: flex-start; }
    }
