@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --navy:   #1D2333;
  --green:  #2C5134;
  --fjord:  #1B3A5C;
  --beige:  #F3F2EC;
  --salvie: #E5F2DC;
  --gull:   #C9A96E;
  --white:  #FFFFFF;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Lora', serif;
  --max-w: 1100px;
  --radius: 4px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--beige); color: var(--navy); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--green);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--beige); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--beige); opacity: 0.7; transition: opacity var(--transition); white-space: nowrap; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; border-bottom: 2px solid var(--gull); padding-bottom: 2px; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--beige); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ────────────────────────────────────────────── */
.hero { background: var(--beige); padding: 5rem 2rem 4rem; border-bottom: 1px solid rgba(29,35,51,0.1); }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.eyebrow { display: block; font-family: var(--font-head); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 1.25rem; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-ingress { font-size: 1rem; line-height: 1.75; opacity: 0.8; max-width: 480px; margin-bottom: 2.5rem; }
.hero-cta { display: inline-flex; align-items: center; background: var(--green); color: var(--beige); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.6rem; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); }
.hero-cta:hover { background: var(--fjord); transform: translateY(-1px); }
.hero-cta-secondary { display: inline-flex; align-items: center; margin-left: 1.25rem; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; color: var(--navy); opacity: 0.65; transition: opacity var(--transition); }
.hero-cta-secondary:hover { opacity: 1; }
.hero-image { border-radius: var(--radius); overflow: hidden; }
.hero-image img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(10%); }

/* ─── SECTIONS ────────────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section--salvie { background: var(--salvie); }
.section--green { background: var(--green); color: var(--beige); }
.section--fjord { background: var(--fjord); color: var(--beige); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label { display: block; font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.section--green .section-label, .section--fjord .section-label { color: var(--gull); }
.section h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 1.25rem; max-width: 640px; }
.section p.lead { font-size: 1.05rem; line-height: 1.8; max-width: 580px; opacity: 0.8; margin-bottom: 2.5rem; }

/* ─── TJENESTE GRID ───────────────────────────────────── */
.tjeneste-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.tjeneste-card { background: var(--beige); border: 1px solid rgba(29,35,51,0.08); border-radius: var(--radius); padding: 2rem; transition: box-shadow var(--transition), transform var(--transition); }
.section--salvie .tjeneste-card { background: var(--white); }
.tjeneste-card:hover { box-shadow: 0 8px 24px rgba(29,35,51,0.1); transform: translateY(-2px); }
.tjeneste-nr { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gull); margin-bottom: 1rem; }
.tjeneste-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.75rem; color: var(--navy); }
.tjeneste-card p { font-size: 0.9rem; line-height: 1.65; opacity: 0.75; }

/* ─── IMAGE STRIP ─────────────────────────────────────── */
.image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.image-strip img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }

/* ─── ABOUT SPLIT ─────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); filter: grayscale(15%); }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 1.5rem; }
.about-text p { font-size: 1rem; line-height: 1.8; opacity: 0.85; margin-bottom: 1.25rem; }
.tag-row { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { display: inline-block; background: var(--salvie); color: var(--green); font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }

/* ─── PODCAST ─────────────────────────────────────────── */
.podcast-strip { background: var(--fjord); padding: 3.5rem 2rem; }
.podcast-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.podcast-text .eyebrow { color: var(--gull); }
.podcast-text h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--beige); letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.podcast-text p { font-size: 0.95rem; color: var(--beige); opacity: 0.65; max-width: 480px; }
.podcast-link { flex-shrink: 0; display: inline-flex; align-items: center; border: 1.5px solid var(--gull); color: var(--gull); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.85rem 1.5rem; border-radius: var(--radius); transition: background var(--transition), color var(--transition); }
.podcast-link:hover { background: var(--gull); color: var(--green); }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-grid h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-grid p { font-size: 1rem; line-height: 1.8; opacity: 0.8; margin-bottom: 2rem; }
.contact-link { display: inline-flex; background: var(--green); color: var(--beige); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.6rem; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); }
.contact-link:hover { background: var(--fjord); transform: translateY(-1px); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; }
.contact-info dt { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.25rem; }
.contact-info dd { font-size: 0.95rem; opacity: 0.8; }
.divider { width: 40px; height: 3px; background: var(--gull); margin: 2rem 0; border-radius: 2px; }

