/* ═══════════════════════════════════════════════════════
   TUFTEBYE AI — Felles stilark
   Gjelder alle sider under tuftebyeai.com
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  --navy:      #141c2e;
  --navy-mid:  #1a2540;
  --navy-card: #1e2d45;
  --gold:      #C4A060;
  --gold-light:#D8BC84;
  --gold-dark: #A08448;
  --platinum:  #C0CDD8;
  --text:      #EAE2D4;
  --text-muted:#9AA8B5;
  --divider:   rgba(196,160,96,0.25);
  --card-bg:   rgba(30,45,69,0.7);
  --radius:    6px;
  --transition:0.3s ease;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--navy);
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-weight:400;
  line-height:1.65;
  min-height:100vh;
  overflow-x:hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4{font-family:'Playfair Display',serif;line-height:1.2}
h1{font-size:clamp(2.2rem,5vw,3.8rem);font-weight:700}
h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:600}
h3{font-size:clamp(1.2rem,2vw,1.5rem);font-weight:500}
p{line-height:1.75}
a{color:inherit;text-decoration:none}
.eyebrow{
  font-family:'Inter',sans-serif;font-size:.75rem;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;color:var(--gold);
  margin-bottom:1rem;display:block;
}
.gold{color:var(--gold)}
.gold-light{color:var(--gold-light)}
.platinum{color:var(--platinum)}
.muted{color:var(--text-muted)}

/* ─── LAYOUT ─────────────────────────────────────────── */
.container{max-width:1200px;margin:0 auto;padding:0 2rem}
main{position:relative;z-index:1;min-height:calc(100vh - 80px);padding-top:80px}
.gold-divider{
  width:80px;height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:1.5rem auto;
}
.gold-divider.left{margin-left:0}
.section{padding:5rem 0}
.section-sm{padding:3rem 0}
.section-dark{background:rgba(10,14,24,.5);border-top:1px solid var(--divider);border-bottom:1px solid var(--divider)}
.section-title{text-align:center;margin-bottom:3rem}

/* ─── NAVIGATION ─────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(20,28,46,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--divider);height:80px;
  display:flex;align-items:center;
}
.nav-inner{
  max-width:1200px;margin:0 auto;padding:0 2rem;width:100%;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-logo{display:flex;align-items:center;height:44px}
.nav-logo img{height:40px;width:auto;object-fit:contain;display:block}
.nav-links{display:flex;align-items:center;gap:.25rem;list-style:none}
.nav-link{
  font-size:.875rem;font-weight:500;letter-spacing:.05em;
  color:var(--text-muted);padding:.5rem 1rem;
  border-radius:var(--radius);transition:var(--transition);
  position:relative;display:block;
}
.nav-link:hover{color:var(--text);background:rgba(196,160,96,.08)}
.nav-link.active{color:var(--gold)}
.nav-link.active::after{
  content:'';position:absolute;bottom:-1px;left:1rem;right:1rem;
  height:2px;background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.nav-cta{
  font-size:.8rem;font-weight:600;letter-spacing:.08em;
  color:var(--navy);background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border:none;padding:.55rem 1.4rem;border-radius:var(--radius);
  cursor:pointer;transition:var(--transition);text-transform:uppercase;
  display:inline-block;
}
.nav-cta:hover{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  transform:translateY(-1px);box-shadow:0 4px 16px rgba(196,160,96,.3);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;font-size:.85rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--navy);background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border:none;padding:.85rem 2rem;border-radius:var(--radius);
  cursor:pointer;transition:var(--transition);
}
.btn-primary:hover{
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  transform:translateY(-2px);box-shadow:0 8px 24px rgba(196,160,96,.35);
}
.btn-outline{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;font-size:.85rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);background:transparent;border:1px solid var(--gold);
  padding:.85rem 2rem;border-radius:var(--radius);
  cursor:pointer;transition:var(--transition);
}
.btn-outline:hover{background:rgba(196,160,96,.1);transform:translateY(-2px)}

/* ─── CARDS ───────────────────────────────────────────── */
.card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);padding:2rem;
  transition:var(--transition);backdrop-filter:blur(4px);
}
.card:hover{
  transform:translateY(-3px);border-color:rgba(196,160,96,.5);
  border-top:3px solid var(--gold);box-shadow:0 8px 32px rgba(0,0,0,.3);
}

/* ═══════════════════════════════════════════════════════
   HJEM — HERO
   ═══════════════════════════════════════════════════════ */
