/**
 * ORGANIC TECH DESIGN SYSTEM
 * A harmonious blend of natural aesthetics and digital precision
 *
 * Design Philosophy:
 * - Organic shapes meet geometric precision
 * - Earth tones with subtle gradients
 * - Variable fonts for fluid typography
 * - Subtle animations that feel natural
 */

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */

:root {
  /* Primary Palette - Earth Tones */
  --color-earth-900: #1a2e1a;
  --color-earth-800: #2d4a2d;
  --color-earth-700: #3d5e3d;
  --color-earth-600: #527252;
  --color-earth-500: #6b8e6b;

  --color-sage-900: #3a4a3a;
  --color-sage-800: #4d5e4d;
  --color-sage-700: #627562;
  --color-sage-600: #7a8e7a;
  --color-sage-500: #94a894;
  --color-sage-400: #b0c4b0;
  --color-sage-300: #ccd9cc;
  --color-sage-200: #e5ede5;
  --color-sage-100: #f4f7f4;

  --color-terracotta-900: #6b3416;
  --color-terracotta-800: #8b4420;
  --color-terracotta-700: #a85636;
  --color-terracotta-600: #c66d4c;
  --color-terracotta-500: #d98667;
  --color-terracotta-400: #e5a489;
  --color-terracotta-300: #f0c3ac;

  --color-cream-900: #a39582;
  --color-cream-800: #b8a897;
  --color-cream-700: #cdbdac;
  --color-cream-600: #dfd3c3;
  --color-cream-500: #ede5d8;
  --color-cream-400: #f5f0e8;
  --color-cream-300: #faf7f2;
  --color-cream-200: #fdfcfa;

  /* Accent Colors */
  --color-moss: #6b8e23;
  --color-clay: #a85636;
  --color-sand: #dfd3c3;

  /* Neutral Grays */
  --color-charcoal: #2a2a2a;
  --color-slate: #4a5568;
  --color-ash: #718096;
  --color-mist: #cbd5e0;
  --color-fog: #e2e8f0;
  --color-snow: #f7fafc;

  /* Gradients */
  --gradient-earth: linear-gradient(135deg, #6b8e6b 0%, #3d5e3d 100%);
  --gradient-sage: linear-gradient(135deg, #b0c4b0 0%, #7a8e7a 100%);
  --gradient-terracotta: linear-gradient(135deg, #e5a489 0%, #c66d4c 100%);
  --gradient-cream: linear-gradient(135deg, #faf7f2 0%, #ede5d8 100%);
  --gradient-organic: linear-gradient(120deg, #6b8e6b 0%, #a85636 50%, #dfd3c3 100%);

  /* Organic Mesh Gradients */
  --mesh-hero:
    radial-gradient(at 27% 37%, hsla(115, 25%, 55%, 0.15) 0px, transparent 50%),
    radial-gradient(at 97% 21%, hsla(25, 45%, 45%, 0.12) 0px, transparent 50%),
    radial-gradient(at 52% 99%, hsla(35, 25%, 75%, 0.1) 0px, transparent 50%),
    radial-gradient(at 10% 29%, hsla(115, 35%, 35%, 0.18) 0px, transparent 50%),
    radial-gradient(at 97% 96%, hsla(35, 30%, 80%, 0.08) 0px, transparent 50%);

  /* Typography */
  --font-display: 'Inter Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* Letter Spacing */
  --tracking-tight: -0.03em;
  --tracking-normal: -0.01em;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.05em;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Spacing Scale */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.5rem;     /* 24px */
  --space-6: 2rem;       /* 32px */
  --space-7: 3rem;       /* 48px */
  --space-8: 4rem;       /* 64px */
  --space-9: 6rem;       /* 96px */
  --space-10: 8rem;      /* 128px */
  --space-12: 12rem;     /* 192px */

  /* Border Radius - Organic */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;

  /* Shadows - Layered & Natural */
  --shadow-sm:
    0 1px 2px 0 rgba(42, 46, 42, 0.04),
    0 1px 3px 0 rgba(42, 46, 42, 0.06);
  --shadow-md:
    0 4px 6px -1px rgba(42, 46, 42, 0.08),
    0 2px 4px -1px rgba(42, 46, 42, 0.04);
  --shadow-lg:
    0 10px 15px -3px rgba(42, 46, 42, 0.1),
    0 4px 6px -2px rgba(42, 46, 42, 0.06);
  --shadow-xl:
    0 20px 25px -5px rgba(42, 46, 42, 0.12),
    0 10px 10px -5px rgba(42, 46, 42, 0.04);
  --shadow-organic:
    0 20px 40px rgba(107, 142, 107, 0.15),
    0 8px 16px rgba(61, 94, 61, 0.1);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;

  /* Section Background Types */
  --background-primary: linear-gradient(135deg, var(--color-earth-600) 0%, var(--color-earth-800) 100%);
  --background-primary-solid: var(--color-earth-700);
  --background-secondary: linear-gradient(135deg, var(--color-cream-400) 0%, var(--color-cream-600) 100%);
  --background-secondary-solid: var(--color-cream-500);
}

/* ==========================================
   GLOBAL RESETS & BASE STYLES
   ========================================== */

* {
  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(--font-body);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: var(--color-neutral-300);
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-primary-900);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--weight-black);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--weight-bold);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
}

/* Gradient Text Effect */
.gradient-text {
  background: var(--gradient-organic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container-organic {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container-organic {
    padding-inline: var(--space-8);
  }
}

/* ==========================================
   BUTTONS - ORGANIC STYLE
   ========================================== */

.btn-organic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-7);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  overflow: hidden;
  z-index: var(--z-base);
}

.btn-organic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-earth);
  border-radius: inherit;
  opacity: 1;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-organic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-terracotta);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.btn-organic:hover::before {
  opacity: 0;
}

