@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0b1f3a;
  --navy-mid:   #162d50;
  --ocean:      #1a6b8a;
  --ocean-light:#2589ab;
  --gold:       #c9a84c;
  --gold-dim:   rgba(201,168,76,0.15);
  --white:      #ffffff;
  --cream:      #f8f6f1;
  --grey-light: #edecea;
  --grey:       #9a9690;
  --text:       #1a1a1a;
  --text-light: #5a5650;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 32px rgba(11,31,58,0.10);
  --shadow-lg:  0 16px 64px rgba(11,31,58,0.18);
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --trans:      0.28s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── CONTAINER ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}
.logo img { height: 44px; width: auto; }
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-inka {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1;
}
.site-header.hero-mode .logo-inka { color: white; }
.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-top: 3px;
}
.site-header.hero-mode .logo-sub { color: rgba(255,255,255,0.7); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--trans);
  position: relative;
}
.site-header.hero-mode .main-nav a { color: rgba(255,255,255,0.85); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--navy); }
.site-header.hero-mode .main-nav a:hover { color: white; }
.main-nav a.active { color: var(--navy); font-weight: 600; }
.site-header.hero-mode .main-nav a.active { color: white; }

.lang-switcher {
  margin-left: 24px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lang-switcher a { color: var(--ocean); text-decoration: none; font-weight: 600; }
.site-header.hero-mode .lang-switcher a { color: rgba(255,255,255,0.7); }
.lang-switcher .active-lang { color: var(--navy); font-weight: 700; }
.site-header.hero-mode .lang-switcher .active-lang { color: white; }
.lang-switcher .sep { color: var(--grey); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.site-header.hero-mode .mobile-toggle span { background: white; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/img/fiskhero-inka.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,25,45,0.75) 0%,
    rgba(8,25,45,0.45) 35%,
    rgba(8,25,45,0.15) 60%,
    rgba(8,25,45,0) 100%
  );
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,0.85) 0%,
    rgba(11,31,58,0.5) 50%,
    rgba(26,107,138,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  max-width: 700px;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all var(--trans);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-cta:hover {
  background: white;
  border-color: white;
  color: var(--navy);
  gap: 18px;
}
.hero-cta svg { transition: transform var(--trans); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease) 1.5s both;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── FRAUD WARNING ─── */
.fraud-warning {
  background: #fff8f0;
  border-top: 2px solid #d97706;
  padding: 18px 0;
}
.fraud-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fraud-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.fraud-content { flex: 1; }
.fraud-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fraud-content p {
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.5;
  margin: 0;
}
.btn-fraud {
  flex-shrink: 0;
  padding: 8px 20px;
  border: 1.5px solid #d97706;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--trans);
}
.btn-fraud:hover { background: #d97706; color: white; }

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-dark h2,
.section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-cream { background: var(--cream); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
}
p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}
.divider-light { background: rgba(255,255,255,0.25); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─── HOME - ABOUT ─── */
.home-about .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-about .col-img {
  position: relative;
}
.home-about .col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.home-about .img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.home-about .col-img::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ─── CERTIFICATIONS ─── */
.cert-body {
  max-width: 660px;
  margin-bottom: 56px !important;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cert-item {
  padding: 28px 20px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--trans);
}
.cert-item:last-child { border-right: none; }
.cert-item:hover { background: rgba(255,255,255,0.07); }
.cert-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.cert-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ocean), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url('/static/img/laks.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero .label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  max-width: 600px;
}

/* ─── PRODUCTS ─── */
.lead {
  font-size: 1.15rem;
  color: var(--text) !important;
  line-height: 1.8;
  margin-bottom: 24px !important;
}
.product-intro { max-width: 720px; margin-bottom: 64px; }

.product-section { padding: 80px 0; }
.product-section + .product-section {
  border-top: 1px solid var(--grey-light);
}
.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.product-section-header h2 { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-card {
  background: white;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--trans);
}
.product-card:hover {
  background: var(--navy);
}
.product-card:hover h3 { color: white; }
.product-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  transition: color var(--trans);
}

