@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-primary: #3D6B4F;
  --color-primary-light: #5A8F6E;
  --color-primary-dark: #2C5240;
  --color-secondary: #C8A96E;
  --color-accent: #E8734A;
  --color-bg: #FAF7F2;
  --color-bg-warm: #F5EFE6;
  --color-bg-dark: #2C3E35;
  --color-bg-darker: #1E2E27;
  --color-text: #2A2E2B;
  --color-text-muted: #6B7A6E;
  --color-text-light: #F0EDE8;
  --color-surface: #FFFFFF;
  --color-surface-warm: #F5EFE6;
  --nav-height: 72px;
  --shadow-sm: 0 2px 8px rgba(61,107,79,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(61,107,79,0.12), 0 3px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 48px rgba(61,107,79,0.15), 0 8px 16px rgba(0,0,0,0.1);
  --shadow-xl: 0 32px 64px rgba(61,107,79,0.18), 0 12px 24px rgba(0,0,0,0.12);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-primary-light);
}

.homepage-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.homepage-section-heading-primary {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.homepage-heading-light {
  color: var(--color-text-light);
}

.homepage-section-label-tag {
  display: inline-block;
  background: rgba(61,107,79,0.12);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.homepage-label-light {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.main-navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;

  &.nav-scrolled {
    background: rgba(250,247,242,0.96);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
  }

  &[data-nav-light="true"] .main-navigation-links-list a {
    color: var(--color-text);
  }

  &[data-nav-light="false"] .main-navigation-links-list a {
    color: rgba(255,255,255,0.9);
  }

  &[data-nav-light="false"] .main-navigation-links-list a::after {
    background: rgba(255,255,255,0.8);
  }

  &[data-nav-light="false"] .hamburger-bar {
    background: rgba(255,255,255,0.9);
  }
}

.main-navigation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-navigation-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  & img {
    height: 40px;
    width: auto;
    transition: opacity 0.25s ease;
  }

  &:hover img {
    opacity: 0.85;
  }
}

.main-navigation-links-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;

  & a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    position: relative;
    color: var(--color-text);

    &::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 16px;
      right: 16px;
      height: 3px;
      background: var(--color-primary);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.25s ease;
    }

    &.nav-link-active::after {
      transform: scaleX(1);
    }

    &:hover {
      background: rgba(61,107,79,0.08);
    }
  }
}

.main-navigation-hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-xs);
  transition: background 0.25s ease;

  &:hover {
    background: rgba(61,107,79,0.08);
  }
}

.hamburger-bar {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);

  &.overlay-visible {
    opacity: 1;
    pointer-events: all;
  }
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: var(--shadow-xl);

  &.panel-open {
    transform: translateX(0);
  }
}

.mobile-menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu-close-button {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;

  &:hover {
    background: rgba(255,255,255,0.2);
  }
}

.mobile-menu-links-list {
  list-style: none;
  padding: 24px 0;
  flex: 1;

  & li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;

    &:nth-child(1) { transition-delay: 0.05s; }
    &:nth-child(2) { transition-delay: 0.1s; }
    &:nth-child(3) { transition-delay: 0.15s; }
    &:nth-child(4) { transition-delay: 0.2s; }
    &:nth-child(5) { transition-delay: 0.25s; }
  }

  &.links-animated li {
    opacity: 1;
    transform: translateX(0);
  }

  & a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;

    &:hover {
      color: white;
      background: rgba(255,255,255,0.08);
      border-left-color: var(--color-secondary);
    }

    &.mobile-nav-active-link {
      color: white;
      border-left-color: var(--color-secondary);
      background: rgba(255,255,255,0.06);
    }
  }
}

.mobile-menu-contact-block {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);

  & p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;

    & i {
      color: var(--color-secondary);
      width: 16px;
    }
  }
}

.homepage-hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1E2E27 0%, #2C3E35 40%, #3D6B4F 75%, #4A7A5C 100%);
  padding-top: var(--nav-height);

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(90,143,110,0.12) 0%, transparent 50%);
    pointer-events: none;
  }
}

.homepage-hero-blob-one {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blobFloat1 12s ease-in-out infinite;
  pointer-events: none;
}