.btn-organic:hover::after {
  opacity: 1;
}

.btn-organic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-organic);
}

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

.btn-organic-primary {
  color: white;
}

.btn-organic-light {
  background: white;
  color: var(--color-primary-900);
  box-shadow: var(--shadow-md);
}

.btn-organic-light::before,
.btn-organic-light::after {
  display: none;
}

.btn-organic-light:hover {
  background: var(--color-neutral-300);
  box-shadow: var(--shadow-lg);
}

.btn-organic-outline {
  background: transparent;
  color: var(--color-primary-900);
  border: 2px solid var(--color-secondary-400);
}

.btn-organic-outline::before,
.btn-organic-outline::after {
  display: none;
}

.btn-organic-outline:hover {
  background: var(--color-secondary-100);
  border-color: var(--color-primary-600);
}

/* ==========================================
   SECTION BACKGROUND TYPES
   ========================================== */

/* Background type utilities - applied via backgroundType property */
.bg-type-primary {
  background: var(--background-primary);
  background-color: var(--background-primary-solid);
}

.bg-type-secondary {
  background: var(--background-secondary);
  background-color: var(--background-secondary-solid);
}

.bg-type-none {
  background: transparent;
}

/* ==========================================
   HERO SECTION - ORGANIC
   ========================================== */

.hero-organic {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1; /* Lower than navbar to allow dropdowns to overlay */
}

/* Custom height support via CSS variables */
.hero-organic.hero-custom-height {
  min-height: var(--hero-height-desktop, 85vh);
}

@media (max-width: 768px) {
  .hero-organic.hero-custom-height {
    min-height: var(--hero-height-mobile, var(--hero-height-desktop, 85vh));
  }
}

.hero-organic:not([class*="bg-type-"]) {
  background: var(--color-neutral-300);
}

/* Organic Blob Background */
.hero-organic::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  right: -30%;
  background: var(--mesh-hero);
  border-radius: var(--radius-blob);
  opacity: 0.6;
  animation: blob-float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg) scale(1.05);
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg) scale(0.95);
    border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
  }
}

/* Hero Content Wrapper for positioning */
.hero-organic-content-wrapper {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-4);
}

/* Vertical positioning for standard hero */
.hero-organic-content-wrapper.content-v-top {
  justify-content: flex-start;
  padding-top: var(--space-8);
}

.header-transparent + main > .section-wrapper:first-child .hero-organic-content-wrapper.content-v-top {
  padding-top: calc(var(--space-8) + 80px);
}

.hero-organic-content-wrapper.content-v-center {
  justify-content: center;
}

.hero-organic-content-wrapper.content-v-bottom {
  justify-content: flex-end;
  padding-bottom: var(--space-8);
}

/* Horizontal positioning for standard hero */
.hero-organic-content-wrapper .hero-organic-content {
  max-width: 600px;
  margin: 0;
}

.hero-organic-content-wrapper.content-h-left {
  align-items: flex-start;
  text-align: left;
  padding-left: var(--space-8);
}

.hero-organic-content-wrapper.content-h-center {
  align-items: center;
  text-align: center;
}

.hero-organic-content-wrapper.content-h-center .hero-organic-content {
  margin-inline: auto;
}

.hero-organic-content-wrapper.content-h-right {
  align-items: flex-end;
  text-align: right;
  padding-right: var(--space-8);
}

@media (max-width: 768px) {
  .hero-organic-content-wrapper.content-h-left,
  .hero-organic-content-wrapper.content-h-right {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

.hero-organic-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 800px;
  animation: fade-in-up 1s var(--transition-base);
}

.hero-organic-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--weight-black);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-6);
  color: var(--color-primary-900);
}

.hero-organic-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-7);
  max-width: 600px;
}

.hero-organic-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-organic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-organic-overlay {
  position: absolute;
  inset: 0;
  /* Sehr subtiles Overlay nur für Text-Lesbarkeit - optional */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  z-index: 0;
  /* Overlay kann komplett deaktiviert werden wenn nicht benötigt */
  opacity: 0;
}

/* Hero Video Background */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }

  /* Show mobile video only if it exists */
  .hero-video-mobile {
    display: block;
  }

  /* If no mobile video, show desktop video on mobile */
  .hero-video-desktop:only-child {
    display: block;
  }
}

/* ==========================================
   FEATURE SECTION - ORGANIC CARDS
   ========================================== */

.feature-organic {
  padding: var(--space-10) 0;
  position: relative;
}

/* Default background only if no bg-type class is set */
.feature-organic:not([class*="bg-type-"]) {
  background: var(--color-neutral-200);
}

.feature-organic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 968px) {
  .feature-organic-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-organic-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-organic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-earth);
  transition: height var(--transition-slow);
}

.feature-organic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-organic-card:hover::before {
  height: 100%;
}

