/**
 * GJV 2026 Main Stylesheet
 * Design System: https://memory/gjv-design
 *
 * Structure:
 * 1. CSS Reset & Normalize
 * 2. CSS Custom Properties (Design Tokens)
 * 3. Typography System
 * 4. Layout & Spacing
 * 5. Component Styles
 * 6. Navigation Styles
 * 7. Hero Section
 * 8. Footer
 * 9. Section Variants
 * 10. WordPress-Specific
 * 11. Responsive Breakpoints
 * 12. Accessibility (prefers-reduced-motion)
 */

/* ============================================================
   0. Global Atmosphere (noise texture from mockup v4)
   ============================================================ */

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

/* ============================================================
   1. CSS Reset & Normalize
   ============================================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--gjv-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gjv-text);
  background-color: var(--gjv-cream);
  overflow-x: hidden;
}

main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/* Typography reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

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

/* Links */
a {
  color: var(--gjv-sage);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

a:hover {
  color: var(--gjv-sage-ui);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  max-width: 100%;
  height: auto;
}

/* Forms */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  appearance: none;
  border: 1px solid var(--gjv-border-input);
  padding: 0.75rem;
  font-family: var(--gjv-font-body);
  border-radius: 0.5rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gjv-sage);
  box-shadow: 0 0 0 3px rgba(58, 120, 96, 0.1);
}

/* ============================================================
   2. CSS Custom Properties (Design Tokens)
   ============================================================ */

:root {
  /* Colors - Primary */
  --gjv-orange: #F59E2A;
  --gjv-orange-text: #9E5F00;
  --gjv-orange-light: #FDB94D;
  --gjv-orange-hot: #FF8C00;

  /* Colors - Sage */
  --gjv-sage: #3B7860;
  --gjv-sage-ui: #4A8B6F;
  --gjv-sage-light: #6BAF8E;
  --gjv-sage-pale: #E8F0EB;
  --gjv-sage-dark: #2D6B4F;

  /* Colors - Neutrals */
  --gjv-dark: #1E1D1B;
  --gjv-dark-warm: #2C2926;
  --gjv-cream: #FAF8F4;
  --gjv-cream-warm: #F5F0E8;
  --gjv-text: #3D3830;
  --gjv-text-light: #635D56;
  --gjv-text-muted: #756E68;
  --gjv-border: #E7E2DA;
  --gjv-border-input: #968C7F;

  /* Fonts */
  --gjv-font-display: 'Bricolage Grotesque', sans-serif;
  --gjv-font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --duration-instant: 100ms;
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
}

/* ============================================================
   3. Typography System
   ============================================================ */

/* Display Text */
.display-xl {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.display-lg {
  font-family: var(--gjv-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display-md {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/* Headings */
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: var(--gjv-font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  font-size: 2rem;
  font-family: var(--gjv-font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h3 {
  font-size: 1.5rem;
  font-family: var(--gjv-font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h4 {
  font-size: 1.25rem;
  font-family: var(--gjv-font-display);
  font-weight: 600;
  line-height: 1.25;
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Body Text */
.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Overline / Label */
.overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gjv-text-muted);
}

.overline-orange {
  color: var(--gjv-orange);
}

/* ============================================================
   4. Layout & Spacing
   ============================================================ */

.gjv-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.gjv-main {
  display: block;
}

/* ============================================================
   5. Component Styles
   ============================================================ */

/* Buttons */
.gjv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 10px;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.gjv-btn:focus-visible {
  outline: 3px solid var(--gjv-sage);
  outline-offset: 2px;
}

.gjv-btn--primary {
  background-color: var(--gjv-orange);
  color: var(--gjv-dark);
  box-shadow: var(--shadow-md);
}

.gjv-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 158, 42, 0.3);
}

.gjv-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gjv-btn--primary:hover::after {
  opacity: 1;
}

.gjv-btn--primary:active {
  transform: translateY(0);
}

.gjv-btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.gjv-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.gjv-btn--secondary:active {
  transform: translateY(0);
}

.gjv-btn--ghost {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.gjv-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.gjv-btn--ghost:active {
  transform: translateY(0);
}

.gjv-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.gjv-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.gjv-btn--block {
  width: 100%;
  justify-content: center;
}

/* Tags */
.gjv-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--gjv-sage-pale);
  color: var(--gjv-sage-dark);
}

.gjv-tag--orange {
  background-color: var(--gjv-orange);
  color: var(--gjv-orange-text);
}

.gjv-tag--sage {
  background-color: var(--gjv-sage-pale);
  color: var(--gjv-sage-dark);
}

.gjv-tag--dark {
  background-color: var(--gjv-dark);
  color: white;
}

/* Cards */
.card {
  background-color: white;
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-xl);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gjv-orange-light);
}

.card-header {
  margin-bottom: var(--spacing-lg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.card-subtitle {
  color: var(--gjv-text-muted);
}

.card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.card-footer {
  border-top: 1px solid var(--gjv-border);
  padding-top: var(--spacing-lg);
}

/* Note / Callout */
.gjv-note {
  background-color: var(--gjv-sage-pale);
  border-left: 4px solid var(--gjv-sage);
  padding: var(--spacing-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--spacing-lg) 0;
}

.gjv-note p {
  margin: 0;
  color: var(--gjv-sage-dark);
  font-size: 0.95rem;
}

/* Gradient Bar */
.gjv-gradient-bar {
  height: 4px;
  background: linear-gradient(90deg, #F59E2A 0%, #FDB94D 25%, #3B7860 50%, #6BAF8E 75%, #F59E2A 100%);
  margin: 0;
}

/* Section Elements */
.gjv-section-overline {
  display: block;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gjv-sage);
}

.gjv-section-dark .gjv-section-overline {
  color: var(--gjv-sage-light);
}

.gjv-section-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gjv-section-subtitle {
  font-size: 1.125rem;
  color: var(--gjv-text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   6. Navigation Styles
   ============================================================ */

.gjv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--duration-normal) var(--ease-smooth);
}

/* WordPress admin bar offset */
body.admin-bar .gjv-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .gjv-header {
    top: 46px;
  }
}

.gjv-header-top {
  background-color: rgba(30, 29, 27, 0.94);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-header.scrolled .gjv-header-top {
  background-color: rgba(30, 29, 27, 0.95);
  box-shadow: var(--shadow-md);
}

.gjv-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.gjv-logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
  color: white;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-logo-wrapper:hover {
  opacity: 0.85;
}

/* Custom logo from WP admin */
.gjv-logo-wrapper .custom-logo-link {
  display: flex;
  align-items: center;
}

.gjv-logo-wrapper .custom-logo {
  height: 60px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.gjv-logo-fallback {
  width: 34px;
  height: 34px;
}

.gjv-logo-text {
  font-family: var(--gjv-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  line-height: 1;
}

.gjv-nav-primary {
  display: flex;
  align-items: center;
}

.gjv-nav-primary ul {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  margin: 0;
  padding: 0;
  list-style: none;
}

.gjv-nav-primary ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
}

.gjv-nav-primary ul li a:hover,
.gjv-nav-primary ul li.current-menu-item > a,
.gjv-nav-primary ul li.current_page_item > a {
  color: white;
}

/* Hover underline animation (not on current-menu-item) */
.gjv-nav-primary ul li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gjv-orange);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.gjv-nav-primary ul li a:hover::after {
  width: 100%;
}

/* Current page — full underline (overrides hover) */
.gjv-nav-primary ul li.current-menu-item > a::after,
.gjv-nav-primary ul li.current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--gjv-orange);
  border-radius: 2px;
}

.gjv-nav-mobile-cta {
  display: none;
}

.gjv-header-cta {
  flex-shrink: 0;
}

.gjv-header-cta .gjv-btn {
  padding: 10px 24px;
  font-size: 0.82rem;
  border-radius: 10px;
  letter-spacing: 0.3px;
}

.gjv-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.gjv-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.gjv-hamburger span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-smooth);
  display: block;
}