.homepage-hero-blob-two {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  background: radial-gradient(ellipse, rgba(61,107,79,0.2) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: blobFloat2 15s ease-in-out infinite;
  pointer-events: none;
}

.homepage-hero-blob-three {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  background: radial-gradient(ellipse, rgba(232,115,74,0.08) 0%, transparent 70%);
  top: 30%;
  right: 15%;
  animation: blobFloat3 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 15px) rotate(-3deg); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, -30px) rotate(-8deg); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 20px) scale(1.1); }
}

.homepage-hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.1);
  animation: badgeFloat 6s ease-in-out infinite;
  pointer-events: none;

  & i {
    color: var(--color-secondary);
    font-size: 0.9rem;
  }
}

.homepage-hero-badge-one {
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.homepage-hero-badge-two {
  top: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

.homepage-hero-badge-three {
  bottom: 25%;
  left: 6%;
  animation-delay: 3s;
}

.homepage-hero-badge-four {
  bottom: 20%;
  right: 8%;
  animation-delay: 4.5s;
}

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

.homepage-hero-content-wrapper {
  text-align: center;
  max-width: 760px;
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.homepage-hero-eyebrow-text {
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.homepage-hero-main-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.homepage-hero-typed-word {
  color: var(--color-secondary);
  display: inline-block;
  min-width: 2px;
}

.homepage-hero-description-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.homepage-hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.homepage-hero-primary-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200,169,110,0.4), 0 2px 6px rgba(0,0,0,0.15);
  min-height: 48px;

  &:hover {
    background: #D4B77A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.5), 0 4px 10px rgba(0,0,0,0.2);
    color: var(--color-bg-dark);
  }
}

.homepage-hero-secondary-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  min-height: 48px;

  &:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    color: white;
  }
}

.homepage-intro-section {
  background: var(--color-bg);
  padding: 0 0 var(--space-3xl);
  position: relative;
}

.homepage-intro-wave-top {
  margin-bottom: var(--space-2xl);

  & svg {
    display: block;
    width: 100%;
    height: 80px;
  }
}

.homepage-intro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.homepage-intro-text-block {
  & h2 {
    margin-top: var(--space-sm);
  }
}

.homepage-intro-body-paragraph {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: 1.02rem;
}

.homepage-intro-learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  margin-top: var(--space-xs);

  &:hover {
    gap: 12px;
    color: var(--color-primary-light);
  }
}

.homepage-intro-image-block {
  position: relative;
}

.homepage-intro-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.homepage-intro-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.homepage-intro-image-accent-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  bottom: -30px;
  right: -30px;
  z-index: -1;
  opacity: 0.4;
}

.homepage-topics-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61,107,79,0.15), transparent);
  }
}

.homepage-topics-header-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.homepage-topics-intro-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.homepage-topics-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.homepage-topic-card-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(61,107,79,0.06);

  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(61,107,79,0.15);
  }
}

.homepage-topic-card-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 12px rgba(61,107,79,0.25);

  & i {
    color: white;
    font-size: 1.2rem;
  }
}

.homepage-topic-card-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.homepage-topic-card-description {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.homepage-gradient-transition-section {
  height: 120px;
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg-dark) 100%);
  pointer-events: none;
}

.homepage-how-it-works-section {
  background: var(--color-bg-dark);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(200,169,110,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(61,107,79,0.15) 0%, transparent 50%);
    pointer-events: none;
  }
}

.homepage-how-it-works-wave-top {
  & svg {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: var(--space-2xl);
  }
}

.homepage-how-it-works-wave-bottom {
  margin-top: var(--space-2xl);

  & svg {
    display: block;
    width: 100%;
    height: 80px;
  }
}

.homepage-how-it-works-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.homepage-how-it-works-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}

.homepage-how-it-works-step-item {
  text-align: center;
}

.homepage-step-number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200,169,110,0.15);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 auto var(--space-md);
  transition: all 0.35s ease;
}

.homepage-how-it-works-step-item:hover .homepage-step-number-circle {
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  transform: scale(1.1);
}

.homepage-step-title-text {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-sm);
}