.feature-organic-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.feature-organic-image:hover {
  transform: scale(1.02);
}

.feature-organic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-organic-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.feature-organic-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  align-items: center;
}

.feature-organic-list li i {
  color: var(--accent-primary);
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-organic-list li .usp-content {
  line-height: 1.6;
}

.feature-organic-list li .usp-content p {
  margin: 0;
  display: inline;
}

.feature-organic-list li .usp-content p:last-child {
  margin-bottom: 0;
}

/* Feature Layout Styles */
.feature-organic.layout-combined .feature-organic-grid {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.feature-organic.layout-combined .feature-organic-image {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}

.feature-organic.layout-combined .feature-organic-image:hover {
  transform: none;
}

.feature-organic.layout-combined .feature-organic-card {
  border-radius: 0;
  box-shadow: none;
}

.feature-organic.layout-combined .feature-organic-card::before {
  display: none;
}

.feature-organic.layout-combined .feature-organic-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-organic.layout-borderless .feature-organic-image {
  border-radius: 0;
  box-shadow: none;
}

.feature-organic.layout-borderless .feature-organic-image:hover {
  transform: none;
}

.feature-organic.layout-borderless .feature-organic-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.feature-organic.layout-borderless .feature-organic-card::before {
  display: none;
}

.feature-organic.layout-borderless .feature-organic-card:hover {
  transform: none;
  box-shadow: none;
}

/* ==========================================
   BLOCK SECTION - FLEXIBLE TWO-COLUMN LAYOUT
   (Design based on Feature Section)
   ========================================== */

.block-organic {
  padding: var(--space-10) 0;
  position: relative;
}

/* Default background only if no bg-type class is set */
.block-organic:not([class*="bg-type-"]) {
  background: var(--color-neutral-200);
}

.block-organic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 968px) {
  .block-organic-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.block-organic-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.block-organic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-earth);
  transition: height var(--transition-slow);
}

.block-organic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.block-organic-card:hover::before {
  height: 100%;
}

.block-organic-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.block-organic-image:hover {
  transform: scale(1.02);
}

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

.block-organic-image iframe {
  display: block;
}

.block-organic-image video {
  display: block;
  width: 100%;
}

.block-organic-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

.block-organic-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  align-items: center;
}

