:root{
  --cream:#E4DDD6;
  --cream-dark:#CCB19F;
  --sage:#B5A38C;
  --sage-dark:#8A7A5C;
  --terracotta:#A0916F;
  --terracotta-dark:#897857;
  --dusty:#C4A991;
  --dusty-dark:#A88F73;
  --brown:#2B2420;
  --brown-soft:#5C5347;
  --white:#F9F5F4;
  --placeholder:#F1DFC9;
  --placeholder-border:#D9B98A;
  --radius:24px;
  --radius-sm:14px;
  --shadow:0 10px 30px rgba(62,51,42,0.08);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Marcellus', serif;
  color:var(--brown);
  background:var(--cream);
  line-height:1.6;
  font-weight:400;
}
h1,h2,h3,h4{
  font-family:'Libre Caslon Text', serif;
  font-weight:400;
  line-height:1.15;
  color:var(--brown);
}
a{color:inherit;text-decoration:none;}
strong,b{font-family:'Libre Caslon Text', serif;font-weight:700;}
img{max-width:100%;display:block;}
.container{
  max-width:1080px;
  margin:0 auto;
  padding:0 24px;
}
.placeholder{
  background:var(--placeholder);
  border:1px dashed var(--placeholder-border);
  border-radius:10px;
  padding:14px 16px;
  font-size:14px;
  color:var(--brown-soft);
  font-style:italic;
}
.placeholder strong{font-style:normal;color:var(--terracotta-dark);}

/* NAV */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,242,234,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(62,51,42,0.06);
}
nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.logo{
  font-family:'Marcellus', serif;
  font-size:20px;
  letter-spacing:0.5px;
  font-weight:400;
}
.logo span{color:var(--sage-dark);}
.brand-mark{font-family:'Marcellus', serif;font-weight:400;}
.brand-accent{color:var(--sage-dark);}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
  list-style:none;
  font-size:15px;
}
.nav-links a:not(.nav-cta){
  padding:6px 0;
  border-bottom:2px solid transparent;
  transition:border-color .2s;
}
.nav-links a:hover{border-color:var(--sage);}
.nav-cta{
  background:var(--terracotta);
  color:var(--white);
  padding:12px 28px;
  border-radius:999px;
  font-size:14px;
  font-weight:400;
  white-space:nowrap;
  transition:background .2s;
  line-height:1.4;
  display:inline-block;
}
.nav-cta:hover{background:var(--terracotta-dark);}
.nav-toggle{display:none;background:none;border:none;font-size:26px;cursor:pointer;color:var(--brown);}

@media (max-width:820px){
  .nav-links{
    position:absolute;
    top:100%;
    left:0;right:0;
    background:var(--cream);
    flex-direction:column;
    gap:0;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    border-bottom:1px solid rgba(62,51,42,0.06);
  }
  .nav-links.open{max-height:500px;padding:10px 24px 20px;}
  .nav-links li{width:100%;}
  .nav-links a:not(.nav-cta){display:block;padding:12px 0;}
  .nav-links .nav-cta{display:inline-block;margin:8px 0 4px;}
  .nav-toggle{display:block;}
}

/* HERO */
.hero{
  padding:80px 0 90px;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  background:var(--cream-dark);
  color:var(--white);
  padding:6px 16px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:0.5px;
  margin-bottom:22px;
  font-weight:400;
}
.hero h1{
  font-size:44px;
  margin-bottom:10px;
}
.hero .role{
  font-size:15px;
  color:var(--sage-dark);
  font-weight:400;
  margin-bottom:22px;
}
.hero p.lead{
  font-size:17px;
  color:var(--brown-soft);
  max-width:480px;
  margin-bottom:30px;
}
.btn-row{display:flex;gap:14px;flex-wrap:wrap;}
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:999px;
  font-size:15px;
  font-weight:400;
  transition:all .2s;
}
.btn-primary{
  background:var(--terracotta);
  color:var(--white);
}
.btn-primary:hover{background:var(--terracotta-dark);}
.btn-secondary{
  background:transparent;
  color:var(--brown);
  border:1.5px solid rgba(62,51,42,0.25);
}
.btn-secondary:hover{border-color:var(--brown);}
.hero-photo-wrap{
  position:relative;
}
.hero-photo{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-photo-badge{
  position:absolute;
  bottom:-20px;
  left:-20px;
  background:var(--white);
  padding:16px 22px;
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow);
  font-size:14px;
  max-width:220px;
}
.hero-photo-badge strong{
  display:block;
  font-family:'Libre Caslon Text', serif;
  font-size:22px;
  color:var(--dusty-dark);
}

@media (max-width:820px){
  .hero-inner{grid-template-columns:1fr;gap:40px;}
  .hero{padding:50px 0 60px;}
  .hero h1{font-size:34px;}
  .hero-photo-wrap{order:-1;max-width:280px;margin:0 auto;}
  .hero-photo-badge{
    position:static;
    max-width:none;
    width:fit-content;
    margin:14px auto 0;
    text-align:center;
  }
  .hero .role{white-space:normal;font-size:14px;}
}