.gjv-menu-toggle[aria-expanded="true"] .gjv-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.gjv-menu-toggle[aria-expanded="true"] .gjv-hamburger span:nth-child(2) {
  opacity: 0;
}

.gjv-menu-toggle[aria-expanded="true"] .gjv-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================
   7. Hero Section
   ============================================================ */

.gjv-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gjv-dark);
  padding: 140px clamp(24px, 6vw, 80px) 80px;
}

/* Sub-page hero — compact, no full-viewport */
.gjv-hero--subpage {
  min-height: auto;
  padding: 140px clamp(24px, 6vw, 80px) 64px;
  text-align: center;
  background-color: var(--gjv-dark);
}

.gjv-hero--subpage .gjv-hero-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 800px;
}

.gjv-hero--subpage .gjv-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -3px;
  margin-bottom: 16px;
}

.gjv-hero--subpage .gjv-hero-subtitle {
  margin-bottom: var(--spacing-lg);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Sub-page hero atmosphere — pattern + ambient glows */
.gjv-hero--subpage::before {
  background-image: url('../img/pattern-organisk.svg');
  background-size: 1400px;
  background-position: center top;
  opacity: 0.5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
}

.gjv-hero--subpage::after {
  width: 60%;
  height: 200%;
  top: -60%;
  right: -15%;
  bottom: auto;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245, 158, 42, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(59, 120, 96, 0.08) 0%, transparent 50%);
}

.gjv-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(245, 158, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gjv-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(74, 139, 111, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.gjv-hero-background {
  position: relative;
  width: 160%;
  aspect-ratio: 1;
  max-width: 800px;
  justify-self: end;
  pointer-events: none;
  margin-right: -120px;
  margin-top: -60px;
}

.gjv-hero .gjv-container {
  position: relative;
  z-index: 2;
}

.gjv-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.gjv-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gjv-hero-overline {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: rgba(245, 158, 42, 0.15);
  border: 1px solid rgba(245, 158, 42, 0.3);
  border-radius: var(--radius-full);
  color: var(--gjv-orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gjv-hero-overline::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--gjv-orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: gjv-float 3s ease-in-out infinite;
}

@keyframes gjv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero entrance animation */
.gjv-hero-content {
  animation: gjv-fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.gjv-hero-background {
  animation: gjv-fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes gjv-fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.gjv-hero-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -4px;
  color: white;
  margin-bottom: 16px;
}

.gjv-hero-title .line {
  display: block;
}

.gjv-hero-title .line-indent {
  display: block;
  padding-left: clamp(20px, 4vw, 80px);
}

.gjv-hero-title .highlight {
  color: var(--gjv-orange);
}

.gjv-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.gjv-hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-xs);
}

.gjv-hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  color: white;
  margin-top: 40px;
}

.gjv-badge-item {
  text-align: center;
}

.gjv-badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.gjv-badge-value {
  font-family: var(--gjv-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  letter-spacing: -0.3px;
}

.gjv-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Atmospheric circles SVG */
.gjv-circles {
  width: 100%;
  height: 100%;
}

/* ============================================================
   8. Footer
   ============================================================ */

/* Partner Logos (above footer) */
/* Arrangører section (above footer) */
.gjv-footer-arrangorer {
  background-color: var(--gjv-dark);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.gjv-footer-arrangorer-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-2xl);
}

.gjv-footer-arrangorer-title a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.gjv-footer-arrangorer-title a:hover {
  color: var(--gjv-orange);
}

.gjv-footer-arrangorer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.gjv-footer-org-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-footer-org-logo img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-footer-org-logo:hover img {
  opacity: 1;
}

/* Samarbeidspartnere scrolling strip (dark bg) */
.gjv-footer-partnere {
  background-color: var(--gjv-dark);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.gjv-footer-partnere-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.gjv-footer-partnere-label a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-footer-partnere-label a:hover,
.gjv-footer-partnere-label a:focus-visible {
  color: var(--gjv-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gjv-footer-partnere-track {
  display: flex;
  width: max-content;
  animation: gjv-partner-scroll 25s linear infinite;
}

.gjv-footer-partnere-scroll {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-right: clamp(2.5rem, 5vw, 4rem);
  padding-top: 16px;
  padding-bottom: 16px;
}

.gjv-footer-partner-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.8;
}

.gjv-footer-partner-item img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 140px;
  filter: brightness(0) invert(1);
}

.gjv-footer-partner-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

@keyframes gjv-partner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gjv-footer-partnere-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
  }
  .gjv-footer-partnere-scroll:last-child { display: none; }
}

.gjv-footer {
  background-color: var(--gjv-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.gjv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.gjv-footer-col {
  /* column layout */
}

.gjv-footer-col--logo {
  /* logo column specifics */
}

.gjv-footer-logo {
  margin-bottom: var(--spacing-md);
}

.gjv-footer-logo .custom-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.gjv-footer-logo .gjv-logo-fallback {
  width: 60px;
  height: 60px;
}

.gjv-footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 250px;
}

.gjv-footer-title {
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gjv-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gjv-footer-links li {
  margin-bottom: var(--spacing-sm);
}

.gjv-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-footer-links a:hover {
  color: var(--gjv-orange);
}

.gjv-footer-follow-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--spacing-md);
}

.gjv-footer-email {
  margin-top: var(--spacing-sm);
}