.block-organic-list li i {
  color: var(--accent-primary);
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-organic-list li .usp-content {
  line-height: 1.6;
}

.block-organic-list li .usp-content p {
  margin: 0;
  display: inline;
}

.block-organic-list li .usp-content p:last-child {
  margin-bottom: 0;
}

/* Block Map Fallback */
.block-map-fallback {
  padding: 2rem;
  background: #f8f9fa;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.block-map-fallback i {
  font-size: 3rem;
  color: #6c757d;
}

.block-map-fallback p {
  margin-top: 1rem;
  color: #6c757d;
}

.block-map-fallback small {
  color: #adb5bd;
}

/* Block Form Container */
.block-form-container {
  padding: 0;
}

/* Block Layout Styles */
.block-organic.layout-combined .block-organic-grid {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.block-organic.layout-combined .block-organic-image {
  border-radius: 0;
  box-shadow: none;
  height: 100%;
}

.block-organic.layout-combined .block-organic-image:hover {
  transform: none;
}

.block-organic.layout-combined .block-organic-card {
  border-radius: 0;
  box-shadow: none;
}

.block-organic.layout-combined .block-organic-card::before {
  display: none;
}

.block-organic.layout-combined .block-organic-card:hover {
  transform: none;
  box-shadow: none;
}

.block-organic.layout-borderless .block-organic-image {
  border-radius: 0;
  box-shadow: none;
}

.block-organic.layout-borderless .block-organic-image:hover {
  transform: none;
}

.block-organic.layout-borderless .block-organic-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.block-organic.layout-borderless .block-organic-card::before {
  display: none;
}

.block-organic.layout-borderless .block-organic-card:hover {
  transform: none;
  box-shadow: none;
}

/* ==========================================
   HIGHLIGHT/CTA SECTION - ORGANIC
   ========================================== */

.highlight-organic {
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
}

.highlight-organic:not([class*="bg-type-"]) {
  background: var(--gradient-sage);
}

.highlight-organic::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.highlight-organic-content {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 968px) {
  .highlight-organic-content {
    grid-template-columns: 2fr 1fr;
  }
}

.highlight-organic h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.highlight-organic p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

/* ==========================================
   IMAGE SECTION - MASONRY ORGANIC
   ========================================== */

.images-organic {
  padding: var(--space-10) 0;
}

.images-organic:not([class*="bg-type-"]) {
  background: var(--color-snow);
}

.images-organic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.images-organic-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.images-organic-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.images-organic-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  /*object-fit: cover;*/
  display: block;
  transition: transform var(--transition-base);
}

.images-organic-item:hover img {
  transform: scale(1.05);
}

/* Info card below image - always visible */
.images-organic-info {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.images-organic-info h3 {
  font-size: 1.25rem;
  color: var(--color-primary-900);
  margin-bottom: var(--space-3);
}

.images-organic-info p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
  flex: 1;
}

.images-organic-info a {
  align-self: flex-start;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--transition-slow);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { animation-delay: 100ms; }
.stagger-2 { animation-delay: 200ms; }
.stagger-3 { animation-delay: 300ms; }
.stagger-4 { animation-delay: 400ms; }

/* ==========================================
   NAVBAR - ORGANIC
   ========================================== */

.navbar-organic {
  background: rgba(255, 255, 255, var(--header-bg-opacity, 0.9));
  backdrop-filter: blur(var(--header-blur, 12px));
  -webkit-backdrop-filter: blur(var(--header-blur, 12px));
  border-bottom: 1px solid var(--color-mist);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

/* Centered header base styles */
.header-centered {
  background: rgba(255, 255, 255, var(--header-bg-opacity, 0.9));
  backdrop-filter: blur(var(--header-blur, 12px));
  -webkit-backdrop-filter: blur(var(--header-blur, 12px));
  border-bottom: 1px solid var(--color-mist);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

/* Header wrapper with topbar */
.header-wrapper {
  background: white;
}

.header-wrapper .navbar-organic {
  border-bottom: none;
  box-shadow: none;
}

.header-wrapper.sticky-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-sm);
}

/* Top Bar */
.header-topbar {
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.header-topbar a {
  transition: color var(--transition-fast);
}

.header-topbar a:hover {
  color: white !important;
}

/* Main navbar should be above topbar for dropdowns */
.header-wrapper .navbar-organic {
  position: relative;
  z-index: 2;
}

.header-wrapper .navbar-organic .dropdown-menu {
  z-index: 1000;
}

/* Sticky navbar - activated via sticky-top class */
.navbar-organic.sticky-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.header-centered.sticky-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.navbar-organic.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

/* Transparent Header on Hero - overlays hero section */
/* When topbar is present, the whole wrapper should be transparent */
.header-wrapper.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: var(--z-sticky);
}

/* Topbar - Initial state (uses CSS variables from inline styles) */
.header-wrapper.header-transparent .header-topbar {
  background: rgba(0, 0, 0, calc(var(--topbar-bg-opacity, 30) / 100)) !important;
  backdrop-filter: blur(var(--topbar-blur, 8px));
  -webkit-backdrop-filter: blur(var(--topbar-blur, 8px));
}

/* Topbar not transparent - solid dark background */
.header-wrapper.header-transparent.topbar-solid .header-topbar {
  background: var(--color-primary-900) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Navbar - Initial state (uses CSS variables from inline styles) */
.header-wrapper.header-transparent .navbar-organic {
  background: rgba(255, 255, 255, calc(var(--navbar-bg-opacity, 0) / 100));
  backdrop-filter: blur(var(--navbar-blur, 0px));
  -webkit-backdrop-filter: blur(var(--navbar-blur, 0px));
  border-bottom: none;
  box-shadow: none;
}

.header-wrapper.header-transparent .navbar-brand,
.header-wrapper.header-transparent .nav-link {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-wrapper.header-transparent .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-wrapper.header-transparent .nav-link::after {
  background: white;
}

.header-wrapper.header-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.header-wrapper.header-transparent .navbar-toggler-icon {
  filter: invert(1);
}

.header-wrapper.header-transparent .btn-primary,
.header-wrapper.header-transparent .btn-outline-primary {
  color: white;
  border-color: white;
}

.header-wrapper.header-transparent .btn-outline-primary:hover {
  background: white;
  color: var(--color-primary-900);
}

/* When transparent header wrapper becomes sticky on scroll */
.header-wrapper.header-transparent.scrolled {
  position: fixed;
}

/* Topbar - Scrolled state */
.header-wrapper.header-transparent.scrolled .header-topbar {
  background: rgba(0, 0, 0, calc(var(--topbar-scrolled-bg-opacity, 100) / 100)) !important;
  backdrop-filter: blur(var(--topbar-scrolled-blur, 0px));
  -webkit-backdrop-filter: blur(var(--topbar-scrolled-blur, 0px));
}

.header-wrapper.header-transparent.scrolled.topbar-solid .header-topbar {
  background: var(--color-primary-900) !important;
}

/* Navbar - Scrolled state */
.header-wrapper.header-transparent.scrolled .navbar-organic {
  background: rgba(255, 255, 255, calc(var(--navbar-scrolled-bg-opacity, 90) / 100));
  backdrop-filter: blur(var(--navbar-scrolled-blur, 12px));
  -webkit-backdrop-filter: blur(var(--navbar-scrolled-blur, 12px));
  box-shadow: var(--shadow-md);
}

.header-wrapper.header-transparent.scrolled .navbar-brand,
.header-wrapper.header-transparent.scrolled .nav-link {
  color: var(--color-primary-900);
  text-shadow: none;
}

.header-wrapper.header-transparent.scrolled .nav-link:hover {
  color: var(--color-primary-600);
}

.header-wrapper.header-transparent.scrolled .navbar-toggler {
  border-color: var(--color-primary-300);
}

.header-wrapper.header-transparent.scrolled .navbar-toggler-icon {
  filter: none;
}

.header-wrapper.header-transparent.scrolled .btn-primary,
.header-wrapper.header-transparent.scrolled .btn-outline-primary {
  color: var(--color-primary-600);
  border-color: var(--color-primary-600);
}

.header-wrapper.header-transparent.scrolled .btn-outline-primary:hover {
  background: var(--color-primary-600);
  color: white;
}

/* Legacy: navbar-transparent without wrapper (fallback) */
.navbar-organic.navbar-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  z-index: var(--z-sticky);
}

.navbar-organic.navbar-transparent .navbar-brand,
.navbar-organic.navbar-transparent .nav-link {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-organic.navbar-transparent .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-organic.navbar-transparent .nav-link::after {
  background: white;
}

.navbar-organic.navbar-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-organic.navbar-transparent .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-organic.navbar-transparent .btn-primary,
.navbar-organic.navbar-transparent .btn-outline-primary {
  color: white;
  border-color: white;
}

.navbar-organic.navbar-transparent .btn-outline-primary:hover {
  background: white;
  color: var(--color-primary-900);
}

/* When transparent header becomes sticky on scroll */
.navbar-organic.navbar-transparent.sticky-top.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, var(--header-bg-opacity, 0.9));
  backdrop-filter: blur(var(--header-blur, 12px));
  -webkit-backdrop-filter: blur(var(--header-blur, 12px));
  box-shadow: var(--shadow-md);
}

.navbar-organic.navbar-transparent.sticky-top.scrolled .navbar-brand,
.navbar-organic.navbar-transparent.sticky-top.scrolled .nav-link {
  color: var(--color-primary-900);
  text-shadow: none;
}

.navbar-organic.navbar-transparent.sticky-top.scrolled .nav-link:hover {
  color: var(--color-primary-600);
}

.navbar-organic.navbar-transparent.sticky-top.scrolled .nav-link::after {
  background: var(--gradient-earth);
}

.navbar-organic.navbar-transparent.sticky-top.scrolled .navbar-toggler-icon {
  filter: none;
}

/* Body with transparent header - hero starts at top */
body.has-transparent-header .hero-organic {
  margin-top: -76px; /* Offset for navbar height */
  padding-top: calc(76px + var(--space-8)); /* Add navbar height to padding */
}

body.has-transparent-header .hero-organic.hero-fullscreen {
  min-height: 100vh;
}

/* Centered Header transparent styles */
.header-centered.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: var(--z-sticky);
}