.homepage-step-body-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.homepage-how-it-works-step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), rgba(200,169,110,0.3));
  margin-top: 28px;
  border-radius: 2px;
  flex-shrink: 0;
}

.homepage-alternating-content-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.homepage-alternating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);

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

.homepage-alternating-row-reversed {
  direction: rtl;

  & > * {
    direction: ltr;
  }
}

.homepage-alternating-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
  }
}

.homepage-alternating-content-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.homepage-alternating-image-wrapper:hover .homepage-alternating-content-image {
  transform: scale(1.03);
}

.homepage-alternating-content-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
  line-height: 1.3;
}

.homepage-alternating-content-paragraph {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.homepage-alternating-feature-list {
  list-style: none;
  margin-bottom: var(--space-lg);

  & li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(61,107,79,0.06);

    &:last-child {
      border-bottom: none;
    }

    & i {
      color: var(--color-primary);
      font-size: 0.9rem;
      flex-shrink: 0;
    }
  }
}

.homepage-alternating-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(61,107,79,0.3);
  min-height: 48px;

  &:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61,107,79,0.4);
    color: white;
  }
}

.homepage-upcoming-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.homepage-upcoming-header-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.homepage-upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.homepage-upcoming-event-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(61,107,79,0.06);
  display: flex;
  gap: var(--space-md);

  &:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
}

.homepage-event-card-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--
color-primary);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  min-width: 56px;
  height: fit-content;
  box-shadow: 0 4px 12px rgba(61,107,79,0.25);
}

.homepage-event-date-day {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.homepage-event-date-month {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.homepage-event-card-content {
  flex: 1;
}

.homepage-event-card-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.homepage-event-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;

  & i {
    color: var(--color-primary);
    width: 12px;
    flex-shrink: 0;
  }
}

.homepage-event-card-description {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: var(--space-xs);
}

.homepage-upcoming-all-link-wrapper {
  text-align: center;
}

.homepage-upcoming-view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  min-height: 48px;

  &:hover {
    background: var(--color-primary);
    color: white;
    gap: 12px;
  }
}

