/* ============================================
   VERBA — brand tokens
   ============================================ */
:root{
  --orange: #f7931d;
  --orange-light: #f1c386;
  --grey-light: #e7e7e7;
  --dark: #231e20;
  --white: #ffffff;

  --font-heading: 'IBM Plex Serif', Georgia, serif;
  --font-body: 'IBM Plex Sans', Arial, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;

  --shadow: 0 20px 50px -20px rgba(35,30,32,0.25);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif{
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--dark);
}

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3{ font-size: 1.25rem; margin-bottom: .35em; }

p{ margin: 0 0 1em; }
a{ color: inherit; }

img, svg{ display:block; max-width:100%; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section{
  position: relative;
  padding: 96px 0;
}
.section--tight{ padding: 64px 0; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.lede{
  font-size: 1.15rem;
  color: #514b4c;
  max-width: 640px;
}

.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ============================================
   Bilingual content — both languages are real DOM text.
   JS only toggles which one is visible (html[data-lang]);
   nothing is generated or injected, so both DA and EN exist
   in the raw HTML source for crawlers/AI tools to read.
   ============================================ */
html[data-lang="da"] [data-i18n="en"]{ display:none; }
html[data-lang="en"] [data-i18n="da"]{ display:none; }

/* ============================================
   Buttons
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(247,147,29,0.65);
}
.btn--primary:hover{ background:#e6830f; box-shadow: 0 18px 36px -12px rgba(247,147,29,0.75); }

.btn--ghost{
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--ghost:hover{ background: var(--dark); color: var(--white); }

.btn--on-dark{
  background: var(--orange);
  color: var(--dark);
}

.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35,30,32,0.08);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.nav__logo{ height: 34px; width: auto; }
.nav__links{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
  font-weight: 600;
  font-size: .98rem;
}
.nav__links a{ text-decoration:none; position:relative; padding: 4px 0; }
.nav__links a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height:2px; background:var(--orange);
  transform: scaleX(0); transform-origin:left;
  transition: transform .2s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after{ transform: scaleX(1); }

.nav__right{ display:flex; align-items:center; gap: 18px; }

.lang-toggle{
  display: inline-flex;
  border: 1.5px solid var(--dark);
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  font-size: .82rem;
}
.lang-toggle button{
  border: none;
  background: transparent;
  padding: 7px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--dark);
  transition: background .15s ease, color .15s ease;
}
.lang-toggle button.is-active{ background: var(--dark); color: var(--white); }

.nav__toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 40px; height: 40px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav__toggle span{ width:22px; height:2px; background:var(--dark); display:block; }

/* ============================================
   Decorative motif — recurring swoosh line
   ============================================ */
.swoosh-divider{
  width: 100%;
  height: 60px;
  margin: 0 auto;
  opacity: .55;
}
.swoosh-divider path{ fill:none; stroke:var(--orange); stroke-width:3; stroke-linecap:round; }

.blob{
  position:absolute;
  border-radius:50%;
  filter: blur(60px);
  z-index:0;
  pointer-events:none;
}

/* ============================================
   Hero
   ============================================ */
.hero{
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}
.hero .blob--1{ width:520px; height:520px; background:var(--orange-light); opacity:.55; top:-220px; right:-160px; }
.hero .blob--2{ width:360px; height:360px; background:var(--grey-light); opacity:.7; bottom:-180px; left:-140px; }

.hero__inner{ position:relative; z-index:1; max-width: 760px; }
.hero__cta-row{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top: 30px; }
.hero__microcopy{ font-size:.92rem; color:#6b6465; margin-top:14px; }

.hero__mark{
  position:absolute;
  right: -60px;
  bottom: -40px;
  width: 380px;
  opacity: .9;
  z-index:0;
}

/* ============================================
   Stat + why section
   ============================================ */
.why-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items:center;
}
@media (max-width: 860px){ .why-grid{ grid-template-columns: 1fr; } }

.stat-card{
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow:hidden;
}
.stat-card__number{
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  color: var(--orange);
  line-height:1;
  margin-bottom: 6px;
}
.stat-card__label{ font-weight:600; max-width: 320px; }
.stat-card__tag{
  display:inline-block;
  background:var(--dark);
  color:var(--white);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.05em;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom: 20px;
}
.stat-card__source{ font-size:.82rem; color:#6b6465; margin-top:20px; font-style:italic; }

/* ============================================
   Cards grid ("what we do")
   ============================================ */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 980px){ .cards{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }

.card{
  background: var(--white);
  border: 1.5px solid rgba(35,30,32,0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card p{ font-size: .95rem; }
.card p:last-child{ margin-bottom: 0; }
.card p.card__more{ color:#6b6465; font-size:.88rem; }

.icon-circle{
  width: 52px; height:52px;
  border-radius:50%;
  background: var(--orange-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.icon-circle svg{ width:26px; height:26px; stroke:var(--dark); }

/* ============================================
   Value / "what you get" checklist
   ============================================ */
.check-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-top: 40px;
  max-width: 900px;
  margin-left:auto; margin-right:auto;
  list-style:none;
  padding:0;
}
@media (max-width: 700px){ .check-list{ grid-template-columns: 1fr; } }
.check-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-weight: 600;
}
.check-list__icon{
  flex-shrink:0;
  width: 26px; height:26px;
  border-radius:50%;
  background: var(--orange);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  margin-top: 2px;
}
.check-list__icon svg{ width:14px; height:14px; stroke:var(--white); }

/* ============================================
   Process / steps
   ============================================ */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 860px){ .steps{ grid-template-columns: 1fr; } }

.step{ position:relative; padding-left: 0; }
.step__num{
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--orange-light);
  line-height:1;
  margin-bottom: 10px;
}

.section--dark{
  background: var(--dark);
  color: var(--white);
}
.section--dark h1, .section--dark h2, .section--dark h3{ color: var(--white); }
.section--dark .lede{ color: #cfc9ca; }

/* ============================================
   Final CTA band
   ============================================ */
.cta-band{
  position: relative;
  overflow:hidden;
  border-radius: 28px;
  padding: 70px 50px;
  text-align:center;
}
.cta-band .blob--1{ width:420px; height:420px; background:var(--orange); opacity:.35; top:-200px; left:-120px; }
.cta-band .blob--2{ width:300px; height:300px; background:var(--orange); opacity:.25; bottom:-160px; right:-100px; }
.cta-band__inner{ position:relative; z-index:1; max-width:640px; margin:0 auto; }

/* ============================================
   Footer
   ============================================ */
.site-footer{
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo{ width: 150px; margin-bottom: 14px; }
.footer-col h4{
  font-family: var(--font-body);
  font-size:.82rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer-col p, .footer-col a{
  color: #d8d3d4;
  text-decoration:none;
  font-size:.95rem;
  margin: 0 0 6px;
  display:block;
}
.footer-col a:hover{ color: var(--orange); }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding-top: 24px;
  font-size:.82rem;
  color:#a49d9e;
}

/* ============================================
   Reveal-on-scroll
   Note: [data-reveal] elements are visible by default.
   JS opts them into the hidden starting state (.reveal-init)
   only once it has confirmed it can also reveal them again —
   so a JS failure never leaves content permanently invisible.
   ============================================ */
.reveal-init{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-init.is-visible{ opacity:1; transform:none; }

/* ============================================
   Contact page
   ============================================ */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:start;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

.form-field{ margin-bottom: 20px; }
.form-field label{
  display:block;
  font-weight:700;
  font-size:.88rem;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea{
  width:100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(35,30,32,0.2);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247,147,29,0.15);
}
.form-field textarea{ min-height: 140px; resize: vertical; }
.form-note{ font-size:.85rem; color:#6b6465; margin-top: 4px; }

.info-panel{
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 36px;
}
.info-panel h3{ margin-bottom: 18px; }
.info-panel p{ margin-bottom: 4px; }
.info-panel .info-block{ margin-bottom: 24px; }
.info-panel a{ text-decoration:none; font-weight:600; }
.info-panel a:hover{ color: var(--orange); }

/* ============================================
   Utility
   ============================================ */
.visually-hidden{
  position:absolute; width:1px; height:1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

/* ============================================
   Illustration tiles (How it works — principles)
   ============================================ */
.principle-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 980px){ .principle-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .principle-grid{ grid-template-columns: 1fr; } }

.illustration-tile__art{
  width: 92px; height: 92px;
  border-radius: 24px;
  background: var(--orange-light);
  display:flex; align-items:center; justify-content:center;
  position: relative;
  margin-bottom: 22px;
}
.illustration-tile__art svg{ width: 46px; height: 46px; stroke: var(--dark); }
.illustration-tile__art::after{
  content:"";
  position:absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  top: -6px; right: -6px;
}

/* ============================================
   Phase timeline (How it works — process)
   ============================================ */
.phase-timeline{
  position: relative;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 860px){ .phase-timeline{ grid-template-columns: 1fr; gap: 40px; } }

.phase-timeline::before{
  content:"";
  position:absolute;
  top: 43px; left: 6%; right: 6%;
  height: 2px;
  background-image: linear-gradient(to right, var(--orange-light) 0 10px, transparent 10px 18px);
  background-size: 18px 2px;
  background-repeat: repeat-x;
}
@media (max-width: 860px){ .phase-timeline::before{ display:none; } }

.phase-item{ position:relative; }
.phase-item__num{
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.phase-item__num svg{ stroke: var(--orange); }

/* ============================================
   Privacy policy section (contact page)
   ============================================ */
.privacy-section{
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(35,30,32,0.12);
  font-size: .92rem;
  color: #514b4c;
}
.privacy-section h3{ color: var(--dark); margin-bottom: 14px; }
.privacy-section h4{ font-size: 1rem; color: var(--dark); margin: 20px 0 6px; }
.privacy-section p{ margin-bottom: 10px; }
.privacy-section ol{ margin: 0 0 14px; padding-left: 22px; }
.privacy-section li{ margin-bottom: 4px; }

.form-field--checkbox{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: .86rem;
  color:#514b4c;
  margin: 18px 0;
}
.form-field--checkbox input{ margin-top: 4px; flex-shrink:0; }
.form-field--checkbox a{ color: var(--dark); text-decoration: underline; }

/* ============================================
   Team grid (About us)
   ============================================ */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 860px){ .team-grid{ grid-template-columns: 1fr; max-width: 360px; margin-left:auto; margin-right:auto; } }

.team-card{ text-align:center; }
.team-card__photo{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: var(--grey-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
  overflow:hidden;
}
.team-card__photo svg{ width: 46%; height: 46%; stroke: var(--dark); opacity:.5; }
.team-card__name{ font-family: var(--font-heading); font-weight:600; font-size:1.1rem; margin-bottom:2px; }
.team-card__role{ font-size:.88rem; color:#6b6465; }

.office-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 760px){ .office-grid{ grid-template-columns:1fr; } }
.office-card{
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 30px;
}
.office-card h3{ margin-bottom: 6px; }
.office-card p{ margin-bottom: 2px; color:#514b4c; }

/* ============================================
   FAQ
   ============================================ */
.faq-list{
  max-width: 760px;
  margin: 50px auto 0;
}
.faq-item{
  padding: 26px 0;
  border-bottom: 1px solid rgba(35,30,32,0.12);
}
.faq-item:first-child{ padding-top: 0; }
.faq-item h3{ font-size: 1.1rem; margin-bottom: 8px; }
.faq-item p{ color:#514b4c; margin-bottom:0; }

@media (max-width: 760px){
  .nav__links, .nav__right .lang-toggle{ display:none; }
  .nav__toggle{ display:flex; }
  body.nav-open .nav__links{
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background: var(--white);
    padding: 24px 28px;
    border-top: 1px solid rgba(35,30,32,0.08);
    gap: 18px;
  }
  body.nav-open .nav__right .lang-toggle{ display:inline-flex; }
  body.nav-open .nav__right{ position:absolute; top:calc(100% + 190px); left:28px; }
  .section{ padding: 64px 0; }
}
