* {
  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: #fffbec; /* lys krem */
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

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

.container {
  max-width: 1400px;
  width: 94%;
  padding: 0 15px;
  margin: 0 auto;
}

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

.raw-follow {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.site-header.header-hidden {
  transform: translateY(-110%);
}

.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.header-logo img,
.mega-logo img {
  height: 80px;
  width: auto;
  display: block;
}

.header-actions,
.mega-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.apply-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  background: #061a17;
  color: #fff;
  text-decoration: none;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.menu-btn,
.menu-close {
  width: 50px;
  height: 44px;
  border: none;
  background: #ffffff;
  color: #061a17;
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.menu-btn span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #061a17;
}

.menu-btn span:first-child {
  transform: translateY(-7px);
}

.menu-btn span:last-child {
  transform: translateY(7px);
}

.menu-close i {
  font-size: 28px;
  color: #061a17;
}

/* HERO */

.hero-aleap {
  min-height: 100dvh;
  background-image: linear-gradient(135deg, #e8c2ff 0%, #db9dff 100%);
  overflow: hidden;
}

.hero-container {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 6vw, 100px);
}

.hero-left {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-left-inner {
  max-width: 510px;
}

.hero-left-inner h4 {
  width: fit-content;
  margin: 0 0 26px;
  padding: 5px 15px;
  background-color: #00000036;
  border-radius: 999px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 400;
}

.hero-left h1 {
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 4.5rem);
  line-height: 1;
  word-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #310f45;
  font-family: "Bricolage Grotesque", sans-serif;
}

.hero-left p {
  max-width: 540px;
  margin: 38px 0 0;
  font-size: clamp(1.2rem, 1.1vw, 1.3rem);
  line-height: 1.4;
  color: #1f1919;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.btn-hero,
.btn-hero-naked {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-hero {
  background: #061a17;
  color: #fff;
}

.btn-hero-naked {
  background: #fff;
  color: #000;
}

.hero-right {
  min-height: 100dvh;
  overflow: hidden;
  margin-right: calc((100vw - 100%) / -2);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* MEGA MENU */

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #dcf35e;
  color: #061a17;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.mega-menu.active {
  visibility: visible;
  pointer-events: auto;
  animation: menuSlideDown 0.75s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.mega-menu.closing {
  visibility: visible;
  pointer-events: none;
  animation: menuSlideUp 0.65s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes menuSlideDown {
  to {
    transform: translateY(0);
  }
}

@keyframes menuSlideUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.mega-top {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-content {
  padding-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 6vw, 90px);
}

.mega-col {
  opacity: 0;
  transform: translateY(40px);
}

.mega-menu.active .mega-col {
  animation: menuTextUp 0.7s ease forwards;
}

.mega-menu.active .mega-col:nth-child(1) {
  animation-delay: 0.22s;
}

.mega-menu.active .mega-col:nth-child(2) {
  animation-delay: 0.32s;
}

.mega-menu.active .mega-col:nth-child(3) {
  animation-delay: 0.42s;
}

@keyframes menuTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-col p {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 400;
}

.mega-col a {
  display: block;
  width: fit-content;
  color: #061a17;
  text-decoration: none;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.04em;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mega-col a:hover {
  transform: translateX(8px);
  opacity: 0.65;
}

.mega-footer {
  position: absolute;
  bottom: clamp(32px, 6vh, 64px);
  max-width: 520px;
}

.mega-footer p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

/* TABLET */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, 1540px);
  }

  .header-inner,
  .mega-top {
    height: 88px;
  }

  .header-logo img,
  .mega-logo img {
    height: 58px;
  }

  .hero-container {
    display: block;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-left {
    min-height: auto;
    padding-top: 150px;
  }

  .hero-left-inner {
    max-width: 760px;
  }

  .hero-left h1 {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .hero-left p {
    margin-top: 30px;
    max-width: 620px;
    font-size: 1.05rem;
  }

  .hero-buttons {
    margin-top: 32px;
  }

  .hero-right {
    min-height: auto;
    margin: 52px 0 0;
  }

  .hero-right img {
    height: auto;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
  }

  .mega-menu {
    overflow-y: auto;
  }

  .mega-content {
    padding-top: 80px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mega-col a {
    font-size: clamp(1.7rem, 4.8vw, 2.8rem);
  }

  .mega-footer {
    position: static;
    padding: 48px 0;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1540px);
  }

  .header-inner,
  .mega-top {
    height: 78px;
  }

  .header-logo img,
  .mega-logo img {
    height: 58px;
  }

  .header-actions,
  .mega-actions {
    gap: 8px;
  }

  .apply-btn {
    height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }

  .menu-btn,
  .menu-close {
    width: 42px;
    height: 38px;
  }

  .menu-btn span {
    width: 24px;
  }

  .menu-btn span:first-child {
    transform: translateY(-6px);
  }

  .menu-btn span:last-child {
    transform: translateY(6px);
  }

  .menu-close i {
    font-size: 24px;
  }

  .hero-left {
    padding-top: 170px;
  }

  .hero-left-inner h4 {
    font-size: 13px;
    margin-bottom: 20px;
    padding: 4px 12px;
  }

  .hero-left h1 {
    font-size: clamp(2.45rem, 11vw, 2.8rem);
    line-height: 1.2;
    width: 60%;
  }

  .hero-left p {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-buttons {
    margin-top: 26px;
    gap: 15px;
    width: 80%;
  }

  .btn-hero,
  .btn-hero-naked {
    padding: 12px 22px;
    font-size: 15px;
  }

  .hero-right {
    margin-top: 40px;
  }

  .mega-content {
    padding-top: 64px;
    gap: 32px;
  }

  .mega-col p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .mega-col a {
    font-size: clamp(1.45rem, 6.5vw, 1.4rem);
  }

  .mega-footer p {
    font-size: 15px;
  }
}

/* SMALL MOBILE */

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, 1540px);
  }

  .header-inner,
  .mega-top {
    height: 72px;
  }

  .header-logo img,
  .mega-logo img {
    height: 52px;
  }

  .apply-btn {
    height: 36px;
    padding: 0 11px;
    font-size: 13px;
  }

  .menu-btn,
  .menu-close {
    width: 40px;
    height: 36px;
  }

  .hero-left {
    padding-top: 112px;
  }

  .hero-left h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .btn-hero,
  .btn-hero-naked {
    width: 100%;
    text-align: center;
  }
}

.events-section {
  padding: clamp(90px, 8vw, 80px) 20px;
}

.events-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(35px, 5vw, 60px);
}

.events-header span {
  display: block;
  color: #4e065a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.events-header h2 {
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 500;
  color: #1e0303;
}

.events-header p {
  font-size: clamp(1rem, 1.6vw, 1rem);
  line-height: 1.3;
  color: #2c2020;
  margin: 0;
}

.events-grid {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.event-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.event-date {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 99px;
  height: 99px;
  background: #fff892;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 13px;
}

.event-date strong {
  font-size: 1.6rem;
  line-height: 0.9;
  font-weight: 800;
  color: #000;
}

.event-date span {
  font-size: 0.9rem;
  line-height: 1;
  color: #000;
}

.event-content {
  padding: 24px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.event-tags span {
  background: #bae3ff;
  color: #13385b;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

.event-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 600;
  color: #050505;
}

.event-content p {
  font-size: 1rem;
  line-height: 1.3;
  max-width: 300px;
  color: #211e1e;
  margin: 0;
}

.event-meta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: #111;
}

.event-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 48px;
  border: 1.5px solid #111;
  text-decoration: none;
  color: #ffffff;
  background-color: #000;
  font-weight: 700;
  border-radius: 3px;
  margin-top: 26px;
  transition: 0.25s ease;
}

.event-btn:hover {
  background: #111;
  color: #fff;
}

.events-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

.margin-top {
  margin-top: 80px;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  background: #6e187d;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 260px;
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.calendar-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #6e187d;
}

@media (max-width: 1100px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .events-section {
    padding: 55px 16px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 24px;
  }

  .event-image {
    height: 220px;
  }

  .event-content {
    padding: 22px;
  }

  .calendar-btn {
    width: 100%;
    max-width: 220px;
  }
}

@media (max-width: 420px) {
  .event-image {
    height: 200px;
  }

  .event-date {
    width: 82px;
    height: 82px;
    padding: 11px;
  }

  .event-date strong {
    font-size: 1.7rem;
  }

  .event-date span {
    font-size: 0.8rem;
  }
}

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

.padding {
  padding-top: 120px;
}

.event-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: #fcffe9e6;
  color: #181111;
  padding: 6px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.event-badge:hover {
  transform: translateY(-1px);
}


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

.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: #000000;
  font-size: 45px;
}

.blog-all {
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
}

.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
  margin-right: 40px;
}

.blog-btn {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  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.886);
}

