/* ============================================================
   OXHOLM AGENCY — standalone landing page
   ============================================================ */

:root{
  --navy:#182752;
  --navy-deep:#0E2036;
  --ink:#1B2A4A;
  --muted:#5D6B85;
  --muted-2:#7C899F;
  --eyebrow:#8E99B3;
  --blue:#0D6BFA;
  --blue-dark:#0B58CE;
  --blue-soft:#D3E7FE;
  --blue-tint:#EAF2FE;
  --paper:#F3F6FA;
  --paper-2:#EDF2F8;
  --card:#FFFFFF;
  --sand:#FAF6F1;
  --sand-2:#F4EDE3;
  --line:#E4EAF3;

  --r-sm:12px;
  --r-md:16px;
  --r-lg:22px;
  --r-xl:28px;

  --sh-sm:0 2px 8px rgba(20,40,80,.06);
  --sh-md:0 10px 30px rgba(20,40,80,.09);
  --sh-lg:0 22px 60px rgba(20,40,80,.14);

  --maxw:74rem;
  --gutter:clamp(18px,3.4vw,2.4rem);
}

*,*::before,*::after{box-sizing:border-box}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;font-size:clamp(16px,1.12vw,21px)}

body{
  margin:0;
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-size:1rem;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4{margin:0;color:var(--navy);letter-spacing:-.018em;line-height:1.14;font-weight:800}
p{margin:0}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

.container{
  width:100%;
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

/* ---------- shared bits ---------- */

.eyebrow{
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--eyebrow);
  margin-bottom:.55rem;
  line-height:1.5;
}

.sec-sub{color:var(--muted);font-size:.975rem}

.sec-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:24px;
}
.sec-head h2{font-size:clamp(1.7rem,3.3vw,2.25rem);margin-bottom:.4rem}
.sec-head .link-arrow{margin-top:26px}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  color:var(--blue);
  font-weight:700;
  font-size:.95rem;
  white-space:nowrap;
  transition:gap .18s ease;
}
.link-arrow:hover{gap:.85rem}