/* ─── TRIM GUIDE ─── */
.trim-guide { margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--grey-light); }
.trim-guide h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.trim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}
.trim-card {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--trans);
}
.trim-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.trim-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.trim-card-body { padding: 14px 16px; }
.trim-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.trim-card ul {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── OM OSS ─── */
.om-oss-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.om-oss-grid p { font-size: 1.05rem; }
.info-box {
  background: var(--cream);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.info-box h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.cert-list { list-style: none; }
.cert-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.cert-list li:last-child { border-bottom: none; }
.cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
}
.contact-card {
  background: white;
  padding: 40px 36px;
  transition: background var(--trans);
}
.contact-card:hover { background: var(--cream); }
.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.contact-card p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}
.contact-card a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--trans);
}
.contact-card a:hover { color: var(--navy); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-inka {
  color: white;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 20px;
  line-height: 1.7;
}
.footer-brand a {
  color: rgba(201,168,76,0.7);
  font-size: 0.82rem;
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  transition: color var(--trans);
}
.footer-brand a:hover { color: var(--gold); }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col li {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-col ul { list-style: none; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--trans);
  font-size: 0.88rem;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .home-about .two-col { grid-template-columns: 1fr; gap: 48px; }
  .om-oss-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .info-box { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .main-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: white;
    z-index: 199;
    padding: 32px 24px;
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a {
    font-size: 1.4rem;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-light);
    border-radius: 0;
    color: var(--navy) !important;
  }
  .main-nav a::after { display: none; }
  .mobile-toggle { display: flex; }
  .lang-switcher { margin-left: auto; }
  .hero h1 { font-size: 2.8rem; }
  .section { padding: 64px 0; }
  .page-hero { padding: 130px 0 60px; }
  .trim-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .product-section-header { flex-direction: column; align-items: flex-start; }
  .cert-grid { grid-template-columns: repeat(3,1fr); }
}

/* ─── SPECIES GRID ─── */
.species-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.species-card {
  position: relative;
  text-decoration: none;
  display: block;
  overflow: hidden;
  background: var(--navy);
}
.species-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity var(--trans), transform 0.6s var(--ease);
}
.species-card:hover img {
  opacity: 0.6;
  transform: scale(1.04);
}
.species-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(11,31,58,0.9), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: padding var(--trans);
}
.species-card:hover .species-label { padding-bottom: 36px; }
.species-label svg { opacity: 0.7; transition: transform var(--trans), opacity var(--trans); }
.species-card:hover .species-label svg { transform: translateX(6px); opacity: 1; }

@media (max-width: 700px) {
  .species-grid { grid-template-columns: 1fr; }
  .species-card img { height: 280px; }
}

/* ─── HEADER FIX på innersider ─── */
.site-header:not(.hero-mode) {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.site-header:not(.hero-mode) .main-nav a { color: var(--text); }
.site-header:not(.hero-mode) .logo-inka { color: var(--navy); }
.site-header:not(.hero-mode) .logo-sub { color: var(--ocean); }
.site-header:not(.hero-mode) .lang-switcher .active-lang { color: var(--navy); }
.site-header:not(.hero-mode) .lang-switcher a { color: var(--ocean); }
.site-header:not(.hero-mode) .mobile-toggle span { background: var(--navy); }

/* ─── PRODUKT DETAIL / TRIM GUIDE ─── */
.pd-intro { max-width: 720px; margin-bottom: 80px; }

.trim-section { }
.trim-header { margin-bottom: 48px; max-width: 600px; }
.trim-header h2 { margin-bottom: 12px; }
.trim-header p { color: var(--text-light); }

.trim-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.trim-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 24px;
  background: var(--cream);
  border: 1.5px solid var(--grey-light);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font-body);
}
.trim-tab:hover { background: white; border-color: var(--navy); }
.trim-tab.active {
  background: white;
  border-color: var(--navy);
  border-bottom-color: white;
  position: relative;
  z-index: 2;
}
.trim-tab-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.trim-tab-count {
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}
.trim-tab.active .trim-tab-count { color: var(--gold); }