.gjv-footer-email-link {
  color: var(--gjv-orange);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-footer-email-link:hover {
  color: var(--gjv-orange-light);
}

.gjv-footer-social {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.gjv-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(245, 158, 42, 0.2);
  color: var(--gjv-orange);
  transition: all var(--duration-fast) var(--ease-smooth);
}

.gjv-social-link:hover {
  background-color: var(--gjv-orange);
  color: var(--gjv-dark);
  transform: translateY(-3px);
}

.gjv-footer-bottom {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gjv-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* consolidated into line ~1260 */

.gjv-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.gjv-footer-credit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.gjv-footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.gjv-footer-credit a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   8b. Sub-page Components
   ============================================================ */

/* Content grid: main + sidebar */
.gjv-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.gjv-content-main {
  max-width: 680px;
}

/* About list */
.gjv-about-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-xl) 0 0;
  text-align: center;
}

.gjv-about-list li {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(61, 56, 48, 0.06);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gjv-text);
}

.gjv-about-list li:last-child {
  border-bottom: none;
}

/* Info card sidebar */
.gjv-info-card {
  background-color: var(--gjv-dark);
  color: white;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: sticky;
  top: 100px;
}

.gjv-info-card-title {
  font-family: var(--gjv-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: white;
}

.gjv-info-list {
  margin: 0 0 var(--spacing-xl);
}

.gjv-info-list dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--spacing-md);
}

.gjv-info-list dd {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Stats section */
.gjv-stats-section {
  background-color: var(--gjv-dark);
  color: white;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  text-align: center;
}

.gjv-stat-card {
  padding: var(--spacing-lg);
}

.gjv-stat-number {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gjv-orange);
  line-height: 1;
}

.gjv-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Members grid */
.gjv-members {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gjv-text);
  max-width: 640px;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

/* Centered section intro */
.gjv-container[style*="text-align: center"] .gjv-section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Info card sage variant */
.gjv-info-card--sage {
  background: linear-gradient(135deg, var(--gjv-sage-ui) 0%, #2d6b50 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gjv-info-card--sage .gjv-info-card-title {
  color: white;
}

.gjv-info-card--sage .gjv-info-list dt {
  color: var(--gjv-sage-light);
}

.gjv-info-card--sage .gjv-info-list dd {
  color: white;
}

.gjv-info-card--sage .gjv-info-list dd a {
  color: var(--gjv-orange-light);
}

/* Members logo grid (Om GJV — with actual logos) */
.gjv-members-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.gjv-member-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-member-logo-link:hover {
  opacity: 1;
}

.gjv-member-logo-link img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Legacy text-only member grid */
.gjv-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.gjv-member-card {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border: 1px solid rgba(61, 56, 48, 0.06);
  transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth);
}

.gjv-member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 56, 48, 0.08);
}

.gjv-member-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gjv-dark);
}

/* Partners grid on Om GJV page */
.gjv-om-partnere {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-om-partnere-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.gjv-om-partner-logo {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-om-partner-logo:hover {
  opacity: 1;
}

.gjv-om-partner-logo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Sponsor CTA */
.gjv-sponsor-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-sponsor-cta {
  background: linear-gradient(135deg, var(--gjv-dark) 0%, #2a2925 100%);
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: white;
}

.gjv-sponsor-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
}

.gjv-sponsor-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

/* FAQ styling */
.gjv-faq {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-faq-items {
  max-width: 720px;
  margin-top: var(--spacing-xl);
}

.gjv-faq-item {
  border-bottom: 1px solid rgba(61, 56, 48, 0.1);
}

.gjv-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) 0;
  font-family: var(--gjv-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gjv-dark);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-faq-question::-webkit-details-marker {
  display: none;
}

.gjv-faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gjv-sage);
  flex-shrink: 0;
  margin-left: var(--spacing-md);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.gjv-faq-item[open] .gjv-faq-question::after {
  content: "−";
  transform: rotate(0deg);
}

.gjv-faq-question:hover {
  color: var(--gjv-sage);
}

.gjv-faq-answer {
  padding: 0 0 var(--spacing-lg);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gjv-text);
  max-width: 600px;
}

/* Pricing features list */
.gjv-pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 var(--spacing-xl);
}

.gjv-pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding-left: 20px;
}

.gjv-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gjv-sage);
  font-weight: 700;
}

/* Billetter info section */
.gjv-billetter-info {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-billetter-info .gjv-section-title {
  color: white;
}

.gjv-billetter-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--spacing-xl);
}

/* Checkin embed */
.gjv-checkin-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-checkin-embed-wrapper {
  min-height: 400px;
  margin: var(--spacing-xl) 0;
  border-radius: 12px;
  overflow: hidden;
}

.gjv-checkin-note {
  font-size: 0.9rem;
  color: var(--gjv-text);
  opacity: 0.6;
}

/* What's included */
.gjv-whats-included {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-included-list {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-xl);
  max-width: 600px;
  display: grid;
  gap: var(--spacing-sm);
}

.gjv-included-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gjv-text);
}

.gjv-included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gjv-sage);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Digital pakke */
.gjv-digital-intro {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gjv-text);
  max-width: 640px;
  margin-top: var(--spacing-md);
}

.gjv-digital-2024 {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-digital-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gjv-digital-card {
  background: white;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(61, 56, 48, 0.06);
}

.gjv-digital-card-title {
  font-family: var(--gjv-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gjv-dark);
}

.gjv-digital-card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gjv-text);
  margin-bottom: var(--spacing-lg);
}

.gjv-digital-sample {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-video-container {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-top: var(--spacing-xl);
  background: var(--gjv-dark);
}

.gjv-video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gjv-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
}

.gjv-video-note {
  font-size: 0.85rem;
  color: var(--gjv-text);
  opacity: 0.5;
  margin-top: var(--spacing-md);
}

.gjv-digital-2026 {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-digital-2026 .gjv-section-title {
  color: white;
}

.gjv-coming-soon-card {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  margin-top: var(--spacing-xl);
}

.gjv-coming-soon-icon {
  margin-bottom: var(--spacing-md);
  opacity: 0.4;
}

.gjv-coming-soon-title {
  font-family: var(--gjv-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.gjv-coming-soon-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.gjv-2026-info {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--spacing-xl);
}

/* Program page */
.gjv-program-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Side-by-side day layout */
.gjv-program-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.gjv-program-day {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gjv-border);
  overflow: hidden;
}

.gjv-program-day-header {
  background: var(--gjv-dark);
  padding: var(--spacing-lg) var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.gjv-program-day-title {
  font-family: var(--gjv-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

.gjv-program-day-date {
  font-size: 0.85rem;
  color: var(--gjv-orange);
  font-weight: 600;
}

.gjv-program-items {
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-lg);
}

.gjv-program-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid rgba(61, 56, 48, 0.06);
}

.gjv-program-item:last-child {
  border-bottom: none;
}

.gjv-program-item-time {
  font-family: var(--gjv-font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gjv-sage);
  white-space: nowrap;
  min-width: 100px;
  flex-shrink: 0;
}

.gjv-program-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gjv-dark);
  margin-bottom: 2px;
}