.hero{
  display:flex;align-items:flex-start;
  padding:5rem 0 6rem;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:-30%;right:-20%;
  width:700px;height:700px;
  background:radial-gradient(ellipse,rgba(196,160,96,.07) 0%,transparent 70%);
  pointer-events:none;
}
.hero-content{max-width:760px}
.hero h1{
  margin-bottom:1.5rem;
  background:linear-gradient(135deg,var(--text) 60%,var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-slash{display:block;color:var(--gold);-webkit-text-fill-color:var(--gold)}
.hero-tagline{
  font-size:.75rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--platinum);margin-bottom:1.75rem;
  display:flex;align-items:center;gap:1rem;
}
.hero-tagline::before{content:'';width:40px;height:1px;background:var(--gold);flex-shrink:0}
.hero-ingress{
  font-size:1.1rem;color:var(--text-muted);max-width:620px;
  margin-bottom:2.5rem;line-height:1.8;
}
.hero-ingress strong{color:var(--text);font-weight:500}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:4rem}

.kpi-bar{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  border:1px solid var(--divider);border-radius:var(--radius);
  overflow:hidden;background:rgba(20,28,46,.8);backdrop-filter:blur(8px);
  max-width:760px;
}
.kpi-item{padding:1.25rem 1.5rem;border-right:1px solid var(--divider);transition:var(--transition)}
.kpi-item:last-child{border-right:none}
.kpi-item:hover{background:rgba(196,160,96,.06)}
.kpi-number{
  font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;
  color:var(--gold);line-height:1;margin-bottom:.35rem;
}
.kpi-label{font-size:.7rem;font-weight:500;letter-spacing:.06em;color:var(--text-muted);text-transform:uppercase;line-height:1.3}

.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.service-card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);padding:2.5rem 2rem;
  transition:var(--transition);position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:0;transition:var(--transition);
}
.service-card:hover{transform:translateY(-4px);border-color:rgba(196,160,96,.4);box-shadow:0 12px 40px rgba(0,0,0,.3)}
.service-card:hover::before{opacity:1}
.service-icon{
  width:52px;height:52px;border-radius:var(--radius);
  background:rgba(196,160,96,.12);border:1px solid rgba(196,160,96,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;margin-bottom:1.5rem;
}
.service-card h3{color:var(--text);margin-bottom:.75rem;font-size:1.25rem}
.service-card p{color:var(--text-muted);font-size:.9rem;margin-bottom:1.5rem}
.service-link{
  font-size:.8rem;font-weight:600;letter-spacing:.08em;color:var(--gold);
  text-transform:uppercase;display:inline-flex;align-items:center;gap:.4rem;
  transition:var(--transition);background:none;border:none;cursor:pointer;
}
.service-link:hover{color:var(--gold-light);gap:.7rem}

.promise-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.promise-text h2{margin-bottom:1.25rem}
.promise-text p{color:var(--text-muted);margin-bottom:1.5rem;font-size:1rem}
.promise-points{display:flex;flex-direction:column;gap:1rem;margin-top:2rem}
.promise-point{
  display:flex;align-items:flex-start;gap:1rem;padding:1.25rem;
  background:rgba(30,45,69,.5);border-left:3px solid var(--gold);
  border-radius:0 var(--radius) var(--radius) 0;
}
.promise-point-icon{font-size:1.2rem;flex-shrink:0;margin-top:.1rem}
.promise-point-content h4{
  color:var(--text);font-size:.95rem;margin-bottom:.25rem;
  font-family:'Inter',sans-serif;font-weight:600;
}
.promise-point-content p{color:var(--text-muted);font-size:.85rem;margin:0}

.highlight-quote{text-align:center;padding:4rem 2rem;max-width:800px;margin:0 auto}
.highlight-quote blockquote{
  font-family:'Playfair Display',serif;font-size:clamp(1.3rem,2.5vw,1.8rem);
  font-style:italic;color:var(--text);line-height:1.5;margin-bottom:1.5rem;
}
.highlight-quote blockquote::before{
  content:'\201C';color:var(--gold);font-size:3rem;
  line-height:0;vertical-align:-.4em;margin-right:.15em;
}
.highlight-quote cite{
  font-size:.8rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold);font-style:normal;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (brukes på alle undersider)
   ═══════════════════════════════════════════════════════ */
.page-hero{
  padding:5rem 0 3rem;text-align:center;position:relative;
}
.page-hero::after{
  content:'';display:block;width:100px;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:2rem auto 0;
}

/* ═══════════════════════════════════════════════════════
   TJENESTER
   ═══════════════════════════════════════════════════════ */
.tjenester-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-bottom:1.5rem}
.tjeneste-card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);padding:2rem;
  transition:var(--transition);position:relative;
  display:flex;flex-direction:column;
}
.tjeneste-card:hover{transform:translateY(-3px);border-color:rgba(196,160,96,.4);box-shadow:0 8px 32px rgba(0,0,0,.25)}
.tjeneste-card.core{border-top:3px solid var(--gold)}
.tjeneste-card.core-featured{
  grid-column:span 2;border-top:3px solid var(--gold);
  background:rgba(30,45,69,.9);
}
.tjeneste-badge{
  display:inline-block;font-size:.65rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;padding:.25rem .7rem;border-radius:2rem;margin-bottom:1rem;
}
.badge-core{background:rgba(196,160,96,.15);color:var(--gold);border:1px solid rgba(196,160,96,.3)}
.badge-secondary{background:rgba(192,205,216,.1);color:var(--platinum);border:1px solid rgba(192,205,216,.2)}
.tjeneste-card h3{margin-bottom:.75rem;font-size:1.2rem}
.tjeneste-card p{color:var(--text-muted);font-size:.9rem;line-height:1.7;margin-bottom:1rem}
.tjeneste-features{list-style:none;display:flex;flex-direction:column;gap:.4rem;margin-bottom:1.25rem}
.tjeneste-features li{font-size:.85rem;color:var(--text-muted);display:flex;align-items:flex-start;gap:.5rem}
.tjeneste-features li::before{content:'→';color:var(--gold);flex-shrink:0;margin-top:.05rem}
.tjeneste-price{
  font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--gold-light);
  margin-top:auto;padding-top:1rem;border-top:1px solid var(--divider);
}
.tjeneste-price small{font-family:'Inter',sans-serif;font-size:.75rem;color:var(--text-muted);font-weight:400}

