/* ===== Insecta Veto — design system ===== */
:root {
  --ink: #14110d;
  --ink-soft: #3a352d;
  --cream: #f7f1e7;
  --sand: #efe6d5;
  --sand-line: #e3d7c1;
  --paper: #fffdf9;
  --green: #2f7a55;
  --green-dark: #235f42;
  --green-tint: #e7f0ea;
  --coral: #e14b63;
  --coral-dark: #c53a52;
  --muted: #6b6459;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20,17,13,.06), 0 4px 14px rgba(20,17,13,.06);
  --shadow-md: 0 10px 30px rgba(20,17,13,.10);
  --maxw: 1140px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* så ankerlenker ikke havner under den faste headeren */
  -webkit-text-size-adjust: 100%; /* hindrer at iOS blåser opp teksten ved rotasjon */
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* sikkerhetsnett mot horisontal scroll fra dekor-elementer */
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 .8rem;
}
.accent { color: var(--coral); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .7rem 1.3rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 18px rgba(225,75,99,.30); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 8px 24px rgba(225,75,99,.38); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(20,17,13,.22); }
.btn-ghost:hover { background: rgba(20,17,13,.05); }
.btn-phone { background: var(--green); color: #fff; padding: .5rem 1rem; }
.btn-phone:hover { background: var(--green-dark); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18,15,11,.96);
  backdrop-filter: blur(10px);
  color: #f7f1e7;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: #f7f1e7; }
.brand-logo { height: 40px; width: auto; display: block; }
.footer-logo { height: 42px; width: auto; display: block; margin-bottom: .8rem; }
.footer-logo-link { display: inline-block; transition: opacity .2s ease; }
.footer-logo-link:hover { opacity: .8; }
.brand-mark { color: var(--coral); display: inline-flex; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; font-style: italic; letter-spacing: .01em; }
.brand-veto { color: var(--coral); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-list a { text-decoration: none; color: #e8e0d2; font-weight: 500; font-size: .96rem; transition: color .2s; }
.nav-list a:hover { color: #fff; }
.nav-cta a { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 30px; height: 3px; background: #f7f1e7; border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero (forfinet todelt – aktiv) ===== */
.hero--classic { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); }
.hero--classic::before {
  content: ""; position: absolute; top: -18%; left: -6%; width: 540px; height: 540px; z-index: 0;
  background: radial-gradient(circle, rgba(47,122,85,.12), transparent 70%); pointer-events: none;
}
.hero--classic .hero-inner { position: relative; z-index: 1; max-width: 1220px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.2rem; align-items: center; padding: clamp(3rem, 7vw, 5.5rem) 22px; }
.hero--classic h1 { margin-bottom: .5rem; }
.hero--classic .hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.9rem; }
.eyebrow--pill { display: inline-flex; align-items: center; background: var(--green-tint); color: var(--green-dark); padding: .42rem .9rem; border-radius: 999px; margin-bottom: 1.1rem; }

.hero--classic .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.hero-accent {
  position: absolute; z-index: 0; width: 94%; max-width: 540px; aspect-ratio: 1.32 / 1;
  right: -1%; top: 9%; background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 30px 30px 60px 30px; transform: rotate(3deg); opacity: .16;
}
.hero-photo {
  position: relative; z-index: 1; margin: 0; width: 100%; max-width: 600px;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); border: 7px solid var(--paper);
}
.hero-photo img { width: 100%; height: 452px; object-fit: cover; object-position: 50% 42%; display: block; }
.hero-chip {
  position: absolute; z-index: 2; top: 3%; left: -1%;
  display: inline-flex; align-items: center; gap: .4rem; background: var(--green); color: #fff;
  font-weight: 600; font-size: .82rem; padding: .45rem .85rem; border-radius: 999px; box-shadow: var(--shadow-md);
}
.hero-card {
  position: absolute; z-index: 2; left: -16px; bottom: -18px; display: flex; flex-direction: column;
  text-decoration: none; background: var(--paper); border: 1px solid var(--sand-line);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-md); max-width: 252px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(20,17,13,.16); }
.hero-card-top { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink-soft); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-card-num { font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; color: var(--ink); margin: .35rem 0 .15rem; }
.hero-card-sub { font-size: .86rem; color: var(--muted); }

/* ===== Hero (oppsett 1: fullbredde med overlay) ===== */
.hero--immersive { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); }
.hero--immersive .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero--immersive .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 40%; display: block; }
.hero--immersive::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(16,14,10,.92) 0%, rgba(16,14,10,.78) 34%, rgba(16,14,10,.35) 62%, rgba(16,14,10,.12) 100%),
    linear-gradient(0deg, rgba(16,14,10,.55) 0%, rgba(16,14,10,0) 45%);
}
.hero--immersive .hero-inner {
  display: flex; align-items: center;
  min-height: min(86vh, 760px); padding: clamp(3.5rem, 8vh, 7rem) 22px;
}
.hero--immersive .hero-copy { max-width: 640px; color: #fff; }
.hero--immersive h1 { color: #fff; margin-bottom: .6rem; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.eyebrow--light { color: #8fdcb1; }
.hero--immersive .hero-lead { font-size: 1.18rem; color: rgba(255,255,255,.9); max-width: 44ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.hero-badges .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: .5rem; }
.hero-badges--light { color: rgba(255,255,255,.92); }
.hero-badges--light .dot { background: #8fdcb1; }

/* glass phone button + hotline pill */
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.22); }
.hero-hotline {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.8rem; text-decoration: none;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); padding: .7rem 1.2rem; border-radius: 999px; color: #fff;
  transition: background .2s ease;
}
.hero-hotline:hover { background: rgba(255,255,255,.18); }
.hero-hotline-label { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.75); }
.hero-hotline-num { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(225,75,99,.6); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(225,75,99,.5); } 70% { box-shadow: 0 0 0 12px rgba(225,75,99,0); } 100% { box-shadow: 0 0 0 0 rgba(225,75,99,0); } }
/* ===== Hero (oppsett 3: delt med mørkt panel) ===== */
.hero--split { display: grid; grid-template-columns: 1.02fr .98fr; min-height: min(84vh, 720px); background: var(--ink); }
.hero-split-panel {
  background: var(--ink); color: #fff; display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) max(22px, calc((100vw - 1140px) / 2));
}
.hero-split-inner { max-width: 540px; }
.hero-split-panel h1 { color: #fff; margin-bottom: .6rem; }
.hero-split-panel .hero-lead { font-size: 1.16rem; color: rgba(255,255,255,.85); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-split-photo { position: relative; overflow: hidden; }
.hero-split-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; display: block; }
.hero-phoneline {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.9rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16); text-decoration: none; color: #fff;
}
.hpl-label { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7); }
.hpl-num { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }

/* ===== Hero (oppsett 2: sentrert, redaksjonelt) ===== */
.hero--centered { background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%); text-align: center; padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero-top { max-width: 780px; margin: 0 auto; padding: 0 22px 2.6rem; }
.hero--centered h1 { margin-bottom: .6rem; }
.hero--centered .hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; margin: 0 auto 1.8rem; }
.hero--centered .hero-actions { justify-content: center; }
.hero--centered .hero-badges { justify-content: center; color: var(--ink-soft); }

.hero-band-wrap { position: relative; max-width: 1040px; margin: 0 auto; padding: 0 22px clamp(3rem, 6vw, 5rem); }
.hero-band { margin: 0; border-radius: calc(var(--radius) + 6px); overflow: hidden; box-shadow: var(--shadow-md); border: 8px solid var(--paper); }
.hero-band img { width: 100%; height: clamp(280px, 42vw, 460px); object-fit: cover; object-position: 60% 42%; display: block; }
.hero-card--float {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: .75rem; text-decoration: none;
  background: var(--paper); border: 1px solid var(--sand-line); border-radius: 999px;
  padding: .75rem 1.4rem; box-shadow: var(--shadow-md); white-space: nowrap;
}
.hcf-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.hcf-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; color: var(--muted); }
.hcf-num { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); }