.gjv-program-item-description {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gjv-text);
  opacity: 0.6;
}

.gjv-program-note,
.gjv-speakers-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gjv-text);
  opacity: 0.35;
  padding: var(--spacing-xl) 0;
  font-style: italic;
}

/* Tag */
.gjv-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: rgba(59, 120, 96, 0.1);
  color: var(--gjv-sage);
}

/* Speakers page grid */
.gjv-speakers-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

/* ============================================================
   9. Decorative Circles & Section Atmosphere
   ============================================================ */

/*
 * Overlapping circle motif — "generasjoner som møtes i tro"
 * Orange (left/top) + green (right/bottom) radial gradients
 * Applied via ::before/::after at very low opacity
 * Each section gets a unique placement for visual variety
 */

/* About section — orange circle top-right, green circle bottom-left */
/* .gjv-about — consolidated (layout + decorative circles) — see section 11 */

.gjv-about .gjv-container {
  position: relative;
  z-index: 1;
}

/* Theme section (dark) — green circle right, orange glow left */
.gjv-theme {
  position: relative;
  overflow: hidden;
}

.gjv-theme::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 139, 111, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-theme .gjv-container {
  position: relative;
  z-index: 1;
}

/* Speakers preview — overlapping pair center-right */
.gjv-speakers-preview {
  position: relative;
  overflow: hidden;
}

.gjv-speakers-preview::before {
  content: '';
  position: absolute;
  top: 40%;
  right: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-speakers-preview::after {
  content: '';
  position: absolute;
  top: 55%;
  right: -2%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 120, 96, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-speakers-preview .gjv-container {
  position: relative;
  z-index: 1;
}

/* Audience section — orange bottom-right */
.gjv-audience {
  position: relative;
  overflow: hidden;
}

.gjv-audience::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-audience .gjv-container {
  position: relative;
  z-index: 1;
}

/* Program snippet (dark) — overlapping pair bottom-left */
.gjv-program-snippet {
  position: relative;
  overflow: hidden;
}

.gjv-program-snippet::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-program-snippet .gjv-container {
  position: relative;
  z-index: 1;
}

/* CTA banner — green circle top-left, orange bottom-right */
.gjv-cta-banner {
  position: relative;
  overflow: hidden;
}

.gjv-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 120, 96, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-cta-banner .gjv-container {
  position: relative;
  z-index: 1;
}

/* Newsletter (dark) — green glow center */
.gjv-newsletter {
  position: relative;
  overflow: hidden;
}

.gjv-newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 139, 111, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gjv-newsletter .gjv-container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   9b. GJV Pattern Backgrounds
   ============================================================ */

/* Organic atmosphere pattern — use on dark sections via ::before */
.gjv-pattern-bg {
  position: relative;
  overflow: hidden;
}

.gjv-pattern-bg::before {
  content: '';
  position: absolute;
  inset: -40px -80px;
  background-image: url('../img/pattern-organisk.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.gjv-pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   9c. Section Variants
   ============================================================ */

.gjv-section-dark {
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-section-dark a {
  color: var(--gjv-orange);
}

.gjv-section-dark a:hover {
  color: var(--gjv-orange-light);
}

.gjv-section-warm {
  background-color: var(--gjv-cream-warm);
}

.gjv-section-white {
  background-color: white;
}

.gjv-section-with-gradient {
  position: relative;
}

.gjv-section-with-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(245, 158, 42, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================================
   10. Additional Components
   ============================================================ */

/* Text Marquee */
.gjv-marquee {
  overflow: hidden;
  background-color: var(--gjv-orange);
  color: var(--gjv-dark);
  padding: var(--spacing-lg) 0;
}

.gjv-marquee-track {
  display: flex;
  overflow: hidden;
}

.gjv-marquee-content {
  display: flex;
  gap: var(--spacing-3xl);
  padding-right: var(--spacing-3xl);
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.gjv-marquee-content:hover {
  animation-play-state: paused;
}

.gjv-marquee-item {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--spacing-3xl);
}

.gjv-marquee-item::after {
  content: "·";
  font-size: 2rem;
  opacity: 0.3;
}

/* Partners Strip */
.gjv-partner-strip {
  overflow: hidden;
  padding: var(--spacing-2xl) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-partner-strip-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.gjv-partner-strip-content {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
  animation: marquee 20s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}

.gjv-partner-item {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.gjv-partner-strip-track:hover .gjv-partner-item {
  opacity: 0.8;
}

.gjv-partner-name {
  font-family: var(--gjv-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gjv-text);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--gjv-border);
}

/* Newsletter Section */
.gjv-newsletter {
  background-color: var(--gjv-dark-warm);
  color: white;
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Gradient bar at top */
.gjv-newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gjv-orange), var(--gjv-sage-ui));
  z-index: 2;
}

.gjv-newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.gjv-newsletter-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
  margin-bottom: 10px;
}

.gjv-newsletter-description {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0;
}

.gjv-newsletter-form {
  /* form container */
}

.gjv-newsletter-input-group {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.gjv-newsletter-input {
  font-family: var(--gjv-font-body);
  font-size: 0.9rem;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  width: 280px;
  outline: none;
  transition: all 0.2s ease;
}

.gjv-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.gjv-newsletter-input:focus {
  border-color: var(--gjv-orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 42, 0.2);
}

.gjv-newsletter-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--spacing-md);
}

/* ============================================================
   11. Page Sections & Components
   ============================================================ */

/* Link Arrow */
.gjv-link-arrow {
  color: var(--gjv-sage);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-link-arrow:hover {
  color: var(--gjv-sage-ui);
}

/* About Section (mockup: 2-column with image + decorative circles) */
.gjv-about {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gjv-about::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 120, 96, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.gjv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.gjv-about-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.gjv-about-intro {
  font-size: 1.05rem;
  color: var(--gjv-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.gjv-link-arrow--lg {
  font-size: 1.05rem;
  font-weight: 600;
}

.gjv-about-visual {
  position: relative;
}

.gjv-about-sticker {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gjv-orange);
  color: var(--gjv-dark);
  font-family: var(--gjv-font-display);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 8px 24px rgba(245, 158, 42, 0.3);
  animation: gjv-float 4s ease-in-out infinite;
}

.gjv-about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.gjv-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: var(--spacing-lg);
}

/* Stats in visual column (2×2 grid under image) */

.gjv-stat {
  text-align: center;
  position: relative;
  padding: var(--spacing-lg) var(--spacing-md);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gjv-border);
  transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth);
}

.gjv-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gjv-stat-number {
  font-family: var(--gjv-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gjv-orange);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.gjv-stat-label {
  font-size: 0.9rem;
  color: var(--gjv-text-muted);
  font-weight: 500;
  margin: 0;
}

/* Stats section (tpl-om-gjv) */
.gjv-stats-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-xl);
}

.gjv-stat-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gjv-border);
}