/* ─── FOREDRAG ────────────────────────────────────────── */
.foredrag-list { display: flex; flex-direction: column; margin-top: 2rem; }
.foredrag-item { padding: 2.5rem 0; border-top: 1px solid rgba(29,35,51,0.1); }
.foredrag-item:last-child { border-bottom: 1px solid rgba(29,35,51,0.1); }
.foredrag-nr { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gull); margin-bottom: 0.75rem; }
.foredrag-item h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.75rem; }
.foredrag-item p { font-size: 0.95rem; line-height: 1.75; opacity: 0.75; max-width: 640px; }
.foredrag-meta { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; color: var(--green); opacity: 0.7; margin-top: 0.75rem; }

/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header { background: var(--green); padding: 5rem 2rem 4rem; }
.page-header-inner { max-width: var(--max-w); margin: 0 auto; }
.page-header .eyebrow { color: var(--gull); }
.page-header h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--beige); letter-spacing: -0.03em; line-height: 1.15; max-width: 700px; margin-bottom: 1.25rem; }
.page-header p { font-size: 1rem; color: var(--beige); opacity: 0.7; max-width: 560px; line-height: 1.75; }

/* ─── SPLIT SECTION ───────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); filter: grayscale(10%); }

/* ─── GREEN BAND ──────────────────────────────────────── */
.green-band { background: var(--green); padding: 4rem 2rem; }
.green-band-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.green-band h2 { font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 800; color: var(--beige); letter-spacing: -0.03em; max-width: 560px; }
.green-band h2 em { font-style: italic; opacity: 0.65; }
.band-cta { flex-shrink: 0; display: inline-flex; background: var(--beige); color: var(--green); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.5rem; border-radius: var(--radius); transition: opacity var(--transition); }
.band-cta:hover { opacity: 0.85; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--green); padding: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--beige); opacity: 0.6; }
.footer-copy { font-family: var(--font-head); font-size: 0.7rem; color: var(--beige); opacity: 0.35; letter-spacing: 0.04em; }

/* ─── FADE IN ─────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); animation: fadeUp 0.6s ease forwards; }
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.25s; }
.fade-in:nth-child(4) { animation-delay: 0.35s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0 1.25rem; height: 56px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.78rem;
    opacity: 0.85;
  }
  .nav-links a.active { border-bottom: none; border-left: 3px solid var(--gull); padding-left: calc(1.5rem - 3px); opacity: 1; }

  /* Hero */
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { order: -1; }
  .hero-image img { height: 260px; }
  .hero h1 { font-size: 2.2rem; }

  /* Sections */
  .section { padding: 3rem 1.25rem; }
  .about-split, .contact-grid, .split-section { grid-template-columns: 1fr; gap: 2rem; }

  /* Image strip */
  .image-strip { grid-template-columns: 1fr; }
  .image-strip img { height: 220px; }

  /* Podcast */
  .podcast-strip { padding: 3rem 1.25rem; }
  .podcast-inner { flex-direction: column; align-items: flex-start; }

  /* Green band */
  .green-band { padding: 3rem 1.25rem; }
  .green-band-inner { flex-direction: column; align-items: flex-start; }

  /* Page header */
  .page-header { padding: 3rem 1.25rem 2.5rem; }

  /* Footer */
  footer { padding: 1.5rem 1.25rem; }

  /* Tjeneste grid */
  .tjeneste-grid { grid-template-columns: 1fr; }
}
