/* Premium Design System - Minimal, Modern, Elegant */

/* CSS Custom Properties */
:root {
  /* Core Colors - Black, White, Gold Palette */
  --background: hsl(0, 0%, 99%);
  --foreground: hsl(0, 0%, 8%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 8%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(0, 0%, 8%);

  /* Primary Accent */
  --primary: hsl(47, 46%, 62%);
  --primary-foreground: hsl(0, 0%, 8%);
  --primary-glow: hsl(47, 46%, 80%);

  /* Subtle Grays */
  --secondary: hsl(0, 0%, 96%);
  --secondary-foreground: hsl(0, 0%, 20%);
  --muted: hsl(0, 0%, 95%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(47, 46%, 62%);
  --accent-foreground: hsl(0, 0%, 8%);
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 98%);

  /* Borders & Inputs */
  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 90%);
  --ring: hsl(45, 100%, 51%);

  /* Custom Design Tokens */
  --gold: hsl(47, 46%, 62%);
  --gold-light: hsl(47, 46%, 80%);
  --gold-dark: hsl(47, 46%, 45%);
  --black: hsl(0, 0%, 8%);
  --gray-light: hsl(0, 0%, 95%);
  --gray-medium: hsl(0, 0%, 70%);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(47, 46%, 62%), hsl(47, 46%, 80%));
  --gradient-shimmer: linear-gradient(90deg, transparent, hsla(47, 46%, 62%, 0.3), transparent);
  --gradient-radial: radial-gradient(circle, hsl(47, 46%, 62%) 0%, transparent 70%);

  /* Shadows */
  --shadow-elegant: 0 4px 20px -2px hsla(0, 0%, 8%, 0.1);
  --shadow-gold-glow: 0 0 20px hsla(47, 46%, 62%, 0.3);
  --shadow-modal: 0 20px 60px -10px hsla(0, 0%, 8%, 0.3);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-quick: all 0.2s ease-out;

  --radius: 50%;
  --radius-card: 1rem;

  /* Heart Cursor */
  --cursor-light: url('../assets/img/pixel-heart.png') 32 32, auto;
  --cursor-dark: url('../assets/img/pixel-heart-w.svg') 32 32, url('../assets/img/pixel-heart-w.png') 32 32, auto;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --background: hsl(0, 0%, 5%);
    --foreground: hsl(0, 0%, 95%);
    --card: hsl(0, 0%, 8%);
    --card-foreground: hsl(0, 0%, 95%);
    --popover: hsl(0, 0%, 8%);
    --popover-foreground: hsl(0, 0%, 95%);
    --secondary: hsl(0, 0%, 12%);
    --secondary-foreground: hsl(0, 0%, 85%);
    --muted: hsl(0, 0%, 10%);
    --muted-foreground: hsl(0, 0%, 60%);
    --accent: hsl(47, 46%, 15%);
    --accent-foreground: hsl(0, 0%, 95%);
    --border: hsl(0, 0%, 15%);
    --input: hsl(0, 0%, 15%);
  }
}

/* Base Styles */
* {
  box-sizing: border-box;
  border-color: var(--border);
  cursor: var(--cursor-light);
}

/* Dark theme cursor override */
@media (prefers-color-scheme: dark) {
  * {
    cursor: var(--cursor-dark);
  }
}

html, body {
  overflow-x: hidden;
}

