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

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  font-family: "Poppins", sans-serif;

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #fffcf1; /* lys krem */
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.current {
  color: #850505;
  font-weight: 500;
  font-size: 19px;
  text-decoration: underline;
}

/**********************************/
/*      NAVBAR/HEADER        */
/**********************************/
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fffcf1; /* lys krem */
;
}

.container {
  max-width: 1450px;
  width: 98%;
  padding: 0 25px;
  margin: 0 auto;
}

.container-sm {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.navbar {
  min-height: 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar img,
.logo {
  height: 59px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 17px;
  font-weight: 400;
  color: #3a0b0b;
  text-decoration: none;
}

.nav-link:hover {
  color: #5f0808;
}

.nav-link.current {
  color: #821111;
}

.darkerr {
  padding: 10px 20px;
  color: #ffffff;
  background-color: #881a1a;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
}

.darkerr i {
  margin-left: 10px;
}

.darkerr:hover {
  color: #f1f8ff;
  background-color: #5b0000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/**********************************/
/*      SEARCH BUTTON             */
/**********************************/
.search-toggle {
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  padding: 0;
}

.search-toggle i {
  font-size: 20px;
  background-color: #ffa3a359;
  color: #852d2d;
  padding: 15px;
  border-radius: 50%;
}

.search-toggle:hover {
  transform: translateY(-1px);
}

/**********************************/
/*      HAMBURGER                 */
/**********************************/
.hamburger {
  display: none;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bar {
  display: block;
  width: 34px;
  height: 1px;
  margin: 4px auto;
  transition: all 0.3s ease;
  background-color: #2f1313;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/**********************************/
/*      SEARCH OVERLAY            */
/**********************************/
.search-overlay {
  position: fixed;
  inset: 0;
  background: #f6f4e8;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  overflow-y: auto;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-overlay-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 25px 70px;
}

.search-overlay-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}

.search-close {
  width: 52px;
  height: 52px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-close i {
  font-size: 30px;
  color: #111111;
}

.search-box {
  position: relative;
  margin-bottom: 70px;
}

.search-box-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #777777;
}

.search-box input {
  width: 100%;
  height: 110px;
  border: 3px solid #222222;
  border-radius: 8px;
  background: transparent;
  padding: 0 30px 0 100px;
  font-size: 24px;
  color: #171717;
  outline: none;
}

.search-box input::placeholder {
  color: #7a7a7a;
}

.search-suggestions-wrap h3 {
  margin: 0 0 34px;
  font-size: 22px;
  color: #171717;
  font-weight: 600;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-result-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  text-decoration: none;
  color: #111111;
  transition: 0.25s ease;
}

.search-result-icon,
.search-result-arrow {
  font-size: 24px;
  color: #1c1c1c;
}

.search-result-text {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #111111;
  transition: 0.25s ease;
}

.search-result-item:hover .search-result-text {
  color: #720101;
}

.search-no-results {
  display: none;
  margin-top: 24px;
  font-size: 18px;
  color: #666666;
}

.search-no-results.show {
  display: block;
}

body.search-open {
  overflow: hidden;
}

/**********************************/
/*      MOBILE MENU               */
/**********************************/
@media (max-width: 992px) {
  .u-head {
    display: none;
  }

  .navbar {
    min-height: 82px;
  }

  .navbar img,
  .logo {
    height: 42px;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 82px);
    background: #f6f4e8;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 36px 25px 40px;
    transition: 0.35s ease;
    overflow-y: auto;
    z-index: 998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-link {
    width: 100%;
    display: block;
    padding: 18px 0;
    font-size: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 20%;

    color: #1f0f0c;
  }

  .darkerr {
    margin-top: 18px;
    width: auto;
    padding: 14px 22px;
    font-size: 18px;
    border-radius: 10px;
    background: #720101;
    color: #ffffff;
  }

  .nav-actions {
    margin-left: auto;
    gap: 6px;
  }

  .search-toggle,
  .hamburger {
    display: inline-flex;
    width: 52px;
    height: 52px;
  }

  .search-toggle i {
    font-size: 26px;
  }

  .hamburger {
    display: inline-flex;
  }

  .bar {
    width: 45px;
    height: 2px;
    margin: 6px auto;
  }
}

/**********************************/
/*      MOBILE SEARCH             */
/**********************************/
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    min-height: 82px;
  }

  .navbar img,
  .logo {
    height: 38px;
  }

  .nav-menu {
    top: 76px;
    height: calc(100vh - 76px);
    padding: 28px 16px 30px;
  }

  .nav-link {
    padding: 16px 0;
    font-size: 20px;
  }

  .darkerr {
    font-size: 17px;
    padding: 13px 18px;
  }

  .nav-actions {
    gap: 2px;
  }

  .search-toggle,
  .hamburger {
    width: 50px;
    height: 50px;
  }

  .search-toggle i {
    font-size: 14px;
  }

  .bar {
    width: 36px;
  }

  .search-overlay-inner {
    padding: 18px 16px 40px;
  }

  .search-overlay-top {
    margin-bottom: 16px;
  }

  .search-close {
    width: 46px;
    height: 46px;
  }

  .search-close i {
    font-size: 26px;
  }

  .search-box {
    margin-bottom: 38px;
  }

  .search-box-icon {
    left: 20px;
    font-size: 22px;
  }

  .search-box input {
    height: 74px;
    padding: 0 16px 0 58px;
    font-size: 17px;
    border-width: 2px;
  }

  .search-suggestions-wrap h3 {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .search-results {
    gap: 18px;
  }

  .search-result-item {
    gap: 12px;
  }

  .search-result-icon,
  .search-result-arrow {
    font-size: 18px;
  }

  .search-result-text {
    font-size: 20px;
  }
}

/**********************************/
/*      DESKTOP RULES             */
/**********************************/
@media (min-width: 993px) {
  .hamburger {
    display: none !important;
  }
}
/******** HERO – full-cover bakgrunn ********/
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(700px, 88vh, 900px);
  display: flex;
  align-items: center;
}

/* Hele bildet dekker hero, med gradient for lesbar tekst */
.hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      190deg,
      rgba(1, 12, 20, 0.62) 0%,
      rgba(2, 15, 24, 0.372) 38%,
      rgba(1, 14, 24, 0.515) 70%,
      rgba(0, 8, 14, 0.584) 100%
    ),
    url("../img/bgbg.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02) brightness(0.98);
  z-index: -1;
}

/* ✅ Content til venstre */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  text-align: left;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

/* Selve tekstboksen */
.hero-content > div:first-child {
  width: min(820px, 100%);
}

/* Skjul gammelt bildeelement når cover brukes */
.hero-image {
  display: none;
}

.thom {
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
}

.hero {
  position: relative;
  isolation: isolate; /* sørger for at overlay ikke lekker ut */
  min-height: clamp(700px, 88vh, 900px);
  display: flex;
  align-items: center;
} /* Hele bildet dekker hero, med gradient for lesbar tekst */
.hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      190deg,
      rgba(1, 12, 20, 0.386) 0%,
      rgba(2, 15, 24, 0.387) 38%,
      rgba(1, 14, 24, 0.571) 70%,
      rgba(0, 8, 14, 0.766) 100%
    ),
    url("../img/bgbg.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02) brightness(0.98);
  z-index: -1;
} /* ✅ Flytt content til høyre */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end; /* høyrejusterer grid-items */
  text-align: right; /* høyrejusterer tekst */
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
} /* Selve tekstboksen: kontroller bredde + "pust" */
.hero-content > div:first-child {
  width: min(620px, 100%);
} /* Skjul det gamle bildeelementet når vi bruker cover */
.hero-image {
  display: none;
}
.thom {
  color: #fff;
  font-size: 16px;
  margin: 10px;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  line-height: 1;
    font-family: "Bricolage Grotesque", sans-serif;

  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p {
  font-size: clamp(16px, 2.1vw, 17px);
  color: #ffffff;
  max-width: 77%;
padding: 20px 0;  font-weight: 500;
  line-height: 1.4;
  opacity: 0.95;
  margin-left: auto; /* ✅ gjør at avsnittet "sitter" til høyre */
} /* Knapper – stor trykkflate, elegant */
.btn-sec {
  display: flex;
  gap: 18px;
  margin-top: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end; /* ✅ knapper mot høyre */
}
.btn-contact {
  background-color: #940505;
  color: #fff;
  padding: 16px 24px;
  border-radius: 5px;
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 18px);
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-contact:hover {
  transform: translateY(-2px);
  background-color: #6a0000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.btn-contact.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #f7fffb;
}
.btn-contact.ghost i {
  color: #ff5f5f;
  margin-right: 12px;

} /* -------- Tablet -------- */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero-content {
    justify-items: start;
    text-align: left;
  }
  .hero h1 {
    margin-left: 0;
    max-width: 14ch;
  }
  .hero p {
    margin-left: 0;
    margin-right: 0;
    max-width: 620px;
  }
  .btn-sec {
    justify-content: flex-start;
  }
} /* -------- Mobil -------- */
@media (max-width: 768px) {
  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }
  .hero-content {
    gap: 20px;
  }
  .hero-content > div:first-child {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
    margin-bottom: 14px;
    max-width: 61ch;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }
  .btn-sec {
    gap: 12px;
    flex-wrap: nowrap; /* holder knappene side om side */
    justify-content: flex-start;
  }
  .btn-contact {
    padding: 14px 18px;
    font-size: 15px;
  }
} /* -------- Små mobiler -------- */
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 50px;
  }
  .hero h1 {
    font-size: clamp(24px, 9vw, 32px);
    max-width: 100%;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.65;
  }
  .btn-sec {
    gap: 10px;
  }
  .btn-contact {
    padding: 13px 16px;
    font-size: 14px;
    min-height: 48px;
  }
  .btn-contact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}

