    :root {
      --light-blue: rgb(200, 217, 241);
      --orange: rgb(197, 105, 23);
      --dark-blue: rgb(40, 49, 62);
      --text-light: #f2f5f8;
    }

    body {
      margin: 0;
      font-family: Consolas, "Lucida Console", monospace;
      font-weight: 400;
      background: var(--dark-blue);
      color: var(--text-light);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 400;
    }

    .site-header {
      min-height: 70vh;
      position: relative;
      overflow: hidden;
    }

    .site-header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(20, 30, 42, 0.25), rgba(20, 30, 42, 0.25)), var(--hero-image, url("/themes/kysthusene/image/Spejl_Foto.jpg")) center center / cover no-repeat;
      transform: scale(1);
      transform-origin: center center;
      animation: heroZoom 6s ease-in-out infinite alternate;
    }

    .site-header > * {
      position: relative;
      z-index: 1;
    }

    .subpage-shell {
      background: var(--light-blue);
      color: #0f2239;
      min-height: 100vh;
    }

    .subpage-topbar {
      background: var(--light-blue);
    }

    .subpage-content {
      background: var(--light-blue);
      color: #0f2239;
    }

    @keyframes heroZoom {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.06);
      }
    }

    .brand {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .brand img {
      width: clamp(195px, 22.5vw, 285px);
      height: auto;
      display: block;
    }

    .navbar {
      padding-top: 2rem;
      padding-bottom: 1rem;
    }

    .header-limit {
      max-width: 1600px;
      margin: 0 auto;
    }

    .navbar-toggler {
      border: 0;
      box-shadow: none !important;
      padding: 0.25rem 0.35rem;
    }

    .navbar-toggler-icon {
      background-image: none;
      width: 2rem;
      height: 1.5rem;
      position: relative;
      display: block;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon span {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: #fff;
      transition: background-color 0.2s ease;
    }

    .navbar-toggler:hover .navbar-toggler-icon::before,
    .navbar-toggler:hover .navbar-toggler-icon::after,
    .navbar-toggler:hover .navbar-toggler-icon span,
    .navbar-toggler:focus .navbar-toggler-icon::before,
    .navbar-toggler:focus .navbar-toggler-icon::after,
    .navbar-toggler:focus .navbar-toggler-icon span {
      background: var(--orange);
    }

    .navbar-toggler-icon::before {
      top: 0.1rem;
    }

    .navbar-toggler-icon span {
      top: 0.65rem;
    }

    .navbar-toggler-icon::after {
      bottom: 0.1rem;
    }

    .hero-title {
      min-height: calc(70vh - 110px);
      display: grid;
      place-items: center;
      text-align: center;
      font-family: "komu-new-c", sans-serif;
      font-size: clamp(2.2rem, 7vw, 6rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .activities {
      background: var(--dark-blue);
      padding: 4rem 0 5rem;
    }

    .activities-limit {
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-title {
      font-family: "komu-new-c", sans-serif;
      letter-spacing: 0.1em;
      font-size: clamp(2.2rem, 5vw, 4.2rem);
      text-align: center;
      margin-bottom: 2.5rem;
      text-transform: uppercase;
      color: var(--orange);
    }

    .activities .section-title {
      color: var(--light-blue);
    }

    .subpage-content h1,
    .subpage-content h2,
    .subpage-content h3,
    .subpage-content h4,
    .subpage-content h5,
    .subpage-content h6 {
      font-family: "komu-new-c", sans-serif;
      color: var(--orange);
       letter-spacing: 0.1em;
       padding: 10px 0 5px;
    }

    .subpage-content h1 {
      font-size: clamp(2.4rem, 10vw, 4.4rem);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      line-height: 1;
      margin-top: -50px;
      margin-bottom: 50px;
    }

     .subpage-content  img {
      width: 100%;
      height: auto;
      display: block;
      margin: 2rem 0;
     }
    .activity-card {
      margin-bottom: 3.5rem;
    }

    .activity-link {
      color: inherit;
      text-decoration: none;
      display: block;
    }

    .activity-card img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      display: block;
    }

    .activity-card h3 {
      margin: 0.8rem 0 0.35rem;
      font-family: "komu-new-c", sans-serif;
      letter-spacing: 0.1em;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--orange);
      text-transform: uppercase;
    }

    .activity-card .line {
      width: 100%;
      height: 1px;
      background: var(--orange);
      opacity: 0.9;
    }

    .offcanvas {
      background: rgba(26, 36, 49, 0.95);
    }

    .offcanvas .nav-link {
      color: #fff;
      font-family: "komu-new-c", sans-serif;
      letter-spacing: 0.1em;
      font-size: 1.8rem;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }

    .offcanvas .nav-link:hover,
    .offcanvas .nav-link:focus {
      color: var(--orange);
    }

    .gallery-section {
      background: var(--light-blue);
      color: #0f2239;
      padding: 4.5rem 0 5rem;
    }

    .gallery-section .section-title { color: var(--dark-blue); }

    .gallery-grid {
      display: grid;
      gap: 0.7rem;
    }

    .gallery-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
      gap: 0.7rem;
    }

    .gallery-row.reverse {
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

    .gallery-item {
      border: 0;
      padding: 0;
      width: 100%;
      background: transparent;
      cursor: pointer;
      height: clamp(170px, 22vw, 290px);
      overflow: hidden;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .contact-section {
      background: #efefef;
      color: #0f2239;
      padding: 4rem 0 3.8rem;
    }

    .contact-title {
      font-family: "komu-new-c", sans-serif;
      letter-spacing: 0.1em;
      font-size: clamp(2.2rem, 5vw, 4rem);
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: var(--dark-blue);
    }

    .contact-text {
      font-size: 1rem;
      line-height: 1.15;
      margin: 0;
    }

    .contact-logo {
      text-align: right;
      margin: 0;
      
    }

    .contact-logo img {
      width: clamp(90px, 12vw, 140px);
      max-width: 100%;
      height: auto;
    }

    .facility-section {
      background: var(--light-blue);
      color: #0f2239;
    }

    .facility-item {
      margin-bottom: 3rem;
    }

    .facility-item:last-child {
      margin-bottom: 0;
    }

    .facility-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      display: block;
    }

    .facility-topline {
      border-top: 1px solid var(--orange);
      margin-bottom: 1rem;
    }

    .facility-title {
      color: var(--orange);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .facility-text {
      margin: 0;
      color: #0f2239;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .facility-item {
        margin-bottom: 3.5rem;
      }
    }

    .gallery-modal .modal-content {
      background: rgba(10, 15, 24, 0.95);
      border: 0;
    }

    .gallery-modal .modal-body {
      padding: 0.5rem;
      position: relative;
    }

    .gallery-modal img {
      width: 100%;
      max-height: 78vh;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .gallery-nav {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      font-size: 1.6rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    .gallery-nav.prev {
      left: 0.9rem;
    }

    .gallery-nav.next {
      right: 0.9rem;
    }

    @media (max-width: 767.98px) {
      .gallery-row,
      .gallery-row.reverse {
        grid-template-columns: 1fr;
      }
    }