.trim-progress {
  height: 2px;
  background: var(--grey-light);
  margin-bottom: 0;
  border-radius: 0;
}
.trim-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s var(--ease);
  border-radius: 0;
}

.trim-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--navy);
  border-top: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  margin-top: -1px;
}
.trim-panel.active { display: grid; }

.trim-panel-img {
  position: relative;
  background: #1a1a1a;
  min-height: 420px;
}
.trim-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}
.trim-panel-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.trim-panel-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 40px;
  letter-spacing: 0.04em;
}
.trim-panel-specs {
  padding: 48px;
  background: white;
  display: flex;
  flex-direction: column;
}
.trim-panel-specs h3 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 4px;
}
.trim-spec-count {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px !important;
}
.trim-spec-list {
  list-style: none;
  flex: 1;
}
.trim-spec-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.92rem;
  color: var(--text);
  animation: specIn 0.4s var(--ease) both;
}
.trim-spec-list li:last-child { border-bottom: none; }
@keyframes specIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.spec-check {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .trim-panel.active { grid-template-columns: 1fr; }
  .trim-panel-img { min-height: 260px; }
  .trim-panel-specs { padding: 28px 24px; }
  .trim-tabs { gap: 3px; }
  .trim-tab { padding: 10px 14px; }
  .trim-tab-name { font-size: 0.85rem; }
  .trim-panel { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
}

/* ═══════════════════════════════════════
   OFF-CANVAS MOBILE MENU
═══════════════════════════════════════ */

/* Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s, width 0.3s var(--ease);
  transform-origin: center;
}
.mobile-toggle.is-open .bar-1 { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open .bar-2 { opacity: 0; width: 0; }
.mobile-toggle.is-open .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.offcanvas-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* Drawer */
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100dvh;
  background: var(--navy);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.offcanvas.is-open {
  transform: translateX(0);
}
.offcanvas-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow-y: auto;
}

/* Logo i drawer */
.offcanvas-logo {
  display: flex;
  flex-direction: column;
  padding: 40px 36px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.offcanvas-logo .logo-inka {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: white;
  line-height: 1;
}
.offcanvas-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 4px;
}

/* Nav items */
.offcanvas-nav {
  list-style: none;
  flex: 1;
  padding: 24px 0;
}
.offcanvas-nav > li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.offcanvas.is-open .offcanvas-nav > li:nth-child(1) { opacity:1; transform:none; transition-delay: 0.08s; }
.offcanvas.is-open .offcanvas-nav > li:nth-child(2) { opacity:1; transform:none; transition-delay: 0.13s; }
.offcanvas.is-open .offcanvas-nav > li:nth-child(3) { opacity:1; transform:none; transition-delay: 0.18s; }
.offcanvas.is-open .offcanvas-nav > li:nth-child(4) { opacity:1; transform:none; transition-delay: 0.23s; }

.oc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--trans), padding-left var(--trans);
}
.oc-link:hover { color: var(--gold); padding-left: 44px; }
.oc-link-parent::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.oc-has-sub.is-open .oc-link-parent::after { transform: rotate(45deg); }

/* Subnav */
.oc-subnav {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  background: rgba(0,0,0,0.2);
}
.oc-has-sub.is-open .oc-subnav { max-height: 200px; }
.oc-subnav a {
  display: block;
  padding: 12px 36px 12px 52px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: color var(--trans);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.oc-subnav a:hover { color: var(--gold); }

/* Footer */
.offcanvas-footer {
  padding: 28px 36px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.3s var(--ease), transform 0.4s 0.3s var(--ease);
}
.offcanvas.is-open .offcanvas-footer { opacity: 1; transform: none; }

.oc-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}
.oc-lang-btn {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: color var(--trans);
}
.oc-lang-btn.active { color: var(--gold); }
.oc-lang-btn:hover { color: white; }
.oc-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oc-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--trans);
}
.oc-contact a:hover { color: var(--gold); }