/* Theme Section */
.gjv-theme {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}


.gjv-theme-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  color: white;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.gjv-theme-title .hi-orange {
  color: var(--gjv-orange);
}

.gjv-theme-title .hi-sage {
  color: var(--gjv-sage-light);
}

.gjv-theme-quote {
  border-left: none;
  padding-left: 0;
  margin: 0 0 var(--spacing-xl);
}

.gjv-theme-quote-text {
  display: none; /* Replaced by theme-title as the big quote */
}

.gjv-theme-quote-attribution {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

.gjv-theme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}

.gjv-theme-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 32px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.gjv-theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gjv-orange), var(--gjv-sage-ui));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gjv-theme-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.gjv-theme-card:hover::before {
  opacity: 1;
}

.gjv-theme-card-number {
  font-family: var(--gjv-font-display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: -3px;
  color: rgba(255, 255, 255, 0.04);
  margin-bottom: 20px;
}

.gjv-theme-card-title {
  font-family: var(--gjv-font-display);
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.gjv-theme-card-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* Speakers Preview */
.gjv-speakers-preview {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-speakers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.gjv-speakers-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
}

/* Speakers grid — used on front page preview AND talere page wrapper */
.gjv-speakers-preview .gjv-speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.gjv-speakers-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--spacing-xl);
}

.gjv-speaker-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gjv-border);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gjv-speaker-image-placeholder {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gjv-speaker-image-placeholder svg {
  width: 100%;
  height: 100%;
}

.gjv-speaker-info {
  padding: var(--spacing-lg);
}

.gjv-speaker-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.gjv-speaker-role {
  color: var(--gjv-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.gjv-speaker-description {
  color: var(--gjv-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.gjv-speaker-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: var(--gjv-sage-pale);
  color: var(--gjv-sage-dark);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.gjv-speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.gjv-speakers-note {
  text-align: center;
  color: var(--gjv-text-muted);
  font-size: 0.85rem;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  border: 1px dashed var(--gjv-border);
  border-radius: var(--radius-md);
}

/* Audience Section */
.gjv-audience {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-cream-warm);
}

.gjv-audience-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: var(--spacing-md);
}

.gjv-audience-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 64px;
}

.gjv-audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.gjv-audience-card {
  background: white;
  border: 1px solid var(--gjv-border);
  border-radius: 24px;
  padding: 44px 32px 40px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.gjv-audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gjv-audience-card:nth-child(1)::before {
  background: var(--gjv-orange);
}

.gjv-audience-card:nth-child(2)::before {
  background: var(--gjv-sage-ui);
}

.gjv-audience-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gjv-orange), var(--gjv-sage-ui));
}

.gjv-audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}

.gjv-audience-card:hover::before {
  opacity: 1;
}

.gjv-audience-card-title {
  font-family: var(--gjv-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.gjv-audience-card-description {
  color: var(--gjv-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* Program Snippet */
.gjv-program-snippet {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-program-snippet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.gjv-program-snippet-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: white;
}

.gjv-program-snippet .gjv-link-arrow {
  color: var(--gjv-orange);
}

.gjv-program-snippet .gjv-link-arrow:hover {
  color: var(--gjv-orange-light);
}

/* Program snippet items (front page) */
.gjv-program-snippet-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-xl) 0 var(--spacing-2xl);
  text-align: left;
}

.gjv-program-snippet-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-program-snippet-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.gjv-program-snippet-item h3 {
  font-family: var(--gjv-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: var(--spacing-md) 0 var(--spacing-sm);
}

.gjv-program-snippet-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Program badges */
.gjv-program-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 8px;
}

.gjv-program-badge--plenum {
  background: rgba(245, 158, 42, 0.2);
  color: var(--gjv-orange-light);
}

.gjv-program-badge--seminar {
  background: rgba(59, 120, 96, 0.2);
  color: var(--gjv-sage-light);
}

.gjv-program-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.gjv-program-tab-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
}

.gjv-program-tab-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gjv-orange);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gjv-program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gjv-program-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gjv-program-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gjv-program-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  font-style: normal;
}

.gjv-program-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Banner Section */
.gjv-cta-banner {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-dark);
  color: white;
  text-align: center;
}

.gjv-cta-banner-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -3px;
  color: white;
  margin-bottom: 24px;
}

.gjv-cta-banner-title .hi-orange {
  color: var(--gjv-orange);
}

.gjv-cta-banner-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.gjv-pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 740px;
  margin: 56px auto 0;
}

.gjv-pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
}

.gjv-pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.gjv-pricing-card--featured {
  border-color: var(--gjv-orange);
  position: relative;
}

.gjv-pricing-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gjv-orange);
  color: var(--gjv-dark);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.5px;
}

.gjv-pricing-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gjv-sage-light);
  margin-bottom: 16px;
}

.gjv-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-xs);
  margin-bottom: 8px;
}

.gjv-currency {
  display: none;
}

.gjv-price {
  font-family: var(--gjv-font-display);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}

.gjv-pricing-description {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.gjv-pricing-features {
  list-style: none;
  margin: 0 0 var(--spacing-xl) 0;
  padding: 0;
}

.gjv-pricing-features li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--gjv-border);
  font-size: 0.9rem;
  color: var(--gjv-text-light);
}

.gjv-pricing-features li:last-child {
  border-bottom: none;
}

/* Program Page Sections */
.gjv-program-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gjv-program-tabs-nav {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.gjv-program-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: 2px solid var(--gjv-border);
  color: var(--gjv-text-muted);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.gjv-program-tab-btn:hover {
  border-color: var(--gjv-sage);
  color: var(--gjv-sage);
}

.gjv-program-tab-btn--active {
  background-color: var(--gjv-sage);
  border-color: var(--gjv-sage);
  color: white;
}

.gjv-program-tab-pane {
  display: none;
}

.gjv-program-tab-pane--active {
  display: block;
}

.gjv-program-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gjv-program-section .gjv-program-item {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gjv-border);
  align-items: flex-start;
}

.gjv-program-section .gjv-program-item-time {
  font-size: 0.85rem;
  color: var(--gjv-text-muted);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
}

.gjv-program-item-content {
  flex: 1;
}