.calendar-section {
  padding: 100px 0;
  background: #fffafa;
}

.cale-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.calendar-intro {
  max-width: 560px;
  margin-bottom: 35px;
}

.calendar-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #711414;
}

.calendar-intro h2 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.05;
  color: #290505;
}

.img-on img {
  width: 100%;
  max-width: 80%;
  border-radius: 20px;
}

.calendar-intro p {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  margin: 40px 0;
  color: #440303;
}

.calendar-wrapper {
  background: #ffffff42;
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
}

.calendar-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .calendar-section {
    padding: 70px 0;
  }

  .calendar-intro h2 {
    font-size: 34px;
  }

  .calendar-intro p {
    font-size: 17px;
  }

  .calendar-wrapper {
    padding: 10px;
    border-radius: 18px;
  }

  .calendar-wrapper iframe {
    min-height: 600px;
  }
}

:root {
  --bg: #0d222f00;
  --card: #021c2cde;
  --text: #ffffff;
  --muted: #463232;
  --pill: #f2f5f7;
  --btn: #881a1a;
  --btn-bd: rgba(106, 8, 8, 0.855);
}



.blog-strip {
  padding: 60px 0;
  padding-top: 80px;
  color: #000000;
  margin-bottom: 80px;
}

.blog-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  position: relative;
}
.blog-head h1 {
  margin-bottom: 40px;
  font-weight: 500;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #410303;
  font-size: 34px;
}
.blog-all {
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
}
.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
}
.blog-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--btn);
  border: 1px solid var(--btn-bd);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}
.blog-btn:hover {
  transform: translateY(-1px);
  background: rgba(20, 0, 0, 0.22);
}
.blog-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Scroller */
.blog-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32%, 420px); /* responsiv kortbredde */
  gap: 28px;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE/Edge (legacy) */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.blog-scroller::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.blog-scroller::-webkit-scrollbar-thumb {
  background: rgba(108, 43, 43, 0.15);
  border-radius: 8px;
}

/* Kort */
.blog-card {
  scroll-snap-align: start;
  background-color: #efe7c6c8;
  color: #490202;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pill {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: #460707;
  background: transparent;
  border: 0.9px solid #530f0fc1;
  padding: 6px 14px;

  border-radius: 999px;
}
.blog-card h3 {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.1;
  margin-top: 30px;
  color: #360303;
  
  font-weight: 400;
  padding-bottom: 30px;
}
.media {
  position: relative;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}
.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a92525;
  color: #fff0f0;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  transition: 0.2s ease;
}
.go:hover {
  transform: translateY(-2px);
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .blog-strip {
    padding: 50px 0;
    padding-top: 70px;
    margin-bottom: 100px;
  }

  .blog-head {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    margin-bottom: 24px;
  }

  .blog-scroller {
    grid-auto-columns: clamp(280px, 55vw, 360px);
    gap: 20px;
  }

  .media img {
    height: 260px;
  }
}