.homepage-newsletter-cta-section {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.homepage-newsletter-cta-blob-one {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.homepage-newsletter-cta-blob-two {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  background: radial-gradient(ellipse, rgba(90,143,110,0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.homepage-newsletter-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.homepage-newsletter-cta-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  display: block;
}

.homepage-newsletter-cta-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.homepage-newsletter-cta-description {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.homepage-newsletter-cta-subscribe-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
  min-height: 52px;

  &:hover {
    background: #D4B77A;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(200,169,110,0.5);
    color: var(--color-bg-dark);
  }
}

.main-site-footer {
  background: var(--color-bg-darker);
  position: relative;
}

.main-footer-wave-top {
  & svg {
    display: block;
    width: 100%;
    height: 60px;
  }
}

.main-footer-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px var(--space-lg);
}

.main-footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.main-footer-logo-image {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.main-footer-brand-description {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.main-footer-address-block {
  font-style: normal;

  & p {
    color: rgba(255,255,255,0.5);
    font-size: 0.83rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;

    & i {
      color: var(--color-secondary);
      width: 14px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    & a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.25s ease;

      &:hover {
        color: var(--color-secondary);
      }
    }
  }
}

.main-footer-column-heading {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.main-footer-navigation-list {
  list-style: none;

  & li {
    margin-bottom: 10px;
  }

  & a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    &:hover {
      color: var(--color-secondary);
      padding-left: 4px;
    }
  }
}

.main-footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.main-footer-copyright-text {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.main-footer-legal-note {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

.page-hero-section {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: linear-gradient(145deg, #1E2E27 0%, #2C3E35 50%, #3D6B4F 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-blob-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse, rgba(200,169,110,0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.page-hero-main-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  margin-top: var(--space-sm);
}

.page-hero-subtitle-text {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.about-mission-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.about-mission-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-mission-text-block {
  & h2 {
    margin-top: var(--space-sm);
  }
}

.about-body-paragraph {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.about-mission-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-mission-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-values-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.about-values-header-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-values-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-value-card-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(61,107,79,0.06);

  &:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
}

.about-value-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(61,107,79,0.1), rgba(90,143,110,0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);

  & i {
    color: var(--color-primary);
    font-size: 1.15rem;
  }
}

.about-value-card-title {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.about-value-card-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-team-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.about-team-header-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.about-team-intro-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.about-team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.about-team-member-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(61,107,79,0.06);
  text-align: center;

  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

.about-team-member-image-wrapper {
  overflow: hidden;
  height: 240px;
}

.about-team-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-team-member-card:hover .about-team-member-photo {
  transform: scale(1.05);
}

.about-team-member-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-md) var(--space-md) var(--space-xs);
}

.about-team-member-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.about-team-member-bio {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 0 var(--space-md) var(--space-md);
}

.about-approach-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.about-approach-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-approach-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-approach-highlight-box {
  display: flex;
  gap: var(--space-md);
  background: rgba(61,107,79,0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md);
  margin-top: var(--space-md);

  & i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  & p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

.about-contact-cta-section {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
}

.about-contact-cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.about-contact-cta-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  margin-top: var(--space-md);
}

.about-contact-cta-buttons-row {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.news-upcoming-seminars-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.news-section-header-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.news-section-intro-text {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.news-seminars-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.news-seminar-list-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  border: 1px solid rgba(61,107,79,0.06);
  transition: all 0.35s ease;

  &:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(61,107,79,0.15);
  }
}

.news-seminar-date-column {
  display: flex;
  align-items: flex-start;
}

.news-seminar-date-badge-large {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  min-width: 72px;
  box-shadow: 0 4px 14px rgba(61,107,79,0.3);
}

.news-seminar-date-day-number {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.news-seminar-date-month-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.news-seminar-topic-tag {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  color: #8B6914;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.news-seminar-article-title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.news-seminar-article-body {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.news-seminar-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.news-seminar-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--color-text-muted);

  & i {
    color: var(--color-primary);
    width: 12px;
    flex-shrink: 0;
  }
}

.news-articles-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.news-articles-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.news-article-card-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(61,107,79,0.06);

  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

.news-article-card-image-wrapper {
  overflow: hidden;
  height: 200px;
}

.news-article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-article-card-item:hover .news-article-card-image {
  transform: scale(1.05);
}

.news-article-card-body {
  padding: var(--space-md);
}

.news-article-category-tag {
  display: inline-block;
  background: rgba(61,107,79,0.1);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.news-article-card-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.news-article-card-excerpt {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.news-article-card-meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(61,107,79,0.06);
}

.news-article-date-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;

  & i {
    color: var(--color-primary);
  }
}

.news-newsletter-cta-section {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,0.06) 0%, transparent 65%);
    pointer-events: none;
  }
}

.news-newsletter-cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.news-newsletter-cta-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-lg);
}

.newsletter-signup-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.newsletter-signup-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.newsletter-signup-info-column {
  & h2 {
    margin-top: var(--space-sm);
  }
}

.newsletter-info-body-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.newsletter-info-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.newsletter-benefit-list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.newsletter-benefit-icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61,107,79,0.2);

  & i {
    color: white;
    font-size: 1rem;
  }
}

.newsletter-benefit-text-block {
  & h4 {
    font-family: 'Lora', serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
  }

  & p {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
  }
}

.newsletter-signup-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(61,107,79,0.08);
}

.newsletter-form-card-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.newsletter-form-header-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.newsletter-form-card-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.newsletter-form-card-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form-field-group {
  margin-bottom: var(--space-md);

  & label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
  }
}

.newsletter-form-field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.newsletter-form-input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(61,107,79,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.25s ease;
  outline: none;
  min-height: 48px;

  &:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(61,107,79,0.1);
    background: white;
  }

  &::placeholder {
    color: rgba(107,122,110,0.5);
  }
}

.newsletter-topics-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.newsletter-topic-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(61,107,79,0.12);
  border-radius: var(--radius-xs);
  transition: all 0.25s ease;

  &:hover {
    background: rgba(61,107,79,0.05);
    border-color: var(--color-primary);
  }

  & input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

.newsletter-privacy-checkbox-group {
  margin-top: var(--space-sm);
}

.newsletter-privacy-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;

  & input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  & a {
    color: var(--color-primary);
    text-decoration: underline;
  }
}