.gjv-program-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.gjv-program-item-description {
  color: var(--gjv-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.gjv-program-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.gjv-program-note {
  text-align: center;
  color: var(--gjv-text-muted);
  font-size: 0.85rem;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  border: 1px dashed var(--gjv-border);
  border-radius: var(--radius-md);
}

/* Content Wrapper (generic page content) */
.gjv-page-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gjv-content-wrapper {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gjv-text);
}

.gjv-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gjv-text-light);
  margin-bottom: var(--spacing-xl);
}

.gjv-checkin-section {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
  background-color: white;
  text-align: center;
}

.gjv-checkin-embed-wrapper {
  min-height: 400px;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gjv-border);
  box-shadow: var(--shadow-lg);
}

/* Pricing Strip */
.gjv-pricing-strip {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-pricing-strip-heading {
  font-family: var(--gjv-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.gjv-pricing-strip-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.gjv-pricing-strip-row + .gjv-pricing-strip-row {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gjv-pricing-strip-category {
  font-family: var(--gjv-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gjv-orange);
}

.gjv-pricing-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.gjv-pricing-strip-item {
  text-align: center;
}

.gjv-pricing-strip-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gjv-sage-light);
  margin-bottom: 6px;
}

.gjv-pricing-strip-price {
  display: block;
  font-family: var(--gjv-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
}

.gjv-pricing-strip-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.gjv-pricing-strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.gjv-pricing-strip-footer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* What's Included — card grid */
.gjv-whats-included {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gjv-included-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) var(--spacing-lg);
  border: 1px solid var(--gjv-border);
  text-align: center;
}

.gjv-included-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--spacing-md);
}

.gjv-included-item h3 {
  font-family: var(--gjv-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gjv-dark);
  margin-bottom: var(--spacing-sm);
}

.gjv-included-item p {
  font-size: 0.85rem;
  color: var(--gjv-text-muted);
  line-height: 1.5;
}

/* Keep old included-list for backwards compatibility */
.gjv-included-list {
  list-style: none;
  margin: var(--spacing-lg) 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gjv-included-list li {
  padding: var(--spacing-md) var(--spacing-lg);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gjv-border);
  padding-left: calc(var(--spacing-lg) + 1.5rem);
  position: relative;
}

.gjv-included-list li::before {
  content: '✓';
  position: absolute;
  left: var(--spacing-lg);
  color: var(--gjv-sage);
  font-weight: 700;
}

/* FAQ Section */
.gjv-faq {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.gjv-faq-item {
  background: white;
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gjv-faq-item[open] {
  border-color: var(--gjv-sage);
}

.gjv-faq-question {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--duration-fast) var(--ease-smooth);
}

.gjv-faq-question:hover {
  background-color: var(--gjv-sage-pale);
}

.gjv-faq-answer {
  padding: 0 var(--spacing-xl) var(--spacing-lg);
  color: var(--gjv-text-light);
  line-height: 1.7;
  margin: 0;
}

.gjv-faq-answer p {
  margin: 0 0 var(--spacing-sm);
}

.gjv-faq-answer p:last-child {
  margin-bottom: 0;
}

.gjv-faq-answer a {
  color: var(--gjv-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gjv-faq-answer a:hover {
  color: var(--gjv-orange);
}

.gjv-faq-list {
  margin: var(--spacing-sm) 0;
  padding-left: 1.4rem;
}

.gjv-faq-list li {
  margin-bottom: var(--spacing-xs);
}

.gjv-faq-list li:last-child {
  margin-bottom: 0;
}

.gjv-faq-list ul {
  margin: var(--spacing-xs) 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.gjv-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--gjv-orange) !important;
  text-decoration: none !important;
  margin-top: var(--spacing-xs);
}

.gjv-faq-cta:hover {
  color: var(--gjv-orange-hot) !important;
  text-decoration: underline !important;
}

/* Digital Pakke */
.gjv-digital-intro,
.gjv-digital-2024,
.gjv-digital-sample,
.gjv-digital-2026 {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gjv-digital-2024 {
  background-color: var(--gjv-cream-warm);
}

.gjv-digital-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.gjv-digital-card {
  background: white;
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-digital-card:hover {
  border-color: var(--gjv-sage);
  box-shadow: var(--shadow-md);
}

.gjv-digital-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.gjv-digital-card-description {
  color: var(--gjv-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.gjv-video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  aspect-ratio: 16 / 9;
}

.gjv-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gjv-video-note {
  color: var(--gjv-text-muted);
  font-size: 0.875rem;
}

.gjv-coming-soon-card {
  background: white;
  border: 2px dashed var(--gjv-sage);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  max-width: 500px;
  margin: var(--spacing-xl) auto;
}

.gjv-coming-soon-icon {
  margin-bottom: var(--spacing-lg);
}

.gjv-coming-soon-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.gjv-coming-soon-description {
  color: var(--gjv-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.gjv-2026-info {
  text-align: center;
  color: var(--gjv-text-muted);
  font-size: 0.9rem;
  margin-top: var(--spacing-xl);
}

/* ============================================================
   10b. Speaker Cards v2 (mockup-inspired)
   ============================================================ */

.gjv-speakers-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.gjv-speaker-card-v2 {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth);
}

.gjv-speaker-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
}

.gjv-speaker-card-v2__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gjv-dark);
}

.gjv-speaker-card-v2__image svg,
.gjv-speaker-card-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.gjv-speaker-card-v2:hover .gjv-speaker-card-v2__image img,
.gjv-speaker-card-v2:hover .gjv-speaker-card-v2__image svg {
  transform: scale(1.06);
}

.gjv-speaker-card-v2__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  background: linear-gradient(to top, rgba(30, 29, 27, 0.95) 0%, rgba(30, 29, 27, 0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.gjv-speaker-card-v2__name {
  font-family: var(--gjv-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
  margin: 0;
}

.gjv-speaker-card-v2__role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.gjv-speaker-card-v2__overlay .gjv-program-badge {
  width: fit-content;
  margin-bottom: var(--spacing-sm);
}

/* ============================================================
   11a. Om FBU — Members & Board
   ============================================================ */

.gjv-fbu-members {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-dark);
  color: white;
  text-align: center;
}

.gjv-fbu-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.gjv-fbu-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-fbu-member-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.gjv-fbu-member-logo {
  height: 56px;
  display: flex;
  align-items: center;
}

.gjv-fbu-member-logo img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.gjv-fbu-member-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* Board Members */
.gjv-fbu-board {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-fbu-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.gjv-fbu-board-member {
  text-align: center;
}

.gjv-fbu-board-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-lg);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.gjv-fbu-board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gjv-fbu-board-name {
  font-family: var(--gjv-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gjv-dark);
  margin-bottom: 4px;
}

.gjv-fbu-board-org {
  font-size: 0.85rem;
  color: var(--gjv-text-muted);
  margin-bottom: var(--spacing-sm);
}

.gjv-fbu-board-contact {
  display: block;
  font-size: 0.8rem;
  color: var(--gjv-sage);
  text-decoration: none;
  line-height: 1.6;
}

.gjv-fbu-board-contact:hover {
  text-decoration: underline;
}

/* Combined section (dark bg for both org + board) */
.gjv-fbu-combined {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background-color: var(--gjv-dark);
  color: white;
}

/* Board on dark bg */
.gjv-fbu-board-member--dark .gjv-fbu-board-name {
  color: white;
}

.gjv-fbu-board-member--dark .gjv-fbu-board-org {
  color: rgba(255, 255, 255, 0.6);
}

.gjv-fbu-board-member--dark .gjv-fbu-board-photo {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Documents */
.gjv-fbu-docs {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--gjv-cream);
}

.gjv-fbu-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gjv-fbu-doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) var(--spacing-lg);
  background: white;
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--gjv-sage);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.gjv-fbu-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gjv-sage);
}

.gjv-fbu-doc-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gjv-dark);
  text-align: center;
}