/* Vis hamburger på mobil */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .main-nav { display: none !important; }
  .lang-switcher { display: none !important; }
}

/* ═══════════════════════════════════════
   FRAUD WARNING TOAST
═══════════════════════════════════════ */
.fraud-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: min(420px, calc(100vw - 40px));
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(11,31,58,0.18), 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #c0392b;
  z-index: 800;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s var(--ease);
}
.fraud-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.fraud-toast-inner {
  display: flex;
  gap: 16px;
  padding: 20px 20px 16px;
  align-items: flex-start;
}
.fraud-toast-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #fdf0ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 1px;
}
.fraud-toast-body { flex: 1; min-width: 0; }
.fraud-toast-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #c0392b;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.fraud-toast-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0 !important;
}
.fraud-toast-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--trans), color var(--trans);
  margin-top: -2px;
}
.fraud-toast-close:hover { background: var(--cream); color: var(--navy); }
.fraud-toast-footer {
  padding: 0 20px 16px 72px;
}
.fraud-toast-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c0392b;
  text-decoration: none;
  transition: gap var(--trans);
}
.fraud-toast-link:hover { gap: 10px; }
.fraud-toast-link svg { transition: transform var(--trans); }
.fraud-toast-link:hover svg { transform: translateX(3px); }

/* Progress bar som teller ned auto-dismiss (valgfritt) */
.fraud-toast-bar {
  height: 2px;
  background: #fbe9e7;
}
.fraud-toast-bar-fill {
  height: 100%;
  background: #c0392b;
  width: 100%;
  transform-origin: left;
  animation: none;
}

@media (max-width: 480px) {
  .fraud-toast { bottom: 20px; right: 16px; left: 16px; width: auto; }
}

/* Erstatter emoji-ikoner */
.om-pillar-icon {
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.om-family-item .spec-check,
.trim-spec-list li .spec-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.om-family-item .spec-check::after,
.trim-spec-list li .spec-check::after {
  content: '';
  position: absolute;
  left: 3px; top: 5px;
  width: 7px; height: 4px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}
.om-stat-globe::before {
  content: 'Global';
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════
   SAMARBEIDSPARTNERE
═══════════════════════════════════════ */
.partner-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.partner-feature-text h2 { margin-bottom: 20px; }
.partner-feature-text p { margin-bottom: 16px; }

.partner-feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-badge-inner {
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.partner-badge-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.partner-badge-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.partner-benefit {
  background: white;
  padding: 40px 32px;
}
.partner-benefit-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.partner-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.partner-benefit p { font-size: 0.88rem; color: var(--text-light); }

.partner-why { text-align: center; max-width: 700px;
  text-wrap: balance; margin: 0 auto; }
.partner-why h2 { color: white; margin-bottom: 48px; }
.partner-why-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}
.partner-why-col {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.partner-why-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.partner-why-col p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0 !important; }
.partner-why-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}
.partner-why-result {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8) !important;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .partner-feature { grid-template-columns: 1fr; gap: 48px; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
  .partner-why-split { flex-direction: column; }
}
@media (max-width: 500px) {
  .partner-benefits { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   JOBB
═══════════════════════════════════════ */
.jobb-looking { max-width: 800px; }
.jobb-looking h2 { color: white; margin-bottom: 40px; }

.jobb-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.jobb-trait {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.jobb-trait-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}
.jobb-trait p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin: 0 !important;
  padding-top: 4px;
}

.jobb-cta { max-width: 600px; }
.jobb-cta h2 { margin-bottom: 16px; }
.jobb-cta p { margin-bottom: 32px; }
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 40px;
  transition: background var(--trans), transform var(--trans);
}
.btn-primary:hover { background: var(--ocean); transform: translateY(-1px); }

@media (max-width: 600px) {
  .jobb-traits { grid-template-columns: 1fr; }
}

/* ─── JOBB FIXES ─── */
.jobb-trait p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

/* ─── OM-PILLARS GRID FIX ─── */
.om-pillars {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2px !important;
  background: var(--grey-light) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  margin-top: 48px;
}
.om-pillar {
  background: white !important;
  padding: 40px 32px !important;
}
@media (max-width: 900px) {
  .om-pillars { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 500px) {
  .om-pillars { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   KONTAKT
═══════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
}
.kontakt-info {
  background: white;
  display: flex;
  flex-direction: column;
}
.kontakt-card {
  padding: 32px 36px;
  border-bottom: 1px solid var(--grey-light);
  flex: 1;
}
.kontakt-card:last-child { border-bottom: none; }
.kontakt-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.kontakt-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0 !important;
}
.kontakt-card a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--trans);
}
.kontakt-card a:hover { color: var(--ocean); }