.blog-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32%, 590px);
  gap: 28px;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-scroller::-webkit-scrollbar {
  display: none;
}

.up {
  padding: 10px 30px;
}

.blog-card {
  scroll-snap-align: start;
  background: #fff1bb;
  color: #3b053b;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.pill {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: #420f47;
  background: transparent;
  border: 1.2px solid #310a23ea;
  padding: 6px 14px;
  border-radius: 999px;
}

.blog-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  max-width: 90%;
  padding-top: 30px;
  padding-bottom: 50px;
  color: #320b33;
  font-weight: 400;
}

.media {
  position: relative;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 310px;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
  display: block;
}

.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ff6b;
  color: #000000;
  border-radius: 999px;
  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, 390px);
    gap: 20px;
  }

  .media img {
    height: 270px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .blog-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 16px;
    margin-bottom: 24px;
  }

  .blog-head h1 {
    font-size: 26px;
    margin-bottom: 0;
    max-width: 100%;
  }

  .blog-all {
    grid-column: 1 / 2;
    font-size: 15px;
  }

  .blog-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: end;
    margin-right: 0;
    gap: 8px;
  }

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

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

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

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

  .blog-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-top: 8px;
    padding-bottom: 12px;
  }

  .media img {
    height: 280px;
  }

  .up {
    padding: 20px 24px 28px;
  }

  .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: 96%;
  }

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

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

  .media img {
    height: 260px;
  }

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


/* =========================
   IMPACT SECTION
========================= */
.impact-section {
  padding: clamp(60px, 8vw, 120px) 0;
}

/* =========================
   HEADING
========================= */
.impact-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.impact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3b2146;
}

.impact-dot {
  width: 30px;
  height: 18px;
  border-radius: 999px;
  background: #351c41;
  position: relative;
  display: inline-block;
}

.impact-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f8f3e6;
}

.impact-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #111111;
  font-family: "Bricolage Grotesque", sans-serif;
  text-wrap: balance;
}

/* =========================
   GRID
========================= */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* =========================
   CARD
========================= */
.impact-card {
  background: #efe7c67c;
  border-radius: 8px;
  padding: clamp(26px, 3vw, 38px);
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.impact-card:hover {
  transform: translateY(-4px);
}

.impact-icon {
  width: 52px;
  background-color: #dcf35e;
  height: 52px;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  color: #000000;
  font-size: 1.8rem;
}

.impact-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #151515;
  font-family: "Bricolage Grotesque", sans-serif;
  max-width: 14ch;
}

.impact-card p {
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.3;
  color: #25201c;
  max-width: 32ch;
}

.impact-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  text-decoration: none;
  color: #111111;
  font-size: 1rem;
  font-weight: 700;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.impact-link:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

