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

:root {
  --header-bg: #f6edde;
  --header-text: #4a1f0c;
  --header-accent: #5a250e;
  --header-border: #eecd95;
}

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

body {
  line-height: 1.5;
  background-color: #FFF5DA;
;
  font-family: "Bricolage Grotesque", sans-serif;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/**********************************/
/*          CONTAINERS           */
/**********************************/

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: auto;
  max-height: 54px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.current {
  opacity: 0.72;
}

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

.nav-cta-desktop {
  background: #fdf1de;
  color: #2b0a0a;
  padding: 9px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

/* Følg meg */
.follow-dropdown {
  position: relative;
}

.follow-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
}

.follow-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.follow-dropdown:hover .follow-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.follow-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b1b17;
  padding: 12px;
  text-decoration: none;
  border-radius: 10px;
}

.follow-menu a:hover {
  background: #f4ebe7;
}

/* Mobil */
.hamburger,
.mobile-only,
.mobile-socials {
  display: none;
}

@media (max-width: 900px) {
  .follow-dropdown,
  .nav-cta-desktop {
    display: none;
  }

  .hamburger {
    width: 58px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    cursor: pointer;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: #2b1b17;
    transition: 0.3s ease;
  }

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

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

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

  .nav-center {
    position: fixed;
    inset: 0;
    background: #e8e4dc;
    padding: 120px 38px 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: 0.35s ease;
  }

  .nav-center.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  }

  .nav-link {
    color: #000;
    font-size: 44px;
    padding: 26px 0;
    display: flex;
  }

  .mobile-only,
  .mobile-socials {
    display: block;
  }

  .mobile-cta {
    display: inline-flex;
    margin-top: 28px;
    background: #8c5b4f;
    color: #fff;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 24px;
  }

  .mobile-socials {
    border-bottom: none !important;
    margin-top: 36px;
  }

  .mobile-socials span {
    display: block;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .mobile-socials div {
    display: flex;
    gap: 14px;
  }

  .mobile-socials a {
    width: 48px;
    height: 48px;
    background: #8c5b4f;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
  }
}


.hero {
  position: relative;
  min-height: 93vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.5s ease,
    transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.863) 0%,
      rgba(0, 0, 0, 0.305) 38%,
      rgba(0, 0, 0, 0.108) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.287) 0%,
      rgba(0, 0, 0, 0.153) 55%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-cont {
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 50px;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}


.hero-video-card video {
  width: 100%;
  margin-top: 190px;
  border-radius: 10px;
}


.txt-side p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  max-width: 60%;
}
.hero-video-info a {
  color: #fff;

}

.hero-video-info a:hover {
  border-bottom: 1px solid #fff;
}


.hero-txt > * {
  opacity: 0;
  transform: translateY(-28px);
}

.hero-txt.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-txt.is-visible > *:nth-child(1) {
  transition-delay: 0.15s;
}

.hero-txt.is-visible > *:nth-child(2) {
  transition-delay: 0.3s;
}

.hero-txt.is-visible > *:nth-child(3) {
  transition-delay: 0.45s;
}

.hero-txt.is-visible > *:nth-child(4) {
  transition-delay: 0.6s;
}

.hero-video-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-35px);
}

.hero-video-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease 0.75s, transform 1s ease 0.75s;
}


.hero-video-card::before {
  top: 0;
}

.hero-video-card::after {
  bottom: 0;
}

.hero-video-card.is-visible::before {
  transform: translateY(-100%);
}

.hero-video-card.is-visible::after {
  transform: translateY(100%);
}


.hero-txt {
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-txt h1 {
  margin: 0 0 28px;
  max-width: 500px;
  font-size: clamp(48px, 7vw, 60px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  letter-spacing: -2px;
}

.hero-txt-beh h4 {
  margin: 0 0 28px;
  max-width: 500px;
  font-size: clamp(48px, 7vw, 30px);
  line-height: 0.95;
  font-weight: 500;
  color: #563605;
  letter-spacing: -2px;
  margin-top: 50px;
}

.hero-txt-beh h5 {
  font-size: 18px;
  font-weight: 400;
  color: #2e1e0f;
  width: 20%;
}

.hero-txt p {
  max-width: 500px;
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-btn--primary {
  background: #fff2e1;
  color: #331f04;
}

.hero-btn--primary:hover {
  background: #f6dfc1;
  transform: translateY(-2px);
}

.hero-btn--secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.42)
    );
  }

  .hero-cont {
    padding-top: 120px;
  }

  .hero-txt h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-txt p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .site-header {
    padding: 18px 0;
  }

  .logo img {
    max-height: 58px;
  }

  .nav-center {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100vh;
    background: #181514;
    padding: 110px 30px 30px;
    transition: 0.35s ease;
    z-index: 999;
  }

  .nav-center.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

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

  .nav-cta-desktop {
    display: none;
  }

  .nav-item-mobile-only {
    display: block;
  }

  .hamburger {
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .bar {
    width: 28px;
    height: 2px;
    background: #fff;
    display: block;
  }

  .hero {
    background:
      linear-gradient(
        rgba(0, 0, 0, 0.58),
        rgba(0, 0, 0, 0.35)
      ),
      url("img/hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero-cont {
    padding-top: 100px;
    grid-template-columns: 1fr;
  }

  .hero-txt h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .hero-txt p {
    font-size: 16px;
    line-height: 1.2;
  }

  .hero-actions {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-video-card {
    margin-top: -190px;
  }

  .hero-video-card video {
    max-width: 300px;
    border-radius: 2px;
  }
}


.healing-ticker{
    width:100%;
    overflow:hidden;
    background:#342002;
    padding:12px 0;
    border-top:1px solid rgba(255,255,255,.15);
    border-bottom:1px solid rgba(168, 149, 101, 0.443);
}

.ticker-track{
    display:flex;
    width:max-content;
    animation:ticker 55s linear infinite;
}

.healing-ticker:hover .ticker-track{
    animation-play-state:paused;
}

.ticker-item{
    display:flex;
    align-items:center;
    gap:10px;

    padding:0 55px;

    color:#ffeaca;
    white-space:nowrap;

    font-size:18px;
    font-weight:400;

    position:relative;
}

.ticker-item::after{

    content:"";

    width:1px;
    height:24px;

    background:rgba(255, 234, 157, 0.525);

    position:absolute;
    right:0;
}

.ticker-item i{

    font-size:19px;

    color:#ffeaca;
}

@keyframes ticker{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .healing-ticker{

        padding:15px 0;

    }

    .ticker-item{

        font-size:15px;

        gap:12px;

        padding:0 38px;

    }

    .ticker-item i{

        font-size:17px;

    }

}



/*SM JS*/
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  padding-bottom: 180px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos-slide {
  display: inline-block;
  animation: 59s slide infinite linear;
}

.logos-slide img {
  width: 380px;
  height: 330px;
  margin: 0 8px;

  border-radius: 6px;
}

/**********************************/


/* SM JS*/
.fade-in-large.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s; /* Forsinkelse for store tekster */
}

.fade-in-small.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s; /* Lengre forsinkelse for små tekster */
}