main, section, .container, .masonry, .images, div, article, footer {
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* Typography */
.font-heading {
  font-family: 'Agrandir Wide', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.font-heading-small {
  display: block;
  font-size: 0.8em;
  padding-top: 0.7em;
}

h2 {
  text-align: inherit;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Content width constraints */
p, strong, span:not(.gold-bullet), .hero-subtitle, .section-subtitle, .testimonial-quote, .member-highlights {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

span.gold-bullet + span {
  margin-left: 0;
}

.hero-text, .offer-content, .member-info {
  max-width: 80ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

/* Header (shared styles) */
.header {
  background: var(--gradient-gold);
  backdrop-filter: blur(8px);
  border-top: 1px solid hsla(47, 46%, 62%, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}

/* Homepage-specific sticky/animated header */
.header-home {
  position: absolute;
  left: 0;
  right: 0;
  top: unset;
  bottom: 4rem;
}

.header-home.sticky {
  position: fixed;
  top: 0;
  bottom: auto;
  border-top: none;
  border-bottom: 1px solid hsla(47, 46%, 62%, 0.2);
}

/* Subpages: .header is sticky at top */
.header:not(.header-home) {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.header-content {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}

.header h1 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header h1 video {
  object-fit: contain;
  aspect-ratio: 5 / 2;
  max-width: 20rem;
  width: 100%;
  margin: 0 auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.sticky h1 video {
  max-width: 15rem;
}


h1 video.header-logo-small {
  max-width: 15rem;
  width: 100%;
  margin: 0 auto;
  display: block;
} 

.visuallyhidden:not(:focus):not(:active):not(:focus-within) {
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/* All page navigation is fixed under the header */
.main-navigation {
  position: sticky;
  top: var(--header-height, 6rem);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 100;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-menu.active {
  display: flex;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.18rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
  position: relative;
  background: none;
  outline: none;
  z-index: 1;
  letter-spacing: -0.01em;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: left 0.5s ease;
  opacity: 0.1;
  pointer-events: none;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--foreground);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary);
  background: var(--accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  /* Homepage: header and nav start at bottom, become sticky at top after scroll */
  body.home .header-home {
    position: absolute;
    left: 0;
    right: 0;
    top: unset;
    bottom: 4rem;
    z-index: 101;
  }
  body.home .header-home.sticky {
    position: fixed;
    top: 0;
    bottom: auto;
    z-index: 101;
  }
  body.home .main-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: unset;
    bottom: 0;
    z-index: 100;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.home .main-navigation.visible {
    position: fixed;
    top: var(--header-height, 6rem);
    bottom: auto;
    z-index: 40;
  }
  /* Subpages: header and nav always fixed at top, nav under header */
  body:not(.home) .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 101;
  }
  body:not(.home) .main-navigation {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height, 6rem);
    bottom: auto;
    z-index: 100;
  }
  .main-navigation.menu-open {
    top: 0;
    bottom: auto;
    z-index: 120;
  }
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--background);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 20rem;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .nav-link.active {
    background: var(--accent);
    color: var(--primary);
  }
}

/* Tablet Navigation */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Main Content */
.main {
  position: relative;
}

/* All sections */
section {
  display: grid;
  position: relative;
}

/* Hero Section */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  ), url('img/h-susanne-yaara-wild-sense.jpg');
  background-size: cover;
  background-position: center -60px;
  background-repeat: no-repeat;
  z-index: 0;
  width: 100vw;
}

.hero-spacer {
  height: 100vh;
  position: relative;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-spacer {
    height: calc(100vh - var(--header-height, 6rem) - var(--nav-height, 4rem));
  }
}

.hero .cta-primary {
  margin-bottom: calc(var(--header-height, 6rem) + var(--nav-height, 4rem) + 4rem);
  margin-top: 1rem;
}

/* Alternative light theme detection for Chrome */
@media (prefers-color-scheme: no-preference) {
  .hero {
    background-image: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.3) 40%,
      rgba(255, 255, 255, 0.1) 70%,
      transparent 100%
    ), url('img/h-susanne-yaara-wild-sense.jpg');
  }
  
  .hero-text {
    text-shadow: none;
  }
  
  .hero-subtitle {
    text-shadow: 0 3px 6px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(255, 255, 255, 0.3);
  }
  
  .gold-highlight {
    background: var(--gold-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .circle-container {
    border: 2px solid white;
    box-shadow: var(--shadow-elegant);
  }
  
  .question-shimmer::after {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.4), transparent);
    animation: shimmer-slide 3s infinite;
  }
  
  .member-contact, 
  .member-contact span {
    color: white;
  }
  
  .member-contact:hover,
  .member-contact:hover span {
    color: var(--gold-light);
  }
  
  .nav-link.active {
    color: white;
    background: var(--primary);
  }
  
  .nav-link.active::after {
    background: white;
  }
}

/* Dark theme hero optimization */
@media (prefers-color-scheme: dark) {
  .hero {
    background-image: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      transparent 100%
    ), url('img/h-susanne-yaara-wild-sense.jpg');
  }
}

.parallax-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-text {
  text-align: center;
  color: white;
  max-width: 64rem;
  padding: 0 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 3.75rem;
  margin-bottom: 0;
  margin-top: 5rem;
  line-height: 1;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
  max-width: 50ch;
  opacity: 1;
  line-height: 1.6;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
  font-weight: 500;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: -1rem auto 1rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

h3.section-subtitle {
  font-size: 1.45rem;
}

.section-subtitle + p {
  margin-top: 1.5rem;
}
.section-subtitle + a {
  margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
  /* Only keep unique FAQ styles here, remove background, color, padding, and ::before overlay now handled by section-style and section-style-accent */
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto 6rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .faq-grid {
    flex-direction: row;
  }
}

.faq-item {
  text-align: center;
}

/* Circle Elements */
.circle-container {
  position: relative;
  border-radius: 50%;
  background-color: var(--card);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 15rem;
  background: none;
  border: 1px solid var(--primary);
}

.circle-container:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-elegant);
}