/* =========================
   LAPTOP / TABLET
========================= */
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .impact-section {
    padding: 52px 0;
  }

  .impact-heading {
    margin-bottom: 24px;
  }

  .impact-eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .impact-heading h2 {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.02;
  }

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

  .impact-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .impact-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    font-size: 1.7rem;
  }

  .impact-card h3 {
    max-width: 100%;
    font-size: 1.6rem;
  }

  .impact-card p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .impact-link {
    padding-top: 24px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 18px));
  }

  .impact-section {
    padding: 44px 0;
  }

  .impact-heading h2 {
    font-size: 1.85rem;
  }

  .impact-card {
    padding: 22px 18px;
  }

  .impact-card h3 {
    font-size: 1.45rem;
  }

  .impact-card p {
    font-size: 0.98rem;
  }
}

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

/* Grid */
.split-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
}

/* Venstre panel */
.split-panel {
  background: #e9c2ff;
  min-height: 560px;
  padding: clamp(40px, 6vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Tittel */
.split-title {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 1;
  font-family: "Bricolage Grotesque", sans-serif;
  max-width: 720px;
  font-weight: 500;
  color: #200d2b;
  letter-spacing: -0.02em;
}

/* Tekst */
.split-body {
  display: grid;
  gap: 18px;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  color: #402550;
}

.split-body p {
  margin: 0;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.cta:hover {
  transform: translateY(-3px);
}

.cta-icon {
  background: #dcf35e;
  color: #000;
  font-weight: 800;
  padding: 15px 18px;
  min-width: 58px;
  display: inline-grid;
  place-items: center;
}

.cta-label {
  background: #fff;
  color: #111;
  padding: 15px 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Bilde */
.split-media {
  min-height: 560px;
}

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

/* Tablet */
@media (max-width: 1100px) {
  .split-wrap {
    grid-template-columns: 1fr 0.9fr;
  }

  .split-panel {
    min-height: 500px;
    padding: 48px;
  }

  .split-title {
    font-size: 42px;
  }

  .split-body {
    max-width: 100%;
  }

  .split-media {
    min-height: 500px;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .split-card {
    padding: 56px 0;
  }

  .split-wrap {
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 18px;
  }

  .split-media {
    order: 1;
    min-height: auto;
  }

  .split-media img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .split-panel {
    order: 2;
    min-height: auto;
    padding: 34px 24px;
    border-radius: 0;
  }

  .split-title {
    font-size: clamp(2rem, 9vw, 2rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .split-body {
    font-size: 16px;
    line-height: 1.2;
    max-width: 100%;
  }

  .cta {
    width: 80%;
  }

  .cta-label {
    flex: 1;
    text-align: center;
    font-size: 15px;
  }

  .cta-icon {
    min-width: 30px;
  }
}

/* Liten mobil */
@media (max-width: 480px) {
  .split-card {
    padding: 44px 0;
  }

  .split-panel {
    padding: 30px 20px;
  }

  .split-title {
    font-size: 2rem;
  }
}

.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 SECTION
========================= */
.partners {
  padding: 30px 0;
}

/* Center wrapper */
.t-c {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 48px;
}

/* Small heading */
.t-c h6 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #212305;
  font-weight: 600;
  margin: 0 0 14px;
}

/* Main heading */
.t-c h3 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #1f1f1f;

  width: min(100%, 700px);
  margin: 0 auto;
  text-wrap: balance; /* 🔥 pro touch */
}

/* =========================
   SLIDER
========================= */
.partners__slider {
  position: relative;
  width: 100%;
  overflow: hidden;

  margin-top: 50px;
}

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

/* =========================
   LOGOS
========================= */
.partner-logo {
  flex: 0 0 auto;
  width: 240px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px 26px;
  border-radius: 5px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

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

/* Hover */

/* Pause on hover */
.partners__slider:hover .partners__track {
  animation-play-state: paused;
}

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

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .partners {
    padding: 70px 0;
  }

  .t-c {
    padding: 0 20px;
  }

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

  .partner-logo {
    width: 250px;
    height: 95px;
  }

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

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .partners {
    padding: 40px 0;
  }

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

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

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

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

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

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

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

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

.frx-hero {
  --frx-card-w: min(560px, 88vw);
  --frx-text: #ffffff;
  --frx-card-bg: #031718;
  --frx-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--frx-text);
  margin-bottom: 59px;
}

.frx-hero__media {
  position: relative;
  width: 100%;
  height: clamp(520px, 65vw, 780px);
  overflow: hidden;
}

.frx-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* mørk kontrast over bilde */
.frx-hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.frx-hero__container {
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.frx-hero__card {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--frx-card-w);
  background: var(--frx-card-bg);
  border-radius: 4px;
  box-shadow: var(--frx-shadow);
  color: var(--frx-text);
  backdrop-filter: blur(3px);
}

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

.frx-hero__eyebrow {
  margin: 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: 28px 0 18px;
  font-size: clamp(26px, 3.1vw, 40px);
}

.frx-hero__text {
  color: #fff;
  line-height: 1.5;
  font-size: clamp(15px, 1.35vw, 18px);
  opacity: 0.95;
  margin: 0;
}

.frx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-radius: 5px;
  text-transform: uppercase;
  margin-top: 36px;
  text-decoration: none;
  font-weight: 600;
  color: #000000;
  background-color: #dcf35e;
}

/* tablet */
@media (max-width: 992px) {

  .frx-hero__media {
    height: clamp(460px, 70vw, 640px);
  }

  .frx-hero__container {
    padding: 0 20px;
  }

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

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

/* mobil */
@media (max-width: 768px) {


  .frx-hero__media {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .frx-hero__media img {
    position: relative;
    height: 300px;
  }

  .frx-hero__vignette {
    display: none;
  }

  .frx-hero__container {
    padding: 0;
    height: auto;
  }

  .frx-hero__card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

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

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

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

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

  .frx-cta {
    margin-top: 24px;
    min-height: 48px;
    font-size: 15px;
  }
}

/* små mobiler */
@media (max-width: 480px) {
  .frx-hero__media img {
    height: 240px;
  }

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

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

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

  .frx-cta {
    font-size: 14px;
    padding: 0.85rem 1rem;
  }
}

/* =========================
   NEXT TRIP / EVENT SECTION
========================= */
.next-trip {
  padding: clamp(94px, 8vw, 190px) 0;
  margin: 100px 0;
  background: #f5f0db; /* lys krem */
}

.next-trip-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 1fr);
  gap: 30px;
  align-items: center;
}

.next-trip-content {
  max-width: 760px;
}

.next-trip-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b4b4b;
}

.next-trip-title {
  margin: 0 0 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.3rem, 5vw, 2.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #111111;
  max-width: 36ch;
}

.next-trip-lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.2;
  color: #000000;
}

/* =========================
   DATE + INFO
========================= */
.next-trip-meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.trip-date-card {
  background: #511057;
  color: #ffffff;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.trip-date-top {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.trip-date-main {
  font-size: clamp(3.6rem, 8vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 8px 0 10px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.trip-date-bottom {
  font-size: 1rem;
  opacity: 0.92;
}

.trip-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trip-info-item {
  border: 0.6px solid #6b6355;
  border-radius: 5px;
  padding: 20px 18px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trip-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7272;
}

.trip-info-item strong {
  font-size: 1.02rem;
  line-height: 1.45;
  color: #1a1a1a;
  font-weight: 700;
}

/* =========================
   DESCRIPTION
========================= */
.trip-description-box {
  margin-top: 24px;
  background: #efe7c67c;
  border-radius: 5px;
  padding: 24px;
}

.trip-description-box h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #161616;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
}

.trip-description-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: #1a0e06;
  max-width: 62ch;
}

/* =========================
   CHIPS
========================= */
.trip-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trip-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  background: #efe7c67c;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 600;
  border: 0.6px solid #525834;
}

/* =========================
   ACTIONS
========================= */
.trip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  margin-top: 19px;
}