/* SUBPAGE HERO (no photo, centered) */
.subhero{
  padding:60px 0 20px;
  text-align:center;
}
.subhero .back-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:fit-content;
  margin:0 auto 28px;
  font-size:14px;
  color:var(--sage-dark);
  font-weight:400;
}
.subhero .back-link:hover{color:var(--brown);}
.subhero h1{
  font-size:38px;
  max-width:720px;
  margin:0 auto 16px;
}
.subhero .lead{
  font-size:17px;
  color:var(--brown-soft);
  max-width:640px;
  margin:0 auto 28px;
}
.subhero h1.h1-tight{font-size:29px;max-width:900px;white-space:nowrap;}
@media (max-width:820px){
  .subhero h1{font-size:28px;}
  .subhero h1.h1-tight{white-space:normal;font-size:24px;max-width:100%;}
}
.subhero-split{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
  text-align:left;
  margin-top:8px;
}
.subhero-split h1{font-size:32px;margin:0 0 16px;max-width:none;white-space:normal;}
.subhero-split .lead{margin:0 0 28px;max-width:none;}
.subhero-split .btn-row{justify-content:flex-start;}
.subhero-split .about-photo{margin:0;}
@media (max-width:820px){
  .subhero-split{grid-template-columns:1fr;text-align:center;gap:30px;}
  .subhero-split .btn-row{justify-content:center;}
  .subhero-split h1{font-size:clamp(15px, 5.2vw, 26px);white-space:nowrap;}
  .subhero-split .about-photo{order:-1;max-width:280px;margin:0 auto;}
}

/* SECTION GENERIC */
section{padding:80px 0;}
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 50px;
}
.section-head .eyebrow{margin-bottom:16px;}
.section-head h2{font-size:32px;margin-bottom:14px;}
.section-head p{color:var(--brown-soft);font-size:16px;}
.metode-head{max-width:760px;}
.metode-head h2{font-size:26px;white-space:nowrap;}
@media (max-width:820px){
  .metode-head h2{white-space:normal;font-size:24px;}
}

/* HOOK BAND */
.hook-band{
  background:var(--terracotta);
  padding:64px 0;
}
.hook-quote{
  max-width:920px;
  margin:0 auto;
  text-align:center;
  font-family:'Libre Caslon Text', serif;
  font-style:italic;
  font-size:17px;
  line-height:1.5;
  color:var(--white);
}
@media (max-width:820px){
  .hook-band{padding:48px 0;}
  .hook-quote{font-size:15px;}
}

/* ABOUT */
.about{background:var(--white);}
.about-inner{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:56px;
  align-items:center;
}
.about-photo{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-photo img{aspect-ratio:1/1;object-fit:cover;}
.about-text h2{font-size:30px;margin-bottom:18px;}
.about-text p{color:var(--brown-soft);margin-bottom:16px;}
.about-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}
.about-tags span{
  background:var(--cream-dark);
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  color:var(--white);
  font-weight:400;
}
.pull-quote{
  border-left:3px solid var(--dusty);
  padding:4px 0 4px 22px;
  margin:24px 0;
  font-family:'Libre Caslon Text', serif;
  font-style:italic;
  font-size:17px;
  color:var(--brown);
  line-height:1.5;
}
.diplom-grid{grid-template-columns:220px 1fr;}
@media (max-width:820px){
  .about-inner{grid-template-columns:1fr;}
  .about-tags{justify-content:center;}
  .diplom-grid{grid-template-columns:1fr;}
}

/* BENEFITS / WORK LIST (checkmark lists) */
.benefits{background:var(--cream-dark);}
.benefits-list, .work-list{
  list-style:none;
  max-width:640px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.benefits-list li, .work-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:var(--white);
  padding:16px 20px;
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow);
  font-size:15px;
  color:var(--brown-soft);
}
.benefits-list .check, .work-list .check{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--sage-dark);
  color:var(--white);
  font-size:13px;
  flex-shrink:0;
  margin-top:1px;
}
.work-list.on-white li{box-shadow:none;border:1px solid rgba(62,51,42,0.08);}

/* INFO STRIP (stat highlights, e.g. "6 mødegange · 2 timer · 6-8 unge") */
.info-strip{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin:0 auto 6px;
}
.info-pill{
  background:var(--white);
  border-radius:999px;
  padding:12px 24px;
  box-shadow:var(--shadow);
  font-size:14.5px;
  font-weight:400;
  color:var(--brown);
}
.info-pill strong{color:var(--terracotta-dark);}

/* DIPLOM / HIGHLIGHT BOX */
.highlight-box{
  background:var(--white);
  border-radius:var(--radius);
  padding:40px 36px;
  box-shadow:var(--shadow);
  max-width:900px;
  margin:0 auto;
}
.highlight-box h3{font-size:22px;margin-bottom:14px;}
.highlight-box p{color:var(--brown-soft);margin-bottom:14px;}
.highlight-box p:last-child{margin-bottom:0;}