/* ABOUT */

.about-lovra{
    padding:20px 0;
    margin-bottom:120px;
}

.about-container{
    width:min(1300px,90%);
    margin:auto;
    padding:50px 60px;

    display:grid;
    grid-template-columns:1.2fr 420px;
    gap:70px;
    align-items:center;

    background:#fbe1b9a2;
    border-radius:14px;
}

.about-content{
    text-align:left;
}

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-circle{
    width:390px;
    height:390px;
    border-radius:50%;
    overflow:hidden;
}

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

.about-small{
    display:inline-block;
    margin-bottom:12px;
    font-size:.9rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#613d06;
}

.about-content h2{
    margin:0;
    font-size:clamp(2.2rem,4vw,2.9rem);
    font-weight:300;
    color:#222;
    line-height:1.1;
}

.about-content h2 span{
    font-weight:500;
}

.edu{
    margin:28px 0;
} 

.raw-edu{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.txt-edu{
    background:#f9d194;
    padding:8px 18px;
    border-radius:999px;
}

.txt-edu h4{
    margin:0;
    font-size:.95rem;
    font-weight:500;
    color:#3c2603;
}

.about-content p{
    max-width:680px;
    margin-bottom:18px;
    font-size:1.05rem;
    line-height:1.2;
    color:#241a1a;
}

.about-socials{
    display:flex;
    gap:16px;
    margin-top:35px;
}

.about-socials a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#3c2603;

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

    color:#fff;
    text-decoration:none;
    transition:.35s ease;
}

.about-socials a:hover{
    background:#8c5b4f;
    transform:translateY(-4px);
}

/* Tablet */

@media(max-width:991px){

.about-lovra{
    padding:80px 0;
}

.about-container{
    grid-template-columns:1fr;
    padding:45px 30px;
    gap:40px;
    text-align:center;
}

.about-image{
    order:-1;
}

.image-circle{
    width:280px;
    height:280px;
}

.about-content{
    text-align:center;
}

.raw-edu{
    justify-content:center;
}

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

.about-socials{
    justify-content:center;
}

.about-content h2{
    font-size:2.3rem;
}

}

/* Mobil */

@media(max-width:600px){

.about-container{
    padding:35px 22px;
}

.image-circle{
    width:240px;
    height:240px;
}

.about-content h2{
    font-size:2rem;
}

.about-content p{
    font-size:1rem;
    line-height:1.7;
}

.txt-edu{
    padding:7px 14px;
}

.txt-edu h4{
    font-size:.85rem;
}

}

/* =========================
   LOVRA WELLNESS SECTION
========================= */
.lovra-wellness {
  padding: 140px 0;
}

.txt-wellness h3 {
  font-size: 34px;
  font-weight: 500;
  max-width: 30%;
  line-height: 1.1;
  margin-bottom: 30px;
}

.lovra-wellness-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.62fr;
  gap: 20px;
  align-items: stretch;
}

/* LEFT FEATURE */
.lovra-wellness-feature {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.lovra-wellness-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lovra-wellness-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.133) 38%,
      rgba(0, 0, 0, 0.687) 100%
    );
}

.lovra-wellness-feature-content {
  position: absolute;
  left: 28px;
  right: 48px;
  bottom: 48px;
  z-index: 2;
}

.lovra-wellness-feature-content h2 {
  margin: 0 0 28px;
  max-width: 420px;
  color: #f7f0eb;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}


.lovra-wellness-btn {
  margin-top: 40px;
  color: hsl(0, 0%, 100%);
  padding: 8px 22px;
  border: solid 1px #fff;
  
}


.lovra-wellness-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #111;
}