@media (max-width: 820px) {
  .hero--split { grid-template-columns: 1fr; min-height: 0; }
  .hero-split-photo { order: -1; height: 300px; }
  .hero-split-panel { padding: clamp(2rem, 7vw, 3rem) 22px; }
  .hero-split-inner { max-width: 100%; }
  .hero--immersive .hero-bg img { object-position: 68% 32%; }
  .hero--immersive::before {
    background:
      linear-gradient(180deg, rgba(16,14,10,.72) 0%, rgba(16,14,10,.55) 40%, rgba(16,14,10,.82) 100%);
  }
  .hero--immersive .hero-inner { min-height: 78vh; }
}

/* ===== Trust bar ===== */
.trustbar { background: var(--ink); color: var(--cream); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 22px; text-align: center; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.trust-item span { font-size: .85rem; color: #c7bfb0; }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--paper); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--paper); border: 1px solid var(--sand-line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  min-width: 0; overflow-wrap: break-word; /* hindrer at lange ord sprenger kolonnen og gjør kortene ulike brede */
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 1.1rem;
  background: var(--green); color: #fff;
}
.card-icon svg { width: 34px; height: 34px; }
.card-icon img { width: 42px; height: 42px; display: block; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: center; }
.about-copy p { color: var(--ink-soft); }
.about-side { display: flex; flex-direction: column; gap: 1.4rem; }
.about-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 200px; object-fit: cover; display: block; }
.about-list { list-style: none; padding: 1.8rem; margin: 0; background: var(--green-tint); border-radius: var(--radius); }
.about-list li { display: flex; gap: .7rem; padding: .6rem 0; font-weight: 500; color: var(--ink); border-bottom: 1px solid rgba(47,122,85,.14); }
.about-list li:last-child { border-bottom: 0; }
.check { color: var(--green); font-weight: 700; }

/* ===== Goodnature ===== */
.goodnature { background: var(--ink); color: var(--cream); }
.goodnature .eyebrow { color: #7fd0a6; }
.goodnature h2 { color: #fff; }
.goodnature-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.goodnature-copy p { color: #d8d0c2; }
.goodnature-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.gn-photo {
  margin: 0; width: 100%; max-width: 340px; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-md);
}
.gn-photo img { width: 100%; height: auto; display: block; }
.gn-badge {
  position: absolute; top: 30px; right: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--green-dark); font-weight: 600; font-size: .85rem;
  padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--shadow-md);
}
.gn-badge svg { color: var(--green); }

/* ===== Steps ===== */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--cream); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 1.6rem; position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--coral); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: .8rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--paper); border: 1px solid var(--sand-line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.5rem; color: var(--green);
  transition: transform .2s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--green); }
.faq-body { padding: 0 1.3rem 1.2rem; }
.faq-body p { margin: 0; color: var(--ink-soft); }
.faq-body a { color: var(--green); font-weight: 600; }