/* ---------- Mobil ---------- */
@media (max-width: 768px) {
  .blog-strip {
    padding: 40px 0;
    padding-top: 56px;
    margin-bottom: 70px;
  }

  .blog-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .blog-head h1 {
    font-size: 26px;
  }

  .blog-all {
    order: 2;
    font-size: 15px;
  }

  .blog-nav {
    order: 3;
    gap: 8px;
  }

  .blog-btn {
    width: 44px;
    height: 44px;
  }

  .blog-scroller {
    grid-auto-columns: 85%;
    gap: 16px;
    padding-bottom: 6px;
  }

  .blog-card {
    padding: 12px;
    gap: 14px;
    border-radius: 12px;
  }

  .pill {
    font-size: 13px;
    padding: 5px 12px;
  }

  .blog-card h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-top: 8px;
    padding-bottom: 6px;
  }

  .media img {
    height: 220px;
  }

  .go {
    width: 40px;
    height: 40px;
    font-size: 20px;
    right: 10px;
    bottom: 10px;
  }
}

/* ---------- Små mobiler ---------- */
@media (max-width: 480px) {
  .blog-strip {
    padding-top: 48px;
    margin-bottom: 56px;
  }

  .blog-head h1 {
    font-size: 23px;
  }

  .blog-scroller {
    grid-auto-columns: 88%;
  }

  .blog-card {
    border-radius: 10px;
  }

  .blog-card h3 {
    font-size: 18px;
  }

  .media img {
    height: 200px;
  }

  .blog-all {
    font-size: 14px;
  }
}




/* Seksjon spacing */
.split-card {
  padding: 80px 0;
}

/* Grid: stor venstrekolonne, mindre høyre */
.split-wrap {
  background-image: linear-gradient(-20deg, #752727 0%, #5c1111 100%);

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  position: relative;
  border-radius: 10px;
}

/* Lyseblått panel med store avrundede hjørner (som i bildet) */



/* Tittel og brødtekst */
.split-title {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1;
      font-family: "Bricolage Grotesque", sans-serif;

  max-width: 90%;
  font-weight: 500;
  color: #ffffff;
    letter-spacing: -0.02em;

}

.split-body {
  display: grid;
  gap: 18px;
  max-width: 70%;
  padding-top: 60px;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
  color: #ffffff;
}

/* CTA lik skjermbildet: gul pil + mørk knapp */
.cta {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}
.cta-icon {
  background: #b00101;
  color: #ffffff;
  font-weight: 800;
  padding: 14px 18px;
  min-width: 52px;
  display: inline-grid;
  place-items: center;
}
.cta-label {
  background: #ffffff;
  color: #111;
  padding: 14px 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Bildet som overlapper panelet fra høyre */
.split-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateX(-5px); /* drar bildet inn over panelet */
  z-index: 2; /* over panelet */
  margin-top: 90px;
}
.split-media img {
  display: block;
  width: 130%;
  height: 100%;
  object-fit: cover;
}

/* Responsivitet */
@media (max-width: 1100px) {
  .split-title {
    font-size: 36px;
  }
  .split-panel {
    padding: 40px 42px;
    margin-right: -48px;
  }
  .split-media {
    transform: translateX(40px);
  }
}
@media (max-width: 768px) {
  .split-card {
    padding: 50px 0;
  }
  .split-wrap {
    grid-template-columns: 1fr; /* stack */
    gap: 20px;
  }
  .split-panel {
    margin-right: 0; /* ingen overlap på mobil */
    border-radius: 18px;
    padding: 28px 22px;
    order: 2;
  }
  .split-title {
    font-size: 40px;
    width: 100%;
  }
  .split-body {
    font-size: 16px;
  }
  .split-media {
    transform: none;
    border-radius: 18px;
  }
  .split-media img {
    aspect-ratio: 16/9;
    order: 1;
  }
  .cta-label {
    font-size: 15px;
  }
}

.cta-section {
  position: relative;
  background: url("../img/frisk-hero.png") center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 12px;
  overflow: hidden;
}

.cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 10%,
    rgba(0, 0, 0, 0.3) 90%
  );
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

.cta-content {
  background: linear-gradient(
    135deg,
    rgba(12, 22, 33, 0.9),
    rgba(22, 32, 44, 0.8)
  );
  padding: 40px 50px;
  border-radius: 10px;
  color: #fff;
  max-width: 460px;
  margin-right: 6%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.cta-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: #f2f2f2;
}