.lovra-wellness-btn-icon {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: #4a1f0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffe8d6;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* RIGHT SIDE */
.lovra-wellness-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lovra-wellness-card {
  background: #fad9a6;
  border-radius: 8px;
  padding: 28px 26px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lovra-wellness-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3c1e0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffe7d9;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.lovra-wellness-card h3 {
  margin: 0 0 18px;
  color: #191816;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.lovra-wellness-card p {
  margin: 0;
  max-width: 28ch;
  color: #2b1a09;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 400;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .lovra-wellness {
    padding: 84px 0;
  }

  .lovra-wellness-grid {
    grid-template-columns: 1fr;
  }

  .lovra-wellness-feature {
    min-height: 620px;
  }

  .lovra-wellness-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lovra-wellness-card {
    min-height: 300px;
    padding: 30px 26px;
  }

  .lovra-wellness-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 26px;
    font-size: 1.7rem;
  }

  .lovra-wellness-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }

  .lovra-wellness-card p {
    font-size: 1rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .lovra-wellness {
    padding: 30px 0 56px;
  }

  .lovra-wellness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* flytt kortene først og bildet nederst */
  .lovra-wellness-cards {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .lovra-wellness-feature {
    order: 2;
    min-height: 420px;
    border-radius: 22px;
  }

  .lovra-wellness-feature img {
    object-position: center;
  }

  .lovra-wellness-feature-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .lovra-wellness-feature-content h2 {
    margin-bottom: 16px;
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.02;
  }

  .lovra-wellness-btn {
    width: auto;
    min-height: 52px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    font-size: 0.92rem;
  }

  .lovra-wellness-btn-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lovra-wellness-card {
    min-height: 215px;
    padding: 18px 16px 18px;
    border-radius: 22px;
  }

  .lovra-wellness-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    font-size: 1.35rem;
  }

  .lovra-wellness-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.04;
    letter-spacing: -0.02em;
  }

  .lovra-wellness-card p {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

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

  .lovra-wellness-cards {
    gap: 14px;
  }

  .lovra-wellness-card {
    min-height: 190px;
    padding: 16px 14px;
    border-radius: 20px;
  }

  .lovra-wellness-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 1.15rem;
  }

  .lovra-wellness-card h3 {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .lovra-wellness-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .lovra-wellness-feature {
    min-height: 340px;
    border-radius: 20px;
  }

  .lovra-wellness-feature-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .lovra-wellness-feature-content h2 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .lovra-wellness-btn {
    min-height: 48px;
    font-size: 0.86rem;
    padding: 8px 12px 8px 8px;
  }

  .lovra-wellness-btn-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

/* =========================
   HEALING WHY SECTION
========================= */
.healing-why {
  padding: 80px 0;
}

.healing-why-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #4A1F0C;
  border-radius: 24px;
  overflow: hidden;
}

/* LEFT */
.healing-why-left {
  padding: 60px;
  color: #fff;
}

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

.healing-why-head h2 {
  font-size: 2.6rem;
  background-color: #41330c;
  max-width: 480px;
  line-height: 1.1;
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
}

.healing-why-btn {
  background: #f08a47;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.healing-why-btn:hover {
  transform: translateY(-2px);
}

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

.healing-why-item .icon {
  font-size: 26px;
  margin-bottom: 14px;
}

.healing-why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.healing-why-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* RIGHT */
.healing-why-right {
  position: relative;
}

.healing-why-image {
  height: 100%;
  position: relative;
}

.healing-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QUOTE */
.healing-quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
}

.healing-quote p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.healing-quote strong {
  display: block;
  font-weight: 600;
}

.healing-quote span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .healing-why-shell {
    grid-template-columns: 1fr;
  }

  .healing-why-left {
    padding: 40px;
  }

  .healing-why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

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

  .healing-why-left {
    padding: 30px 20px;
  }

  .healing-why-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .healing-why-head h2 {
    font-size: 1.8rem;
  }

  .healing-why-btn {
    width: 100%;
    text-align: center;
  }
}




.treatments-showcase{
  padding:120px 0;
}

.treatments-header{
  width:min(1400px,98%);
  margin:0 auto 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.treatments-header h2{
  font-size:clamp(2.5rem,5vw,2.7rem);
  font-weight:300;
  max-width: 45%;
  line-height: 1.2;
  color: #2d140c;
  margin:0;
}

.treatments-header a{
  color:#111;
  text-decoration:none;
  border-radius: 999px;
  padding: 10px 20px;
  background-color: #ffb077;
  font-size:1rem;
}

.treatments-grid{
  width:min(1400px,100%);
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.treatment-card{
  background:#f9d194;
  border-radius:5px;
  overflow:hidden;
}

.treatment-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.card-content{
  padding:40px;
  min-height:250px;

  display:flex;
  flex-direction:column;
}

.card-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:start;
  margin-bottom:30px;
}

.card-top h3{
  margin:0;
  font-size:1.7rem;
  line-height:1.05;
  font-weight:400;
  text-transform:uppercase;
  letter-spacing:2px;
}

.card-arrow{
  width:40px;
  height:40px;
  border:1.5px solid #111;
  border-radius:50%;

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

  text-decoration:none;
  color:#111;
  font-size:2rem;

  transition:.3s;
}

.card-arrow:hover{
  background:#111;
  color:#fff;
}

.card-content p{
  font-size:1.1rem;
  line-height:1.4;
  color:#222;
  margin:0;
}

.card-content span{
  margin-top:auto;

  display:inline-flex;
  width:fit-content;

  background: #613d06;
  color:#fff;

  padding:8px 18px;
  border-radius:999px;

  font-size:.9rem;
}

@media(max-width:900px){

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

  .treatments-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .treatment-card img{
    height:280px;
  }

  .card-top h3{
    font-size:1.6rem;
  }
}



/* ===================================
   HEALING FLOW SECTION
=================================== */


.healing-card{
    opacity:0;
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,.61,.36,1);
}

.healing-card-left-top{
    transform:translateX(-80px);
}

.healing-card-right-top{
    transform:translateX(80px);
}

.healing-card-left-bottom{
    transform:translateY(80px);
}

.healing-card.show{
    opacity:1;
    transform:translate(0,0);
}


