:root{
  --ink:#19332f;
  --sand:#f4efe4;
  --cream:#fbf8f1;
  --earth:#8a6a4a;
  --sage:#71866d;
  --white:#fffdf8;
  --line:rgba(25,51,47,.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}


/* =========================
   NAVIGATION
   ========================= */

.nav{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:100px;
  padding:18px 6vw;
  background:rgba(251,248,241,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.brand{
  font-weight:800;
  letter-spacing:.02em;
  font-size:1.15rem;
}

.brand span{
  font-weight:400;
}

.brand img{
  height:90px;
  width:auto;
  display:block;
}

.navlinks{
  display:flex;
  gap:28px;
  font-size:.95rem;
}

.navlinks a:hover{
  opacity:.6;
}


/* Burger menu - skjult på computer */

.menu-toggle{
  display:none;
  background:none;
  border:0;
  color:var(--ink);
  font-size:2rem;
  padding:5px;
  cursor:pointer;
}


/* =========================
   HERO
   ========================= */

.hero{
  min-height:65vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding:50px 6vw;
  background:
    linear-gradient(rgba(25,51,47,.25),rgba(25,51,47,.35)),
    url("hero.jpg") center center / cover no-repeat;
  color:white;
}

.hero-inner{
  max-width:900px;
}

.logo-placeholder{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:116px;
  height:116px;
  border:2px solid rgba(255,255,255,.8);
  border-radius:50%;
  margin-bottom:28px;
  font-weight:800;
  font-size:.95rem;
  letter-spacing:.08em;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.78rem;
  font-weight:700;
}

h1{
  font-size:clamp(2.5rem,5.5vw,4.5rem);
  line-height:.95;
  margin:18px 0;
}

.hero p{
  font-size:clamp(1.05rem,2vw,1.35rem);
  max-width:720px;
  margin:0 auto 30px;
}


/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-block;
  padding:13px 22px;
  border-radius:999px;
  background:white;
  color:var(--ink);
  font-weight:700;
  margin:5px;
}

.btn.alt{
  background:transparent;
  color:white;
  border:1px solid rgba(255,255,255,.7);
}


/* =========================
   SECTIONS
   ========================= */

.section{
  padding:70px 6vw;
}

.story-section-three{
  padding-bottom:20px;
}

.narrow{
  max-width:1050px;
  margin:auto;
}

.center{
  text-align:center;
}

.section h2{
  font-size:clamp(1.4rem,2.3vw,1.9rem);
  line-height:1.1;
  margin:10px 0 18px;
}

.lead{
  font-size:1.15rem;
  max-width:720px;
}
.center .lead{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

/* =========================
   CARDS
   ========================= */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:42px auto 0;
  max-width:900px;
}

.card{
  background:var(--white);
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  min-height:170px;
}

.card .icon{
  font-size:1.8rem;
}

.card h3{
  margin:10px 0 5px;
}

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


/* =========================
   SOCIALS
   ========================= */

.socials{
  background:var(--sand);
  scroll-margin-top:90px;
  margin-top:35px;
  margin-left:-6vw;
  margin-right:-6vw;
  padding-left:6vw;
  padding-right:6vw;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:35px;
}

.social{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:8px 16px 8px 10px;
  border-radius:999px;
  background:var(--white);
  border:1px solid var(--line);
  font-weight:700;
  text-align:left;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.social:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 22px rgba(25,51,47,.12);
}

.social-icon{
  width:38px;
  height:38px;
  min-width:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
}

.social-icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}

.social-text{
  line-height:1.15;
}



/* YouTube */

.social.youtube .social-icon{
  background:#ff0000;
  color:white;
}


/* Instagram */

.social.instagram .social-icon{
  background:linear-gradient(
    135deg,
    #833ab4,
    #fd1d1d,
    #fcb045
  );
  color:white;
}


/* TikTok */

.social.tiktok .social-icon{
  background:#111;
  color:white;
  position:relative;
}

.social.tiktok .social-icon::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  box-shadow:-2px 2px 0 #25f4ee, 2px -2px 0 #fe2c55;
  opacity:.75;
}