.cta-btn {
  display: inline-block;
  background: #ff4d00;
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 17px;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.cta-btn:hover {
  background: #ff6a1a;
  transform: translateY(-2px);
}

/* Responsivt */
@media (max-width: 768px) {
  .cta-section {
    justify-content: center;
    min-height: 450px;
  }

  .cta-overlay {
    justify-content: center;
    padding: 20px;
  }

  .cta-content {
    margin: 0;
    max-width: 90%;
    padding: 30px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-btn {
    font-size: 16px;
  }
}




.partners {
  padding: 60px 0;
  overflow: hidden;
}

.partners__heading {
  max-width: 1300px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.t-c h6 {
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6f1717;
  font-weight: 500;
  margin: 0 0 16px;
}

.t-c h3 {
  font-size: 40px;
  font-weight: 500;

    font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1f1f1f;
  width: min(100%, 40%);
  margin-bottom: 70px;
}

.partners__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  animation: logo-marquee 28s linear infinite;
  will-change: transform;
}

.partner-logo {
  flex: 0 0 auto;
  width: 240px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.partner-logo--small img {
  max-height: 40px;
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

.partners__slider:hover .partners__track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

/* Tablet */
@media (max-width: 992px) {
  .partners {
    padding: 72px 0;
  }

  .partners__heading {
    padding: 0 20px;
    margin-bottom: 38px;
  }

  .t-c h3 {
    font-size: 30px;
    width: 100%;
  }

  .partner-logo {
    width: 200px;
    height: 96px;
    padding: 16px 22px;
  }

  .partner-logo img {
    max-height: 44px;
  }

  .partner-logo--small img {
    max-height: 34px;
  }

  .partners__track {
    gap: 18px;
    animation-duration: 24s;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .partners {
    padding: 56px 0;
  }

  .partners__heading {
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .t-c h6 {
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
  }

  .t-c h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .partner-logo {
    width: 160px;
    height: 78px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .partner-logo img {
    max-height: 40px;
  }

  .partner-logo--small img {
    max-height: 28px;
  }

  .partners__track {
    gap: 14px;
    animation-duration: 18s;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
}




.frx-hero {
  --frx-radius: 18px;
  --frx-card-radius: 16px;
  --frx-card-w: min(560px, 88vw);
  --frx-maxw: 1680px;
  --frx-pad: clamp(16px, 2.5vw, 28px);
  --frx-text: #ffffff;
  --frx-body: #0c0d10; /* fallback for grad */
  --frx-card-bg: linear-gradient(
    135deg,
    rgba(13, 14, 17, 0.92) 0%,
    rgba(13, 14, 17, 0.926) 55%,
    rgba(13, 14, 17, 0.9) 100%
  );
  --frx-btn: #01692e;
  --frx-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  color: var(--frx-text);
}

.frx-hero__frame {
  max-width: var(--frx-maxw);
  margin: 0 auto;
  border-radius: var(--frx-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.frx-hero__media {
  position: relative;
  width: 100%;
  height: clamp(380px, 52vw, 660px);
}
.frx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vignett i bunn for å øke kontrast til kortet */
.frx-hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.809) 100%
  );
}

/* Kortet */
.frx-hero__card {
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  top: 50%;
  transform: translateY(-50%);
  width: var(--frx-card-w);
  background: var(--frx-card-bg);
  border-radius: var(--frx-card-radius);
  box-shadow: var(--frx-shadow);
  color: var(--frx-text);
  backdrop-filter: blur(3px);
}

.frx-hero__card-inner {
  padding: clamp(18px, 3vw, 28px);
}

.frx-hero__eyebrow {
  margin: 0 0 6px 0;
  letter-spacing: 0.02em;
  opacity: 0.85;
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
}
.frx-hero__title {
  font-weight: 600;
    letter-spacing: -0.02em;
    font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.1;
  margin: 30px 0;
  font-size: clamp(26px, 3.1vw, 40px);
}
.frx-hero__text {
  color: #fff;
  line-height: 1.3;
  font-size: clamp(16px, 1.35vw, 18px);
  opacity: 0.95;
}

.frx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  margin-top: 40px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background-color: #650f0f;
  
}

/* -------- Tablet -------- */
@media (max-width: 992px) {
  .frx-hero {
    padding: 16px;
  }

  .frx-hero__media {
    height: clamp(420px, 62vw, 620px);
  }

  .frx-hero__card {
    right: 20px;
    width: min(500px, calc(100% - 40px));
  }

  .frx-hero__card-inner {
    padding: 22px;
  }

  .frx-hero__title {
    font-size: clamp(24px, 4vw, 34px);
    max-width: 15ch;
  }

  .frx-hero__text {
    font-size: 16px;
  }
}

/* -------- Mobil -------- */
@media (max-width: 768px) {
  .frx-hero {
    padding: 12px;
  }

  .frx-hero__frame {
    border-radius: 14px;
    overflow: hidden;
  }

  .frx-hero__media {
    height: 300px;
  }

  .frx-hero__vignette {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 10%,
      rgba(0, 0, 0, 0.28) 55%,
      rgba(0, 0, 0, 0.78) 100%
    );
  }

  .frx-hero__card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .frx-hero__card-inner {
    padding: 20px 16px 18px;
  }

  .frx-hero__eyebrow {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .frx-hero__title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.12;
    margin: 12px 0 14px;
    max-width: 100%;
  }

  .frx-hero__text {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }

  .frx-cta {
    margin-top: 22px;
    padding: 0.9rem 1.1rem;
    min-height: 48px;
    font-size: 15px;
  }
}

/* -------- Små mobiler -------- */
@media (max-width: 480px) {
  .frx-hero {
    padding: 10px;
  }

  .frx-hero__frame {
    border-radius: 12px;
  }

  .frx-hero__media {
    height: 240px;
  }

  .frx-hero__card {
    border-radius: 0 0 12px 12px;
  }

  .frx-hero__card-inner {
    padding: 16px 14px;
  }

  .frx-hero__title {
    font-size: 22px;
  }

  .frx-hero__text {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .frx-cta {
    width: auto;
    max-width: 100%;
    font-size: 14px;
    padding: 0.85rem 1rem;
  }
}



.fo-about {
  padding: 90px 0;
}

.fo-about__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 72px;
}

.fo-about__intro {
  max-width: 980px;
}

.fo-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #340606;
  margin-bottom: 26px;
}

.fo-about__intro h2 {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -2px;
  color: #4e0d0d;
  max-width: 75%;
  margin: 0 0 28px;
    font-family: "Bricolage Grotesque", sans-serif;

}

.fo-about__intro p {
  font-size: 22px;
  line-height: 1.55;
  color: #481c1c;
  max-width: 900px;
  margin: 0;
}

.fo-about__action {
  flex-shrink: 0;
  padding-top: 120px;
}

.fo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 20px;
  padding: 10px 22px;
  background: transparent;
  background-color: #ffd2d2;
  color: #2b0c0c;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.fo-btn:hover {
  background: #672020;
  transform: translateY(-2px);
  color: #fff;
}

.fo-about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.fo-card {
  position: relative;
}

.fo-card__line {
  width: 100%;
  height: 1px;
  background: #5409092f;
  margin-bottom: 34px;
}

.fo-card__icon {
  width: 52px;
  height: 52px;
  color: #7b1717;
  padding: 7px;
  border-radius: 50%;
  background-color: #fba6a697;
  margin-bottom: 24px;
}

.fo-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fo-card h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #580b0b;
  margin: 0 0 18px;
  max-width: 360px;
}

.fo-card p {
  font-size: 18px;
  line-height: 1.2;
  color: #470202;
  margin: 0;
  max-width: 80%;
}

/* Laptop */
@media (max-width: 1200px) {
  .fo-about {
    padding: 90px 20px 80px;
  }

  .fo-about__top {
    gap: 40px;
    margin-bottom: 56px;
  }

  .fo-about__intro h2 {
    font-size: 56px;
    max-width: 900px;
  }

  .fo-about__intro p {
    font-size: 20px;
    max-width: 760px;
  }

  .fo-about__action {
    padding-top: 80px;
  }

  .fo-about__grid {
    gap: 34px;
  }

  .fo-card h3 {
    font-size: 24px;
  }

  .fo-card p {
    font-size: 18px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .fo-about__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .fo-about__action {
    padding-top: 0;
  }

  .fo-about__intro h2 {
    font-size: 44px;
    letter-spacing: -1.2px;
  }

  .fo-about__intro p {
    font-size: 18px;
  }

  .fo-about__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fo-card h3,
  .fo-card p {
    max-width: 100%;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .fo-about {
    padding: 70px 16px 60px;
  }

  .fo-label {
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
  }

  .fo-about__top {
    margin-bottom: 42px;
  }

  .fo-about__intro h2 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .fo-about__intro p {
    font-size: 16px;
    line-height: 1.6;
  }

  .fo-btn {
    min-width: 180px;
    min-height: 58px;
    font-size: 16px;
    border-radius: 10px;
  }

  .fo-card__line {
    margin-bottom: 24px;
  }

  .fo-card__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .fo-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .fo-card p {
    font-size: 16px;
    line-height: 1.6;
  }
}



.work {
  margin: 60px 0;
}

.work__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.work__header {
  max-width: 60ch;
  margin-bottom: 40px;
}

.work__header h2 {
  font-size: 53px;
  margin-bottom: 50px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.work__header p {
  margin: 0;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.876);
  line-height: 1.1;
  width: 110%;
}

/* Grid */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 10px;
}

/* Felles item */
.work__item {
  border-radius: 16px;
  overflow: hidden;
}

/* Stort bilde */
.work__item--large {
  grid-row: span 2;
}

/* Bilder */
.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Kort */
.work__card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grønt kort */
.work__card--green {
  background: #830000;
  color: #fff;
}

.work__card--green h3 {
  font-size: 38px;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Mørkt kort */
.work__card--dark {
  background: #0d6607;
  color: #fff;
  font-size: 18px;
}

.work__card--dark h3 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Responsiv */
@media (max-width: 900px) {
  .work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .work__item--large {
    grid-row: span 1;
  }
}


.fgift-wrap {
  margin: 90px 0;
}


.fgift-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(16px, 4vw, 48px);
  align-items: stretch;
  border-radius: 10px;
  background-color: #efe7c6c8;
}

.fgift-media {
  position: relative;
  background: #ffffff;
}
.fgift-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px 0 0 10px;
}

.fgift-content {
  padding: clamp(18px, 3.6vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fgift-eyebrow {
  margin: 0 0 8px 0;
  color: #520d0d;
  font-weight: 400;
  border: solid 1px #520d0d;
  letter-spacing: 0.02em;
  max-width: 24%;
  padding: 2px 14px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;

}
.fgift-title {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  font-weight: 700;
  padding-top: 15px;
  color: #3a0f0f;
    font-family: "Bricolage Grotesque", sans-serif;

}
.fgift-text {
  margin: 0 0 22px 0;
  color: #230a0a;
  font-size: clamp(16px, 1.4vw, 17px);
  line-height: 1.2;
  margin-top: 30px;
}

.fgift-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
padding: 16px 20px;  border-radius: 12px;
    background-color: #881a1a;

  color: #ffeeee;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.15s ease,
    transform 0.05s ease,
    box-shadow 0.15s ease;
}

.fgift-cta:active {
  transform: translateY(1px);
}
.fgift-cta:focus {
  outline: 3px solid #111;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .fgift-grid {
    grid-template-columns: 1fr;
  }
  .fgift-media {
    order: -1;
    height: min(52vh, 420px);
  }
}

/*COSM*/
.mem {
  padding: 10px;
}

.mem-cont {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.txt-mem h5 {
  font-size: 20px;
  color: #281200d4;
  font-weight: 600;
}

.txt-mem h5 span {
  color: #e48109;
  font-weight: 800;
}

.img-mem img {
  height: 45px;
  margin-left: -20px;
  border: solid 2px #fde8d0;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/*LAZY LOADS*/
.lazy-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.4s ease,
    transform 1.4s ease;
  will-change: opacity, transform;
}

.lazy-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stilling {
  height: 40dvh;
}

.stil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.stil-sont {
  padding: 20px 0;
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.stil-sont h3 {
  font-size: 20px;
  font-weight: 400;
}

/**********************************/
/*      SERVICES    */
/**********************************/

/* Mobil (≤ 720px) */
/* Mobilvennlig layout */
@media (max-width: 768px) {
  .utl-info {
    flex-direction: column !important; /* stable vertikalt */
  }
  .iutl {
    order: -1 !important;
    width: 100%;
  } /* Bilde øverst */
  .r-utl {
    order: 0 !important;
    width: 100%;
  } /* Tekst under */

  .iutl img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
  }

  .tje {
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 70%;
    color: #081a29;
    margin-bottom: 40px;
  }

  .flow-tje {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
  }

  .colm {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;
  }

  .colm h5 {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
  }

  .btn-cho {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .flow-tje {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}

/* Unik prefiks: fsub- */
.fsub-wrap {
  background: #ffffff;
  padding: clamp(18px, 3vw, 32px);
}
.fsub-container {
  max-width: 1400px;
  margin: 100 auto;
  background: #e7dfe2;
  border-radius: 14px;
  padding: clamp(22px, 4vw, 56px);
}

.fsub-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 4vw, 56px);
}

.fsub-title {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  color: #222;
}
.fsub-text {
  margin: 0;
  color: #333;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}

.fsub-label {
  display: block;
  font-weight: 400;
  margin: 4px 0 8px;
  color: #333;
}
.fsub-input {
  width: 100%;
  padding: 16px 14px;
  border-radius: 10px;
  border: 2px solid #d9cfd3;
  background: #fff;
  outline: none;
  font-size: 16px;
}
.fsub-input:focus {
  border-color: #006226;
}

.fsub-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 14px 0 18px;
  color: #222;
}
.fsub-check input {
  width: 22px;
  height: 22px;
}

.fsub-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.fsub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  color: #111;
  background: #034e00;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.05s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.fsub-btn:active {
  transform: translateY(1px);
}

.fsub-some {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.fsub-some a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
.fsub-some a:hover {
  background: #000;
}

/* ikon-størrelse */
.fsub-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

@media (max-width: 980px) {
  .fsub-grid {
    grid-template-columns: 1fr;
  }
  .fsub-some {
    margin-left: 0;
  }
}
/*SERVICES*/


/* Eyebrow */
.eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}


/* -------------------------------- */
.brand {
  padding: 170px 0;
  background-color: #e7edf1;
}

.brand-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background-color: #102938;
  border-radius: 10px;
}

.cl-brand {
  padding-left: 60px;
  padding-top: 90px;
}

.cl-brand h2 {
  font-size: 37px;
  max-width: 500px;
  color: #ffffff;

  line-height: 1.3;
  font-weight: 500;
}

.brand-cont img {
  width: 100%;
  border-radius: 0 10px 10px 0;
}

.cl-brand p {
  margin-bottom: 50px;
  color: #e3ffded5;
  padding-top: 20px;
  font-size: 18px;
}

.btn-phon {
  padding: 16px 30px;
  border-radius: 999px;
  color: #fff;
  background-color: #017b34;
  font-size: 18px;
  display: inline-block;
}

/* Mobil (≤ 720px) */
@media (max-width: 720px) {
  .brand {
    padding: 48px 0;
  }

  .brand-cont {
    grid-template-columns: 1fr; /* én kolonne */
    gap: 20px;
    border-radius: 10px;
    overflow: hidden; /* runde hjørner også på bildet */
  }

  .cl-brand {
    padding: 24px 20px 8px; /* mindre padding */
  }

  .cl-brand h2 {
    font-size: 24px; /* mindre overskrift */
    line-height: 1.25;
    max-width: none;
  }

  .cl-brand p {
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .brand-cont img {
    order: -1; /* bildet først på mobil */
    width: 100%;
    height: 220px; /* jevn høyde */
    object-fit: cover;
    border-radius: 10px 10px 0 0; /* runde hjørner på toppen */
  }

  .btn-phon {
    display: block;
    text-align: center;
    padding: 14px 18px;
    font-size: 16px;
  }
}

.f h4 {
  font-size: 18px;
  color: #d4ffd3;
  font-weight: 600;
}

.social-icons {
  display: flex;
  padding: 50px 20px;
  gap: 25px;
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff; /* endre farge etter bakgrunn */
  font-size: 28px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0ea568; /* grønn hoverfarge */
}

/* ===== Donate section (match screenshot) ===== */
.donate {
  background: #fff;
  padding: clamp(56px, 6vw, 90px) 0;
}

.donate .container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.donate-card {
  width: min(760px, 92vw);
  margin: 0 auto;
  background: #a73030; /* lys lilla/grå (som du sendte) */
  border-radius: 2px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 10px;
}

.donate-title {
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3vw, 48px);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
}

.donate-subtitle {
  margin: 0 0 16px 0;
  font-weight: 700;
  color: #ffc8c8;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}

.amt-btn {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 2px;
  padding: 18px 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.amt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.amt-btn.is-active {
  background: #141414;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.amt-check {
  position: absolute;
  top: -10px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ffcece;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #111;
}

/* Custom amount */
.donate-custom {
  margin: 0 0 20px 0;
}

.donate-input {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  background: #fff;
  font-size: 16px;
  outline: none;
}

.donate-input:focus {
  border-color: rgba(0, 0, 0, 0.35);
}

/* Toggle */
.donate-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  margin: 10px 0 26px 0;
  font-weight: 700;
  color: #ffffff;
}

.donate-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-ui {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.55);
  position: relative;
  background: transparent;
}

.toggle-ui::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  transition:
    left 0.18s ease,
    background 0.2s ease;
}