.healing-flow-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background:
    radial-gradient(circle at 50% 24%, rgba(180, 103, 35, 0.18), transparent 28%),
    linear-gradient(180deg, #5a2b13 0%, #683117 48%, #34180a 100%);
}

.healing-flow-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 166, 96, 0.08), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04) 30%, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.healing-flow-shell {
  position: relative;
  z-index: 1;
}

.healing-flow-head {
  max-width: 660px;
  margin: 0 auto 20px;
  text-align: center;
}

.healing-flow-eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.healing-flow-head h2 {
  margin: 0;
  color: #f6efe8;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: -90px;
}

/* ===================================
   STAGE
=================================== */
.healing-flow-stage {
  position: relative;
  min-height: 980px;
  max-width: 1300px;
  margin: 0 auto;
}

.healing-frame {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 710px;
  height: 690px;
  transform: translateX(-50%);
  border: 0.7px solid rgba(255, 188, 130, 0.72);
  border-radius: 34px;
}

.healing-center-figure {
  position: absolute;
  left: 50%;
  top: 185px;
  transform: translateX(-50%);
  width: 600px;
  z-index: 2;
}

.healing-center-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

/* ===================================
   CONNECTING LINES
=================================== */
.healing-flow-stage::before,
.healing-flow-stage::after {
  content: "";
  position: absolute;
  background: rgba(243, 231, 220, 0.42);
}

.healing-flow-stage::before {
  left: 235px;
  top: 300px;
  width: 260px;
  height: 1.5px;
}

.healing-flow-stage::after {
  right: 235px;
  top: 440px;
  width: 230px;
  height: 1.5px;
}

.healing-node {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
}

.healing-node::before {
  content: "✦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff3ea;
  font-size: 0.8rem;
}

.healing-node-1 {
  top: 279px;
  left: 50%;
  transform: translateX(-30px);
}

.healing-node-2 {
  top: 420px;
  right: 392px;
}

.healing-node-3 {
  top: 638px;
  left: 50%;
  transform: translateX(-3px);
}

/* ===================================
   CARDS
=================================== */
.healing-card {
  position: absolute;
  z-index: 3;
  width: 420px;
  min-height: 150px;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 18px;
  align-items: stretch;
  background: rgba(255, 208, 162, 0.401);
    backdrop-filter: blur(18px);

  border: 1px solid rgba(97, 55, 24, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.healing-card-media img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.healing-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.healing-card-content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.healing-card-content p {
  margin: 0;
  color: #ffe8df;
  font-size: 15px;
  line-height: 1.35;
}

.healing-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: #ffc374;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
}

.healing-card-content a::after {
  content: "↗";
  font-size: 1rem;
}

/* Card positions */
.healing-card-left-top {
  top: 235px;
  left: 0;
}

.healing-card-right-top {
  top: 270px;
  right: 0;
}

.healing-card-left-bottom {
  top: 750px;
  left: 400px;
}

/* ===================================
   LARGE TABLET / SMALL DESKTOP
=================================== */
@media (max-width: 1200px) {
  .healing-flow-section {
    padding: 44px 0 90px;
  }

  .healing-flow-stage {
    max-width: 1000px;
    min-height: 900px;
  }

  .healing-frame {
    width: 600px;
    height: 600px;
    top: 170px;
  }

  .healing-center-figure {
    width: 430px;
    top: 240px;
  }

  .healing-card {
    width: 350px;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .healing-card-content h3 {
    font-size: 1.2rem;
  }

  .healing-card-content p {
    font-size: 14px;
  }

  .healing-flow-stage::before {
    left: 155px;
    top: 325px;
    width: 220px;
  }

  .healing-flow-stage::after {
    right: 150px;
    top: 430px;
    width: 190px;
  }

  .healing-card-left-top {
    top: 250px;
    left: 0;
  }

  .healing-card-right-top {
    top: 300px;
    right: 0;
  }

  .healing-card-left-bottom {
    top: 700px;
    left: 330px;
  }

  .healing-node-1 {
    top: 305px;
  }

  .healing-node-2 {
    top: 412px;
    right: 305px;
  }

  .healing-node-3 {
    top: 630px;
  }
}

/* ===================================
   TABLET
=================================== */
@media (max-width: 991px) {
  .healing-flow-section {
    padding: 36px 0 72px;
  }

  .healing-flow-head {
    max-width: 680px;
    margin-bottom: 22px;
  }

  .healing-flow-eyebrow {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .healing-flow-head h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 1;
  }

  .healing-flow-stage {
    min-height: 1060px;
    max-width: 760px;
  }

  .healing-frame {
    width: 500px;
    height: 500px;
    top: 180px;
    border-radius: 26px;
  }

  .healing-center-figure {
    width: 360px;
    top: 245px;
  }

  .healing-card {
    width: 300px;
    grid-template-columns: 105px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
  }

  .healing-card-media img {
    min-height: 92px;
  }

  .healing-card-content h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .healing-card-content p {
    font-size: 13px;
    line-height: 1.3;
  }

  .healing-card-content a {
    padding-top: 12px;
    font-size: 0.9rem;
  }

  .healing-card-left-top {
    top: 205px;
    left: 0;
  }

  .healing-card-right-top {
    top: 315px;
    right: 0;
  }

  .healing-card-left-bottom {
    top: 725px;
    left: 230px;
  }

  .healing-flow-stage::before {
    left: 135px;
    top: 290px;
    width: 140px;
  }

  .healing-flow-stage::after {
    right: 122px;
    top: 430px;
    width: 120px;
  }

  .healing-node-1 {
    top: 270px;
    left: 50%;
    transform: translateX(-18px);
  }

  .healing-node-2 {
    top: 420px;
    right: 220px;
  }

  .healing-node-3 {
    top: 665px;
    left: 50%;
    transform: translateX(0);
  }
}

/* ===================================
   MOBILE
=================================== */
@media (max-width: 767px) {
  .healing-flow-section {
    padding: 28px 0 56px;
  }

  .healing-flow-head {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .healing-flow-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }

  .healing-flow-head h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .healing-flow-stage {
    min-height: auto;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 10px;
  }

  .healing-flow-stage::before,
  .healing-flow-stage::after,
  .healing-node {
    display: none;
  }

  .healing-frame {
    position: absolute;
    top: 92px;
    left: 50%;
    width: min(88vw, 360px);
    height: min(88vw, 360px);
    transform: translateX(-50%);
    border-radius: 24px;
  }

  .healing-center-figure {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(74vw, 290px);
    margin: 62px auto 8px;
    z-index: 2;
  }

  .healing-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
  }

  .healing-card-media img {
    min-height: 90px;
    height: 100%;
  }

  .healing-card-content h3 {
    font-size: 1rem;
    line-height: 1.02;
    margin-bottom: 8px;
  }

  .healing-card-content p {
    font-size: 13px;
    line-height: 1.35;
  }

  .healing-card-content a {
    font-size: 0.9rem;
    padding-top: 10px;
  }

  .healing-card-left-top,
  .healing-card-right-top,
  .healing-card-left-bottom {
    top: auto;
    left: auto;
    right: auto;
  }

  .healing-card-left-top {
    margin-top: -18px;
  }

  .healing-card-right-top,
  .healing-card-left-bottom {
    margin-top: 0;
  }
}

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

  .healing-flow-eyebrow {
    font-size: 0.72rem;
  }

  .healing-flow-head h2 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
  }

  .healing-flow-stage {
    gap: 12px;
  }

  .healing-frame {
    width: min(92vw, 320px);
    height: min(92vw, 320px);
    top: 88px;
    border-radius: 20px;
  }

  .healing-center-figure {
    width: min(78vw, 250px);
    margin: 56px auto 6px;
  }

  .healing-card {
    grid-template-columns: 82px 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
  }

  .healing-card-media img {
    min-height: 82px;
    border-radius: 8px;
  }

  .healing-card-content h3 {
    font-size: 0.96rem;
    margin-bottom: 6px;
  }

  .healing-card-content p {
    font-size: 12.5px;
    line-height: 1.32;
  }

  .healing-card-content a {
    font-size: 0.86rem;
    padding-top: 8px;
  }
}