/* PARENT NOTE */
#foraeldre{padding-bottom:20px;}
.parent-note{
  max-width:680px;
  margin:0 auto;
  text-align:center;
}
.parent-note p{
  color:var(--brown-soft);
  font-size:17px;
  margin-top:8px;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 28px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.service-card .num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border-radius:50%;
  background:var(--dusty);
  color:var(--white);
  font-family:'Libre Caslon Text',serif;
  font-size:16px;
  margin-bottom:18px;
}
.service-card h3{font-size:19px;margin-bottom:10px;}
.service-card p{font-size:14.5px;color:var(--brown-soft);}
.service-card ul{margin-top:12px;padding-left:18px;color:var(--brown-soft);font-size:14.5px;}
.service-card li{margin-bottom:4px;}
.service-card .card-link{
  margin-top:20px;
  font-size:14px;
  font-weight:400;
  color:var(--terracotta-dark);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.service-card .card-link:hover{color:var(--brown);}
.services-grid.grid-4{grid-template-columns:repeat(2,1fr);}
@media (max-width:820px){
  .services-grid{grid-template-columns:1fr;}
  .services-grid.grid-4{grid-template-columns:1fr;}
}

/* PHOTO BLOCKS */
.photo-row{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.photo-card{
  max-width:260px;
  width:100%;
}
.photo-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:block;
}
.photo-caption{
  text-align:center;
  font-size:14px;
  color:var(--brown-soft);
  margin-top:12px;
}

/* VIDEO */
.video-section{background:var(--white);}
.video-row{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}
.video-wrap{
  max-width:340px;
  width:100%;
  margin:0 auto;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--cream-dark);
}
.video-caption{
  text-align:center;
  font-size:14px;
  color:var(--brown-soft);
  margin-top:12px;
}
.video-wrap video{
  display:block;
  width:100%;
  aspect-ratio:9/16;
  object-fit:cover;
  background:var(--cream-dark);
}

/* TESTIMONIALS */
.testimonials{background:var(--cream-dark);}
.testimonials .eyebrow{background:var(--terracotta);}
.t-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.t-card{
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:26px 24px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.t-card .quote-mark{
  font-family:'Libre Caslon Text',serif;
  font-size:38px;
  color:var(--dusty);
  line-height:1;
}
.t-card p{font-size:14.5px;color:var(--brown-soft);flex-grow:1;}
.t-meta{
  display:flex;
  align-items:center;
  gap:10px;
  padding-top:8px;
  border-top:1px solid var(--cream-dark);
}
.t-avatar{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--sage-dark);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:'Libre Caslon Text',serif;
  font-size:15px;
  flex-shrink:0;
  overflow:hidden;
  position:relative;
}
.t-avatar img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.t-avatar-fallback{
  display:none;
  align-items:center;justify-content:center;
  width:100%;height:100%;
}
.t-name{font-family:'Libre Caslon Text', serif;font-size:14px;font-weight:700;color:var(--brown);}
.t-context{font-size:12.5px;color:var(--sage-dark);}
.t-extra{display:none;}
.t-extra.show{display:grid;}
.show-more-wrap{text-align:center;margin-top:30px;}
#showMoreBtn{
  background:transparent;
  border:1.5px solid var(--brown);
  padding:12px 28px;
  border-radius:999px;
  font-size:14px;
  font-weight:400;
  cursor:pointer;
  font-family:'Marcellus',serif;
  transition:all .2s;
}
#showMoreBtn:hover{background:var(--brown);color:var(--white);}
@media (max-width:820px){
  .t-grid{grid-template-columns:1fr;}
}

/* CONTACT */
#kontakt{padding-top:20px;}
.contact{
  background:var(--cream-dark);
  color:var(--brown);
  text-align:center;
  border-radius:var(--radius);
  margin:0 24px;
  max-width:1032px;
  margin-left:auto;
  margin-right:auto;
  padding:70px 30px;
}
.contact h2{color:var(--brown);font-size:32px;margin-bottom:16px;}
.contact p{color:var(--brown-soft);max-width:520px;margin:0 auto 30px;}
.contact .btn-primary{
  background:var(--terracotta);
}
.contact-details{
  display:flex;
  justify-content:center;
  gap:36px;
  flex-wrap:wrap;
  margin-top:34px;
  font-size:14.5px;
  color:var(--brown-soft);
}
.contact-details a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  padding:10px 20px;
  border-radius:999px;
  color:var(--brown);
  font-weight:400;
  box-shadow:var(--shadow);
  transition:background .2s;
}
.contact-details a:hover{background:var(--white);opacity:0.85;}

footer{
  text-align:center;
  padding:36px 24px;
  font-size:13px;
  color:var(--brown-soft);
}