.donate-toggle input:checked + .toggle-ui {
  border-color: rgba(0, 0, 0, 0.75);
}

.donate-toggle input:checked + .toggle-ui::after {
  left: 24px;
  background: #530303;
}

.toggle-text {
  font-size: 16px;
}

/* Vipps button */
.vipps-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 16px;
  background: #ff9696; /* Vipps-ish orange */
  color: #111;
  font-weight: 900;
  border-radius: 2px;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    filter 0.2s ease;
}

.vipps-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* Link under */
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: #111;
  font-weight: 700;
  text-decoration: underline;
}

/* Business row */
.donate-business {
  width: min(760px, 92vw);
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #111;
}

.biz-btn {
  background: #ff5b00;
  color: #111;
  font-weight: 900;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 720px) {
  .donate-amounts {
    grid-template-columns: 1fr;
  }
  .donate-business {
    flex-direction: column;
    align-items: flex-start;
  }
  .biz-btn {
    width: 100%;
    text-align: center;
  }
}




.news {
  padding: 100px 40px;
  background: #f5f1ec;
}

.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.news__header h2 {
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 500;
  color: #3b1f1f;
  letter-spacing: -2px;
}

.news__btn {
  background: #3b1f1f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.news__btn:hover {
  opacity: 0.85;
}