/*JSE*/
.lazy-load {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/**********************************/
/*      THE SERVICE       */
/**********************************/
.SB {
  padding: 90px 0;
}

.SB-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.SB-content img {
  width: 100%;
  border-radius: 5px;
  object-fit: fill;
}

.SB-text {
  padding: 50px;
}

.SB-text h1 {
  font-size: 38px;
  font-family: "inter", sans-serif;
  font-weight: 800;
  max-width: 80%;
  color: #300046;
}

.SB-list {
  padding: 40px 0;
}

.SB-list i {
  font-size: 22px;
  margin-right: 10px;
  color: #407400;
}

.SB-list li {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "inter", sans-serif;
  font-weight: 500;
  color: #300046;
}

.SB-text p {
  padding-top: 20px;
  font-size: 18px;
  color: #36014f;
  max-width: 80%;
}
.btn-bh {
  font-size: 20px;
  color: #480169;
  text-decoration: underline;
}

/*SERVICES*/

.serv {
  display: flex;
  margin-top: 90px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: end;
  padding: 70px 0;
}

.serv-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flow-serv {
  padding: 20px;
}

.hl h3 {
  font-size: 24px;
  font-weight: 600;
  color: #422a05;
  max-width: 90%;
      font-family: "Bricolage Grotesque", sans-serif;
}

.hl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.flow-serv p {
  font-size: 18px;
  color: #50350e;
  padding-top: 20px;
        font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.6;
}

.hl i {
  border-radius: 50%;
  background-color: #66420e;
  padding: 10px 17px;
  font-size: px;
  color: #fff;
  margin-right: 10px;
}




.news-section{
    width:min(1400px,92%);
    margin:100px auto;
}

.news-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.news-header h2{
    font-size:clamp(2.2rem,5vw,3.5rem);
    font-weight:400;
    color: #371a01d8;
    max-width: 30%;
    line-height:1;
    letter-spacing:-2px;
}

.news-header a{
    color:#111;
    text-decoration:none;
    border-bottom:1px solid #111;
    padding-bottom:6px;
    font-size:clamp(.95rem,1vw,1.1rem);
}

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

.news-card{
    display:flex;
    flex-direction:column;
}

.news-card img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    border-radius:12px;
}

.news-card.large img{
    aspect-ratio:16/11;
}

.meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin:18px 0;
}

.meta span{
    background:#222;
    color:#fff;
    padding:6px 14px;
    border-radius:100px;
    font-size:.8rem;
}

.meta p{
    color:#666;
    font-size:.9rem;
}

.news-card h3{
    font-size:clamp(1.2rem,2vw,2rem);
    font-weight:400;
    line-height:1.3;
}

/* Tablet */

@media (max-width:991px){

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

    .large{
        grid-column:1/-1;
    }

}

/* Mobil */

@media (max-width:700px){

    .news-section{
        margin:70px auto;
    }

    .news-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .large{
        grid-column:auto;
    }

    .news-header{
        align-items:flex-start;
    }

}

/**********************************/
/*      FOOTER      */
/**********************************/
.lovra-footer{
  background: #291a02;
  color:#fff;
  padding:70px 4vw 28px;
}