/* ===== Coverage ===== */
.coverage { background: var(--green); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0; }
.coverage-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: center; }
.coverage .eyebrow { color: #bfe6cf; }
.coverage h2 { color: #fff; margin-bottom: .3rem; }
.coverage .section-sub { color: #d8efe1; }
.coverage-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .7rem; }
.coverage-list li {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
}

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-details { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-details li { display: flex; gap: 1rem; align-items: center; padding: .7rem 0; }
.ci { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--green-tint); color: var(--green); flex-shrink: 0; }
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-details a { text-decoration: none; font-weight: 600; color: var(--ink); }
.contact-details a:hover { color: var(--green); }

.contact-form { background: var(--paper); border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--sand-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,122,85,.15); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -5000px; }
.form-note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; text-align: center; }
.form-note a { color: var(--green); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfc7b8; padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name { color: #fff; font-family: var(--font-head); font-weight: 700; font-style: italic; font-size: 1.5rem; }
.footer-brand p { margin-top: .6rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .25rem 0; font-size: .95rem; }
.footer-col a { text-decoration: none; color: #cfc7b8; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.3rem; font-size: .85rem; color: #9a9384; }
.footer-credit { color: #9a9384; }
.footer-credit a { color: #cfc7b8; text-decoration: underline; text-underline-offset: 2px; transition: color .2s ease; }
.footer-credit a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero--classic .hero-inner { grid-template-columns: 1fr; }
  /* Tekst + CTA først på mobil, bildet under – så budskapet møter brukeren umiddelbart */
  .hero--classic .hero-copy { order: 0; }
  .hero--classic .hero-visual { order: 1; min-height: 0; margin-top: 2rem; }
  .hero-photo { max-width: 100%; }
  .hero-photo img { height: 320px; }
  .hero-accent { max-width: 340px; }
  .about-grid, .goodnature-grid, .contact-grid, .coverage-inner { grid-template-columns: 1fr; gap: 2rem; }
  /* Sjekklisten (grønn boks) over bildet – ryddigere og mer info-fokusert */
  .about-list { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  html { scroll-padding-top: 60px; } /* matcher lavere header på mobil */
  .header-inner { height: 50px; } /* slankere header på mobil */
  .brand-logo { height: 40px; } /* større, mer synlig logo */
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 50px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(18,15,11,.98); padding: 1rem 22px; max-height: 0; overflow: hidden;
    transition: max-height .3s ease; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-list.open { max-height: 480px; }
  .nav-list li { width: 100%; padding: .2rem 0; }
  .nav-list li a { display: block; padding: .7rem 0; } /* større trykkflate på mobil */
  .nav-cta { padding-top: .8rem !important; }
  .nav-cta a { display: inline-flex; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  /* Tjenester beholder 2 kolonner på mobil (6 kort → 3 rader i stedet for 6) */
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  /* Skjul hele hero-visualen (bilde + «Haster det?»-kort + chip) på mobil – kortere og renere.
     Telefonnummeret er fortsatt tilgjengelig via «Ring»-knappen i hero-actions. */
  .hero--classic .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== Små telefoner ===== */
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  h1 { font-size: clamp(2.1rem, 10vw, 2.6rem); } /* garantert plass til lengste ord på 320px */

  /* Fullbredde, stablede CTA-knapper – lettere å treffe med tommelen */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: .9rem 1.4rem; font-size: 1rem; }

  .hero--classic .hero-inner { padding-top: 2.4rem; padding-bottom: 2.4rem; }
  .hero-card { padding: .9rem 1.1rem; }
  .hero-badges { gap: .6rem 1rem; }

  .trustbar-inner { gap: 1.1rem; }
  .section-sub { font-size: 1rem; }
  .about-list { padding: 1.3rem; }
  .contact-form { padding: 1.4rem; }
  .coverage-list { gap: .5rem; }
  .faq-item summary { padding: .95rem 1.1rem; font-size: 1.04rem; }
  .faq-body { padding: 0 1.1rem 1.1rem; }

  /* Kompakte tjeneste-kort så 2 kolonner puster på små skjermer */
  .cards { gap: .8rem; }
  .card { padding: 1.1rem; }
  .card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: .7rem; }
  .card-icon img { width: 30px; height: 30px; }
  .card-icon svg { width: 24px; height: 24px; }
  .card h3 { font-size: 1.02rem; }
  .card p { font-size: .88rem; }
  .step { padding: 1.2rem; }
}

/* ===== Respekter «reduser bevegelse» ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Personvern / juridisk seksjon */
.legal-inner { max-width: 860px; }
.legal-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 1.6rem 0 .4rem;
  color: var(--ink);
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { color: var(--ink-soft); margin: 0 0 .8rem; line-height: 1.65; }
.legal-body code {
  background: var(--sand);
  padding: .05em .4em;
  border-radius: 6px;
  font-size: .9em;
}
.consent-reset { color: var(--green); font-weight: 600; }

/* Cookie-samtykke-banner */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 -4px 24px rgba(20, 17, 13, .22);
}
.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem 22px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text {
  margin: 0;
  flex: 1 1 300px;
  font-size: .95rem;
  line-height: 1.5;
}
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }
#cookie-banner .btn { padding: .55rem 1.3rem; font-size: .95rem; }
#cookie-banner .btn-ghost { color: var(--cream); border-color: rgba(247, 241, 231, .4); }
@media (max-width: 520px) {
  .cookie-banner__actions { width: 100%; }
  #cookie-banner .btn { flex: 1; }
}