.newsletter-form-submit-button {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(61,107,79,0.3);
  min-height: 52px;
  margin-top: var(--space-sm);

  &:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61,107,79,0.4);
  }
}

.newsletter-archive-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.newsletter-archive-header-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.newsletter-archive-intro-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.newsletter-archive-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-archive-item-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(61,107,79,0.1);
  align-items: start;
  transition: all 0.25s ease;

  &:last-child {
    border-bottom: none;
  }

  &:hover {
    padding-left: var(--space-sm);
  }
}

.newsletter-archive-item-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.newsletter-archive-item-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.newsletter-archive-item-description {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-main-section {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.contact-split-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-map-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(61,107,79,0.1);

  & iframe {
    border-radius: var(--radius-lg);
  }
}

.contact-address-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;

  & h4 {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
  }

  & p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;

    & a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.25s ease;

      &:hover {
        color: var(--color-primary-light);
      }
    }
  }
}

.contact-info-icon-circle {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61,107,79,0.25);

  & i {
    color: white;
    font-size: 0.95rem;
  }
}

.contact-form-wrapper-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(61,107,79,0.08);
}

.contact-form-section-heading {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.contact-form-intro-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-form-field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-form-input-element {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(61,107,79,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.25s ease;
  outline: none;
  min-height: 48px;

  &:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(61,107,79,0.1);
    background: white;
  }

  &::placeholder {
    color: rgba(107,122,110,0.5);
  }
}

.contact-form-textarea-element {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(61,107,79,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.25s ease;
  outline: none;
  resize: vertical;
  min-height: 130px;

  &:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(61,107,79,0.1);
    background: white;
  }

  &::placeholder {
    color: rgba(107,122,110,0.5);
  }
}

.contact-privacy-checkbox-wrapper {
  margin-top: var(--space-xs);
}

.contact-privacy-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.55;

  & input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }

  & a {
    color: var(--color-primary);
    text-decoration: underline;
  }
}

.contact-form-submit-button-element {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(61,107,79,0.3);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);

  &:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61,107,79,0.4);
  }
}

.contact-recent-events-section {
  background: var(--color-bg-warm);
  padding: var(--space-3xl) 0;
}

.contact-events-header-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.contact-events-intro-text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
}

.contact-events-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-event-mini-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,107,79,0.06);
  transition: all 0.3s ease;

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(61,107,79,0.15);
  }
}

.contact-event-mini-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.contact-event-mini-title {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.contact-event-mini-time {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;

  & i {
    color: var(--color-primary);
  }
}

.contact-events-all-link-wrapper {
  text-align: center;
}

.thanks-page-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px var(--space-3xl);
}

.thanks-page-content-wrapper {
  max-width: 600px;
  width: 100%;
}

.thanks-page-heading-block {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.thanks-page-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 24px rgba(61,107,79,0.3);

  & i {
    color: white;
    font-size: 1.8rem;
  }
}

.thanks-page-main-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.thanks-page-subtitle-text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.thanks-page-home-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(61,107,79,0.3);
  min-height: 48px;

  &:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61,107,79,0.4);
    color: white;
  }
}

.thanks-journey-timeline-wrapper {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(61,107,79,0.08);
}

.thanks-timeline-section-heading {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.thanks-journey-timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.thanks-timeline-step-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-md);
  position: relative;
}

.thanks-timeline-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-timeline-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61,107,79,0.25);

  & i {
    color: white;
    font-size: 0.9rem;
  }
}

.thanks-step-circle-highlighted {
  background: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(200,169,110,0.4);

  & i {
    color: var(--color-bg-dark);
  }
}

.thanks-step-circle-upcoming {
  background: rgba(107,122,110,0.15);
  border: 2px dashed rgba(107,122,110,0.3);
  box-shadow: none;

  & i {
    color: var(--color-text-muted);
  }
}

.thanks-timeline-step-connector-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(180deg, var(--color-primary), rgba(61,107,79,0.2));
  margin: 4px 0;
}

.thanks-timeline-step-content {
  padding-bottom: var(--space-lg);
}

.thanks-timeline-step-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  padding-top: 8px;
}

