/* ═══════════════════════════════════════════════════
   Samtaleverkstedet — Main Stylesheet
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest:    #5A7380;
  --terra:     #F08A6F;
  --terra-dark:#D26A50;
  --linen:     #EFE4D2;
  --cream:     #FBF6EC;
  --coal:      #2E3A40;
  --muted:     #7A8088;
  --divider:   #DCD2C0;
  --card-bg:   #FFFBF2;
  --shadow-sm: rgba(46,58,64,0.06);
  --shadow-md: rgba(46,58,64,0.14);
  --radius:    10px;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--coal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

strong { font-weight: 600; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  display: block;
  margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

.section-pad {
  padding: 6rem 0;
}

.section-pad--sm {
  padding: 4rem 0;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(251,246,236,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.nav__logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: white;
  letter-spacing: -0.01em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo span {
  color: var(--terra);
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav__links a:hover { opacity: 1; }

/* When nav has scrolled and has white bg, switch to dark text */
.nav.scrolled .nav__links a {
  color: var(--coal);
  opacity: 0.75;
}

.nav.scrolled .nav__links a:hover { opacity: 1; }

.nav.scrolled .nav__logo { color: var(--coal); }

.nav__cta {
  background: var(--terra);
  color: white !important;
  opacity: 1 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}

.nav__cta:hover {
  background: var(--terra-dark) !important;
  transform: translateY(-1px);
}

/* ── NAV LOGO TAGLINE ── */
.nav__logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  transition: color 0.3s;
}

.nav.scrolled .nav__logo-tagline {
  color: var(--muted);
}

/* ── NAV DROPDOWN ── */
.nav__links li {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: white;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(46,58,64,0.14);
  padding: 0.5rem;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}

.nav__links li:has(.nav__dropdown)::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.nav__links li:hover .nav__dropdown,
.nav__links li:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--divider);
}

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}

.nav__dropdown a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--coal) !important;
  opacity: 1 !important;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: var(--cream);
  color: var(--terra) !important;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: default;
}

.nav__dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.nav__links li:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

/* Mobile dropdown sub-items */
.nav__mobile-sub {
  padding-left: 1rem;
}

.nav__mobile-sub a {
  font-size: 0.9rem !important;
  color: var(--muted) !important;
  border-bottom: none !important;
  padding: 0.4rem 0 !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── MOBILE NAV ── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--divider);
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 8px 24px var(--shadow-md);
  z-index: 99;
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--divider);
  color: var(--coal);
}

.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile .mobile-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--terra);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  border-bottom: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--terra);
  color: white;
}

.btn--primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,138,111,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}

.btn--outline:hover {
  background: var(--terra);
  color: white;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--coal);
  border-color: var(--divider);
}

.btn--ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--forest);
  color: white;
}

.btn--dark:hover {
  background: #44606D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,115,128,0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5A7380 0%, #44606D 50%, #6B8590 100%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  will-change: transform;
}

/* Organic shape overlay */
.hero__shape {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem 8rem;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.hero__content .eyebrow {
  color: rgba(240,138,111,0.95);
}

.hero__content h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero__content h1 em {
  font-style: italic;
  color: white;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__photo-wrap {
  position: relative;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Hero portrait container — used when real photo is placed directly */
.hero__image img {
  width: 100%;
  max-width: 420px;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.35));
}

/* 3D SCROLL ASSET PLACEHOLDER */
.hero__3d-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(240,138,111,0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
}

.hero__3d-placeholder .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--linen);
  border-bottom: 1px solid var(--divider);
  padding: 1.25rem 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
}

.proof-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--forest);
  color: white;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem__list {
  list-style: none;
  margin-top: 2rem;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.problem__list li:last-child { border-bottom: none; }

.problem__list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--linen);
  border: 1.5px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--terra);
  font-size: 0.7rem;
}

.problem__visual {
  background: var(--linen);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.problem__quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.problem__attr {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

/* ── SERVICES ── */
.services {
  background: var(--cream);
  color: var(--coal);
}

.services h2 {
  color: var(--coal);
}

.services .eyebrow {
  color: var(--terra);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--terra);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card__media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--linen);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.service-card h3 {
  color: var(--coal);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-card .link-arrow {
  font-size: 0.82rem;
  color: var(--terra);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.service-card:hover .link-arrow {
  gap: 0.6rem;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  background: var(--linen);
}

.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser__img-wrap {
  position: relative;
}

.about-teaser__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--divider);
}

.about-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PHOTO PLACEHOLDER */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DCD0BC 0%, #CFC2AC 100%);
  color: #888;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem;
}

.photo-placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.about-teaser__tag {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--terra);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(240,138,111,0.35);
}

.about-teaser__content {
  max-width: 480px;
}

.about-teaser__content h2 {
  margin-bottom: 1.25rem;
}

.about-teaser__content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-teaser__stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.stat-item .stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Marquee — uendelig horisontal scroll av testimonials */
.testimonials__marquee {
  margin-top: 3.5rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.testimonials__marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-scroll 120s linear infinite;
}

.testimonials__marquee:hover .testimonials__marquee-track {
  animation-play-state: paused;
}

.testimonials__marquee .testimonial-card {
  flex: 0 0 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.testimonials__marquee .testimonial-card blockquote {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__marquee-track { animation: none; }
}

@media (max-width: 720px) {
  .testimonials__marquee .testimonial-card {
    flex: 0 0 280px;
    max-width: 280px;
  }
  .testimonials__marquee-track { animation-duration: 90s; }
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(46,58,64,0.08);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(46,58,64,0.16);
  transform: translateY(-3px);
}

.testimonial-card__quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 4rem;
  color: var(--terra);
  opacity: 0.25;
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--linen);
  border: 2px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coal);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── BLOG TEASER ── */