.footer-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:70px;
  align-items:start;
}

.footer-brand h2{
  margin:0 0 34px;
  font-size:clamp(2.6rem,5vw,3rem);
  line-height:.95;
  font-weight:400;
  letter-spacing:-.05em;
}

.footer-btn{
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:8px 15px;
  background-color: #f1be6c38;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:1.2rem;
}

.footer-btn:hover {
    background-color: #f1be6c56;


}


.footer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
}

.footer-links h4{
  margin:0 0 24px;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
}

.footer-links a{
  display:flex;
  align-items:center;
  gap:12px;
  color:#f7f1e6;
  text-decoration:none;
  font-size:1.05rem;
  margin-bottom:16px;
}

.footer-card img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  display:block;
  margin-bottom:16px;
}

.footer-card p{
  margin:0;
  font-size:1.05rem;
}

.footer-card span{
  color:rgba(255,255,255,.45);
  margin-left:8px;
}

.footer-newsletter{
  grid-column:2 / 4;
  margin-top:40px;
}

.footer-newsletter h3{
  margin:0 0 10px;
  font-size:2rem;
  font-weight:400;
}

.footer-newsletter p{
  color:rgba(255,255,255,.65);
  max-width:560px;
  line-height:1.6;
}

.footer-newsletter form{
  display:flex;
  gap:16px;
  margin-top:22px;
}

.footer-newsletter input{
  width:min(520px,100%);
  height:58px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  border-radius:8px;
  padding:0 18px;
  color:#fff;
  font-size:1rem;
}

.footer-newsletter button{
  border:0;
  background:#fdf1de;
  color:#2b1b10;
  border-radius:999px;
  padding:0 28px;
  font-size:1rem;
  cursor:pointer;
}

.footer-bottom{
  margin-top:70px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.7);
}

.footer-bottom div{
  display:flex;
  gap:28px;
}

.footer-bottom a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
}

@media(max-width:900px){
  .lovra-footer{
    padding:55px 24px 28px;
  }

  .footer-wrap{
    grid-template-columns:1fr;
    gap:45px;
  }

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

  .footer-newsletter{
    grid-column:auto;
    margin-top:0;
  }

  .footer-newsletter form{
    flex-direction:column;
  }

  .footer-newsletter button{
    height:56px;
  }

  .footer-bottom{
    flex-direction:column;
  }

  .footer-bottom div{
    flex-wrap:wrap;
  }
}

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

  .footer-brand h2{
    font-size:3rem;
  }
}

/**********************************/
/*       ALLE BEHANDLINGER      */
/**********************************/





.lovra-intro-split{
  padding:30px 0;
  padding-bottom: 80px;
 
}

.lovra-intro-wrap{
  width:min(1500px, calc(100% - 80px));
  margin:0 auto;

  display:grid;
  grid-template-columns:2fr 1.2fr;
  gap:100px;
  align-items:start;
}

.lovra-intro-left h2{
  margin:0;
  max-width:620px;

  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.95;
  font-weight:300;
  letter-spacing:-.06em;

  color:#250d00cd;
}

.lovra-intro-right{
  max-width:430px;
}

.lovra-intro-right p{
  margin:0 0 60px;

  font-size:clamp(1.25rem,1.6vw,1.2rem);
  line-height:1.25;
  font-weight:400;

  color:#2f1c02;
}

.lovra-intro-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background: #ab6c0a;
  color:#fff;

  padding:13px 24px;
  border-radius:4px;

  text-decoration:none;
  font-size:1.05rem;
  font-weight:500;

  transition:.3s ease;
}

.lovra-intro-btn span{
  width:46px;
  height:46px;
  margin:-18px 0 -18px -28px;

  display:grid;
  place-items:center;

  background:#744907;
  color:#fff;

  font-size:1.4rem;
}

.lovra-intro-btn:hover{
  background:#4e3104;
}

@media(max-width:900px){
  .lovra-intro-split{
    padding:85px 0;
  }

  .lovra-intro-wrap{
    width:min(100% - 40px, 1500px);
    grid-template-columns:1fr;
    gap:45px;
  }

  .lovra-intro-left h2{
    font-size:clamp(2.6rem,12vw,4rem);
  }

  .lovra-intro-right p{
    margin-bottom:36px;
    font-size:1.2rem;
    line-height:1.45;
  }
}

:root {
  --bg: #0d222f00;
  --card: #000000de;
  --text: #ffffff;
  --muted: #324146;
  --pill: #f2f5f7;
  --btn: rgba(3, 41, 62, 0.069);
  --btn-bd: rgba(1, 28, 34, 0.855);
}

.g-pad {
  margin: 120px 0;
}

.thep {
  padding: 30px 0;
}

.bg-som {
  background-color: #dad7cf;
}

.blog-strip {
  padding: 60px 0;
  margin-top: 60px;
  background-color: #4e3104;
  padding-top: 120px;
  color: #ffffff;
  margin-bottom: 100px;
}

.blog-head {
  max-width: 1360px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  position: relative;
}
.blog-head h1 {
  font-size: 40px;
  font-weight: 400;
         font-family: "Bricolage Grotesque", sans-serif;
         color: #ffebc7;

}
.blog-all {
  color: #ffeac3;
  text-decoration: none;
  opacity: 0.9;
}
.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
}
.blog-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #724605;
  border: 1.5px solid var(--btn-bd);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}

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