.header-centered.header-transparent .navbar-brand,
.header-centered.header-transparent .nav-link,
.header-centered.header-transparent h3 {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-centered.header-transparent .border-top {
  border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.navbar-organic .navbar-brand {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-primary-900);
  transition: color var(--transition-fast);
}

.navbar-organic .navbar-brand:hover {
  color: var(--color-primary-600);
}

.navbar-organic .nav-link {
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-organic .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-earth);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.navbar-organic .nav-link:hover {
  color: var(--color-primary-900);
}

.navbar-organic .nav-link:hover::after,
.navbar-organic .nav-link.active::after {
  width: 80%;
}

/* ==========================================
   FOOTER - ORGANIC
   ========================================== */

footer {
  position: relative;
  background: var(--footer-background);
  color: var(--footer-text);
  padding: var(--space-9) 0 var(--space-6);
  margin-top: var(--space-8);
  overflow: hidden;
}

/* Add subtle texture overlay */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}

/* Footer text elements - higher specificity */
footer p,
footer span,
footer div,
footer li {
  color: var(--footer-text);
}

/* Footer headings - override Bootstrap */
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer .h1,
footer .h2,
footer .h3,
footer .h4,
footer .h5,
footer .h6 {
  color: var(--footer-text);
}

/* Footer links - higher specificity than Bootstrap */
footer a,
footer a:link,
footer a:visited {
  color: var(--footer-link);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

footer a:hover,
footer a:focus,
footer a:active {
  color: var(--footer-link-hover);
  transform: translateX(2px);
}

footer a:hover::after {
  width: 100%;
}

/* ==========================================
   TEXT SECTION - ORGANIC
   ========================================== */

.text-organic {
  padding: var(--space-10) 0;
}

.text-organic:not([class*="bg-type-"]) {
  background: white;
}

.text-organic-container {
  max-width: 100%;
  margin-inline: auto;
}

.text-organic-content {
  font-size: 1.125rem;
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.text-organic-content h2,
.text-organic-content h3,
.text-organic-content h4 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  color: var(--color-primary-900);
}

.text-organic-content p {
  margin-bottom: var(--space-5);
}

.text-organic-content a {
  color: var(--color-primary-600);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.text-organic-content a:hover {
  color: var(--color-accent-600);
}

.text-organic-content ul,
.text-organic-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.text-organic-content li {
  margin-bottom: var(--space-3);
}

/* USP List - Special styling for entry.usp_points */
.usp-list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0;
  display: grid;
  gap: var(--space-3);
}

.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-sage-100);
  border-left: 3px solid var(--color-primary-500);
  margin-bottom: 0;
}

.usp-list li::before {
  content: "✓";
  color: var(--color-primary-600);
  font-weight: 700;
  flex-shrink: 0;
}

.text-organic-content blockquote {
  margin: var(--space-7) 0;
  padding-left: var(--space-6);
  border-left: 4px solid var(--color-secondary-400);
  font-style: italic;
  color: var(--color-text-muted);
}

.text-organic-content code {
  background: var(--color-secondary-100);
  padding: 0.2em 0.5em;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--color-primary-800);
}

.text-organic-content pre {
  background: var(--color-secondary-100);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin-bottom: var(--space-5);
}

.text-organic-content pre code {
  background: none;
  padding: 0;
}

/* ==========================================
   METRICS SECTION - ORGANIC
   ========================================== */