/* Facebook */

.social.facebook .social-icon{
  background:#1877f2;
  color:white;
}

/* =========================
   QUOTE
   ========================= */

.quote{
  font-size:clamp(1.5rem,3vw,2.5rem);
  line-height:1.25;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  font-weight:500;
}


/* =========================
   PAGE HERO
   ========================= */

.page-hero{
  padding:50px 6vw 30px;
  background:var(--sand);
}

.page-hero .narrow{
  max-width:1000px;
}

.page-hero h1{
  font-size:clamp(2.6rem,6vw,5rem);
  color:var(--ink);
  margin:12px 0;
}

.page-hero p{
  max-width:720px;
  font-size:1.2rem;
}


/* =========================
   STORY
   ========================= */

.story{
  display:grid;
  gap:55px;
  align-items:center;
}


/* =========================
   WHO WE ARE
   Text left / Image right
   ========================= */

.story-who{
  grid-template-columns:1.15fr .85fr;
}


/* =========================
   WHY WE DO THIS
   Image left / Text right
   ========================= */

.story-why{
  grid-template-columns:.85fr 1.15fr;
}


/* =========================
   OUR STORY I
   Text left / Image right
   ========================= */

.story-one{
  grid-template-columns:1.15fr .85fr;
}

.story-two{
  grid-template-columns:.85fr 1.15fr;
}

.story-three{
  grid-template-columns:1.15fr .85fr;
}


/* =========================
   STORY IMAGES
   ========================= */

.story-image-one{
  width:120%;
  height:auto;
  display:block;
  border-radius:28px;
}

.story-image-two{
  width:100%;
  height:auto;
  display:block;
  border-radius:28px;
  margin:0 auto;
}

.story-image-three{
  width:120%;
  height:auto;
  display:block;
  border-radius:28px;
  margin:0 auto;
}


/* =========================
   CONTACT
   ========================= */

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:45px;
}

.contact-card{
  padding:30px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:22px;
}

form{
  display:grid;
  gap:15px;
}

label{
  font-weight:700;
  font-size:.9rem;
}

input,
textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  font:inherit;
  color:var(--ink);
}

textarea{
  min-height:150px;
  resize:vertical;
}

button{
  border:0;
  border-radius:999px;
  padding:14px 22px;
  background:var(--ink);
  color:white;
  font-weight:700;
  font:inherit;
  cursor:pointer;
}


/* =========================
   FOOTER
   ========================= */

.footer{
  padding:28px 6vw;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:.85rem;
  opacity:.75;
}


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

@media(max-width:800px){

  /* Navigation */

  .nav{
    justify-content:space-between;
    gap:0;
    padding:12px 5vw;
  }

  .brand img{
    height:60px;
  }

  /* Vis burger-knappen */

  .menu-toggle{
    display:block;
  }

  /* Skjul menuen som udgangspunkt */

  .navlinks{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    gap:0;
    background:rgba(251,248,241,.98);
    border-bottom:1px solid var(--line);
    padding:10px 5vw 15px;
    font-size:1rem;
  }

  /* Når burger-menuen åbnes */

  .navlinks.open{
    display:flex;
  }

  .navlinks a{
    padding:12px 0;
    border-bottom:1px solid var(--line);
  }

  .navlinks a:last-child{
    border-bottom:0;
  }


  /* Mobile layout */

  .grid,.story,.contact-grid{
  grid-template-columns:1fr
}

.social-grid{
  grid-template-columns:auto auto;
  justify-content:center;
}
  .section{
    padding:65px 5vw;
  }

  .hero{
    min-height:72vh;
    padding:70px 5vw;
  }

  .footer{
    flex-direction:column;
  }
  
  .story-image-one,
  .story-image-two,
  .story-image-three{
    max-width:100%;
  }
}