.thanks-timeline-step-upcoming .thanks-timeline-step-title {
  color: var(--color-text-muted);
}

.thanks-timeline-step-description {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-page-main-content {
  min-height: 100vh;
}

.legal-page-header-section {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(145deg, #1E2E27 0%, #2C3E35 50%, #3D6B4F 100%);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    background: radial-gradient(ellipse, rgba(200,169,110,0.1) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    pointer-events: none;
  }
}

.legal-page-header-terms {
  background: linear-gradient(145deg, #1E2E27 0%, #3A3020 50%, #5A4A25 100%);
}

.legal-page-header-cookies {
  background: linear-gradient(145deg, #1E2E27 0%, #1E2A35 50%, #2A4A5A 100%);
}

.legal-page-main-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.legal-page-meta-info {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.legal-page-effective-date,
.legal-page-last-updated {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);

  & i {
    color: var(--color-secondary);
  }
}

.legal-page-intro-paragraph {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.legal-timeline-content-wrapper {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.legal-timeline-vertical-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.legal-timeline-entry-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  position: relative;

  &:last-child .legal-timeline-marker-line {
    display: none;
  }
}

.legal-timeline-entry-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legal-timeline-marker-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61,107,79,0.25);
  z-index: 1;
}

.legal-timeline-marker-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(61,107,79,0.3), rgba(61,107,79,0.05));
  margin: 4px 0;
}

.legal-timeline-entry-body {
  padding-bottom: var(--space-xl);

  & p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);

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

    & strong {
      color: var(--color-text);
      font-weight: 600;
    }

    & a {
      color: var(--color-primary);
      text-decoration: underline;
    }
  }
}

.legal-timeline-entry-heading {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  padding-top: 10px;
}

.legal-timeline-entry-date-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.legal-terms-accordion-content {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.legal-terms-sections-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-terms-section-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,107,79,0.06);
  transition: all 0.3s ease;

  &:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(61,107,79,0.12);
  }
}

.legal-terms-section-letter-marker {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(200,169,110,0.2), rgba(200,169,110,0.1));
  border: 2px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #8B6914;
  flex-shrink: 0;
}

.legal-terms-section-heading {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-terms-section-content {
  & p {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);

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

.legal-cookies-compact-content {
  background: var(--color-bg);
  padding: var(--space-3xl) 0;
}

.legal-cookies-two-column-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}

.legal-cookies-section-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,107,79,0.06);
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;

  &:hover {
    box-shadow: var(--shadow-md);
  }

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

  & p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);

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

.legal-cookies-section-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(61,107,79,0.1), rgba(90,143,110,0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);

  & i {
    color: var(--color-primary);
    font-size: 1.1rem;
  }
}

.legal-cookies-section-heading {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-cookies-category-item {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(61,107,79,0.08);

  &:first-of-type {
    border-top: none;
    padding-top: 0;
  }
}

.legal-cookies-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
  gap: 8px;

  & h3 {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
  }
}

.legal-cookies-always-active-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(61,107,79,0.12);
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-cookies-consent-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(232,115,74,0.12);
  color: var(--color-accent);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-cookies-example-text {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(107,122,110,0.7);
  margin-top: 6px;
}

.legal-cookies-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.legal-cookies-sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(61,107,79,0.06);
}

.legal-cookies-sidebar-card-accent {
  background: linear-gradient(135deg, rgba(61,107,79,0.05), rgba(200,169,110,0.05));
  border-color: rgba(61,107,79,0.12);
}

.legal-cookies-sidebar-heading {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-cookies-quick-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;

  & li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);

    & i {
      color: var(--color-primary);
      width: 14px;
      flex-shrink: 0;
    }
  }
}

.legal-cookies-sidebar-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.legal-cookies-privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;

  &:hover {
    gap: 10px;
    color: var(--color-primary-light);
  }
}

.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);

  &.consent-overlay-visible {
    opacity: 1;
    pointer-events: all;
  }
}

.cookie-consent-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  overflow-y: auto;

  &.consent-panel-visible {
    transform: translateX(0);
  }
}

.cookie-consent-panel-header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-consent-shield-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  & i {
    color: white;
    font-size: 1rem;
  }
}