/* GRID */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.news-card {
  cursor: pointer;
}

.news-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.news-card__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Badge */
.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #3b1f1f;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* Title */
.news-card h3 {
  font-size: 28px;
  margin-top: 18px;
  line-height: 1.2;
  color: #2a2a2a;
  font-weight: 500;
}

/* Hover effect */
.news-card:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
  .news {
    padding: 80px 20px;
  }

  .news__grid {
    grid-template-columns: 1fr 1fr;
  }

  .news__header h2 {
    font-size: 48px;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .news {
    padding: 60px 16px;
  }

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

  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .news__header h2 {
    font-size: 34px;
  }

  .news-card h3 {
    font-size: 22px;
  }

  .news-card__img img {
    height: 240px;
  }
}





/* ===== FEATURED SECTION ===== */
.featured {
  padding: clamp(56px, 6vw, 90px) 0;
}

.img-clm img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 6px;
}

.img-d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Eyebrow */
.featured-eyebrow {
  font-size: 20px;
  letter-spacing: 0.5px;
  color: rgb(65, 4, 4);
}

/* ===== TOP TEXT (match screenshot) ===== */
.featured-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: clamp(48px, 6vw, 110px);
  padding: clamp(10px, 2vw, 18px) 0 clamp(34px, 4vw, 54px);
}

.featured-title {
  font-size: clamp(44px, 5.6vw, 50px);
  line-height: 1.1;
  margin: 0;
  color: #111;
  font-weight: 500;
  max-width: 60%;
  letter-spacing: -0.02em;
}

.featured-lead {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.2;
  color: rgb(39, 5, 5);
  max-width: 90%;
  font-weight: 500;
}

/* ===== CARDS GRID ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(18px, 2.5vw, 22px);
  align-items: stretch;
}

/* ✅ Section som matcher designet i bildet */
.about-two-col {
  padding: 80px 0;
}