.trip-btn.primary {
  background: #000000;
  color: #ffffff;
}

.trip-btn.primary:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #202502;
}

.trip-btn.secondary {
  background: #ffffff;
  color: #1d1d1d;
  border: 1px solid #ddd7cc;
}

.trip-btn.secondary:hover {
  transform: translateY(-2px);
  border-color: #cfc7bb;
}

/* =========================
   MEDIA SIDE
========================= */
.next-trip-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trip-image-wrap img {
  width: 100%;
  height: 70dvh;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.trip-side-card {
  background: #dcf35e;
  border-radius: 5px;
  padding: 22px;
}

.trip-side-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0303;
}

.trip-side-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #040302;
}

.trip-side-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .next-trip-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .next-trip-content,
  .next-trip-lead,
  .next-trip-title {
    max-width: 100%;
  }

  .next-trip-media {
    gap: 16px;
  }

  .trip-image-wrap img {
    max-height: 480px;
    object-fit: cover;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .next-trip {
    padding: 78px 0;
    margin: 36px 0;
  }

  .next-trip-shell {
    gap: 20px;
  }

  .next-trip-content {
    max-width: 100%;
    order: 2;
  }

  .next-trip-eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .next-trip-title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 6vw, 1.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .next-trip-lead {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .next-trip-meta {
    grid-template-columns: 92px 1fr;
    gap: 10px;
    margin-top: 18px;
    align-items: stretch;
  }

  .trip-date-card {
    min-height: auto;
    padding: 12px 8px;
    border-radius: 5px;
  }

  .trip-date-top {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .trip-date-main {
    font-size: 2.5rem;
    margin: 4px 0;
  }

  .trip-date-bottom {
    font-size: 0.78rem;
  }

  .trip-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trip-info-item {
    min-height: auto;
    padding: 12px 10px;
    border-radius: 5px;
  }

  .trip-label {
    margin-bottom: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .trip-info-item strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .trip-description-box {
    margin-top: 14px;
    padding: 16px;
    border-radius: 5px;
  }

  .trip-description-box h3 {
    margin: 0 0 8px;
    font-size: 1rem;
  }

  .trip-description-box p {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .trip-highlights {
    gap: 8px;
    margin-top: 14px;
  }

  .trip-chip {
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }

  .trip-actions {
    margin-top: 16px;
    gap: 10px;
    flex-direction: column;
  }

  .trip-btn {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 1rem;
    font-size: 0.94rem;
    border-radius: 5px;
  }

  .next-trip-media {
    gap: 12px;
  }

  .trip-image-wrap img {
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    order: 1;
  }

  .trip-side-card {
    border-radius: 5px;
    padding: 16px;
  }

  .trip-side-label {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .trip-side-list {
    padding-left: 1rem;
  }

  .trip-side-list li {
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 0.92rem;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 16px));
  }

  .next-trip {
    padding: 22px 0;
    margin: 28px 0;
  }

  .next-trip-shell {
    gap: 16px;
  }

  .next-trip-title {
    font-size: 1.55rem;
  }

  .next-trip-lead {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .next-trip-meta {
    grid-template-columns: 78px 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .trip-date-card {
    padding: 10px 6px;
  }

  .trip-date-main {
    font-size: 2.1rem;
  }

  .trip-info-grid {
    gap: 7px;
  }

  .trip-info-item {
    padding: 10px 8px;
  }

  .trip-info-item strong {
    font-size: 0.84rem;
  }

  .trip-description-box {
    margin-top: 12px;
    padding: 14px;
  }

  .trip-description-box p {
    font-size: 0.88rem;
  }

  .trip-btn {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .trip-image-wrap img {
    height: 190px;
  }

  .trip-side-card {
    padding: 14px;
  }

  .trip-side-list li {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

.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-card-g {
  background-color: #efece0;
}

.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: #000000;
  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: #000000;
  text-decoration: none;
  border-radius: 999px;
  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-1 {
  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-1 h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #580b0b;
  margin: 0 0 18px;
  max-width: 360px;
}

.fo-card-1 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-1 h3 {
    font-size: 24px;
  }

  .fo-card-1 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-1 h3,
  .fo-card-1 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-1 h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

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

.fo-values-section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.fo-values-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.fo-card {
  background-color: #edff86f8;
  border-radius: 3px;
  overflow: hidden;
  min-height: 590px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fo-card-text {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.fo-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "Bricolage Grotesque", sans-serif;

  text-transform: uppercase;
  color: #3b352d;
}

.fo-card-text h2 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 2.4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  color: #161616;
  font-family: "Bricolage Grotesque", sans-serif;
}

.fo-card-text p {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.3;
  color: #151412;
}

.fo-btn {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.fo-btn:hover {
  transform: translateY(-1px);
}

.fo-card-image {
  padding: 0;
}

.fo-card-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 1100px) {
  .fo-values-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fo-card,
  .fo-card-image img {
    min-height: 420px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .fo-values-section {
    padding: 50px 0;
  }

  .fo-container {
    width: min(100%, calc(100% - 20px));
  }

  .fo-card {
    min-height: auto;
    border-radius: 20px;
  }

  .fo-card-text {
    padding: 26px 22px;
  }

  .fo-card-text h2 {
    font-size: 1.8rem;
  }

  .fo-card-text p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .fo-card-image img {
    min-height: 300px;
  }

  .fo-btn {
    width: 100%;
    justify-content: center;
  }
}

.fo-commitment-section {
  padding: 120px 0;
}

.fo-commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 70px);
  border-radius: 20px;
  padding-left: 30px;
  background-color: #000000;
  align-items: center;
}

.fo-commitment-content {
  max-width: 720px;
}

.fo-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.fo-commitment-content h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 500;
  color: #ffffff;
  max-width: 20ch;
}

.fo-commitment-content p {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(1.1rem, 1.15vw, 1.1rem);
  line-height: 1.2;
  color: #fdfdfd;
}

.fo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.fo-link-btn:hover {
  transform: translateY(-1px);
  opacity: 0.78;
}

.fo-divider {
  width: 100%;
  height: 1px;
  background: #d6d3cd;
  margin: 34px 0 34px;
}

.fo-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 20px 34px;
}

.fo-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.fo-check {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #deff25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.fo-commitment-image {
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.fo-commitment-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Laptop / tablet */
@media (max-width: 1100px) {
  .fo-commitment-grid {
    grid-template-columns: 1fr;
  }

  .fo-commitment-content {
    max-width: 100%;
  }

  .fo-commitment-content h2 {
    max-width: 100%;
  }

  .fo-commitment-content p {
    max-width: 100%;
  }

  .fo-commitment-image img {
    height: 520px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .fo-container {
    width: min(100%, calc(100% - 24px));
  }

  .fo-commitment-section {
    padding: 50px 0;
  }

  .fo-commitment-grid {
    gap: 28px;
  }

  .fo-commitment-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .fo-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fo-commitment-image img {
    height: 360px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .fo-commitment-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .fo-link-btn {
    margin-top: 24px;
  }

  .fo-divider {
    margin: 28px 0;
  }

  .fo-check {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .fo-commitment-image img {
    height: 300px;
  }
}

.work {
  padding: clamp(70px, 8vw, 120px) 0;
}

.work__header {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.work__kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 18px;
  border: 1.5px solid #031718;
  border-radius: 999px;
  color: #031718;
  font-size: 14px;
  font-weight: 700;
}

.work__header h2 {
  margin: 0;
  color: #031718;
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 500px;
  font-weight: 600;
    font-family: "Bricolage Grotesque", sans-serif;

}

.work__header p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgb(3, 23, 24);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.3;
}

.work__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: 310px;
  gap: 18px;
}

.work__feature {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 0;
}

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

/* stort bilde venstre */
.work__feature:first-child {
  grid-row: span 2;
}

/* tekstkort */
.work__feature--primary,
.work__feature--secondary {
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work__feature--primary {
  background: #8b0000;
  color: #fff;
}

.work__feature--secondary {
  background: #0f6b17;
  color: #fff;
}

.work__feature span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.75;
}

.work__feature h3 {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
    font-family: "Bricolage Grotesque", sans-serif;

}

.work__feature p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.work__feature a {
  display: inline-flex;
  width: fit-content;
  margin-top: 30px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #dcf35e;
  color: #031718;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.work__feature a:hover {
  transform: translateY(-2px);
}

/* tablet */
@media (max-width: 1050px) {
  .work__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }

  .work__feature:first-child {
    grid-row: span 1;
  }

  .work__feature--primary,
  .work__feature--secondary {
    min-height: 300px;
  }
}

/* mobil */
@media (max-width: 720px) {
  .work {
    padding: 60px 0;
  }

  .work__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .work__feature {
    border-radius: 18px;
  }

  .work__feature--image {
    height: 260px;
  }

  .work__feature--primary,
  .work__feature--secondary {
    min-height: auto;
    padding: 28px;
  }

  .work__feature h3 {
    font-size: 1.8rem;
  }

  .work__feature p {
    font-size: 15px;
  }
}

.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 {
  background: #fff4ce; /* lys krem */
  padding: clamp(70px, 8vw, 115px) 20px;
}

.donate-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.donate-info {
  max-width: 650px;
}

.donate-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 36px;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #722bc5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.donate-info h2 {
  margin: 0;
  color: #031718;
  font-size: clamp(2.5rem, 4.6vw, 3.3rem);
  line-height: 1.02;
  font-family: "Bricolage Grotesque", sans-serif;

  letter-spacing: -0.055em;
  font-weight: 600;
}

.donate-info p {
  max-width: 510px;
  margin: 38px 0 0;
  color: #011011;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.2;
}

.donate-points {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.donate-points div {
  padding-left: 24px;
  border-left: 4px solid #ffbe85;
}

.donate-points strong {
  display: block;
  margin-bottom: 6px;
  color: #031718;
  font-size: 18px;
  font-weight: 900;
}

.donate-points span {
  color: rgba(3, 23, 24, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

/* VIPPS CARD */

.vipps-panel {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.vipps-logo {
  text-align: center;
  margin-bottom: 34px;
  color: #ff5b24;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vipps-logo span {
  display: inline-block;
  font-size: 0.34em;
  vertical-align: middle;
  margin: 0 2px;
}

.vipps-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(3, 23, 24, 0.14);
}

.vipps-card-top {
  background: #ffbc93;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px;
}

.vipps-card-top img {
  width: 130px;
  max-width: 100%;
  display: block;
}

.vipps-card-body {
  background: #fff;
  text-align: center;
  padding: 48px 42px 54px;
}

.vipps-card-body h3 {
  margin: 0 0 10px;
  color: #151229;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 600;
}

.vipps-card-body p {
  margin: 0 0 36px;
  color: #151229;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 600;
}

.vipps-qr-box {
  width: fit-content;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(3, 23, 24, 0.1);
  border-radius: 28px;
}

.vipps-qr-box img {
  width: min(200px, 64vw);
  display: block;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .donate-wrapper {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .vipps-panel {
    justify-self: start;
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .donate {
    padding: 60px 0;
  }

  .donate .container {
    width: min(100% - 32px, 1180px);
  }

  .donate-kicker {
    margin-bottom: 26px;
  }

  .donate-info h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .donate-info p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .donate-points {
    margin-top: 36px;
  }

  .vipps-logo {
    margin-bottom: 22px;
  }

  .vipps-card {
    border-radius: 20px;
  }

  .vipps-card-top {
    min-height: 170px;
    padding: 32px;
  }

  .vipps-card-top img {
    width: 125px;
  }

  .vipps-card-body {
    padding: 34px 22px 38px;
  }

  .vipps-card-body h3 {
    font-size: 2.35rem;
  }

  .vipps-card-body p {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .vipps-qr-box {
    padding: 16px;
    border-radius: 22px;
  }

  .vipps-qr-box img {
    width: min(200px, 70vw);
  }
}

.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 ===== */

.info-feu {
  padding-top: 90px;
  padding-bottom: 100px;
}

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

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

/* Eyebrow */

#bg-two {
  background-color: #fff;
}

.featured-one {
  padding-top: 150px;
  background-color: #efcfff;
}

.featured-two {
  padding-top: 150px;
  background-color: #efcfff;
}

.featured {
  padding-top: 190px;
  padding-bottom: 70px;
  background-color: #e2b4ff;
}
.featured-eyebrow {
  font-size: 20px;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  color: #100101;
}

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

.featured-title {
  font-size: clamp(35px, 3.6vw, 40px);
  line-height: 1.1;
  font-family: "Bricolage Grotesque", sans-serif;

  margin: 0;
  color: #111;
  font-weight: 400;
  max-width: 60%;
  letter-spacing: -0.02em;
}

.featured-lead {
  margin: 0;
  font-size: clamp(19px, 1.35vw, 20px);
  line-height: 1.2;

  color: rgb(17, 1, 1);
  max-width: 90%;
  font-weight: 400;
}

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

/* =========================
   LARGE SCREENS
========================= */
@media (min-width: 1440px) {
  .container {
    width: min(1400px, calc(100% - 54px));
  }

  .featured-top {
    gap: 96px;
  }

  .featured-media {
    min-height: 720px;
  }
}

/* =========================
   TABLET / SMALL LAPTOP
========================= */
@media (max-width: 1100px) {
  .featured {
    padding: clamp(56px, 7vw, 92px) 0;
  }

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

  .featured-heading,
  .featured-copy {
    max-width: 100%;
  }

  .featured-title {
    max-width: 12ch;
  }

  .featured-sublead {
    max-width: 100%;
  }

  .featured-media {
    min-height: 500px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .featured-top {
    gap: 18px;
    margin-bottom: 14px;
  }

  .featured-eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
    padding-top: 80px;
  }

  .featured-lead {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .featured-sublead {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .featured-media {
    min-height: 360px;
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .featured-media {
    min-height: auto;
  }

  .img-d img {
    height: auto;
    object-fit: unset; /* eller bare fjern object-fit */
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .featured {
    padding: 44px 0;
  }

  .container {
    width: min(100%, calc(100% - 18px));
  }

  .featured-title {
    font-size: 1.6rem;
    letter-spacing: -0.035em;
  }

  .featured-lead {
    font-size: 1rem;
  }

  .featured-sublead {
    font-size: 0.96rem;
  }

  .featured-media {
    min-height: 280px;
    border-radius: 16px;
  }
}

/* =========================
   FEATURED / INTRO
========================= */

.featured {
  background-color: #e2b4ff;
  padding: clamp(90px, 12vw, 190px) 0 clamp(44px, 7vw, 80px);
}

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

.featured-inner {
  max-width: 980px;
}

.featured-eyebrow {
  margin: 0 0 clamp(18px, 3vw, 40px);
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 0.04em;
  color: #100101;
}

.featured-title {
  margin: 0;
  max-width: 700px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.5rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: #111;
}

/* =========================
   SERVICES SHOWCASE
========================= */

.services-showcase {
  position: relative;
  min-height: 760px;
  margin-bottom: clamp(60px, 8vw, 120px);
  padding: clamp(32px, 5vw, 56px) 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24)),
    url("../img/toa.png") center center / cover no-repeat;
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0.08) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.services-overlay-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 380px));
  gap: clamp(18px, 2vw, 28px);
  align-content: center;
  justify-content: start;
}

.service-stat-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.service-stat-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #dcf35e;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.service-stat-number {
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #000;
}

.service-stat-card p {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.05vw, 1rem);
  line-height: 1.45;
  color: #343230;
}

/* Reveal */
.service-stat-card.reveal-card {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(5px);
}

.service-stat-card.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.service-stat-card.reveal-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-stat-card.reveal-card:nth-child(2) {
  transition-delay: 0.14s;
}

.service-stat-card.reveal-card:nth-child(3) {
  transition-delay: 0.23s;
}

.service-stat-card.reveal-card:nth-child(4) {
  transition-delay: 0.32s;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .featured {
    padding-top: 110px;
  }

  .featured-inner {
    max-width: 100%;
  }

  .services-showcase {
    min-height: auto;
    padding: 44px 0;
    background-position: center;
  }

  .services-overlay-grid {
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-stat-card {
    min-height: 185px;
  }

  .service-stat-card p {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .featured {
    padding: 86px 0 42px;
  }

  .featured-eyebrow {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .featured-title {
    font-size: clamp(1.9rem, 4vw, 2rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .services-showcase {
    padding: 24px 0;
    margin-bottom: 70px;
    background:
      linear-gradient(
        180deg,
        rgba(18, 12, 10, 0.42) 0%,
        rgba(18, 12, 10, 0.18) 45%,
        rgba(18, 12, 10, 0.48) 100%
      ),
      url("../img/cfor.png") center center / cover no-repeat;
  }

  .services-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 12px 0;
  }

  .service-stat-card {
    min-height: auto;
    border-radius: 10px;
    padding: 22px;
  }

  .service-stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .service-stat-number {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .service-stat-card p {
    font-size: 0.8rem;
    width: 100%;
    line-height: 1.3;
  }

  .service-stat-card.reveal-card {
    transform: translateY(20px) scale(0.99);
    filter: blur(4px);
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 18px));
  }

  .featured {
    padding: 76px 0 36px;
  }

  .featured-title {
    font-size: 1.9rem;
  }

  .services-showcase {
    padding: 18px 0;
    margin-bottom: 55px;
  }

  .services-overlay-grid {
    gap: 14px;
  }

  .service-stat-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .service-stat-icon {
    width: 44px;
    height: 44px;
  }

  .service-stat-number {
    font-size: 1.55rem;
  }

  .service-stat-card p {
    font-size: 0.95rem;
  }
}

/* =========================
   ACCESSIBILITY
========================= */

@media (prefers-reduced-motion: reduce) {
  .service-stat-card,
  .service-stat-card.reveal-card,
  .service-stat-card.reveal-card.is-visible {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ✅ 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;
  }
}

.info-feu {
  padding: clamp(45px, 7vw, 90px) 0;
}

.crd-title h2 {
  padding: 20px 0;
  font-size: 40px;
  font-weight: 500;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.card {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  align-items: flex-end;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.2);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.18) 38%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.card-top {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.card-title {
  margin: 0;
  max-width: 32ch;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.card-text {
  margin: 16px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.card-btn {
  margin-top: 22px;
  position: relative;
  z-index: 2;
  width: fit-content;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000000;
  font-weight: 650;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #dcf35e;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.card-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #000000;
}

.card-btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-btn--ghost:hover {
  background: #ffffff;
  color: #000000;
}

/* VIDEO POPUP */

.video-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.video-popup-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease;
}

.video-popup.active .video-popup-inner {
  transform: translateY(0) scale(1);
}

.video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-popup-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

#videoPopupPlayer {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #000000;
}

/* TABLET */

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .card--big {
    min-height: 440px;
  }

  .card-title {
    max-width: 100%;
  }

  .card-text {
    max-width: 100%;
  }
}

/* MOBIL */

.info-feu {
  padding: 40px 0;
}

.featured-grid {
  gap: 16px;
}

.card,
.card--big {
  min-height: 490px;
  border-radius: 18px;
  padding: 20px;
  background-position: center;
}

.card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.155) 42%,
    rgba(0, 0, 0, 0.683) 100%
  );
}

.card-top {
  gap: 8px;
  margin-bottom: 12px;
}

.chip {
  font-size: 12px;
  padding: 6px 11px;
}

.date {
  font-size: 12px;
}

.card-title {
  font-size: 1.45rem;
  line-height: 1.12;
}

.card-text {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-btn {
  margin-top: 18px;
  padding: 13px 16px;
  font-size: 15px;
}

.video-popup {
  padding: 10px;
  align-items: center;
}

.video-popup-inner {
  width: 100%;
  border-radius: 14px;
}

.video-popup-close {
  width: 40px;
  height: 40px;
  font-size: 26px;
}

#videoPopupPlayer {
  max-height: 74vh;
}

/* EKSTRA SMÅ MOBILER */

@media (max-width: 390px) {
  .card,
  .card--big {
    min-height: 360px;
    padding: 18px;
  }

  .card-title {
    font-size: 1.28rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}

/* REDUSERT MOTION */

@media (prefers-reduced-motion: reduce) {
  .card,
  .card-btn,
  .video-popup,
  .video-popup-inner {
    transition: none !important;
  }
}

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

  .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: 5px;
  }

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

  .card-title {
    max-width: 28ch;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
  }

  .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) ===== */

.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: 19px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.contact-title {
  margin: 0 0 22px 0;
  font-size: clamp(44px, 4.6vw, 58px);
  font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #000000;
}

.contact-lead {
  margin: 0 0 44px 0;
  color: rgba(0, 0, 0, 0.96);
  font-size: 18px;
  line-height: 1.3;
  max-width: 34ch;
}

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

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

.contact-input-dif {
  width: 100%;
  border: 0;
  outline: none;
  background: #f0ede2;
  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: #000000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 5px;
  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);
  opacity: 0.8;
}



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

.contact-side-title {
  margin: 0 0 18px 0;
  font-family: "Bricolage Grotesque", sans-serif;

  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  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: 20px;
  color: #ffffff;
  letter-spacing: 0.2px;
  color: #e5ff3f;
}

.info-block a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  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(146, 146, 146, 0.18);
  padding-bottom: 3px;
  width: fit-content;
}

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

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


.flgoss {
  display: flex;
  gap: 20px;
  align-items: center;
}

.flgoss h4 {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e5ff3f;
  display: grid;
  place-items: center;
  color: #0b0303;
  text-decoration: none;
  border: solid #fff 1px;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

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

@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: #000000; /* vinrød */
  padding: clamp(54px, 6vw, 90px) 0;
  margin-top: 120px;
  background-color: #ecff81;
}

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

.goals-title {
  font-size: clamp(38px, 5vw, 53px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  font-weight: 400;
  font-family: "Bricolage Grotesque", sans-serif;

  color: #000000;
  margin-bottom: 70px;
}

/* Each row */
.acc-item {
  border-bottom: 1px solid rgba(84, 72, 72, 0.411);
}

/* 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: #000000;
}

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

/* Plus / minus on the right */
.acc-icon {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  color: rgba(18, 14, 14, 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(0, 0, 0, 0.9);
  margin-top: 20px;
}

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

/* Responsive: keep the icon aligned and text readable */
@media (max-width: 720px) {
  .goals-title {
    font-size: 30px;
  }

  .acc-panel p {
    font-size: 16px;
  }

  .acc-heading {
    font-size: 20px;
  }
}

/**********************************/
/*      FOOTER      */
/**********************************/
/* ========== FOOTER (Caritas-style, tilpasset Friskluft Oslo) ========== */
:root {
  --footer-bg: #031718; /* 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: 25%;
}
.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(28px, 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: 19px;
  text-transform: none;
  letter-spacing: 0.2px;
  color: var(--footer-muted);
  margin: 0 0 14px 0;
  font-weight: 600;
}

.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: 16px;
  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(0, 0, 0, 0.85);
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: #dcf35e;
  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);
}

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

.u-foot {
  background-color: #031718;
  padding: 20px 0;
}

.row-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.l-foot p {
  font-size: 16px;
  color: #ffffffa1;
}

.r-foot p a {
  color: #dcf35e;
  margin-left: 10px;
}

/* ========== 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%;
  }
}

/*PERSONVERN*/

.privacy-page {
  padding: clamp(70px, 8vw, 120px) 20px;
  margin-top: 100px;
}

.privacy-container {
  max-width: 980px;
  margin: 0 auto;
}

.privacy-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1.5px solid #031718;
  border-radius: 999px;
  color: #031718;
  font-size: 14px;
  font-weight: 700;
}

.privacy-page h1 {
  margin: 0;
  max-width: 850px;
  color: #031718;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-family: "Bricolage Grotesque", sans-serif;

  letter-spacing: -0.055em;
  font-weight: 600;
}

.privacy-intro {
  max-width: 720px;
  margin: 32px 0 60px;
  color: rgba(3, 23, 24, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.privacy-content {
  display: grid;
  gap: 24px;
}

.privacy-content section {
  background: #ffffff;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(3, 23, 24, 0.06);
}

.privacy-content h2 {
  margin: 0 0 16px;
  color: #031718;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.2;
  font-weight: 850;
}

.privacy-content p {
  margin: 0 0 16px;
  color: rgba(3, 23, 24, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: rgba(3, 23, 24, 0.78);
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.privacy-updated {
  margin-top: 22px !important;
  font-weight: 700;
  color: #031718 !important;
}

@media (max-width: 620px) {
  .privacy-page {
    padding: 60px 0;
  }

  .privacy-container {
    width: min(100% - 32px, 980px);
  }

  .privacy-intro {
    margin-bottom: 38px;
  }

  .privacy-content {
    gap: 18px;
  }

  .privacy-content section {
    border-radius: 14px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 15px;
  }
}

/*Retningslinje*/
.ethics-page {
  padding: clamp(70px, 8vw, 120px) 20px;
  margin-top: 80px;
}

.ethics-container {
  max-width: 980px;
  margin: 0 auto;
}

.ethics-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1.5px solid #031718;
  border-radius: 999px;
  color: #031718;
  font-size: 14px;
  font-weight: 700;
}

.ethics-page h1 {
  margin: 0;
  color: #031718;
  font-family: "Bricolage Grotesque", sans-serif;

  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.ethics-intro {
  max-width: 720px;
  margin: 32px 0 60px;
  color: rgba(3, 23, 24, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.ethics-content {
  display: grid;
  gap: 24px;
}

.ethics-content section {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 14px 38px rgba(3, 23, 24, 0.06);
  border: 1px solid rgba(3, 23, 24, 0.06);
}

.ethics-content h2 {
  margin: 0 0 16px;
  color: #031718;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 650;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ethics-content p {
  margin: 0;
  color: rgba(3, 23, 24, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 620px) {
  .ethics-page {
    padding: 60px 0;
  }

  .ethics-container {
    width: min(100% - 32px, 980px);
  }

  .ethics-intro {
    margin-bottom: 38px;
  }

  .ethics-content {
    gap: 18px;
  }

  .ethics-content section {
    border-radius: 14px;
  }

  .ethics-content p {
    font-size: 15px;
  }
}

.safety-page {
  margin-top: 90px;
  padding: clamp(70px, 8vw, 120px) 20px;
}

.safety-container {
  max-width: 980px;
  margin: 0 auto;
}

.safety-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1.5px solid #031718;
  border-radius: 999px;
  color: #031718;
  font-size: 14px;
  font-weight: 700;
}

.safety-page h1 {
  margin: 0;
  color: #031718;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.safety-intro {
  max-width: 720px;
  margin: 32px 0 60px;
  color: rgba(3, 23, 24, 0.903);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.3;
}

.safety-content {
  display: grid;
  gap: 24px;
}

.safety-content section {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 14px 38px rgba(3, 23, 24, 0.06);
  border: 1px solid rgba(3, 23, 24, 0.06);
}

.safety-content h2 {
  margin: 0 0 16px;
  color: #031718;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 850;
}

.safety-content p {
  margin: 0;
  color: rgba(3, 23, 24, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.safety-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.safety-content li {
  margin-bottom: 10px;
  color: rgba(3, 23, 24, 0.78);
  line-height: 1.7;
}

.safety-content li:last-child {
  margin-bottom: 0;
}

/* Mobil */

@media (max-width: 620px) {
  .safety-page {
    padding: 60px 0;
  }

  .safety-container {
    width: min(100% - 32px, 980px);
  }

  .safety-intro {
    margin-bottom: 38px;
  }

  .safety-content {
    gap: 18px;
  }

  .safety-content section {
    border-radius: 14px;
    padding: 24px;
  }

  .safety-content p,
  .safety-content li {
    font-size: 15px;
  }
}