.circle-container h3 {
  font-size: 1.7rem;
  padding: 0 2rem;
  line-height: 1.4;
  margin: 0;
  color: white;
}

/* Question Shimmer */
.question-shimmer {
  position: relative;
  overflow: hidden;
}

.question-shimmer::after,
.question-shimmer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.question-shimmer::after {
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, var(--gold-light) 60%, transparent 100%);
  animation: radial-shimmer 2.5s ease-in-out infinite;
  animation-delay: 0.7s;
}

.question-shimmer::before {
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 80%);
  opacity: 0.4;
  animation: radial-shimmer 2.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.question-shimmer .ripple-wave {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.3;
  background: radial-gradient(circle, var(--gold) 0%, transparent 80%);
  animation: radial-shimmer 2.5s ease-in-out infinite;
  animation-delay: 1.7s;
  z-index: 1;
}

@keyframes radial-shimmer {
  0% {
    width: 0%;
    height: 0%;
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.2);
  }
  15% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.2;
  }
  70% {
    opacity: 0.08;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Offers Section */
.offers {
  padding: 8rem 0;
  background-color: var(--background);
  margin-bottom: 0;
}

.offers-grid {
  display: grid;
  gap: 4rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-icon {
  display: flex;
  justify-content: center;
}

.offer-icon .circle-container {
  width: 8rem;
  height: 8rem;
}

.icon-bg {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsla(47, 46%, 62%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-pulse {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--primary);
  position: relative;
}

.icon-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse-glow 2s infinite;
}

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

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-content h3 {
  font-size: 1.875rem;
  margin: 0;
}

.offer-content p {
  color: var(--muted-foreground);
  margin: 0;
}

.offer-features {
  line-height: 1.25;
  font-size: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 38rem;
  margin: 0 auto;
}

article .offer-features {
  max-width: 28rem;
  margin: 0 auto;
} 


.offer-features li {
  margin-bottom: 0.5rem;
}

/* About Section */
.about {
  padding: 8rem 0;
  background-color: var(--accent);
  position: relative;
  color: white;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 95%, 0.3);
  z-index: -1;
}

.team-grid {
  display: grid;
  gap: 4rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-member picture {
  position: relative;
  border-radius: 50%;
  background-color: var(--card);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  background: none;
  border: 1px solid var(--primary);
  margin: 0 auto;
}

.team-member picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.section-image {
  max-width: 100%;
  margin: 0 auto 3rem auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.member-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-header h3 {
  font-size: 1.5rem;
  margin: 0 0 0.25rem 0;
}

.member-role {
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.member-highlights {
  line-height: 1.25;
  font-size: 1.15rem;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  color: var(--muted-foreground);
}

.member-highlights li {
  margin-bottom: 0.25rem;
}

.member-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.member-contact {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-quick);
}

.member-contact svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
}

.member-contact:hover {
  color: var(--primary-glow);
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

.divider {
  width: 1px;
  height: 1.5rem;
  background-color: var(--muted-foreground);
}

.member-learn-more {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: color var(--transition-quick);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}

.member-learn-more:hover {
  color: var(--primary-glow);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--background);
  margin-bottom: 8rem;
}

.testimonials-content {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding: 0;
}

.home .testimonials-content {
  margin-top: 1.5rem;
}

.testimonial-slide {
  display: none;
  text-align: center;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  display: flex;
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testimonial-author p:first-child {
  font-size: 1.125rem;
  margin: 2rem auto 0.5rem;
}

.testimonial-author p:last-child {
  color: var(--primary);
  margin: 0;
}

.video-placeholder {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.video-icon {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: hsla(0, 0%, 95%, 0.5);
  border: 1px solid hsla(47, 46%, 62%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.play-button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsla(47, 46%, 62%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 0.5rem solid var(--primary);
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 0.25rem;
}

.video-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 auto;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.75rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--muted-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.25);
}

.testimonial-dot:hover {
  background-color: var(--primary);
  transform: scale(1.1);
}

/* Buttons */
.cta-primary {
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  border: none;
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 1;
  margin: 2rem auto;
  width: fit-content;
  box-shadow: var(--shadow-gold-glow);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  flex-shrink: 1;
  margin: 2rem auto;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.cta-secondary:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
  text-decoration: none;
}

.cta-secondary:hover::before {
  left: 100%;
}

/* Shimmer Effects */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  transition: var(--transition-smooth);
}

.shimmer:hover::before {
  left: 100%;
}

/* Gold Highlight */
.gold-highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--card);
  border-radius: var(--radius-card);
  padding: 2rem;
  max-width: 80vw;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color var(--transition-quick);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 60ch;
  margin: 0 auto;
}

.modal-body h3 {
  font-size: 1.5rem;
  margin: 0;
}

.modal-body p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.member-modal-photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid hsla(47, 46%, 62%, 0.2);
}