.about-two-col__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(56px, 7vw, 140px);
  align-items: start;
}

/* Venstre tittel */
.about-two-col__title {
  margin: 0;
  font-size: clamp(40px, 3vw, 54px);
  line-height: 1.3;
  font-weight: 600;
  width: 100%;
  color: #130202; /* grønn som i screenshot */
}

/* Høyre tekst */
.about-two-col__content {
  max-width: 80ch;
}

.about-two-col__lead {
  margin: 0 0 22px 0;
  font-size: clamp(22px, 1.4vw, 19px);
  line-height: 1.3;
  font-weight: 600;
  color: #200101;
}

.about-two-col__content p {
  margin: 0 0 18px 0;
  font-size: 22px;
  line-height: 1.2;
  color: rgb(34, 3, 3);
}

/* Responsive */
@media (max-width: 900px) {
  .about-two-col__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-two-col__content {
    max-width: 75ch;
  }
}

.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 150px;
  padding: 26px;
  display: grid;
  align-content: end;
  gap: 14px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card--big {
  min-height: 600px;
}

/* Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.848) 100%
  );
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.card-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.15;
  margin: 0;
  max-width: 30ch;
  font-weight: 650;
}

.card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
  max-width: 56ch;
}

/* Buttons */
.card-btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(165, 3, 3, 0.85);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.card-btn:hover {
  transform: translateY(-1px);
  background: rgba(125, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}

.card-btn--ghost {
  background: transparent;
    background: rgba(255, 255, 255, 0.225);

}

.card-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.323);
}

/* Hover lift */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .featured-top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 30px;
  }

  .featured-title {
    font-size: clamp(34px, 8vw, 52px);
  }

  .featured-lead {
    max-width: 68ch;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .card--big {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .card {
    padding: 20px;
    border-radius: 18px;
  }

  .card--big {
    min-height: 420px;
  }

  .card-title {
    max-width: 28ch;
  }

  .card-text {
    display: none;
  }
}

/**********************************/
/*      FORM SUBMIT     */
/**********************************/
/* ===== CONTACT BAND (like screenshot) ===== */
.contact-band {
  position: relative;
  padding: clamp(64px, 7vw, 110px) 0;
  overflow: hidden;
  background: #5f0808;
  isolation: isolate;
}

/* Gradient + image background */
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(33, 3, 3, 0.824) 0%,
      rgba(34, 7, 7, 0.74) 45%,
      rgba(27, 5, 5, 0.295) 100%
    ),
    radial-gradient(
      900px 600px at 20% 30%,
      rgba(255, 0, 0, 0.1),
      transparent 60%
    ),
    url("../img/img3.JPG") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.03);
}

/* Subtle texture (optional but premium) */
.contact-band::after {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  opacity: 0.28;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  transform: rotate(2deg);
  pointer-events: none;
}

.contact-band__inner {
  max-width: 980px;
}

/* Title */
.contact-band__title {
  margin: 0 0 clamp(26px, 3.2vw, 44px) 0;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff; /* turquoise */
}

/* Big email line */
.contact-band__email {
  display: inline-block;
  font-size: clamp(22px, 3.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 8px;
}

/* underline like screenshot */
.contact-band__email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 86, 86, 0.95);
  transform: scaleX(1);
  transform-origin: left;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  opacity: 0.9;
}

.contact-band__email:hover::after {
  transform: scaleX(0.82);
  opacity: 1;
}

/* Responsive */
@media (max-width: 720px) {
  .contact-band__inner {
    max-width: 100%;
  }
  .contact-band__title {
    line-height: 1.08;
  }
}

/* ===== CONTACT (spacious like screenshot) ===== */
.bg-dif {
  background-color: #efe7c6c8;
}
.contact {
  padding: clamp(80px, 8vw, 140px) 0;
}

.contact-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(64px, 6vw, 96px);
  align-items: start;
  position: relative;
}

/* Vertical divider like screenshot */
.contact-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(58% + 18px);
  width: 1px;
  background: rgba(255, 103, 103, 0.06);
}

/* Headings and spacing */
.contact-eyebrow {
  margin: 0 0 18px 0;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #6b0808;
}

.contact-title {
  margin: 0 0 22px 0;
  font-size: clamp(44px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 600;
  color: #6e0000;
}

.contact-lead {
  margin: 0 0 44px 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  line-height: 1.85;
  max-width: 74ch;
}


/* FORM */
.contact-form {
  display: grid;
  gap: 22px;
}

.contact-input {
  width: 100%;
  border: 0;
  outline: none;
  background: #f8eded;
  padding: 20px 22px;
  font-size: 16px;
}

.contact-input-dif {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff4f4;
  padding: 20px 22px;
  font-size: 16px;
}

.contact-input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.contact-textarea {
  min-height: 220px;
  resize: vertical;
  padding-top: 22px;
}

/* Button */
.contact-btn {
  margin-top: 10px;
  width: fit-content;
  border: 0;
  background: #610600;
  color: #fff;
  padding: 14px 24px;
  border-radius: 9px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #860000;
}

/* RIGHT COLUMN */
.contact-right {
  padding-left: clamp(12px, 1vw, 18px);
  background-color: #6e0b0b;
  padding: 20px;
  border-radius: 10px;
}

.contact-side-title {
  margin: 0 0 18px 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #fffdfd;
  max-width: 26ch;
}

.contact-side-lead {
  margin: 0 0 44px 0;
  color: rgba(255, 255, 255, 0.935);
  line-height: 1.8;
  max-width: 44ch;
}

/* Info blocks */
.contact-info {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}

.info-label {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #ffe4e4;
  letter-spacing: 0.2px;
}

.info-block a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 3px;
}

.info-plain {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 2px solid rgba(197, 130, 130, 0.18);
  padding-bottom: 3px;
  width: fit-content;
}

/* Social */
.contact-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.in-dif {
  background-color: #fffcfc;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #8f0101;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.contact-social a:hover {
  transform: translateY(-2px);
  background: #510808;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-grid::after {
    display: none;
  }
  .contact-right {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .contact {
    padding: 64px 0;
  }
  .contact-lead {
    margin-bottom: 34px;
  }
  .contact-input {
    padding: 18px 18px;
  }
  .contact-textarea {
    min-height: 200px;
  }
}

