/**
 * 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)
 */

/* ============================================================
   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: 2.5rem;
  font-family: var(--gjv-font-display);
  font-weight: 600;
  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: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, var(--gjv-orange) 0%, var(--gjv-sage) 100%);
  margin: var(--spacing-lg) 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.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  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: 60px;
}

.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: 36px;
  width: auto;
  max-width: 180px;
  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.65);
  font-size: 0.85rem;
  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;
}

.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-header-cta {
  flex-shrink: 0;
}

.gjv-header-cta .gjv-btn {
  padding: 10px 22px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  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: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--gjv-dark);
  padding: 100px clamp(24px, 6vw, 80px) 0;
}

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

.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(2.5rem, 6vw, 4.5rem);
  letter-spacing: -2px;
  margin-bottom: 16px;
}

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

/* Decorative accents on sub-page heroes */
.gjv-hero--subpage::after {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  bottom: auto;
  background: radial-gradient(
    circle at center,
    rgba(245, 158, 42, 0.1) 0%,
    transparent 70%
  );
}

/* Organic atmosphere pattern on sub-page heroes */
.gjv-hero--subpage {
  background-color: var(--gjv-dark);
}

.gjv-hero--subpage .gjv-hero-inner::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-hero--subpage .gjv-hero-inner {
  position: relative;
}

.gjv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse 1200px 600px at 50% 0%,
    rgba(245, 158, 42, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gjv-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(58, 120, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gjv-hero-background {
  position: relative;
  width: 120%;
  aspect-ratio: 1;
  max-width: 600px;
  justify-self: end;
  pointer-events: none;
  margin-right: -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-xl);
}

.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;
}

.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: 36px;
}

.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.15rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
}

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

.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) */
.gjv-partner-logos {
  background-color: var(--gjv-dark);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gjv-partner-logos-title {
  font-family: var(--gjv-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xl);
}

.gjv-partner-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  align-items: center;
  opacity: 0.5;
}

.gjv-footer {
  background-color: var(--gjv-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.gjv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

.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.6);
  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 {
  background-color: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-lg) 0;
}

.gjv-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

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

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

/* ============================================================
   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;
}

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

.gjv-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gjv-orange), var(--gjv-sage));
}

/* 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);
}

.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);
}

/* 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;
}

.gjv-program-tabs-nav {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  border-bottom: 2px solid rgba(61, 56, 48, 0.08);
}

.gjv-program-tab-btn {
  font-family: var(--gjv-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gjv-text);
  background: none;
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--duration-fast) var(--ease-smooth);
  opacity: 0.5;
}

.gjv-program-tab-btn:hover {
  opacity: 0.8;
}

.gjv-program-tab-btn--active {
  color: var(--gjv-dark);
  border-bottom-color: var(--gjv-orange);
  opacity: 1;
}

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

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

.gjv-program-items {
  display: grid;
  gap: 0;
}

.gjv-program-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(61, 56, 48, 0.06);
}

.gjv-program-item-time {
  font-family: var(--gjv-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gjv-sage);
  white-space: nowrap;
}

.gjv-program-item-title {
  font-family: var(--gjv-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gjv-dark);
  margin-bottom: 4px;
}

.gjv-program-item-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gjv-text);
  opacity: 0.7;
}

.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 {
  position: relative;
  overflow: hidden;
}

.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;
  z-index: 0;
}

.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;
  z-index: 0;
}

.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 */
.gjv-about {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background-color: var(--gjv-cream);
}

.gjv-about-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-about-intro {
  font-size: 1.1rem;
  color: var(--gjv-text-light);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: var(--spacing-4xl);
}

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

.gjv-stat {
  text-align: center;
  position: relative;
  padding: var(--spacing-lg) var(--spacing-md);
}

.gjv-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gjv-orange), var(--gjv-sage));
  border-radius: 1px;
  opacity: 0.4;
}

.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.4);
}

.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;
  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.35rem;
  color: white;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.gjv-theme-card-description {
  color: rgba(255, 255, 255, 0.4);
  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-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);
}

.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(3rem, 8vw, 6rem) 0;
  background-color: white;
}

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

.gjv-checkin-note {
  margin-top: var(--spacing-lg);
  color: var(--gjv-text-muted);
  font-size: 0.9rem;
}

.gjv-whats-included {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background-color: var(--gjv-cream-warm);
}

.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;
}

/* 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);
}

/* ============================================================
   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;
    padding: 100px 24px 0;
  }

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

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

  .gjv-hero-cta {
    justify-content: center;
  }

  .gjv-hero-background {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    margin-right: 0;
  }

  .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;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(30, 29, 27, 0.98);
    padding: var(--spacing-lg);
  }

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

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

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

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

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

  .gjv-marquee-item {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

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

  .gjv-about-stats {
    grid-template-columns: repeat(2, 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-tabs {
    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;
  }

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

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

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

  .gjv-program-item {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

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

@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;
  }

  .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;
  }
}