.secondary-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.secondary-card{
  background:rgba(20,28,46,.6);border:1px solid var(--divider);
  border-radius:var(--radius);padding:1.5rem;
  transition:var(--transition);display:flex;flex-direction:column;
}
.secondary-card:hover{border-color:rgba(196,160,96,.3);background:rgba(30,45,69,.6);transform:translateY(-2px)}
.secondary-card h4{font-family:'Inter',sans-serif;font-weight:600;font-size:.95rem;margin-bottom:.5rem;color:var(--text)}
.secondary-card p{font-size:.82rem;color:var(--text-muted);margin-bottom:.75rem;flex:1}
.secondary-card .tjeneste-price{font-size:.95rem;padding-top:.75rem}

.pakker-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}
.pakke-card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);padding:2.25rem 2rem;position:relative;
  transition:var(--transition);
}
.pakke-card:hover{transform:translateY(-3px);box-shadow:0 12px 40px rgba(0,0,0,.3)}
.pakke-card.featured{border-color:var(--gold);background:rgba(30,45,69,.9)}
.pakke-card.featured::before{
  content:'MEST POPULÆR';position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:linear-gradient(135deg,var(--gold-light),var(--gold));color:var(--navy);
  font-size:.65rem;font-weight:700;letter-spacing:.12em;padding:.25rem 1rem;border-radius:2rem;
}
.pakke-name{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:600;margin-bottom:.4rem}
.pakke-tagline{font-size:.8rem;color:var(--text-muted);margin-bottom:1.5rem}
.pakke-price{font-family:'Playfair Display',serif;font-size:2rem;color:var(--gold);line-height:1;margin-bottom:.3rem}
.pakke-price-note{font-size:.75rem;color:var(--text-muted);margin-bottom:1.5rem}
.pakke-includes{list-style:none;margin-bottom:2rem;display:flex;flex-direction:column;gap:.6rem}
.pakke-includes li{font-size:.875rem;color:var(--text-muted);display:flex;align-items:flex-start;gap:.6rem}
.pakke-includes .check{color:var(--gold);flex-shrink:0}

/* ═══════════════════════════════════════════════════════
   OM OSS
   ═══════════════════════════════════════════════════════ */