.gjv-fbu-doc-type {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gjv-text-muted);
}

@media (max-width: 768px) {
  .gjv-fbu-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-fbu-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gjv-fbu-members-grid {
    grid-template-columns: 1fr;
  }

  .gjv-fbu-board-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11b. Digital Portal
   ============================================================ */

.gjv-portal-usage-note {
  font-size: 0.8rem;
  color: var(--gjv-text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

.gjv-portal-controls {
  padding: var(--spacing-xl) 0;
  background: var(--gjv-cream);
}

.gjv-portal-search {
  max-width: 600px;
  margin: 0 auto;
}

.gjv-portal-search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--gjv-border);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: var(--gjv-font-body);
  background: white;
  transition: border-color var(--duration-fast) var(--ease-smooth);
}

.gjv-portal-search-input:focus {
  outline: none;
  border-color: var(--gjv-orange);
}

.gjv-portal-grid {
  padding: var(--spacing-xl) 0 clamp(4rem, 8vw, 6rem);
}

.gjv-portal-count {
  font-size: 0.85rem;
  color: var(--gjv-text-muted);
  margin-bottom: var(--spacing-lg);
}

.gjv-portal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--spacing-lg);
}

.gjv-portal-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gjv-border);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.gjv-portal-card:hover {
  box-shadow: var(--shadow-lg);
}

.gjv-portal-card[hidden] {
  display: none;
}

.gjv-portal-card__header {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  align-items: flex-start;
}

.gjv-portal-card__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.gjv-portal-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gjv-portal-card__meta {
  flex: 1;
  min-width: 0;
}

.gjv-portal-card__type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gjv-sage);
  margin-bottom: 4px;
}

.gjv-portal-card__title {
  font-family: var(--gjv-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gjv-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.gjv-portal-card__speaker {
  font-size: 0.85rem;
  color: var(--gjv-text-muted);
  font-weight: 500;
}

.gjv-portal-card__video {
  padding: 0 var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.gjv-portal-card__video iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  border: none;
  display: block;
}

.gjv-portal-card__audio {
  padding: 0 var(--spacing-lg) var(--spacing-md);
}

.gjv-portal-card__audio audio {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
}

.gjv-portal-card__details {
  border-top: 1px solid var(--gjv-border);
}

.gjv-portal-card__details summary {
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gjv-sage);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gjv-portal-card__details summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gjv-text-muted);
  transition: transform var(--duration-fast) var(--ease-smooth);
}

.gjv-portal-card__details[open] summary::after {
  transform: rotate(45deg);
}

.gjv-portal-card__details summary::-webkit-details-marker {
  display: none;
}

.gjv-portal-card__bio,
.gjv-portal-card__refleksjon {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gjv-text);
}

.gjv-portal-card__bio p,
.gjv-portal-card__refleksjon p {
  margin-bottom: var(--spacing-sm);
}

.gjv-portal-card__refleksjon ul,
.gjv-portal-card__refleksjon ol {
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.gjv-portal-card__refleksjon li {
  margin-bottom: var(--spacing-sm);
}

.gjv-portal-empty {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.gjv-password-form {
  max-width: 400px;
  margin: var(--spacing-xl) auto;
}

.gjv-container--narrow {
  max-width: 640px;
  text-align: center;
}

/* Fix Vimeo embed extra space */
.gjv-portal-card__video iframe {
  display: block;
}

.gjv-portal-card__video .wp-block-embed,
.gjv-portal-card__video .wp-embed-responsive {
  margin: 0;
  padding: 0;
}

/* ============================================================
   11c. 404 Page
   ============================================================ */

.gjv-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gjv-dark);
  color: white;
  text-align: center;
  padding: 140px 0 80px;
}

.gjv-404-content {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gjv-404-number {
  font-family: var(--gjv-font-display);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -8px;
  color: rgba(245, 158, 42, 0.12);
  display: block;
  margin-bottom: -40px;
}

.gjv-404-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
}

.gjv-404-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.gjv-404-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.gjv-404-search {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--spacing-xl);
}

.gjv-404-search-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--spacing-md);
}

.gjv-404-section .search-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 400px;
  margin: 0 auto;
}

.gjv-404-section .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.95rem;
}

.gjv-404-section .search-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.gjv-404-section .search-field:focus {
  border-color: var(--gjv-orange);
  outline: none;
}