.metrics-organic {
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.metrics-organic:not([class*="bg-type-"]) {
  background: var(--color-secondary-100);
}

.metrics-organic::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(107, 142, 107, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.metrics-organic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .metrics-organic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 968px) {
  .metrics-organic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metrics-organic-item {
  text-align: center;
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.metrics-organic-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 4px;
  background: var(--gradient-earth);
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--transition-base);
}

.metrics-organic-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.metrics-organic-item:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.metrics-organic-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--weight-black);
  line-height: 1;
  background: var(--gradient-organic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-3);
}

.metrics-organic-label {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

/* ==========================================
   FAQ SECTION - ORGANIC
   ========================================== */

.faq-organic {
  padding: var(--space-10) 0;
}

/* Default background only if no bg-type class is set */
.faq-organic:not([class*="bg-type-"]) {
  background: var(--color-neutral-200);
}

.faq-organic-container {
  max-width: 900px;
  margin-inline: auto;
}

.faq-organic-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.faq-organic-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-organic-question {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: white;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  color: var(--color-primary-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition-base);
}

.faq-organic-question:hover {
  color: var(--color-primary-600);
}

.faq-organic-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.faq-organic-item.active .faq-organic-icon {
  transform: rotate(180deg);
}

.faq-organic-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-organic-item.active .faq-organic-answer {
  max-height: 1000px;
}

.faq-organic-answer-content {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

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

/* ==========================================
   PRODUCT SHOWCASE - BOTANICAL LUXURY
   A premium product display with organic forms
   and refined micro-interactions
   ========================================== */

.product-showcase {
  --showcase-accent: var(--color-terracotta-600);
  --showcase-accent-light: var(--color-terracotta-300);
  --showcase-dark: var(--color-earth-900);
  --showcase-cream: var(--color-cream-300);
  --showcase-sage: var(--color-sage-400);

  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.product-showcase:not([class*="bg-type-"]) {
  background: linear-gradient(
    165deg,
    var(--color-cream-200) 0%,
    var(--color-cream-400) 50%,
    var(--color-sage-100) 100%
  );
}

/* ---- Decorative Background ---- */
.product-showcase__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.product-showcase__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob-float 20s ease-in-out infinite;
}

.product-showcase__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-sage-300) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: -5s;
}

.product-showcase__blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-terracotta-300) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -10s;
  opacity: 0.3;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.product-showcase__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: multiply;
}

/* ---- Header ---- */
.product-showcase__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.product-showcase__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--showcase-accent);
  margin-bottom: 0.75rem;
  position: relative;
}

.product-showcase__eyebrow::before,
.product-showcase__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--showcase-accent);
  opacity: 0.4;
}

.product-showcase__eyebrow::before { right: calc(100% + 1rem); }
.product-showcase__eyebrow::after { left: calc(100% + 1rem); }

.product-showcase__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--showcase-dark);
  margin: 0;
  line-height: 1.1;
}

.product-showcase__title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--showcase-accent), var(--showcase-sage));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ---- Stage Layout ---- */
.product-showcase__stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .product-showcase__stage {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

/* ---- Visual / Gallery Area ---- */
.product-showcase__visual {
  position: relative;
}

.product-showcase__frame {
  position: relative;
}

.product-showcase__main-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-sage-200), var(--color-cream-500));
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.product-showcase__main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

.product-showcase__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 46, 26, 0.1) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* Price Badge - Floating */
.product-showcase__price-badge {
  position: absolute;
  bottom: -1rem;
  right: 1.5rem;
  background: var(--showcase-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  box-shadow:
    0 10px 40px rgba(26, 46, 26, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  z-index: 10;
}

.product-showcase__price-badge:hover {
  transform: rotate(0deg) scale(1.05);
}

.product-showcase__price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.product-showcase__price-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---- Thumbnails ---- */
.product-showcase__thumbs {
  margin-top: 1.5rem;
}

.product-showcase__thumbs-track {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.product-showcase__thumb {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-sage-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 0.3s ease;
  z-index: 2;
}

.product-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.product-showcase__thumb-index {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
  z-index: 3;
}

.product-showcase__thumb:hover img,
.product-showcase__thumb.is-active img {
  opacity: 1;
}

.product-showcase__thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-showcase__thumb:hover .product-showcase__thumb-index {
  opacity: 1;
  transform: translateY(0);
}

.product-showcase__thumb.is-active {
  transform: translateY(-2px);
}

.product-showcase__thumb.is-active::before {
  border-color: var(--showcase-accent);
}

.product-showcase__thumb.is-active img {
  transform: scale(1.1);
}

/* Progress Bar */
.product-showcase__thumbs-progress {
  position: relative;
  height: 3px;
  background: var(--color-sage-200);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.product-showcase__thumbs-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--showcase-accent), var(--color-terracotta-400));
  border-radius: 2px;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s ease;
}

/* ---- Content Card ---- */
.product-showcase__content {
  position: relative;
}

.product-showcase__card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.06);
}

.product-showcase__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg,
    var(--showcase-sage),
    var(--showcase-accent),
    var(--showcase-sage)
  );
  border-radius: 0 0 4px 4px;
  opacity: 0.8;
}

.product-showcase__card-corner {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background:
    linear-gradient(135deg, transparent 50%, var(--color-sage-200) 50%);
  border-radius: 0 0 20px 0;
  opacity: 0.6;
  z-index: -1;
}