/* Scroller */
.blog-scroller {
  max-width: 1390px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(290px, 42%, 620px); /* responsiv kortbredde */
  gap: 20px;
    scrollbar-width: none; /* Firefox */

  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.blog-scroller::-webkit-scrollbar {
  height: 8px;
}
.blog-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* Kort */
.blog-card {
  scroll-snap-align: start;
  background: #fbe1b9;

  color: #4A1F0C;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pill {
  align-self: flex-start;
  font-size: 15px;
  font-weight: 400;
  color: #4A1F0C;
  background: transparent;
  border: 0.5px solid #4A1F0C;
  padding: 5px 14px;

  border-radius: 9px;
}
.blog-card h3 {
  font-size: clamp(18px, 2vw, 19px);
  line-height: 1.25;
  margin-top: 20px;
        font-family: "Bricolage Grotesque", sans-serif;

  color: #4A1F0C;
  font-weight: 400;
}
.media {
  position: relative;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}


.blog-strip {
  padding: 60px 0;
  color: #000000;
}

/* Tittel + lenke + piler (desktop/default) */
.blog-head {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 8px;
  position: relative;
}

.blog-head h1 {
  font-size: 40px;
  font-weight: 500;
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 0;
}

.blog-all {
  color: #fff8e6;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 500;
  white-space: nowrap;
}

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

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

.blog-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffeac840;
  color: #fffdf3;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}

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

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

/* ==============================
   SCROLLER / KORT
   ============================== */

.blog-scroller {
  max-width: 1390px;
  margin: 24px auto 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32%, 420px);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.blog-scroller::-webkit-scrollbar {
  height: 8px;
}

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


.blog-card h3 {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.25;
  margin-top: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #60270f;
  max-width: 80%;
  padding-bottom: 20px;
  font-weight: 500;
}

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

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

.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffdc8a;
  color: #352507;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  transition: 0.2s ease;
}

.hold {
  padding: 20px 10px;
}

.hold h3 {
  padding: 20px 0;
}


.go:hover {
  transform: translateY(-2px);
  background-color: #ceae70;
}

/* ===========================
   RESPONSIVE – NETTBRETT
   =========================== */
/* desktop large */
@media (min-width: 1280px) {
  .blog-scroller {
    grid-auto-columns: minmax(360px, 44%);
  }
}

/* tablet */
@media (max-width: 1024px) {
  .blog-strip {
    padding: 72px 0 60px;
  }

  .blog-head {
    margin-bottom: 22px;
    gap: 16px;
  }

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

  .blog-scroller {
    grid-auto-columns: minmax(300px, 62%);
    gap: 22px;
  }

  .go {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
    border-radius: 18px;
  }

  .blog-card h3 {
    max-width: 92%;
  }
}

/* mobile */
@media (max-width: 768px) {
  .blog-strip {
    padding: 56px 0 48px;
  }

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

  .blog-head-left {
    gap: 10px;
  }

  .blog-head h1 {
    font-size: 2rem;
  }

  .blog-all {
    font-size: 1rem;
  }

  .blog-nav {
    gap: 10px;
  }

  .blog-btn {
    width: 54px;
    height: 54px;
    border-width: 2px;
  }

  .blog-scroller {
    grid-auto-columns: 86%;
    gap: 16px;
    padding: 6px 0 4px;
  }

  .media img {
    aspect-ratio: 16 / 12;
  }

  .go {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    font-size: 1.5rem;
  }

  .hold {
    padding: 18px 16px 22px;
  }

  .pill {
    font-size: 0.92rem;
    padding: 8px 14px;
  }

  .blog-card h3 {
    margin-top: 18px;
    max-width: 100%;
    font-size: 1.25rem;
    line-height: 1.28;
  }
}

/* very small mobile */
@media (max-width: 480px) {
  .blog-strip {
    padding: 48px 0 40px;
  }

  .blog-head h1 {
    font-size: 1.7rem;
  }

  .blog-all {
    font-size: 0.96rem;
  }

  .blog-nav {
    justify-content: flex-start;
  }

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

  .blog-scroller {
    grid-auto-columns: 90%;
    gap: 14px;
  }

  .media img {
    aspect-ratio: 4 / 3;
  }

  .go {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
    border-radius: 14px;
  }

  .hold {
    padding: 16px 14px 20px;
  }

  .pill {
    font-size: 0.88rem;
    padding: 8px 12px;
  }

  .blog-card h3 {
    font-size: 1.12rem;
    line-height: 1.32;
  }
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}

.img-model img {
  width: 100%;
  max-width: 80%;
  margin-bottom: 30px;
  border-radius: 20px;
}



.hero-short {
  height: 40dvh;
}

.hero-behandling {
  padding-top: 50px;
}

.hero-txt h4{
  font-size: 40px;
  color: #241f02;
}

.hero-txt h5 {
  color: #222;
  font-size: 18px;
  max-width: 30%;
  margin-top: 30px;
  font-weight: 400;
  color: #3a2102;
}

.beh-flex {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 10px 10px;

}

.beh-flex.visible {
  opacity: 1;
  transform: translateY(0);
}

.all-beh {
  padding: 30px 0 60px 0;
  padding-bottom: 120px;
}

.cont-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 40px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f9d194;
  color: #4d300a;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
}

.bg-hl {
  padding: 20px;
  height: 100%;
  background-color: #f9d194;
  border-radius: 0 0 10px 10px;
}

.bg-hl h3 {
  font-size: 26px;
  font-weight: 700;
  color: #3e2d0b;
  padding-bottom: 15px;
}

.bg-hl h5 {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffffffc4;
  border-radius: 5px;
  color: #4e300b;
  padding: 5px 17px;
  width: 190px;
  text-align: center;
}

.bg-hl h6 {
  font-size: 16px;
  margin: 10px 0 20px 0;
}

.bg-hl i {
  font-size: 22px;
  color: #6f5003;
  margin-right: 10px;
}