.ico-arrow{
  width:1.15em;height:1.15em;
  fill:none;stroke:currentColor;stroke-width:1.9;
  stroke-linecap:round;stroke-linejoin:round;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  font-weight:700;
  font-size:1rem;
  border-radius:14px;
  padding:1rem 1.6rem;
  min-height:56px;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn-block{display:flex;width:100%;max-width:26rem}

.btn-primary{
  background:linear-gradient(180deg,#2C81FF 0%,var(--blue) 55%,#0B5FE0 100%);
  color:#fff;
  box-shadow:0 10px 26px rgba(13,107,250,.34),inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(13,107,250,.42),inset 0 1px 0 rgba(255,255,255,.35)}

.btn-ghost{
  background:rgba(255,255,255,.94);
  color:var(--navy);
  border:1.6px solid var(--blue);
  box-shadow:var(--sh-sm);
  line-height:1.25;
}
.btn-ghost:hover{background:#fff;transform:translateY(-2px)}
.btn-ghost .btn-stack{display:flex;flex-direction:column;align-items:center}
.btn-ghost .btn-stack strong{font-size:1.05rem;font-weight:700;letter-spacing:.01em}
.btn-ghost .btn-stack small{font-size:.78rem;font-weight:500;color:var(--muted)}
.ico-phone{width:20px;height:20px;fill:var(--navy);flex:none}

/* price chips */
.price-chips{display:flex;gap:14px;flex-wrap:wrap}
.chip{
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:var(--r-md);
  box-shadow:var(--sh-md);
  padding:.85rem 1.25rem;
  text-align:center;
  min-width:9.4rem;
}
.chip strong{display:block;white-space:nowrap;font-size:1.22rem;font-weight:800;color:var(--navy);letter-spacing:-.02em;line-height:1.3}
.chip span{display:block;font-size:.8rem;color:var(--muted);line-height:1.38;margin-top:.1rem}

/* handwritten notes */
.note{position:absolute;display:block;pointer-events:none}
.hand{
  font-family:"Caveat",cursive;
  font-size:1.35rem;
  font-weight:600;
  color:var(--navy);
  line-height:1.15;
  display:block;
  transform:rotate(-5deg);
}
.note-arrow{
  width:44px;height:52px;
  fill:none;stroke:var(--navy);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(14px);
  border-radius:0 0 var(--r-lg) var(--r-lg);
  box-shadow:0 6px 24px rgba(20,40,80,.07);
  padding-top:env(safe-area-inset-top,0px);
}
.header-inner{
  max-width:var(--maxw);
  margin-inline:auto;
  padding:.85rem var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand-name{
  display:block;
  font-weight:800;
  font-size:1.16rem;
  letter-spacing:.03em;
  color:var(--navy);
  line-height:1.1;
}
.brand-tag{
  display:block;
  font-size:.6rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted-2);
  font-weight:500;
  margin-top:.18rem;
}
.header-right{display:flex;align-items:center;gap:clamp(14px,3vw,34px)}
.lang{display:flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:700}
.lang-link{color:var(--muted-2);padding:.2rem .1rem}
.lang-link.is-alt{color:var(--blue)}
.lang-link.is-active{color:var(--navy)}
.lang-link:hover{color:var(--blue)}
.lang-sep{color:#C7D0DE;font-weight:400}

.burger{
  width:40px;height:34px;
  display:flex;flex-direction:column;justify-content:center;gap:6px;
  padding:0;
}
.burger span{
  display:block;height:2.4px;width:32px;
  background:var(--navy);border-radius:2px;
  transition:transform .25s ease,opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(8.4px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8.4px) rotate(-45deg)}

.mobilnav{
  display:none;
  border-top:1px solid var(--line);
  animation:navIn .22s ease both;
}
.mobilnav.is-open{display:block}
@keyframes navIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.mobilnav a{
  display:block;
  max-width:var(--maxw);
  margin-inline:auto;
  padding:.9rem var(--gutter);
  font-weight:600;
  color:var(--navy);
  border-bottom:1px solid var(--line);
}
.mobilnav a:last-child{border-bottom:0}
.mobilnav .mobilnav-cta{color:var(--blue);font-weight:700}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  isolation:isolate;
  height:clamp(600px,50vw,940px);
  display:flex;
  align-items:center;
  padding:clamp(40px,5vw,62px) 0 clamp(76px,9vw,104px);
  overflow:hidden;
}
/* bottom-anchored so the desk and the devices are never cropped away */
.hero-bg{
  position:absolute;inset:0;z-index:-2;
  background:url("assets/hero_scene.webp") center bottom / cover no-repeat;
}
.hero-veil{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(97deg,rgba(255,255,255,.90) 0%,rgba(255,255,255,.78) 26%,rgba(255,255,255,.34) 44%,rgba(255,255,255,0) 58%),
    linear-gradient(180deg,rgba(255,255,255,.42) 0%,rgba(255,255,255,0) 22%);
}

.hero-inner{position:relative;width:100%}
.hero-copy{max-width:min(54%,34rem)}

.hero-copy h1{
  font-size:clamp(2.2rem,5.6vw,3.45rem);
  line-height:1.06;
  letter-spacing:-.032em;
  margin-bottom:1rem;
}
.hero-lead{
  color:#3E4C68;
  font-size:clamp(1rem,1.5vw,1.075rem);
  line-height:1.6;
  margin-bottom:1.55rem;
  max-width:34ch;
}
.hero-copy .price-chips{margin-bottom:1.15rem}
.hero-copy .btn-block + .btn-block{margin-top:.8rem}

.note-hero{
  top:clamp(18px,4vw,42px);
  right:max(calc(50% - var(--maxw)/2 + var(--gutter)),var(--gutter));
  text-align:left;
  z-index:2;
}
.note-hero .hand{text-shadow:0 1px 10px rgba(255,255,255,.95),0 0 26px rgba(255,255,255,.85)}
.note-hero .note-arrow{filter:drop-shadow(0 0 8px rgba(255,255,255,.95))}
.note-hero .hand{transform:rotate(-8deg);font-size:clamp(1.05rem,1.5vw,1.3rem)}
.note-hero .note-arrow{margin-left:8px;margin-top:2px;transform:rotate(6deg)}

.hero-curve{
  position:absolute;left:0;right:0;bottom:-1px;z-index:1;
  line-height:0;
  pointer-events:none;
}
.hero-curve svg{width:100%;height:clamp(38px,4vw,62px);display:block}
.hero-curve path{fill:#fff}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar{
  background:#fff;
  padding:clamp(4px,1vw,10px) 0 clamp(20px,3vw,30px);
  position:relative;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(12px,2.5vw,28px);
}
.trust-item{
  display:flex;
  align-items:center;
  gap:.85rem;
  font-size:.92rem;
  font-weight:500;
  color:var(--ink);
  line-height:1.3;
  padding-inline:clamp(4px,1.5vw,18px);
  border-right:1px solid var(--line);
}
.trust-item:last-child{border-right:0}
.trust-item .ico{
  width:26px;height:26px;flex:none;
  fill:none;stroke:var(--navy);stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio{
  background:linear-gradient(180deg,#fff 0%,#FBFCFE 40%,var(--paper) 100%);
  padding:clamp(24px,3.4vw,34px) 0 clamp(28px,4vw,44px);
}

.work-rail{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(14px,2vw,22px);
}
.work-card{
  background:#fff;
  border-radius:var(--r-md);
  box-shadow:var(--sh-md);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .2s ease,box-shadow .2s ease;
}
.work-card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}
.work-img{aspect-ratio:16/10;overflow:hidden}
.work-img img{width:100%;height:100%;object-fit:cover}
.work-body{
  padding:.75rem .85rem .85rem;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.6rem;
  flex:1;
}
.work-body h3{font-size:.94rem;font-weight:800;margin-bottom:.15rem}
.work-body p{font-size:.79rem;color:var(--muted);line-height:1.38}
.round-arrow{
  flex:none;
  width:34px;height:34px;
  border-radius:50%;
  background:var(--blue-tint);
  display:grid;place-items:center;
  margin-top:.15rem;
  transition:background .18s ease;
}
.round-arrow svg{
  width:16px;height:16px;
  fill:none;stroke:var(--navy);stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}
.work-card:hover .round-arrow{background:var(--blue-soft)}

.dots{
  display:flex;
  justify-content:center;
  gap:9px;
  margin-top:16px;
}
.dot{
  width:9px;height:9px;border-radius:50%;
  background:#CFE0F6;
  padding:0;
  transition:background .2s ease,transform .2s ease;
}
.dot.is-active{background:var(--blue);transform:scale(1.15)}

/* ---------- curved section edges ---------- */
.curve-top{
  position:absolute;left:0;right:0;top:-1px;z-index:2;
  line-height:0;pointer-events:none;
}
.curve-page{top:auto;bottom:100%;transform:translateY(1px)}
.curve-top svg{width:100%;height:clamp(40px,5vw,78px);display:block}
.curve-white path{fill:var(--paper)}
.curve-page path{fill:#FBFCFE}

/* ============================================================
   PROSESS
   ============================================================ */
.process{
  position:relative;
  isolation:isolate;
  background:linear-gradient(180deg,var(--paper) 0%,#EEF3F9 100%);
  padding:clamp(62px,7.5vw,104px) 0 clamp(28px,4vw,44px);
  overflow:hidden;
}
.process-photo{
  position:absolute;z-index:-1;
  top:0;right:0;bottom:0;
  width:min(40%,520px);
  background:url("assets/09_footer_fjord_background.webp") center/cover no-repeat;
  opacity:.5;
  mask-image:linear-gradient(90deg,transparent 0%,#000 45%),linear-gradient(180deg,transparent 0%,#000 20%,#000 76%,transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 45%),linear-gradient(180deg,transparent 0%,#000 20%,#000 76%,transparent 100%);
  mask-composite:intersect;
  -webkit-mask-composite:source-in;
}
.process::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.9) 58%,rgba(255,255,255,.25) 100%);
  mask-image:linear-gradient(180deg,#000 0%,#000 74%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 74%,transparent 100%);
}
.process-grid{position:relative;display:block;z-index:1}
.process-copy{max-width:47rem}
.process-copy h2{
  font-size:clamp(1.6rem,3.2vw,2.1rem);
  margin-bottom:1.25rem;
  letter-spacing:-.024em;
}

.steps{display:flex;flex-direction:column;gap:1.05rem}
.steps li{
  display:grid;
  grid-template-columns:auto auto minmax(0,1fr);
  align-items:start;
  gap:1rem;
}
.step-num{
  width:42px;height:42px;border-radius:50%;
  background:var(--blue-soft);
  color:var(--blue);
  display:grid;place-items:center;
  font-weight:800;font-size:1.12rem;
  flex:none;
}
.step-ico{
  width:34px;height:34px;
  display:grid;place-items:center;
  margin-top:.25rem;
}
.step-ico svg{
  width:28px;height:28px;
  fill:none;stroke:var(--navy);stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
}
.step-text h3{font-size:1.02rem;font-weight:800;margin-bottom:.25rem}
.step-text p{color:var(--muted);font-size:.93rem;line-height:1.55;max-width:60ch}

.note-process{
  right:2%;
  top:34%;
}
.note-process .hand{font-size:1.5rem;transform:rotate(-7deg)}
.note-process .note-arrow{width:56px;height:48px;margin-top:8px;transform:rotate(-4deg)}

/* ============================================================
   TO VEIER
   ============================================================ */
.paths{
  background:linear-gradient(180deg,#EEF3F9 0%,#EAF0F8 100%);
  padding:clamp(4px,1.4vw,12px) 0 clamp(24px,3.4vw,38px);
}
.paths-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(16px,2.4vw,26px);
}
.path-card{
  position:relative;
  border-radius:var(--r-xl);
  padding:clamp(20px,2.6vw,1.7rem);
  overflow:hidden;
  box-shadow:var(--sh-md);
  min-height:15.2rem;
  display:flex;
}
.path-blue{background:linear-gradient(140deg,#F5F9FE 0%,#E8F1FC 100%)}
.path-sand{background:linear-gradient(140deg,#FCF8F3 0%,#F3E9DC 100%)}
.path-copy{position:relative;z-index:2;max-width:min(54%,18rem)}
.path-copy h3{
  font-size:clamp(1.25rem,2.3vw,1.6rem);
  line-height:1.16;
  margin-bottom:.8rem;
}
.path-copy > p{color:var(--muted);font-size:.92rem;line-height:1.55;margin-bottom:1rem}
.path-visual{
  position:absolute;
  right:3%;
  top:50%;
  transform:translateY(-50%);
  width:min(40%,14.8rem);
  z-index:1;
  pointer-events:none;
}
.blob{
  position:absolute;
  inset:-26% -18% -22% -24%;
  border-radius:52% 48% 56% 44% / 46% 56% 44% 54%;
}
.blob-blue{background:radial-gradient(70% 70% at 40% 40%,rgba(197,220,248,.85),rgba(216,232,251,.35) 70%,transparent 100%)}
.blob-sand{background:radial-gradient(70% 70% at 45% 45%,rgba(238,222,199,.9),rgba(244,233,217,.45) 70%,transparent 100%)}

.laptop-img{
  position:relative;
  width:100%;
  filter:drop-shadow(0 16px 30px rgba(16,36,70,.22));
}

/* bar chart drawn as SVG */
.bars{position:relative;width:100%;height:auto;display:block}
.bars rect{fill:url(#barfill)}
.bars rect:nth-child(1){fill:#E3E9F1}
.bars rect:nth-child(2){fill:#C9D9EF}
.bars rect:nth-child(3){fill:#B4CDEB}
.bars rect:nth-child(4){fill:#9DBDE4}
.bars rect:nth-child(5){fill:#86ADDD}

/* ============================================================
   PRIS
   ============================================================ */
.pricing{
  position:relative;
  isolation:isolate;
  background:linear-gradient(180deg,#EAF0F8 0%,#E9EFF7 100%);
  padding:clamp(24px,3.4vw,36px) 0 clamp(74px,9vw,124px);
  overflow:hidden;
}
.pricing-photo{
  position:absolute;z-index:-1;
  left:0;right:0;bottom:0;
  height:58%;
  background:url("assets/01_hero_fjord_workspace_background.webp") center 60% / cover no-repeat;
  opacity:.55;
  mask-image:linear-gradient(180deg,transparent 0%,#000 48%,#000 84%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 48%,#000 84%,transparent 100%);
}

.pricing-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.62fr) minmax(0,.82fr);
  gap:clamp(16px,2.4vw,26px);
  align-items:start;
}
.pricing-card{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.85);
  border-radius:var(--r-xl);
  box-shadow:var(--sh-md);
  padding:clamp(22px,3vw,30px);
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(0,1fr);
  gap:clamp(18px,3vw,28px);
  align-items:center;
}
.pricing-left h2{font-size:clamp(1.35rem,2.6vw,1.8rem);margin-bottom:.6rem;line-height:1.16}
.pricing-right .price-chips{margin-bottom:1rem;flex-wrap:nowrap;gap:10px}
.pricing-right .chip{flex:1;min-width:0;padding:.8rem .7rem;box-shadow:var(--sh-sm)}
.pricing-right .chip strong{font-size:1.12rem}
.pricing-right .chip span{font-size:.7rem;white-space:nowrap}
.pricing-right .btn-block{max-width:none}

.included{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.85);
  border-radius:var(--r-xl);
  box-shadow:var(--sh-md);
  padding:clamp(20px,2.6vw,26px);
}
.included h3{font-size:1rem;font-weight:800;margin-bottom:.6rem}
.included li{
  position:relative;
  padding-left:2rem;
  font-size:.9rem;
  color:var(--ink);
  line-height:1.45;
  margin-bottom:.2rem;
}
.included li::before{
  content:"";
  position:absolute;left:0;top:.28em;
  width:16px;height:16px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D6BFA' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12.8 9.2 18 20 6.4'/></svg>") center/contain no-repeat;
}

/* ============================================================
   OM
   ============================================================ */
.about{
  position:relative;
  background:linear-gradient(180deg,#FBFCFE 0%,#FDFDFE 40%,#fff 100%);
  padding:clamp(24px,3.6vw,40px) 0 clamp(14px,2vw,22px);
}
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.12fr);
  gap:clamp(20px,3vw,40px);
  align-items:end;
}
.about-copy h2{font-size:clamp(1.6rem,3.2vw,2.15rem);margin-bottom:.8rem;line-height:1.13}
.about-copy > p{color:var(--muted);font-size:.97rem;line-height:1.62;max-width:44ch}
.about-copy p.signature{
  font-family:"Herr Von Muellerhoff","Mrs Saint Delafield",cursive;
  font-size:3.2rem;
  line-height:1;
  color:var(--navy);
  margin-top:1.4rem;
}
.about-copy p.signature-role{
  font-size:.82rem;
  color:var(--muted);
  margin-top:.35rem;
  letter-spacing:.01em;
}

.about-visual{position:relative;padding-right:clamp(0px,10vw,150px)}
.portrait{
  width:100%;
  aspect-ratio:1/1.08;
  object-fit:cover;
  object-position:50% 6%;
  border-radius:var(--r-xl);
  box-shadow:0 26px 60px rgba(16,36,70,.16);
  /* blød bund, så kortet ikke ender i en hård kant */
  mask-image:linear-gradient(180deg,#000 0%,#000 84%,rgba(0,0,0,.35) 96%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 84%,rgba(0,0,0,.35) 96%,transparent 100%);
}
.bubble{
  position:absolute;
  top:2%;
  right:0;
  background:#F2F6FB;
  border-radius:18px 18px 18px 6px;
  padding:.75rem 1.1rem;
  box-shadow:var(--sh-sm);
  max-width:13.8rem;
}
.bubble .hand{font-size:1.2rem;transform:rotate(-4deg);text-align:center}

.contact-card{
  position:absolute;
  right:0;
  bottom:6%;
  background:#fff;
  border-radius:var(--r-md);
  box-shadow:var(--sh-lg);
  padding:1.1rem 1.25rem;
  min-width:15.6rem;
}
.contact-card h3{font-size:.98rem;font-weight:800;margin-bottom:.7rem}
.contact-card li{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-size:.88rem;
  color:var(--ink);
  margin-bottom:.5rem;
}
.contact-card li:last-child{margin-bottom:0}
.contact-card a:hover{color:var(--blue)}
.contact-card .ico{
  width:19px;height:19px;flex:none;
  fill:none;stroke:var(--navy);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ============================================================
   DERFOR
   ============================================================ */
.why{
  background:#fff;
  padding:clamp(20px,3vw,32px) 0 clamp(24px,3.4vw,38px);
  position:relative;
}
.why h2{font-size:clamp(1.6rem,3.2vw,2.1rem);margin-bottom:1.35rem}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(14px,2.2vw,26px);
}
.why-item{display:flex;align-items:flex-start;gap:.9rem}
.why-ico{
  flex:none;
  width:52px;height:52px;
  border-radius:50%;
  background:var(--blue-tint);
  display:grid;place-items:center;
}
.why-ico svg{
  width:25px;height:25px;
  fill:none;stroke:var(--navy);stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
}
.why-item h3{font-size:.95rem;font-weight:800;margin-bottom:.3rem;line-height:1.2}
.why-item p{font-size:.83rem;color:var(--muted);line-height:1.42}

/* ============================================================
   FAQ
   ============================================================ */
.faq{
  position:relative;
  background:linear-gradient(180deg,#fff 0%,#F4F8FC 100%);
  padding:clamp(18px,2.6vw,28px) 0 clamp(30px,4.4vw,48px);
}
.faq .sec-head h2{margin-bottom:0}
.accordion{display:flex;flex-direction:column;gap:9px}
.accordion details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-sm);
  box-shadow:var(--sh-sm);
  overflow:hidden;
}
.accordion summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.8rem 1.1rem;
  font-weight:600;
  font-size:.94rem;
  color:var(--navy);
  min-height:48px;
}
.accordion summary::-webkit-details-marker{display:none}
.chev{
  width:20px;height:20px;flex:none;
  fill:none;stroke:var(--navy);stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
  transition:transform .25s ease;
}
.accordion details[open] .chev{transform:rotate(180deg)}
.acc-body{padding:0 1.1rem 1rem}
.acc-body p{color:var(--muted);font-size:.92rem;line-height:1.6;max-width:72ch}

/* ============================================================
   CTA
   ============================================================ */
.cta{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:clamp(30px,4.4vw,48px) 0 clamp(64px,8.5vw,104px);
}
.cta-bg{
  position:absolute;inset:0;z-index:-1;
  background:url("assets/09_footer_fjord_background.webp") center 30% / cover no-repeat;
}
.cta-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(255,255,255,.88) 0%,rgba(255,255,255,.62) 34%,rgba(255,255,255,.12) 62%,rgba(255,255,255,0) 100%);
}
.cta-inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
  gap:clamp(20px,3vw,40px);
  align-items:center;
}
.cta-eyebrow{
  font-size:.92rem;
  color:#42536F;
  font-weight:500;
  margin-bottom:.3rem;
}
.cta-copy h2{font-size:clamp(1.6rem,3.4vw,2.2rem);margin-bottom:.7rem}
.cta-sub{color:#3E4C68;font-size:.94rem;line-height:1.55;max-width:56ch}
.cta-action{position:relative;display:flex;justify-content:flex-start}
.cta-action .btn{width:100%;max-width:25rem}
.note-cta{
  right:-8px;
  top:-72px;
  text-align:right;
}
.note-cta .hand{font-size:1.35rem;transform:rotate(-7deg)}
.note-cta .note-arrow{width:56px;height:46px;margin-left:auto;margin-top:2px;transform:rotate(12deg) scaleX(-1)}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  position:relative;
  background:var(--navy-deep);
  color:#C6D2E2;
  padding:0 0 calc(.9rem + env(safe-area-inset-bottom,0px));
  margin-top:-1px;
}
.footer-wave{
  position:absolute;left:0;right:0;top:-1px;
  transform:translateY(-99%);
  line-height:0;
  pointer-events:none;
}
.footer-wave svg{width:100%;height:clamp(40px,6vw,80px);display:block}
.footer-wave path{fill:var(--navy-deep)}

.footer-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr 1.3fr 1.4fr auto;
  gap:clamp(20px,3vw,36px);
  padding-top:clamp(20px,2.8vw,30px);
  padding-bottom:clamp(14px,2vw,20px);
}
.footer-brand .brand-name{color:#fff;font-size:.98rem;letter-spacing:.05em;margin-bottom:.45rem}
.footer-brand p{font-size:.84rem;line-height:1.6;color:#9FB0C7}
.footer-col h4{color:#fff;font-size:.82rem;font-weight:600;margin-bottom:.5rem}
.footer-col li{margin-bottom:.3rem}
.footer-col a,.footer-col span{font-size:.84rem;color:#9FB0C7}
.footer-col a:hover{color:#fff}
.footer-contact li{display:flex;align-items:center;gap:.6rem}
.footer-contact .ico{
  width:17px;height:17px;flex:none;
  fill:none;stroke:#7E92AE;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
}
.footer-lang{display:flex;align-items:center;gap:.5rem;font-size:.82rem;font-weight:700}
.footer-lang .lang-link{color:#8397B1}
.footer-lang .lang-link.is-alt{color:#6EA8FF}
.footer-lang .lang-link.is-active{color:#fff}
.footer-lang .lang-sep{color:#44566E}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:.75rem;
  font-size:.73rem;
  color:#7E92AE;
}
.footer-claim{display:inline-flex;align-items:center;gap:.6rem}
.ico-mtn{
  width:46px;height:19px;
  fill:none;stroke:#6E82A0;stroke-width:1.5;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ============================================================
   FOCUS / MOTION
   ============================================================ */
a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:3px solid var(--blue);
  outline-offset:3px;
  border-radius:6px;
}
.site-footer a:focus-visible,.cta a:focus-visible{outline-color:#7FB4FF}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .hero-copy{max-width:min(64%,34rem)}
  .hero-lead{max-width:40ch}

  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{grid-template-columns:1fr}

  .about-grid{grid-template-columns:1fr;gap:34px;align-items:start}
  /* uden plads ude i siden ville boblen lande oven i hovedet —
     så den stables over billedet i stedet */
  .about-visual{
    padding-right:0;
    max-width:35rem;
    display:flex;
    flex-direction:column;
  }
  .bubble{
    position:static;
    order:-1;
    align-self:flex-end;
    margin-bottom:12px;
    max-width:none;
    width:max-content;
  }
  .bubble .hand{transform:rotate(-3deg)}
  .contact-card{position:static;margin-top:-30px;min-width:0}

  .note-process{position:static;display:flex;align-items:center;gap:14px;margin-top:26px}
  .note-process .note-arrow{transform:rotate(-100deg);margin-top:0}
}

@media (max-width:900px){
  .hero{
    height:auto;
    min-height:0;
    align-items:flex-start;
    padding-bottom:calc(clamp(228px,50vw,320px) + 18px);
    background:linear-gradient(180deg,#F8FBFD 0%,#EFF4FA 100%);
  }
  .hero-copy{max-width:none}
  /* the scene becomes a band under the copy instead of a backdrop behind it */
  .hero-bg{
    top:auto;bottom:0;
    height:clamp(228px,50vw,320px);
    background-position:center bottom;
  }
  .hero-veil{
    top:auto;bottom:0;
    height:clamp(228px,50vw,320px);
    background:linear-gradient(180deg,#EFF4FA 0%,rgba(239,244,250,.6) 20%,rgba(239,244,250,0) 44%);
  }
  .note-hero{
    top:auto;bottom:clamp(120px,28vw,185px);
    left:var(--gutter);right:auto;
    padding:6px 10px 8px;
  }
  .note-hero .note-arrow{transform:scaleX(-1) rotate(-14deg)}

  .work-rail{
    grid-template-columns:none;
    grid-auto-flow:column;
    grid-auto-columns:78%;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:14px;
    padding-bottom:6px;
    scrollbar-width:none;
  }
  .work-rail::-webkit-scrollbar{display:none}
  .work-card{scroll-snap-align:center}

  .why-grid{grid-template-columns:repeat(2,1fr);row-gap:22px}
  .paths-grid{grid-template-columns:1fr}
  .path-copy{max-width:64%}

  .footer-grid{grid-template-columns:1fr 1fr;row-gap:28px}
  .footer-lang{grid-column:1 / -1}
}

@media (max-width:760px){
  .trust-grid{grid-template-columns:repeat(2,1fr);row-gap:18px}
  .trust-item:nth-child(2n){border-right:0}
  .trust-item{font-size:.86rem}

  .cta-inner{grid-template-columns:1fr;gap:26px}
  .cta-action{flex-direction:column;align-items:stretch;gap:14px}
  .cta-action .btn{max-width:none}
  .note-cta{
    position:static;order:-1;
    display:flex;align-items:center;justify-content:flex-end;gap:12px;
  }
  .note-cta .hand{white-space:nowrap}
  .note-cta .note-arrow{margin-left:0;margin-top:0;transform:rotate(30deg) scaleX(-1)}
}

@media (max-width:620px){
  .sec-head{flex-direction:column;gap:10px}
  .sec-head .link-arrow{margin-top:0}

  .brand-tag{display:none}
  .brand-name{font-size:1.02rem;white-space:nowrap}
  .header-inner{gap:12px}
  .lang{font-size:.78rem;gap:.35rem}
  .pricing-right .chip span{white-space:normal;font-size:.75rem}
  .hero-copy h1{font-size:clamp(2rem,9vw,2.6rem)}
  .price-chips{gap:10px}
  .chip{flex:1;min-width:132px;padding:.75rem .85rem}
  .chip strong{font-size:1.05rem}
  .btn-block{max-width:none}
  .note-hero{display:flex;align-items:flex-start;gap:6px}
  .note-hero .hand{font-size:1rem}
  .note-hero .note-arrow{width:24px;height:30px;margin-left:0;flex:none}

  .work-rail{grid-auto-columns:86%}

  .steps li{grid-template-columns:auto minmax(0,1fr);row-gap:.3rem}
  .step-ico{display:none}

  .path-card{min-height:0;padding-bottom:172px}
  .path-copy{max-width:none}
  .path-visual{
    position:absolute;
    right:6%;bottom:16px;top:auto;
    transform:none;
    width:54%;
  }
  .path-sand .path-visual{right:8%;bottom:16px;width:50%}

  .pricing-right .price-chips{flex-wrap:wrap}

  .why-grid{grid-template-columns:1fr;row-gap:18px}
  .about-copy p.signature{font-size:2.6rem}

  .footer-grid{grid-template-columns:1fr;row-gap:24px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:10px}
}

/* ============================================================
   TILFØJET: sprogversioner, ændringsside og formular
   ============================================================ */

.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:#fff;color:var(--navy);font-weight:700;
  padding:.8rem 1.2rem;border-radius:0 0 12px 0;
  box-shadow:var(--sh-md);
}
.skip-link:focus{left:0}

/* genvej til ændringssiden i headeren */
.header-changes{
  font-size:.82rem;
  font-weight:700;
  color:var(--navy);
  padding:.45rem .85rem;
  border:1.4px solid var(--line);
  border-radius:999px;
  white-space:nowrap;
  transition:border-color .18s ease,color .18s ease,background .18s ease;
}
.header-changes:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-tint)}

/* betingelser under prisen */
.price-terms{
  margin-top:.7rem;
  font-size:.78rem;
  line-height:1.5;
  color:var(--muted-2);
  max-width:40ch;
}

/* "ikke med i prisen" i samme kort */
.included .excl-h{
  margin-top:1rem;
  padding-top:.85rem;
  border-top:1px solid var(--line);
  font-size:.92rem;
}
.included .excl li{color:var(--muted-2)}
.included .excl li::before{
  background:none;
  content:"–";
  left:.35rem;top:0;
  width:auto;height:auto;
  color:#AFBACD;font-weight:700;
}
.excl-note{
  margin-top:.7rem;
  font-size:.78rem;
  line-height:1.5;
  color:var(--muted-2);
}

/* ---------- undersider ---------- */
.page{background:linear-gradient(180deg,#fff 0%,var(--paper) 100%)}

.page-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:clamp(40px,5vw,70px) 0 clamp(72px,8vw,110px);
}
.page-hero-bg{
  position:absolute;inset:0;z-index:-1;
  background:url("assets/09_footer_fjord_background.webp") center 34% / cover no-repeat;
}
.page-hero-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(255,255,255,.93) 0%,rgba(255,255,255,.8) 40%,rgba(255,255,255,.4) 72%,rgba(255,255,255,.2) 100%);
}
.page-hero-inner{position:relative;max-width:var(--maxw)}
.page-hero h1{
  font-size:clamp(1.9rem,4.2vw,3rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:.9rem;
}
.page-lead{
  color:#3E4C68;
  font-size:clamp(1rem,1.3vw,1.1rem);
  line-height:1.6;
  max-width:46ch;
  margin-bottom:1.3rem;
}
.btn-inline{display:inline-flex;width:auto}

.changes{padding:0 0 clamp(44px,6vw,80px)}
.changes-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(0,.9fr);
  gap:clamp(18px,2.6vw,30px);
  align-items:start;
  position:relative;
  z-index:3;
  margin-top:calc(-1 * clamp(20px,2.6vw,38px));
}

.form-card{
  background:#fff;
  border-radius:var(--r-xl);
  box-shadow:var(--sh-lg);
  padding:clamp(22px,3vw,34px);
}
.form-card h2{font-size:clamp(1.25rem,2.2vw,1.6rem);margin-bottom:1.2rem}

.field{margin-bottom:1rem;display:flex;flex-direction:column}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.field label{
  font-size:.85rem;
  font-weight:700;
  color:var(--navy);
  margin-bottom:.35rem;
}
.field .opt{font-weight:500;color:var(--muted-2)}
.field input,
.field select,
.field textarea{
  font:inherit;
  font-size:.95rem;
  color:var(--ink);
  background:#FBFCFE;
  border:1.5px solid var(--line);
  border-radius:12px;
  padding:.75rem .9rem;
  min-height:48px;
  width:100%;
  transition:border-color .16s ease,background .16s ease,box-shadow .16s ease;
}
.field textarea{min-height:130px;resize:vertical;line-height:1.55}
.field select{appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23182752' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9.5 6 6 6-6'/></svg>");
  background-repeat:no-repeat;
  background-position:right .85rem center;
  background-size:18px;
  padding-right:2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  background:#fff;
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(13,107,250,.14);
}
.field input:user-invalid,
.field textarea:user-invalid{border-color:#D8452F;background:#FEF7F6}

.form-card .btn-block{max-width:none;margin-top:.4rem}
.form-note{
  margin-top:.7rem;
  font-size:.8rem;
  line-height:1.5;
  color:var(--muted-2);
}
.form-note .link-arrow{font-size:.8rem}

.changes-side{display:flex;flex-direction:column;gap:clamp(14px,2vw,20px)}
.fast-card{
  background:linear-gradient(140deg,#F5F9FE 0%,#E8F1FC 100%);
  border-radius:var(--r-xl);
  padding:clamp(18px,2.4vw,24px);
}
.fast-card h3{font-size:1rem;margin-bottom:.5rem}
.fast-card p{font-size:.88rem;line-height:1.55;color:var(--muted)}

.back-link{margin-top:clamp(20px,3vw,32px)}

@media (max-width:900px){
  .changes-grid{grid-template-columns:1fr;margin-top:calc(-1 * clamp(24px,4vw,40px))}
  .header-changes{display:none}
}
@media (max-width:620px){
  .field-row{grid-template-columns:1fr;gap:0}
}

/* honeypot — skal være usynligt for mennesker, synligt for robotter */
.hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}

/* ---------- formularens status og kvittering ---------- */
.form-status{
  margin-top:.8rem;
  font-size:.88rem;
  line-height:1.5;
  padding:.7rem .9rem;
  border-radius:10px;
}
.form-status.is-error{
  color:#8E2718;
  background:#FDF2F0;
  border:1px solid #F3C9C1;
}
.field-error{
  margin-top:.35rem;
  font-size:.8rem;
  color:#B5341F;
}
.field [aria-invalid="true"]{border-color:#D8452F;background:#FEF7F6}

.form-done{text-align:center}
.form-done h2{margin-bottom:.6rem}
.form-done p{color:var(--muted);font-size:.95rem;line-height:1.6;max-width:44ch;margin-inline:auto}
.form-done .btn{margin-top:1.2rem}
.done-ico{
  width:52px;height:52px;margin:0 auto .9rem;
  display:block;
  fill:none;stroke:var(--blue);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ---------- samtykke-boksen ---------- */
.consent{
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  margin:.4rem 0 1.1rem;
  font-size:.85rem;
  line-height:1.5;
  color:var(--muted);
  cursor:pointer;
}
.consent input{
  flex:none;
  width:20px;height:20px;
  margin-top:.12rem;
  accent-color:var(--blue);
  cursor:pointer;
}
.consent [aria-invalid="true"]{outline:2px solid #D8452F;outline-offset:2px}

/* prischips i det smalle sidepanel skal stables pænt */
.included .price-chips{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-bottom:.4rem;
}
.included .chip{
  min-width:0;
  text-align:left;
  padding:.65rem .85rem;
  box-shadow:var(--sh-sm);
  border:1px solid var(--line);
}
.included .chip strong{font-size:1.05rem}
.included .chip span{font-size:.75rem}

/* eksempelkortene er links — de skal se og opføre sig som det */
a.work-card{color:inherit;text-decoration:none}
a.work-card:focus-visible{outline:3px solid var(--blue);outline-offset:3px}