/* Product Identity */
.product-showcase__identity {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-sage-200);
}

.product-showcase__name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--showcase-dark);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.product-showcase__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--showcase-accent);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.product-showcase__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-slate);
}

.product-showcase__description p {
  margin: 0;
}

/* Features / USPs */
.product-showcase__features {
  margin-bottom: 2rem;
}

.product-showcase__features-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--showcase-accent);
  margin-bottom: 1rem;
}

.product-showcase__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product-showcase__feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--color-sage-100), var(--color-cream-300));
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: feature-slide-in 0.5s ease backwards;
  animation-delay: var(--delay, 0s);
}

@keyframes feature-slide-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
}

.product-showcase__feature:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.15);
}

.product-showcase__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--showcase-accent);
  color: white;
  border-radius: 50%;
}

.product-showcase__feature-icon svg {
  width: 14px;
  height: 14px;
}

.product-showcase__feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--showcase-dark);
}

/* CTA Button */
.product-showcase__cta {
  margin-top: 2rem;
}

.product-showcase__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  background: var(--showcase-dark);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase__button-text {
  position: relative;
  z-index: 2;
}

.product-showcase__button-icon {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-showcase__button-icon svg {
  width: 100%;
  height: 100%;
}

.product-showcase__button-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--showcase-accent), var(--color-terracotta-700));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-showcase__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 46, 26, 0.25);
}

.product-showcase__button:hover .product-showcase__button-bg {
  opacity: 1;
}

.product-showcase__button:hover .product-showcase__button-icon {
  transform: translateX(4px);
}

.product-showcase__button:active {
  transform: translateY(0);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 1023px) {
  .product-showcase__price-badge {
    bottom: auto;
    top: 1rem;
    right: 1rem;
    transform: rotate(0);
    padding: 0.75rem 1rem;
  }

  .product-showcase__price-value {
    font-size: 1.1rem;
  }

  .product-showcase__card-corner {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-showcase__thumb {
    width: 60px;
    height: 60px;
  }

  .product-showcase__feature {
    padding: 0.625rem 0.875rem;
  }

  .product-showcase__eyebrow::before,
  .product-showcase__eyebrow::after {
    display: none;
  }
}

/* ==========================================
   GALLERY SECTION - ORGANIC
   ========================================== */

.gallery-organic {
  padding: var(--space-10) 0;
}

/* Default background only if no bg-type class is set */
.gallery-organic:not([class*="bg-type-"]) {
  background: var(--color-snow);
}

.gallery-organic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.gallery-organic-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.gallery-organic-item:hover {
  transform: scale(1.02);
  z-index: var(--z-base);
}

.gallery-organic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-organic-item:hover img {
  transform: scale(1.15);
}

/* Masonry layout for varied aspect ratios */
@supports (grid-template-rows: masonry) {
  .gallery-organic-grid {
    grid-template-rows: masonry;
  }

  .gallery-organic-item {
    aspect-ratio: auto;
  }
}

/* ==========================================
   CTA SECTION - ORGANIC
   ========================================== */

.cta-organic {
  padding: var(--space-10) 0;
}

/* Default background only if no bg-type class is set */
.cta-organic:not([class*="bg-type-"]) {
  background: var(--color-primary-900);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-organic::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(217, 134, 103, 0.15) 0%,
    transparent 70%
  );
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.cta-organic-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 700px;
  margin-inline: auto;
}

.cta-organic h2 {
  color: white;
  margin-bottom: var(--space-5);
}

.cta-organic p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: var(--space-7);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-balance {
  text-wrap: balance;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.organic-blob {
  border-radius: var(--radius-blob);
}

.parallax {
  transition: transform var(--transition-slow);
}

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */

@media (max-width: 767px) {
  .hero-organic {
    min-height: 70vh;
    padding: var(--space-8) 0;
  }

  .hero-organic::before {
    width: 200%;
    height: 200%;
  }

  .feature-organic-grid {
    gap: var(--space-6);
  }

  .images-organic-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

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

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent-500);
  outline-offset: 3px;
}

/* ==========================================
   DATABASE LIST IMAGES
   ========================================== */

.table-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.card-img-fixed {
  height: 200px;
  object-fit: contain;
  background-color: #fff;
}

/* ==========================================
   HERO SLIDER
   ========================================== */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Custom height support for hero-slider */
.hero-slider.hero-custom-height {
  min-height: var(--hero-height-desktop);
}