.bio-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-bottom:5rem}
.bio-card{background:var(--card-bg);border:1px solid var(--divider);border-radius:var(--radius);overflow:hidden}
.bio-header{
  background:linear-gradient(135deg,rgba(196,160,96,.12),rgba(20,28,46,.8));
  padding:2.5rem 2rem 2rem;border-bottom:1px solid var(--divider);
}
.bio-name{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:600;margin-bottom:.25rem}
.bio-title{font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold)}
.bio-body{padding:2rem}
.bio-body p{color:var(--text-muted);font-size:.9rem;line-height:1.8;margin-bottom:1.25rem}
.bio-body p:last-child{margin-bottom:0}
.bio-creds{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.25rem}
.bio-cred{
  font-size:.7rem;font-weight:500;letter-spacing:.06em;color:var(--platinum);
  background:rgba(192,205,216,.1);border:1px solid rgba(192,205,216,.2);
  padding:.3rem .75rem;border-radius:2rem;
}

.verdier-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.verdi-card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);padding:1.75rem 1.5rem;
  text-align:center;transition:var(--transition);
}
.verdi-card:hover{border-color:rgba(196,160,96,.4);transform:translateY(-3px);border-top:3px solid var(--gold)}
.verdi-icon{font-size:2rem;margin-bottom:1rem}
.verdi-card h4{font-family:'Playfair Display',serif;font-size:1rem;margin-bottom:.5rem;color:var(--gold-light)}
.verdi-card p{font-size:.82rem;color:var(--text-muted);line-height:1.6}

/* ═══════════════════════════════════════════════════════
   INNSIKT
   ═══════════════════════════════════════════════════════ */
.innsikt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.article-card{
  background:var(--card-bg);border:1px solid var(--divider);
  border-radius:var(--radius);overflow:hidden;
  transition:var(--transition);display:block;
}
.article-card:hover{transform:translateY(-3px);border-color:rgba(196,160,96,.4);box-shadow:0 8px 32px rgba(0,0,0,.3)}
.article-img{height:160px;position:relative;overflow:hidden}
.article-img-bg{
  width:100%;height:100%;
  background:linear-gradient(135deg,var(--navy-mid),var(--navy-card));
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;position:relative;
}
.article-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(196,160,96,.15),transparent);
  opacity:.3;transition:var(--transition);
}
.article-card:hover .article-img-overlay{opacity:.6}
.article-body{padding:1.5rem}
.article-tag{
  display:inline-block;font-size:.65rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold);
  background:rgba(196,160,96,.12);border:1px solid rgba(196,160,96,.25);
  padding:.2rem .6rem;border-radius:2rem;margin-bottom:.75rem;
}
.article-title{
  font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:600;
  margin-bottom:.65rem;color:var(--text);line-height:1.35;
}
.article-excerpt{font-size:.83rem;color:var(--text-muted);line-height:1.7;margin-bottom:1rem}
.article-meta{
  display:flex;align-items:center;justify-content:space-between;
  font-size:.75rem;color:var(--text-muted);
  padding-top:.875rem;border-top:1px solid var(--divider);
}
.article-read-more{
  font-size:.72rem;font-weight:600;color:var(--gold);letter-spacing:.06em;
  display:inline-flex;align-items:center;gap:.3rem;text-transform:uppercase;
}

/* ─── ARTIKKEL-SIDE (innsikt/[slug].html) ─────────────── */
.article-page-container{
  max-width:780px;margin:0 auto;padding:5rem 2rem 4rem;
  position:relative;z-index:1;
}
.article-breadcrumb{
  font-size:.85rem;color:var(--text-muted);margin-bottom:2.5rem;
  display:flex;align-items:center;gap:.5rem;
}
.article-breadcrumb a{color:var(--gold);transition:var(--transition)}
.article-breadcrumb a:hover{color:var(--gold-light)}
.article-header{padding-bottom:2rem;border-bottom:1px solid var(--divider);margin-bottom:2.5rem}
.article-header .article-tag{display:inline-block;margin-bottom:1rem}
.article-page-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:700;
  line-height:1.25;margin-bottom:1rem;color:var(--text);
}
.article-page-meta{font-size:.8rem;color:var(--text-muted);display:flex;gap:1.5rem;flex-wrap:wrap}
.article-content{color:var(--text-muted);line-height:1.85;font-size:.975rem}
.article-content h2{
  font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:600;
  color:var(--gold-light);margin:2rem 0 .75rem;
}
.article-content h3{
  font-family:'Inter',sans-serif;font-size:1.1rem;font-weight:600;
  color:var(--text);margin:1.5rem 0 .5rem;
}
.article-content p{margin-bottom:1.25rem}
.article-content ul,.article-content ol{padding-left:1.5rem;margin-bottom:1.25rem}
.article-content li{line-height:1.8;margin-bottom:.35rem}
.article-content strong{color:var(--text)}
.article-content em{font-style:italic}
.article-cta-box{
  background:rgba(196,160,96,.08);border:1px solid rgba(196,160,96,.3);
  border-radius:var(--radius);padding:1.75rem 2rem;margin-top:2.5rem;text-align:center;
}
.article-cta-box p{color:var(--text);font-size:1rem;font-weight:500;margin-bottom:1.25rem}