.member-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Utility: add to <main> or main wrapper to prevent content being hidden under fixed header/nav */
.main-content-padding > section {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content-padding {
    padding-top: calc(var(--header-height, 6rem) + var(--nav-height, 4rem));

  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.25rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .faq-grid {
    flex-direction: column;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .circle-container {
    width: 12rem;
    height: 12rem;
  }
  
  .circle-container h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  
  .circle-container {
    width: 9rem;
    height: 9rem;
  }
  
  .circle-container h3 {
    font-size: 1.05rem;
    padding: 0 1rem;
  }
}

/* Community Section - Inverted Theme */
#community.about {
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 99%);
}

#community.about::before {
  background-color: transparent;
}

#community.about .section-title,
#community.about .section-subtitle,
#community.about p {
  color: hsl(0, 0%, 99%);
}

#community.about .cta-primary {
  background: hsl(0, 0%, 99%);
  color: hsl(0, 0%, 8%);
  border: 2px solid hsl(0, 0%, 99%);
}

#community.about .cta-primary:hover {
  background: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 99%);
  border-color: hsl(0, 0%, 99%);
}

/* Dark theme - make community section light */
@media (prefers-color-scheme: dark) {
  #community.about {
    background-color: hsl(0, 0%, 99%);
    color: hsl(0, 0%, 8%);
  }
  
  #community.about .section-title,
  #community.about .section-subtitle,
  #community.about p {
    color: hsl(0, 0%, 8%);
  }
  
  #community.about .cta-primary {
    background: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 99%);
    border: 2px solid hsl(0, 0%, 8%);
  }
  
  #community.about .cta-primary:hover {
    background: hsl(0, 0%, 99%);
    color: hsl(0, 0%, 8%);
    border-color: hsl(0, 0%, 8%);
  }
}