.bt {
  margin: 40px 10px;
}

.bg-hl a {
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  border-bottom: solid #222 0.7px;
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

.bestill-her {
  margin: 20px 0;
  background-color: #422b09;
  max-width: 48%;
  padding: 14px 26px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.bestill-her:hover {
  opacity: 0.9;
}

.bestill-her a {
  color: #fff;
}


@media (max-width: 768px) {
  .cont-all {
    grid-template-columns: 1fr;
  }

  .bestill-her {
  max-width: 50%;
}
}



a.mg-top:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  margin: 60px auto; /* Dette er viktig: gir mellomrom på toppen */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.4s ease;
  line-height: 1.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #999;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #333;
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;
}

.modal-content h3 {
  font-size: 24px;
  margin: 40px 0 20px 0;
  color: #333;
  font-weight: 600;
}

.modal-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.modal-content ul {
  list-style: disc inside;
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  padding-left: 0;
}

.modal-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-content h2 {
    font-size: 26px;
  }
  .modal-content h3 {
    font-size: 20px;
  }
  .modal-content p,
  .modal-content ul {
    font-size: 16px;
  }
}

/**********************************/
/*      OM MEG      */
/**********************************/

/* =========================
   LOVRA ABOUT FAQ SECTION
========================= */

.mar-bot {
  margin-bottom: 80px;
}

.ME {
  padding: 50px 0;
  background-color: #fff6e6f3;
}

.me-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.img-me img {
  width: 100%;
  border-radius: 50%;
  transform: scale(0.8);
  object-fit: cover;
}

.me-text {
  padding-top: 40px;
}

.me-text h3 {
  font-size: 60px;
  padding: 10px 0;
  color: #312107;
}

.me-text h5 {
  font-size: 20px;
  color: #503506df;
}

.me-text p {
  font-size: 18px;
  line-height: 1.3;
  color: #1f1400df;
  margin: 20px 0;
}

.kont-info {
  padding-top: 20px;
}

.flx-kont a {
  margin-right: 20px;
  color: #492f04;
  border: solid #613d02 2px;
  padding: 10px 25px;
  display: inline-block;
  font-size: 18px;
  border-radius: 20px;
}

.beh-txt h1 {
  font-size: 50px;
}

.flx-kont i {
  margin-right: 10px;
}


/* =========================
   CLOSING STATEMENT
========================= */
.closing-statement {
  padding: 110px 0;
}

.closing-statement-wrap {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.closing-statement-label {
  padding-top: 12px;
}

.closing-statement-label p {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  color: #5d3900;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.closing-statement-text h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3rem, 5.6vw, 2.9rem);
  line-height: 0.97;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.closing-statement-text .tone-light {
  color: #725f2e95;
}

.closing-statement-text .tone-dark {
  color: #503a03;
}

/* Tablet */
@media (max-width: 1024px) {
  .closing-statement {
    padding: 90px 0;
  }

  .closing-statement-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .closing-statement-label {
    padding-top: 0;
  }

  .closing-statement-label p {
    font-size: 18px;
  }

  .closing-statement-text h2 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .closing-statement {
    padding: 64px 0;
  }

  .closing-statement-wrap {
    gap: 18px;
  }

  .closing-statement-label p {
    font-size: 16px;
  }

  .closing-statement-text h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .closing-statement {
    padding: 52px 0;
  }

  .closing-statement-label p {
    font-size: 15px;
  }

  .closing-statement-text h2 {
    font-size: 1.95rem;
    line-height: 1.05;
  }
}



/* =========================
   BOOKING SECTION
========================= */
.booking-section {
  position: relative;
  min-height: 80vh;
  padding: 90px 0;
  overflow: hidden;
  background: #120f10;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: url("../img/LHH.jpg") center center / cover no-repeat;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20, 13, 10, 0.35) 0%,
      rgba(20, 13, 10, 0.08) 35%,
      rgba(20, 13, 10, 0.08) 65%,
      rgba(20, 13, 10, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.08) 30%,
      rgba(0, 0, 0, 0.26) 100%
    );
}

.booking-section .container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  padding: 0 28px;
  margin: 0 auto;
}

.booking-card {
  width: min(800px, 100%);
  margin: 0 auto;
  background: #1d1d1f;
  color: #f8f2ee;
  padding: 72px 56px 48px;
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.booking-head {
  text-align: center;
  margin-bottom: 46px;
}

.booking-head h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 3.3rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #f4efea;
}

.booking-head p {
  margin: 20px 0 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
}

.booking-form {
  width: 100%;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 20px;
  margin-bottom: 26px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-bottom: 34px;
}

.form-group label {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.form-group label span {
  color: #ff3b30;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  color: #f2ebe5;
  border: 1px solid rgba(255, 235, 235, 0.536);
  border-radius: 22px;
  outline: none;
  padding: 0 22px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 55px;
}

.form-group textarea {
  min-height: 140px;
  padding: 18px 22px;
  border-radius: 12px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.75) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(225, 187, 194, 0.9);
  box-shadow: 0 0 0 3px rgba(225, 187, 194, 0.12);
}

.booking-btn {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  background: #e4c4ca;
  color: #2a2426;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.booking-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

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

  .booking-card {
    padding: 56px 28px 34px;
  }

  .booking-head {
    margin-bottom: 34px;
  }

  .booking-head h2 {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .booking-head p {
    font-size: 1rem;
  }

  .booking-grid {
    gap: 22px 16px;
  }

  .form-group input,
  .form-group select {
    min-height: 58px;
    font-size: 1rem;
  }

  .form-group textarea {
    font-size: 1rem;
  }

  .booking-btn {
    min-height: 58px;
    font-size: 1rem;
  }
}