/* ═══════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════ */
.kontakt-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.kontakt-info h2{margin-bottom:1.25rem}
.kontakt-info p{color:var(--text-muted);margin-bottom:2rem;line-height:1.8}
.kontakt-items{display:flex;flex-direction:column;gap:1.25rem}
.kontakt-item{
  display:flex;align-items:flex-start;gap:1rem;padding:1.25rem;
  background:rgba(30,45,69,.5);border-radius:var(--radius);border:1px solid var(--divider);
}
.kontakt-item-icon{
  width:40px;height:40px;flex-shrink:0;
  background:rgba(196,160,96,.12);border:1px solid rgba(196,160,96,.25);
  border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1rem;
}
.kontakt-item-text h4{font-family:'Inter',sans-serif;font-size:.85rem;font-weight:600;color:var(--text);margin-bottom:.2rem}
.kontakt-item-text p{font-size:.85rem;color:var(--text-muted);margin:0}
.kontakt-item-text a{color:var(--gold)}
.kontakt-item-text a:hover{color:var(--gold-light)}
.kontakt-form-card{background:var(--card-bg);border:1px solid var(--divider);border-radius:var(--radius);padding:2.5rem}
.form-title{font-family:'Playfair Display',serif;font-size:1.3rem;margin-bottom:.5rem}
.form-subtitle{font-size:.875rem;color:var(--text-muted);margin-bottom:2rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:.8rem;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--platinum);margin-bottom:.5rem}
.form-group input,.form-group select,.form-group textarea{
  width:100%;background:rgba(20,28,46,.8);border:1px solid var(--divider);
  border-radius:var(--radius);padding:.85rem 1rem;color:var(--text);
  font-family:'Inter',sans-serif;font-size:.9rem;transition:var(--transition);outline:none;appearance:none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(196,160,96,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-group select{cursor:pointer}
.form-group select option{background:var(--navy)}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer{background:rgba(10,14,24,.8);border-top:1px solid var(--divider);padding:3rem 0 2rem;position:relative;z-index:1}
.footer-inner{
  max-width:1200px;margin:0 auto;padding:0 2rem;
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;margin-bottom:2.5rem;
}
.footer-brand p{color:var(--text-muted);font-size:.875rem;line-height:1.75;margin-top:1rem;max-width:320px}
.footer-col h4{font-family:'Inter',sans-serif;font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:1.25rem}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-links li a{font-size:.875rem;color:var(--text-muted);transition:var(--transition)}
.footer-links li a:hover{color:var(--gold)}
.footer-bottom{
  max-width:1200px;margin:0 auto;padding:1.5rem 2rem 0;
  border-top:1px solid var(--divider);
  display:flex;align-items:center;justify-content:space-between;
}
.footer-bottom p{font-size:.8rem;color:var(--text-muted)}
.footer-tagline{font-size:.75rem;color:var(--gold);font-style:italic;font-family:'Playfair Display',serif}

/* ─── PRIS-ADVARSEL ───────────────────────────────── */
.price-warning{
  display:block;font-size:.7rem;font-weight:600;color:#e05252;
  letter-spacing:.04em;margin-top:.3rem;
}

/* ─── MOBIL HAMBURGER ───────────────────────────────── */
.nav-hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  background:none;border:none;cursor:pointer;padding:.5rem;flex-shrink:0;
}
.nav-hamburger span{
  display:block;width:22px;height:2px;
  background:var(--text);border-radius:2px;transition:var(--transition);
}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-mobile-menu{
  display:none;position:fixed;top:80px;left:0;right:0;z-index:999;
  background:rgba(14,20,36,.99);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--divider);
}
.nav-mobile-menu.open{display:block}
.nav-mobile-link{
  display:block;padding:.9rem 1.5rem;
  font-size:.95rem;font-weight:500;color:var(--text-muted);
  border-bottom:1px solid rgba(196,160,96,.08);
  transition:var(--transition);
}
.nav-mobile-link:hover,.nav-mobile-link.active{color:var(--gold);padding-left:2rem}
.nav-mobile-cta{
  display:block;margin:1.25rem 1.5rem 1.5rem;
  font-size:.85rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--navy);background:linear-gradient(135deg,var(--gold-light),var(--gold));
  border:none;padding:.8rem;border-radius:var(--radius);cursor:pointer;
  text-align:center;width:calc(100% - 3rem);
}