.blog-teaser {
  background: var(--linen);
}

.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(46,58,64,0.08);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(46,58,64,0.18);
  transform: translateY(-3px);
}

.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--forest) 0%, #6B8590 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ── FINAL CTA SECTION ── */
.final-cta {
  background: var(--forest);
  color: white;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.final-cta__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #1F2A30;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer__brand .logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer__brand .logo span { color: var(--terra); }

.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__col a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer__credit {
  max-width: 1080px;
  margin: 1.75rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.footer__credit-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding-right: 1.1em;
}

.footer__credit-logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.footer__credit-dot { color: var(--terra); }

.footer__credit-spark {
  position: absolute;
  right: 0;
  bottom: 0.05em;
  width: 0.85em;
  height: 0.85em;
  color: var(--terra);
  opacity: 0.9;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--forest);
  padding: calc(var(--nav-h) + 4rem) 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero .eyebrow { color: rgba(240,138,111,0.95); }
.page-hero .sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.page-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.page-hero__shape {
  display: none;
}

/* ── SERVICES PAGE ── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--divider);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block__visual {
  background: var(--linen);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-block__content h2 {
  margin-bottom: 1rem;
}

.service-block__content .eyebrow {
  margin-bottom: 0.5rem;
}

.service-block__content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
}

.for-whom {
  background: var(--linen);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.for-whom strong {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

.for-whom p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
}

/* ── FAQ ── */
.faq { background: var(--linen); }

.faq__list { margin-top: 2.5rem; max-width: 720px; margin-left: auto; margin-right: auto; }

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--coal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__q .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.2s;
  color: var(--terra);
}

.faq-item.open .faq-item__q .arrow {
  transform: rotate(180deg);
  background: var(--terra);
  color: white;
  border-color: var(--terra);
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__a { max-height: 300px; padding-bottom: 1.25rem; }

.faq-item__a p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--divider);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--coal);
  font-weight: 500;
}

.form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px var(--shadow-sm);
}

.contact-cta-box {
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-cta-box h3 {
  font-size: 1.6rem;
  color: var(--coal);
  margin: 0;
}

.contact-cta-box > p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}

.contact-cta-btn {
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--coal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--coal);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(240,138,111,0.12);
}

.form__group textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form__note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── ABOUT PAGE ── */
.about-story {
  background: var(--cream);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.about-story__img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-story__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--linen);
}

.about-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.credential-tag {
  background: var(--linen);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest);
  border-left: 3px solid var(--terra);
}

/* ── FOREDRAG PAGE ── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.topic-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 10px var(--shadow-sm);
  border-left: 4px solid var(--terra);
  transition: box-shadow 0.25s, transform 0.25s;
}

.topic-card:hover {
  box-shadow: 0 6px 24px var(--shadow-md);
  transform: translateY(-2px);
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.topic-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.65;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.format-card {
  background: var(--forest);
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.format-card__time {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--terra);
  display: block;
  margin-bottom: 0.25rem;
}

.format-card__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ── SECTION TITLES ── */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-title + .section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

/* ── ANIMATIONS (JS-driven via GSAP, these are initial states) ── */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(32px);
}

.gsap-fade-in {
  opacity: 0;
}

.gsap-scale-in {
  opacity: 0;
  transform: scale(0.95);
}

/* ── VIDEO THUMBNAIL ── */
.video-thumb {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px var(--shadow-md);
}

.video-thumb__inner {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--forest);
  overflow: hidden;
}

.video-thumb__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover .video-thumb__inner img {
  transform: scale(1.03);
}

.video-thumb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background 0.3s ease;
}

.video-thumb:hover .video-thumb__overlay {
  background: rgba(26, 26, 26, 0.3);
}

.video-thumb__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(240,138,111,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding-left: 4px; /* optical centering of play icon */
}

.video-thumb:hover .video-thumb__play {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(240,138,111,0.6);
}

.video-thumb__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__image { display: none; }
  .problem__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .about-teaser__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-teaser__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story__img-wrap { position: static; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .section-pad { padding: 4rem 0; }
  .section-pad--sm { padding: 2.5rem 0; }
  .hero { min-height: auto; }
  .hero__inner { padding: 3rem 1.25rem 5rem; }
  .proof-bar__inner { gap: 1.25rem; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-teaser__tag { right: 0; bottom: -1.5rem; }
}

@media print {
  body::after { display: none; }
  .nav, .nav__mobile { display: none; }
  .hero { min-height: auto; }
}

/* ── TJENESTER HUB CARDS ── */
.tjenester-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.tjeneste-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--coal);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.tjeneste-card:hover {
  box-shadow: 0 16px 48px rgba(46,58,64,0.14);
  transform: translateY(-4px);
}

.tjeneste-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.tjeneste-card__body {
  padding: 1.75rem;
}

.tjeneste-card__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terra);
  display: block;
  margin-bottom: 0.5rem;
}

.tjeneste-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.tjeneste-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tjeneste-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terra);
  transition: gap 0.2s;
}

.tjeneste-card:hover .tjeneste-card__arrow {
  gap: 0.7rem;
}

@media (max-width: 900px) {
  .tjenester-hub { grid-template-columns: 1fr; }
}

/* ── BOK PAGE ── */
.bok-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
}

.bok-soon__inner {
  max-width: 560px;
  padding: 4rem 2rem;
}

.bok-soon__icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
}

.bok-soon h2 {
  margin-bottom: 1rem;
}

.bok-soon p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