.cookie-consent-panel-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.cookie-consent-panel-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.cookie-consent-panel-body {
  flex: 1;
  padding: 20px;
}

.cookie-consent-description-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-consent-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cookie-consent-category-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}

.cookie-consent-category-info {
  flex: 1;
}

.cookie-consent-category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3px;
}

.cookie-consent-category-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.cookie-consent-toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-consent-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-consent-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.3s ease;

  &::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }
}

.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider {
  background: var(--color-primary);
}

.cookie-consent-toggle-switch input:checked + .cookie-consent-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-consent-toggle-switch input:disabled + .cookie-consent-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent-panel-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-consent-accept-all-button {
  width: 100%;
  padding: 12px;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;

  &:hover {
    background: #D4B77A;
    transform: translateY(-1px);
  }
}

.cookie-consent-reject-button {
  width: 100%;
  padding: 11px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;

  &:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.35);
  }
}

.cookie-consent-save-button {
  width: 100%;
  padding: 11px;
  background: rgba(61,107,79,0.4);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(61,107,79,0.5);
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;

  &:hover {
    background: rgba(61,107,79,0.6);
    color: white;
  }
}

.cookie-consent-legal-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;

  & a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s ease;

    &:hover {
      color: rgba(255,255,255,0.65);
    }
  }
}

@media (max-width: 1024px) {
  .homepage-how-it-works-steps-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .homepage-how-it-works-step-connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--color-secondary), rgba(200,169,110,0.3));
  }

  .homepage-topics-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .contact-events-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-cookies-two-column-layout {
    grid-template-columns: 1fr;
  }

  .legal-cookies-sidebar-column {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-navigation-links-list {
    display: none;
  }

  .main-navigation-hamburger-button {
    display: flex;
  }

  .homepage-hero-floating-badge {
    display: none;
  }

  .homepage-hero-badge-one,
  .homepage-hero-badge-two {
    display: flex;
    top: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin: 4px auto;
  }

  .homepage-hero-badge-one { bottom: auto; }
  .homepage-hero-badge-two { display: none; }
  .homepage-hero-badge-three { display: none; }
  .homepage-hero-badge-four { display: none; }

  .homepage-intro-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .homepage-topics-cards-grid {
    grid-template-columns: 1fr;
  }

  .homepage-alternating-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    direction: ltr;
  }

  .homepage-alternating-row-reversed {
    direction: ltr;
  }

  .homepage-upcoming-events-grid {
    grid-template-columns: 1fr;
  }

  .homepage-upcoming-event-card {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

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

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

  .about-approach-content-wrapper {
    grid-template-columns: 1fr;
  }

  .about-contact-cta-buttons-row {
    flex-direction: column;
    align-items: center;
  }

  .news-seminar-list-item {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .news-articles-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-topics-checkbox-group {
    grid-template-columns: 1fr;
  }

  .contact-split-layout-grid {
    grid-template-columns: 1fr;
  }

  .contact-events-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-footer-top-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .main-footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .legal-cookies-sidebar-column {
    grid-template-columns: 1fr;
  }

  .legal-timeline-entry-item {
    grid-template-columns: 40px 1fr;
  }

  .legal-terms-section-block {
    grid-template-columns: 1fr;
  }

  .legal-terms-section-letter-marker {
    margin-bottom: var(--space-sm);
  }

  .newsletter-archive-item-row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .homepage-hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .homepage-hero-primary-cta-button,
  .homepage-hero-secondary-cta-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cookie-consent-panel {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .homepage-section-container {
    padding: 0 16px;
  }

  .contact-events-mini-grid {
    grid-template-columns: 1fr;
  }

  .news-seminar-details-row {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .thanks-page-main-content {
    padding: calc(var(--nav-height) + 40px) 16px var(--space-xl);
  }

  .thanks-journey-timeline-wrapper {
    padding: var(--space-md);
  }

  .newsletter-signup-form-card {
    padding: var(--space-md);
  }

  .contact-form-wrapper-card {
    padding: var(--space-md);
  }

  .legal-page-meta-info {
    flex-direction: column;
    gap: var(--space-xs);
  }
}