.gjv-404-section .search-submit {
  padding: 12px 24px;
  background: var(--gjv-orange);
  color: var(--gjv-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.gjv-404-section .search-submit:hover {
  background: var(--gjv-orange-light);
}

/* ============================================================
   12. WordPress-Specific
   ============================================================ */

/* Screen Reader Text */
.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gjv-sage);
  color: white;
  padding: var(--spacing-md);
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 var(--radius-lg) 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus Visible */
:focus-visible {
  outline: 3px solid var(--gjv-sage);
  outline-offset: 2px;
  border-radius: 2px;
}

/* WordPress Alignment Classes */
.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.alignwide {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.alignright {
  float: right;
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

/* WordPress Media */
.wp-caption {
  background-color: var(--gjv-cream-warm);
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--gjv-text-muted);
  margin: var(--spacing-sm) 0 0 0;
  font-style: italic;
}

/* Archive / Blog / Search Pages */
.gjv-archive-header,
.gjv-search-header {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  background-color: var(--gjv-dark);
  color: white;
}

.gjv-archive-header h1,
.gjv-search-header h1 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.gjv-posts-list,
.gjv-search-results {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-posts,
.gjv-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.gjv-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--gjv-sage);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: var(--spacing-md);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.gjv-more-link:hover {
  color: var(--gjv-sage-dark);
}

.gjv-no-posts,
.gjv-no-results {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream);
  text-align: center;
  color: var(--gjv-text-muted);
}

.gjv-sidebar {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

/* Post Navigation */
.post-navigation {
  display: flex;
  gap: var(--spacing-2xl);
  justify-content: space-between;
  margin: var(--spacing-3xl) 0;
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--gjv-border);
  border-bottom: 1px solid var(--gjv-border);
}

.post-nav-link {
  flex: 1;
  padding: var(--spacing-lg);
  border: 1px solid var(--gjv-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.post-nav-link:hover {
  border-color: var(--gjv-sage);
  background-color: var(--gjv-sage-pale);
}

.post-nav-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gjv-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.post-nav-title {
  font-weight: 600;
  color: var(--gjv-text);
}

/* ============================================================
   12. Responsive Breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .gjv-container {
    padding: 0 var(--spacing-md);
  }

  .gjv-header-content {
    padding: 0 var(--spacing-md);
  }

  .gjv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gjv-container {
    padding: 0 var(--spacing-md);
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .display-xl {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .gjv-hero {
    min-height: auto;
  }

  /* Front-page hero: tight padding siden sirkler fyller topp-spacet */
  .gjv-hero--with-circles {
    padding: 56px 24px 0;
  }

  /* Subpage hero: mer luft over H1 (header tar 72px + litt pust) */
  .gjv-hero--subpage {
    padding: 120px 24px 56px;
  }

  .gjv-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Circles on top on mobile — tight spacing, overlap OK */
  .gjv-hero-background {
    order: -1;
    width: 100%;
    max-width: 220px;
    margin: 0 auto -24px;
  }

  .gjv-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .gjv-hero-cta {
    justify-content: center;
    margin-bottom: var(--spacing-xl);
  }

  /* Front-page hero: left-align text + CTA on mobile (subpage heroes stay centered) */
  .gjv-hero--with-circles .gjv-hero-inner {
    text-align: left;
  }

  .gjv-hero--with-circles .gjv-hero-overline,
  .gjv-hero--with-circles .gjv-hero-title,
  .gjv-hero--with-circles .gjv-hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .gjv-hero--with-circles .gjv-hero-cta {
    justify-content: flex-start;
  }

  .gjv-hero-cta .gjv-btn {
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  /* Logo bigger on mobile too */
  .gjv-logo-wrapper .custom-logo {
    height: 48px;
  }

  .gjv-hero-title {
    letter-spacing: -2px;
  }

  .gjv-hero-title .line-indent {
    padding-left: 0;
  }

  .gjv-hero-date-badge {
    justify-content: center;
  }

  .gjv-nav-primary {
    display: none;
  }

  .gjv-nav-primary.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(30, 29, 27, 0.94);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
    overflow-y: auto;
    z-index: 90;
  }


  .gjv-nav-primary.mobile-open ul {
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
  }

  .gjv-nav-primary.mobile-open ul li a {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 0;
    display: block;
    text-align: center;
  }

  .gjv-menu-toggle {
    display: flex;
  }

  .gjv-header-cta {
    display: none;
  }

  .gjv-nav-mobile-cta {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
  }

  /* Outline-variant — mer rolig enn det fylte desktop-CTA-et */
  .gjv-nav-mobile-cta .gjv-btn--primary {
    background: transparent;
    border: 2px solid var(--gjv-orange);
    color: var(--gjv-orange);
    width: 100%;
    max-width: 320px;
    padding: 13px 24px;
    font-size: 0.95rem;
  }

  .gjv-nav-mobile-cta .gjv-btn--primary:hover,
  .gjv-nav-mobile-cta .gjv-btn--primary:active,
  .gjv-nav-mobile-cta .gjv-btn--primary:focus-visible {
    background: var(--gjv-orange);
    color: var(--gjv-dark);
    border-color: var(--gjv-orange);
  }

  .gjv-footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gjv-marquee {
    padding: var(--spacing-lg) 0;
  }

  .gjv-marquee-item {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }

  .gjv-about-grid {
    grid-template-columns: 1fr;
  }

  /* Image above text on mobile */
  .gjv-about-visual {
    order: -1;
  }

  .gjv-theme-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .gjv-about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-program-snippet-items {
    grid-template-columns: 1fr;
  }

  .gjv-audience-cards {
    grid-template-columns: 1fr;
  }

  .gjv-pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .gjv-speakers-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-speakers-preview .gjv-speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-program-days {
    grid-template-columns: 1fr;
  }

  .gjv-newsletter-content {
    flex-direction: column;
    gap: 24px;
  }

  .gjv-newsletter-text {
    max-width: 100%;
  }

  .gjv-content-grid {
    grid-template-columns: 1fr;
  }

  .gjv-info-card {
    position: static;
  }

  /* Stats-boksene sprengte viewport pga auto-fit + padding — tving 2 kolonner, min-width: 0 */
  .gjv-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    box-sizing: border-box;
  }

  .gjv-stat-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: var(--spacing-md);
  }

  /* Om GJV — venstrestill feature-listen på mobil for bedre lesbarhet */
  .gjv-about-list,
  .gjv-about-list li {
    text-align: left;
  }

  .gjv-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-digital-cards {
    grid-template-columns: 1fr;
  }

  .gjv-pricing-strip-inner {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .gjv-pricing-strip-divider {
    width: 80px;
    height: 1px;
  }

  .gjv-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gjv-program-item {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .gjv-program-item-time {
    min-width: auto;
  }

  .gjv-footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .gjv-footer-col--logo {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gjv-footer-description {
    text-align: center;
  }

  .gjv-footer-arrangorer {
    text-align: center;
  }

  .gjv-footer-arrangorer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
  }

  .gjv-footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 15px;
  }

  .gjv-container {
    padding: 0 var(--spacing-md);
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .gjv-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .gjv-btn {
    width: 100%;
    justify-content: center;
  }

  .gjv-hero-date-badge {
    flex-direction: column;
    gap: 12px;
  }

  .gjv-badge-divider {
    width: 36px;
    height: 1px;
  }

  .gjv-header-content {
    height: 60px;
  }

  .gjv-logo-text {
    font-size: 1rem;
  }

  .gjv-footer-social {
    gap: var(--spacing-md);
  }

  .gjv-newsletter-input-group {
    flex-direction: column;
  }

  .gjv-newsletter-input {
    min-width: 100%;
  }

  .gjv-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gjv-footer-arrangorer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gjv-members-grid {
    grid-template-columns: 1fr;
  }

  .gjv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   13. Accessibility: Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