/*PRODUCTS*/
.products {
  padding: 120px 0;
  align-items: center;
  text-align: center;
}

.cont-prod {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.prod-cat img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
}

/* ======= GOALS / ACCORDION (Caritas-style) ======= */
.goals {
  color: #61090a; /* vinrød */
  padding: clamp(54px, 6vw, 90px) 0;
  margin-top: 120px;
  background-color: #5a0f0f;
}

.goals-wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.goals-title {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 70px;
}

/* Each row */
.acc-item {
  border-bottom: 1px solid rgba(215, 99, 101, 0.75);
}

/* The clickable row (title + + icon) */
.acc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: clamp(22px, 2.6vw, 38px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
}

/* Big serif line like screenshot */
.acc-heading {
  font-size: clamp(26px, 3.1vw, 25px);
  line-height: 1.12;
  letter-spacing: 0.15px;
}

/* Plus / minus on the right */
.acc-icon {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  flex: 0 0 auto;
}

/* Panel text (shown when open) */
.acc-panel {
  padding: 0 0 clamp(22px, 2.6vw, 34px) 0;
  max-width: 92ch;
}

.acc-panel p {
  margin: 0;
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255, 232, 232, 0.9);
  margin-top: 20px;
}

/* Nice focus */
.acc-trigger:focus-visible {
  outline: 2px solid rgba(97, 9, 10, 0.55);
  outline-offset: 6px;
  border-radius: 10px;
}

/* Responsive: keep the icon aligned and text readable */
@media (max-width: 720px) {
  .acc-panel p {
    font-size: 16px;
  }
}

/**********************************/
/*      FOOTER      */
/**********************************/
/* ========== FOOTER (Caritas-style, tilpasset Friskluft Oslo) ========== */
:root {
  --footer-bg: #61090a; /* din dype vinrød */
  --footer-text: rgba(255, 255, 255, 0.92);
  --footer-muted: rgba(255, 255, 255, 0.75);
  --footer-line: rgba(255, 255, 255, 0.45);
  --footer-link: rgba(255, 255, 255, 0.88);
  --footer-link-hover: #ffffff;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(28px, 4vw, 44px) 0;
}

.footer-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Top: logo + newsletter */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: 50px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--footer-link-hover);
  text-decoration: none;
  width: fit-content;
}

.footer-brand img {
  width: 100%;
  max-width: 30%;
}
.footer-mark {
  font-size: 22px;
  line-height: 1;
  opacity: 0.95;
}

.footer-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Newsletter: “thin underline” + pill button */
.footer-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  justify-self: end;
  width: min(640px, 100%);
  padding-top: 4px;
}

.footer-newsletter input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--footer-text);
  font-size: 16px;
  padding: 10px 2px 12px 2px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.footer-newsletter button {
  background: transparent;
  color: var(--footer-text);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.95);
}

.footer-newsline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--footer-line);
}

/* Mid: store links */
.footer-hero-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 28px) 0 clamp(22px, 3vw, 34px);
}

.footer-hero-link {
  font-size: clamp(34px, 3.6vw, 30px);
  line-height: 1.05;
  color: var(--footer-link-hover);
  text-decoration: none;
  letter-spacing: 0.2px;
  opacity: 0.98;
  transition:
    opacity 0.2s ease,
    transform 0.15s ease;
}

.footer-hero-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Bottom: columns + right contact */
.footer-bottom {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  padding-top: clamp(10px, 1.4vw, 14px);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

.footer-col-title {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.2px;
  color: var(--footer-muted);
  margin: 0 0 14px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.15;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.92;
}

/* Right block */
.footer-right {
  display: grid;
  gap: 18px;
  justify-items: end;
  text-align: right;
}

.footer-contact {
  font-style: normal;
  margin: 0;
  color: var(--footer-text);
  font-size: 19px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--footer-link-hover);
  text-decoration: none;
  opacity: 0.95;
}

.footer-contact a:hover {
  opacity: 1;
}

/* Badge (placeholder som ligner “stamp”) */
.footer-badge {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  opacity: 0.95;
}

.badge-circle {
  width: 104px;
  height: 104px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* A11y helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== RESPONSIVE (profesjonell) ========== */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    justify-self: start;
  }

  .footer-hero-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-right {
    justify-items: start;
    text-align: left;
  }
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .footer-hero-links {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-col a {
    font-size: 22px;
  }

  .footer-contact {
    font-size: 22px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
  }
  .footer-newsletter button {
    width: fit-content;
  }
}

/*************************************/
.pc h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-grid {
  padding: 140px 0;
}

.product-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.product-item {
  background: #fffaf4;
  border: 1px solid #4427015e;
  border-radius: 8px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: #fff3e0;
  cursor: pointer;
}

.product-item i:hover {
  cursor: pointer;
}

.product-item i {
  font-size: 42px;
  margin-bottom: 15px;
  color: #eb9409;
}

.product-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

.product-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.product-section h2 {
  font-size: 32px;
  color: #081986;
  margin-bottom: 6px;
}

.product-section p {
  color: #16213c;
  font-size: 16px;
  margin-bottom: -60px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.product-box {
  border: 2px dashed #0e26935f;
  padding: 20px;
  max-width: 480px;
  border-radius: 10px;
  background: #fff;
}

.product-box img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 6px;
}

.product-box h3 {
  color: #002678;
  font-size: 22px;
  margin-bottom: 10px;
}

.product-box p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.quote-link {
  font-weight: bold;
  color: #172d5d;
  text-decoration: none;
  font-size: 15px;
}

.quote-link:hover {
  color: #1d5ef7;
}

/*@@@@@@@@@@@@@@@@@@@@@@@*/
.category-section {
  padding: 60px 20px;
  background-color: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.category-item i {
  font-size: 58px;
  color: #444;
}

.category-item:hover {
  transform: translateY(-4px);
  color: #000;
}

/**********************************/
/*      MEDIA QUARY       */
/**********************************/
@media (max-width: 1024px) {
  .languages img {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    display: block;
  }

  .navbar img {
    height: 45px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .lang-dropdown button {
    color: #fff;
    font-size: 18px;
  }

  .container-sm {
    width: 100%;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 0px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 30px 40px;
    color: #ffffff;
    padding-bottom: 40px;
  }

  .ghost {
    margin-left: 4px;
  }

  .btn-sec .btn-contact,
  .btn-read {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    margin: 5px 0;
  }
}