.hero-slider.hero-custom-height .hero-slide-picture img {
  width: 100%;
  height: var(--hero-height-desktop);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-slider.hero-custom-height {
    min-height: var(--hero-height-mobile, var(--hero-height-desktop));
  }

  .hero-slider.hero-custom-height .hero-slide-picture img {
    height: var(--hero-height-mobile, var(--hero-height-desktop));
  }
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-slide-picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Slide Video */
.hero-slide-media {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-slide-media .hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-slider.hero-custom-height .hero-slide-media .hero-video {
  height: var(--hero-height-desktop);
}

@media (max-width: 768px) {
  .hero-slider.hero-custom-height .hero-slide-media .hero-video {
    height: var(--hero-height-mobile, var(--hero-height-desktop));
  }
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-4);
  color: white;
}

/* Vertical positioning */
.hero-slide-content.content-v-top {
  justify-content: flex-start;
  padding-top: var(--space-8); /* 64px base padding */
}

/* Extra top padding when transparent nav overlays the hero */
.header-transparent + main > .section-wrapper:first-child .hero-slide-content.content-v-top {
  padding-top: calc(var(--space-8) + 80px); /* Account for navigation height */
}

.hero-slide-content.content-v-center {
  justify-content: center;
}

.hero-slide-content.content-v-bottom {
  justify-content: flex-end;
  padding-bottom: calc(var(--space-6) + 60px); /* Above slider dots: 32px dots position + 28px extra */
}

/* Horizontal positioning - positions the container-organic within the slide */
.hero-slide-content .container-organic {
  max-width: 600px;
  width: 100%;
  margin: 0; /* Override global margin-inline: auto */
}

.hero-slide-content.content-h-left {
  align-items: flex-start;
  text-align: left;
  padding-left: var(--space-8);
}

.hero-slide-content.content-h-center {
  align-items: center;
  text-align: center;
}

.hero-slide-content.content-h-center .container-organic {
  margin-inline: auto; /* Re-enable centering for center alignment */
}

.hero-slide-content.content-h-right {
  align-items: flex-end;
  text-align: right;
  padding-right: var(--space-8);
}

@media (max-width: 768px) {
  .hero-slide-content.content-h-left,
  .hero-slide-content.content-h-right {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

/* Slider Navigation */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-charcoal);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-slider-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
  left: var(--space-4);
}

.hero-slider-next {
  right: var(--space-4);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--space-2);
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active,
.hero-slider-dot:hover {
  background: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-slider-nav {
    width: 40px;
    height: 40px;
  }

  .hero-slider-prev {
    left: var(--space-2);
  }

  .hero-slider-next {
    right: var(--space-2);
  }
}

/* ==========================================
   HERO HIGHLIGHTS
   ========================================== */

.hero-highlights-section {
  position: relative;
  width: 100%;
}

/* Custom height support for hero-highlights */
.hero-highlights-section.hero-custom-height {
  min-height: var(--hero-height-desktop);
}

.hero-highlights-section.hero-custom-height .hero-highlights-picture img {
  width: 100%;
  height: var(--hero-height-desktop);
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-highlights-section.hero-custom-height {
    min-height: var(--hero-height-mobile, var(--hero-height-desktop));
  }

  .hero-highlights-section.hero-custom-height .hero-highlights-picture img {
    height: var(--hero-height-mobile, var(--hero-height-desktop));
  }
}

/* Image defines the height */
.hero-highlights-picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-highlights-picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Highlights Video */
.hero-highlights-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-highlights-media .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-highlights-section.hero-custom-height .hero-highlights-media .hero-video {
  height: var(--hero-height-desktop);
}

@media (max-width: 768px) {
  .hero-highlights-section.hero-custom-height .hero-highlights-media .hero-video {
    height: var(--hero-height-mobile, var(--hero-height-desktop));
  }
}

.hero-highlights-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  pointer-events: none;
}

/* Text content - centered above the highlights */
.hero-highlights-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: var(--space-8) var(--space-4);
  padding-bottom: 200px; /* Space for highlights */
  text-align: center;
  color: white;
}

.hero-highlights-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-highlights-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Highlights Grid - bottom aligned with hero bottom */
.hero-highlights-grid-wrapper {
  position: absolute;
  bottom: var(--space-4);
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 var(--space-4);
}

.hero-highlights-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Adjust grid for specific counts */
.hero-highlights-grid[data-count="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.hero-highlights-grid[data-count="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.hero-highlights-grid[data-count="6"] {
  grid-template-columns: repeat(6, 1fr);
}

/* Highlight Box */
.hero-highlight-box {
  flex: 1;
}

.hero-highlight-box-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a.hero-highlight-box-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-4);
  background: var(--gradient-sage);
  border-radius: var(--radius-md);
  color: white;
}

.hero-highlight-icon i {
  font-size: 1.75rem;
}

.hero-highlight-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero-highlight-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-charcoal);
}

.hero-highlight-text {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: var(--leading-normal);
  flex-grow: 1;
  margin-bottom: var(--space-3);
}

.hero-highlight-link {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  color: var(--color-earth-600);
  transition: color 0.2s ease;
}

a.hero-highlight-box-inner:hover .hero-highlight-link {
  color: var(--color-terracotta-600);
}

/* Mobile adjustments for highlights */
@media (max-width: 1200px) {
  .hero-highlights-grid[data-count="6"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-highlights-grid[data-count="4"],
  .hero-highlights-grid[data-count="6"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-highlights-grid[data-count="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-highlights-content {
    padding: var(--space-4);
    padding-bottom: 180px;
  }

  .hero-highlights-grid,
  .hero-highlights-grid[data-count="3"],
  .hero-highlights-grid[data-count="4"],
  .hero-highlights-grid[data-count="6"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-highlight-box-inner {
    padding: var(--space-4);
  }

  .hero-highlight-icon {
    display: none;
  }

  .hero-highlight-heading {
    font-size: 1rem;
  }

  .hero-highlight-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-highlights-grid,
  .hero-highlights-grid[data-count="3"],
  .hero-highlights-grid[data-count="4"],
  .hero-highlights-grid[data-count="6"] {
    grid-template-columns: 1fr;
  }
}