/* Footer */
main > footer, main + footer, .site-footer {
  color: var(--primary);
  background-color: var(--muted);
  text-align: center;
  width: 100%;
  padding: 4rem 0 2rem 0;
  font-size: 1.05rem;
  border-top: 2.5px solid var(--primary, #e6c14a);
  box-shadow: 0 -4px 24px 0 rgba(0,0,0,0.04);
  position: relative;
  z-index: 10;
}

.site-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.7em;
  background: linear-gradient(to bottom, var(--primary, #e6c14a) 0%, transparent 100%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
@media (prefers-color-scheme: dark) {
  .site-footer {
    background: #18181b;
    color: #fff;
    border-top: 2.5px solid var(--primary, #e6c14a);
    box-shadow: 0 -4px 24px 0 rgba(0,0,0,0.18);
  }
  .site-footer::before {
    opacity: 0.18;
  }
}

address {
  display: block;
  padding: 0 2rem;
  text-align: center;
  font-family: 'Agrandir Wide', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: normal;
  margin: 0;
}

small {
  display: block;
  font-size: 1rem;
  text-align: center;
  padding: 1rem 2rem 2rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

small a {
  color: var(--primary);
  cursor: pointer;
  display: inline;
  font-size: 100%;
  margin: 0;
  text-decoration: none;
  transition: color var(--transition-quick);
}

small a:hover {
  color: var(--primary-glow);
  text-decoration: underline;
}

footer .icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  display: block;
  opacity: 0.8;
  transition: opacity var(--transition-quick);
}

footer .icon:hover {
  opacity: 1;
}

.section-padding {
  padding: 4rem 0;
}

.text-center, .center-text { text-align: center; margin-left: auto; margin-right: auto; }
.max-50ch { max-width: 50ch; }
.max-60ch { max-width: 60ch; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-05 { margin-bottom: 0.5rem; }
.gap-2 { gap: 2rem; }
.flex-wrap { display: flex; flex-wrap: wrap; }
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
}
.d-inline-block { display: inline-block; }
.mt-2 { margin-top: 2rem; }
.fw-600 { font-weight: 600; }
.fs-11 { font-size: 1.1rem; }
.fs-1 { font-size: 1rem; }
.info-card { list-style:none; flex: 1 1 200px; min-width: 200px; max-width: 300px; text-align: center; align-self: flex-start; }
.approach-step-card { flex: 1 1 200px; min-width: 200px; max-width: 300px; text-align: center; }
.circle-large { width: 7rem; height: 7rem; margin: 0 auto 1rem; cursor: default; display: flex; align-items: center; justify-content: center; }
.center-flex { display: flex; align-items: center; justify-content: center; }
.section-vertical-padding { padding: 4rem 0; }
.section-vertical-padding-top { padding-top: 4rem; }
.mr-05 { margin-right: 0.5em; }
.mt-n02 { margin-top: -0.2rem; }
.header-logo-link { display: inline-block; }
.svg-align-middle { vertical-align: middle; }

.section-accent-bg {
  background-color: var(--accent);
  color: white;
  position: relative;
}

@media (min-width: 769px) {
  body.home .main-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: unset;
    bottom: 0;
    z-index: 100;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.home .main-navigation.visible {
    position: fixed;
    top: var(--header-height, 6rem);
    bottom: auto;
    z-index: 40;
  }
}

.circle-svg {
  stroke: var(--primary);
}
.approach-steps-top {
  align-items: flex-start;
}

.team-member-row {
  width: 100%;
  margin-bottom: 4rem;
}
.team-member-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.team-member-flex.reverse {
  flex-direction: row-reverse;
}
.team-member-image {
  flex: 0 0 220px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.team-member-image .member-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .team-member-flex, .team-member-flex.reverse {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .team-member-image .member-image {
    width: 9rem;
    height: 9rem;
  }
}

.team-member-header-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.team-member-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
@media (max-width: 900px) {
  .team-member-header-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .team-member-title {
    align-items: center;
  }
}

.team-member-header-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.team-member-content-row {
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .team-member-header-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .team-member-content-row {
    margin-bottom: 2rem;
  }
}

.team-member-clean {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
  text-align: left;
}
.team-member-header-clean {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
.member-image-clean {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
}
.member-name-clean {
  font-size: 2rem;
  margin: 0 0 0.25rem 0;
  line-height: 1.1;
  color: #C7A047;
}
.member-role-clean {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin: 0;
}
.member-bio-clean {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--foreground);
}
@media (max-width: 700px) {
  .team-member-header-clean {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .member-image-clean {
    width: 7rem;
    height: 7rem;
  }
  .team-member-clean {
    padding: 0;
  }
}

.member-email a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color var(--transition-quick);
}
.member-email a:hover {
  color: var(--primary-glow);
  text-decoration: underline;
}
@media (max-width: 700px) {
  .member-email {
    margin-left: 0;
    text-align: center;
  }
}

/* Center cta-primary in section or container by default */
section, .container, .main-content-padding {
  text-align: center;
}

/* --- Journal & Insights Page Styles --- */

.journal-searchbar {
  max-width: 32rem;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.journal-search-input {
  flex: 1;
  padding: 0.9em 1.2em;
  border-radius: 2em;
  border: 1.5px solid var(--border);
  font-size: 1.1rem;
  background: var(--card);
  color: var(--foreground);
  outline: none;
  transition: border 0.2s;
}
.journal-search-input:focus {
  border-color: var(--gold);
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.journal-filter-pill {
  padding: 0.5em 1.4em;
  border-radius: 2em;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-size: 1.05rem;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.journal-filter-pill.active, .journal-filter-pill:focus {
  background: var(--gold);
  color: var(--foreground);
  border-color: var(--gold-dark);
}
.journal-featured-article {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  width: 100%;
}
.journal-article-image img,
.journal-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journal-featured-meta {
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7em;
  width: 100%;
}
.journal-featured-title {
  font-size: 2.3rem;
  font-family: 'Agrandir Wide', sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.7rem;
  color: var(--foreground);
}
.journal-featured-desc {
  font-size: 1.2rem;
  text-align: left;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
span.journal-category,
span.journal-featured-category {
  text-align: right;
  margin: 0;
}
.journal-article-meta-left,
.journal-featured-meta-left,
.journal-featured-author {
  text-align: left;
}
.journal-featured-info {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 1.2em;

  text-align: left;
}
.journal-article-content {
  width: 100%;
}
.journal-featured-cta {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  background: var(--gold);
  color: var(--foreground);
  border-radius: 2em;
  padding: 0.7em 2em;
  font-size: 1.1rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-gold-glow);
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.journal-featured-cta:hover {
  background: var(--gold-dark);
  color: var(--card);
}

.journal-articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
  margin: 0 0 3rem 0;
}
@media (min-width: 600px) {
  .journal-articles-list {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

.journal-article-card {
  background: none;
  border-radius: 0;
  padding: 0 0 2.5rem 0;
  box-shadow: none;
  margin-bottom: 0;
  border: none;
  padding: 2.5rem 2rem 2.5rem 2rem;
  font-size: 1.13rem;
}
.journal-article-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--gold-dark);
  font-size: 1rem;
  width: 100%;
}
.journal-article-meta-left {
  text-align: left;
}
.journal-article-meta-right {
  text-align: right;
}
.journal-article-title {
  font-size: 1.4rem;
  font-family: 'Agrandir Wide', sans-serif;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.2rem;
}
.journal-article-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.journal-article-link:hover {
  color: var(--gold-dark);
}
.journal-article-desc {
  color: var(--muted-foreground);
  font-size: 1.08rem;
}
.journal-article-info {
  font-size: 0.98rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 1.1em;
  justify-content: center;
}

.journal-stay-updated {
  background: none;
  border-radius: 0;
  max-width: none;
  margin: 0 0 2rem 0;
  padding: 4rem 0;
}
.journal-stay-updated .cta-primary {
  margin-top: 1.5rem;
}
.journal-social-link {
  color: var(--gold-dark);
  text-decoration: underline;
  margin: 0;
  font-weight: 500;
}
.journal-social-link:hover {
  color: var(--foreground);
}

/* Responsive */
@media (max-width: 900px) {
  .journal-featured-article, .journal-articles-list, .journal-stay-updated {
    max-width: 98vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .journal-featured-cta {
    right: 1.2rem;
    bottom: 1.2rem;
  }
}

@media (max-width: 600px) {
  .journal-hero-title {
    font-size: 2.1rem;
  }
  .journal-featured-title {
    font-size: 1.3rem;
  }
  .journal-featured-article {
    padding: 2rem 1rem 2.5rem 1rem;
  }
  .journal-article-card {
    padding: 1.2rem 0.7rem;
  }
}

/* Dark theme overrides */
@media (prefers-color-scheme: dark) {
  .journal-hero {
    background: var(--background);
  }
  .journal-featured-article, .journal-article-card {
    background: var(--card);
    color: var(--foreground);
    box-shadow: 0 4px 20px -2px hsla(0,0%,0%,0.25);
  }
  .journal-featured-title, .journal-article-title, .journal-article-link {
    color: var(--foreground);
  }
  .journal-featured-meta, .journal-article-meta, .journal-featured-info, .journal-article-info {
    color: var(--gold-light);
  }
  .journal-featured-desc, .journal-article-desc {
    color: var(--muted-foreground);
  }
  .journal-featured-cta {
    background: var(--gold-dark);
    color: var(--card);
  }
  .journal-featured-cta:hover {
    background: var(--gold);
    color: var(--foreground);
  }
  .journal-stay-updated {
    background: var(--secondary);
  }
  .journal-social-link {
    color: var(--gold);
  }
  .journal-social-link:hover {
    color: var(--foreground);
  }
}

/* --- End Journal Styles --- */

/* Gold bullet for custom list items */
.gold-bullet {
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  min-width: 0.65em;
  min-height: 0.65em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 0.7em;
  box-shadow: 0 0 0 1.5px var(--gold-light);
  position: relative;
  overflow: visible;
}
.gold-bullet::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 40%, transparent 70%);
  opacity: 0.7;
  pointer-events: none;
  animation: gold-bullet-shimmer 2.2s infinite linear;
}
@keyframes gold-bullet-shimmer {
  0% {
    opacity: 0.7;
    transform: scale(0.9) translate(-10%, -10%);
    filter: blur(0.5px);
  }
  40% {
    opacity: 1;
    transform: scale(1.1) translate(10%, 10%);
    filter: blur(0.5px);
  }
  100% {
    opacity: 0.7;
    transform: scale(0.9) translate(-10%, -10%);
    filter: blur(0.5px);
  }
}

.empty-bullet {
  background: transparent;
}
.empty-bullet::after {
  content: none;
  animation: none;
}

.gold-list {
  list-style: disc outside;
  padding-left: 1.5em;
}
.gold-list li::marker {
  color: var(--primary);
  font-size: 0.85em;
  /* fallback for browsers that support only color/font-size */
}
/* Advanced: Gold shimmer marker for modern browsers */
.gold-list li {
  position: relative;
}
.gold-list li::marker {
  content: '';
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 1.5px var(--gold-light);
  vertical-align: middle;
  margin-right: 0.7em;
}
/* Note: CSS ::marker does not support pseudo-elements like ::after for animation, so shimmer is not possible directly on ::marker. For shimmer, keep .gold-bullet span for animated effect, or use static gold marker for official list style. */

.gold-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-left: auto;
}
.gold-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin-bottom: 0.5em;
  text-align: left;
}
.gold-bullet-list .gold-bullet {
  flex: 0 0 0.65em;
  margin-top: 0.275em;
  margin-right: 0;
  min-width: 0.65em;
  min-height: 0.65em;
  aspect-ratio: 1/1;
}

.callout {
  display: flex;
  align-items: center;
  gap: 1.2em;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  font-size: 1.13rem;
  color: #fff;
  position: relative;
  max-width: 70ch;
  text-align: left;
}
.callout-icon {
  flex: 0 0 2.5em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background: var(--primary, #e6c14a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--gold-light, #f8eec1);
  margin-right: 0.7em;
}
.callout-icon svg {
  width: 1.3em;
  height: 1.3em;
  display: block;
  fill: white;
}
@media (max-width: 600px) {
  .callout {
    padding: 1em 1em;
    font-size: 1rem;
  }
  .callout-icon {
    width: 2em;
    height: 2em;
    min-width: 2em;
    min-height: 2em;
  }
  .callout {
    gap: 0.8em;
  }
}
.footer-contact {
  margin: 0 auto ;

  font-style: normal;
  line-height: 1.7;
  color: var(--foreground, #222);
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
}
.footer-kpi {
  background: var(--primary, #e6c14a);
  color: #111;
  border-radius: 1.2em;
  padding: 0.7em 1.3em;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 hsla(47, 46%, 62%, 0.13);
  margin-top: 0.5em;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.kpi-label {
  font-size: 1.05rem;
  font-weight: 400;
  opacity: 0.7;
  margin-right: 0.5em;
}
.kpi-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.03em;
}

footer a {
  color: var(--primary, #e6c14a);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--primary-glow, #f8eec1);
  text-decoration: underline;
}
.footer-meta {
  text-align: center;
  opacity: 0.7;
  font-size: 0.98rem;
  color: var(--muted-foreground, #888);
  padding: 1rem 2rem 0 2rem;
}
.footer-meta a {
  color: var(--primary, #e6c14a);
  text-decoration: none;
}
.footer-meta a:hover {
  text-decoration: underline;
}
.footer-kpi-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  margin: 3em auto 0 auto;
  padding: 0;
  gap: 0.2em;
  max-width: 30em;
}
.footer-kpi-center .kpi-label {
  font-size: 0.98rem;
  font-weight: 400;
  opacity: 0.7;
  margin: 0 0 0.1em 0;
  letter-spacing: 0.01em;
}
.footer-kpi-center .kpi-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary, #e6c14a);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 700px) {
  .footer-kpi-center {
    font-size: 1.05rem;
    padding: 0.7em 0.7em;
  }
}

/* --- Fix for .process-circle always showing gold circle --- */
.process-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold, linear-gradient(135deg, #E9D985, #F7F3D7));
  color: var(--foreground, #181818);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, 'Work Sans', sans-serif);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold-glow, 0 0 20px hsla(47, 46%, 62%, 0.3));
  margin-bottom: 0.75rem;
  border: 2px solid var(--gold, #E9D985);
  transition: box-shadow 0.2s;
  padding: 0.25rem 0.25rem 0.1rem 0.25rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.process-circle svg {
  background: transparent;
  z-index: 2;
}

/* --- Approach Steps Row Layout --- */
.approach-steps {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.approach-step-card {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-arrow {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  color: var(--gold-dark, #C7A047);
  user-select: none;
  margin: 2.5rem 0.5rem;
}
@media (max-width: 900px) {
  .approach-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
  }
  .process-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}

.section-style-light .section-subtitle,
.section-style-dark .section-subtitle {
  color: var(--gold-dark);
}

/* Section Layout Styles */
.section-style {
  padding: 8rem 0;
  margin-bottom: 0;
}
.section-style-muted {
  background: var(--muted);
  color: var(--foreground);
}
.section-style-accent {
  background: var(--accent);
  color: white;
  position: relative;
}
.section-style-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: hsla(0, 0%, 95%, 0.3);
  z-index: -1;
}
.section-style-light {
  background: var(--background);
  color: var(--foreground);
}

.section-style-black {
  background: #111;
  color: #fff;
}

.section-style-dark {
  background: var(--foreground);
  color: var(--background);
}
@media (prefers-color-scheme: dark) {
  .section-style-dark {
    background: var(--background);
    color: var(--foreground);
  }
}

@media (prefers-color-scheme: dark) {
  .section-style-light {
    background: #fff;
    color: #111;
  }
  .section-style-dark {
    background: var(--background);
    color: var(--foreground);
  }
}

#legal main * {
  text-align: left;
}

/* CTA Column Layout */
.cta-column {
  list-style: none;
  flex: 0 0 300px;
  text-align: center;
}

.cta-column p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cta-column {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* Infinity Loop Animation */
.infinity-loop {
  margin: 0 auto;
  width: 400px;
}

.infinity-path {
  width: 100%;
  height: 100%;
}

.infinity-path #outline-bg {
  vector-effect: non-scaling-stroke;
}

.infinity-line {
  stroke: var(--primary);
  stroke-width: 0.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: infinity-draw 6s ease-in-out infinite;
}

@keyframes infinity-draw {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

.infinity-pulse .icon-pulse {
  animation: infinity-pulse 2s ease-in-out infinite;
}

.infinity-pulse.left .icon-pulse {
  animation-delay: 0s;
}

.infinity-pulse.right .icon-pulse {
  animation-delay: 1s;
}

@keyframes infinity-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .infinity-loop {
    width: 300px;
  }
}

/* Brevo Form Overrides for Wild Sense Design */

.main-content-padding .sib-form {
  font-family: 'Work Sans', sans-serif;
  color: var(--foreground);
  background: inherit;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.main-content-padding #sib-container {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

.main-content-padding .sib-form-container {
  background: inherit;
  border: none;
  box-shadow: none;
  padding: 0;
}

.main-content-padding .sib-form-block {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: none;
  border: none;
}

.main-content-padding .sib-input {
  background: none;
  border: none;
  padding: 0;
}

.main-content-padding .entry_block {
  background: none;
  border: none;
  padding: 0;
}

.main-content-padding .form__label-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.main-content-padding .entry__label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--foreground);
  margin: 0;
  padding: 0;
  text-align: left;
}

.main-content-padding .sib-form .entry__field {
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}

.main-content-padding .entry__field input {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.main-content-padding .entry__field input:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(233, 217, 133, 0.1);
}

.main-content-padding .entry__field input::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

/* Textarea styling to match input */
.main-content-padding .entry__field textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  min-height: 6rem;
  line-height: 1.4;
}

.main-content-padding .entry__field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(233, 217, 133, 0.1);
}

.main-content-padding .entry__field textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.main-content-padding .sib-form-block:last-child {
  margin: 0 auto;
  text-align: center;
}

.main-content-padding .entry__specification {
  font-size: 0.9em;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  text-align: left;
}

.main-content-padding .entry__error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-family: 'Work Sans', sans-serif;
  text-align: left;
}

/* Checkbox styling */
.main-content-padding .entry__choice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.main-content-padding .entry__choice label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--foreground);
  cursor: pointer;
  line-height: 1.4;
}

.main-content-padding .entry__choice input[type="checkbox"] {
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.main-content-padding .checkbox {
  display: none;
}

/* Button styling to match Wild Sense */
.main-content-padding .sib-form-block__button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  background: var(--gold);
  color: var(--foreground);
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-gold-glow);
  position: relative;
  overflow: hidden;
}

.main-content-padding .sib-form-block__button:hover {
  background: var(--gold-dark);
  color: var(--card);
  transform: translateY(-1px);
}

.main-content-padding .sib-form-block__button:active {
  transform: translateY(0);
}

.main-content-padding .sib-form-block__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 217, 133, 0.3);
}

/* Hide Brevo's loading icon */
.main-content-padding .sib-hide-loader-icon {
  display: none;
}

/* Message panels */
.main-content-padding .sib-form-message-panel {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-family: 'Work Sans', sans-serif;
}

.main-content-padding .sib-form-message-panel__text {
  color: var(--foreground);
  font-size: 0.95rem;
  line-height: 1.4;
}

.main-content-padding .sib-form-message-panel__inner-text {
  color: var(--foreground);
}

/* Declaration section */
.main-content-padding .sib-form__declaration {
  background: var(--muted);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1.5rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.main-content-padding .sib-form__declaration a {
  color: var(--gold);
  text-decoration: underline;
}

.main-content-padding .sib-form__declaration a:hover {
  color: var(--gold-dark);
}

.main-content-padding .sib-form__declaration .icon__SVG {
  display: none;
}

/* Divider */
.main-content-padding .sib-divider-form-block {
  border-top: 1px solid var(--muted);
  margin: 2rem 0;
  padding: 0;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .main-content-padding .entry__field input {
    background: var(--card);
    border-color: var(--gold-light);
    color: var(--foreground);
  }
  
  .main-content-padding .entry__field input:focus {
    border-color: var(--gold);
  }
  
  .main-content-padding .sib-form-block__button {
    background: var(--gold-dark);
    color: var(--card);
  }
  
  .main-content-padding .sib-form-block__button:hover {
    background: var(--gold);
    color: var(--foreground);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-content-padding .sib-form {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .main-content-padding .entry__field input {
    padding: 0.875rem 1rem;
  }
  
  .main-content-padding .sib-form-block__button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (prefers-color-scheme: dark) {
  .modal-close {
    color: var(--gold);
  }
  .modal-close svg {
    stroke: var(--gold);
  }
}