/* ─── RESPONSIV: TABLET ───────────────────────────── */
@media (min-width:769px) and (max-width:1024px){
  .services-grid{grid-template-columns:1fr 1fr}
  .verdier-grid{grid-template-columns:repeat(2,1fr)}
  .pakker-grid{grid-template-columns:1fr}
  .innsikt-grid{grid-template-columns:repeat(2,1fr)}
  .bio-grid{grid-template-columns:1fr}
  .promise-grid{grid-template-columns:1fr}
  .container{padding:0 1.5rem}
}

/* ─── RESPONSIV: MOBIL ────────────────────────────── */
@media (max-width:768px){
  /* NAV */
  .nav-links,.nav-cta{display:none}
  .nav-hamburger{display:flex}
  .nav-inner{padding:0 1rem}

  /* HERO */
  .hero{padding:3rem 0 4rem}
  .hero-content{text-align:center}
  .hero-tagline{justify-content:center}
  .hero-tagline::before{display:none}
  .hero-ingress{font-size:1rem;margin-left:auto;margin-right:auto}
  .hero-actions{flex-direction:column;gap:.75rem;margin-bottom:3rem;align-items:center}
  .hero-actions .btn-primary,
  .hero-actions .btn-outline{justify-content:center;width:100%}

  /* KPI BAR: 2×2 */
  .kpi-bar{grid-template-columns:repeat(2,1fr);max-width:100%}
  .kpi-item:nth-child(2){border-right:none}
  .kpi-item:nth-child(3){border-top:1px solid var(--divider)}
  .kpi-item:nth-child(4){border-top:1px solid var(--divider);border-right:none}
  .kpi-number{font-size:1.5rem}

  /* SPACING */
  .section{padding:2.5rem 0}
  .section-sm{padding:1.75rem 0}
  .container{padding:0 1.1rem}
  .section-title{margin-bottom:2rem}

  /* SERVICES */
  .services-grid{grid-template-columns:1fr}

  /* PROMISE */
  .promise-grid{grid-template-columns:1fr;gap:2rem}
  .highlight-quote{padding:2rem 1rem}
  .highlight-quote blockquote{font-size:1.15rem}

  /* TJENESTER */
  .tjenester-grid{grid-template-columns:1fr}
  .tjeneste-card.core-featured{grid-column:span 1}
  .tjeneste-card.core-featured > div{grid-template-columns:1fr !important;gap:1rem}
  .secondary-grid{grid-template-columns:1fr}
  .tjeneste-card[style*="span 2"]{grid-column:span 1 !important}
  .tjeneste-card[style*="span 2"] > div{grid-template-columns:1fr !important}

  /* PAKKER */
  .pakker-grid{grid-template-columns:1fr}

  /* PAGE HERO */
  .page-hero{padding:2.5rem 0 1.5rem}

  /* BIO */
  .bio-grid{grid-template-columns:1fr;margin-bottom:3rem}
  .bio-header{padding:1.75rem 1.5rem 1.5rem}
  .bio-body{padding:1.5rem}

  /* VERDIER */
  .verdier-grid{grid-template-columns:repeat(2,1fr);gap:1rem}

  /* INNSIKT */
  .innsikt-grid{grid-template-columns:1fr}

  /* KONTAKT */
  .kontakt-grid{grid-template-columns:1fr;gap:2rem}

  /* FOOTER */
  .footer-inner{grid-template-columns:1fr;gap:2rem;margin-bottom:1.5rem}
  .footer-bottom{flex-direction:column;gap:.5rem;text-align:center}

  /* H SIZES */
  h2{font-size:clamp(1.4rem,5vw,1.8rem)}

  /* ARTIKKEL-SIDE */
  .article-page-container{padding:3rem 1.25rem 3rem}
}