.kontakt-map {
  min-height: 520px;
  z-index: 1;
}

/* Leaflet overrides */
.leaflet-container { font-family: var(--font-body); }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(11,31,58,0.15);
  border: none;
}
.leaflet-popup-content { font-size: 0.85rem; line-height: 1.5; }
.map-marker-dot {
  width: 20px;
  height: 20px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(11,31,58,0.3);
}

@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-map { min-height: 300px; }
}

/* ═══════════════════════════════════════
   PERSONS GRID
═══════════════════════════════════════ */
.persons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.person-card {
  background: white;
  display: flex;
  flex-direction: column;
  transition: background var(--trans);
}
.person-card:hover { background: var(--navy); }
.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--cream);
}
.person-photo--empty {
  background: var(--grey-light);
  position: relative;
}
.person-photo--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--grey-light) 0%, #d8d8d8 100%);
}
.person-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.person-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--trans);
}
.person-card:hover .person-name { color: var(--gold); }
.person-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  transition: color var(--trans);
}
.person-card:hover .person-title { color: rgba(255,255,255,0.5); }
.person-contact {
  font-size: 0.82rem;
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--trans);
  line-height: 1.6;
}
.person-card:hover .person-contact { color: rgba(255,255,255,0.7); }
.person-contact:hover { color: var(--gold) !important; }

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

/* ─── JOBB TRAIT FIX ─── */
.jobb-trait p { color: rgba(255,255,255,0.8) !important; }
.jobb-trait-num { color: var(--gold) !important; opacity: 0.6; }

/* ─── SERTIFISERINGAR ─── */
.sert-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.sert-text p { margin-bottom: 20px; color: var(--text); }
.sert-text p:last-child { margin-bottom: 0; }

.sert-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.sert-badge {
  background: white;
  padding: 20px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-align: center;
  transition: background var(--trans), color var(--trans);
}
.sert-badge:hover { background: var(--navy); color: var(--gold); }

@media (max-width: 768px) {
  .sert-grid { grid-template-columns: 1fr; gap: 40px; }
  .sert-certs { position: static; grid-template-columns: repeat(3, 1fr); }
}

/* ─── HERO H1 ORPHAN FIX ─── */
.hero h1 { text-wrap: balance; }

/* ─── HERO H1 MOBIL ─── */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.12;
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

/* ─── HERO H1 STØRRELSE ─── */
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
}

/* ─── JOBB TRAIT P FIX ─── */
.section--dark .jobb-traits .jobb-trait p { color: rgba(255,255,255,0.8) !important; }

/* ─── JOBB TRAITS HARD FIX ─── */
.jobb-trait p { color: var(--text) !important; }
.jobb-traits { background: rgba(0,0,0,0.15) !important; }

/* ─── JOBB LOOKING PÅ LYS BAKGRUNN ─── */
.jobb-looking h2 { color: var(--navy); }
.jobb-traits { background: var(--grey-light) !important; }
.jobb-trait { background: white !important; }
.jobb-trait p { color: var(--text) !important; }
.jobb-trait-num { color: var(--gold) !important; opacity: 0.5; }

/* ─── PARTNER WHY LYS BAKGRUNN ─── */
.partner-why .label { color: var(--gold); }
.partner-why h2 { color: var(--navy) !important; }
.partner-why-col p { color: var(--text) !important; }
.partner-why-result { color: var(--text) !important; }
