/* ===== LOCAL FONTS ===== */
@font-face {
  font-family: 'Moontime';
  src: url('../src/fonts/moon-time-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Core colors */
  --background: #F8F6F2;
  --foreground: #302823;
  --primary: #9B633B;
  --primary-foreground: #FFFFFF;
  --secondary: #EBE4DA;
  --muted: #F2EFE7;
  --muted-foreground: #797064;
  --border: #EBE4DA;
  --card: #FFFFFF;
  --radius: 0.5rem;

  /* Section colors */
  --section-cream: #F8F6F2;
  --section-primary: #9B633B;
  --section-secondary: #EBE4DA;
  --section-dark: #302823;

  /* Aliases for semantic naming */
  --accent: var(--primary);
  --accent-foreground: var(--primary-foreground);
  --cream: var(--background);
  --cream-dark: var(--secondary);
  --dark-section: var(--foreground);
  --brown-dark: #4A3728;

  /* Success state colors */
  --success-background: #E6F9EE;
  --success-border: #A8DFBB;
  --success-foreground: #276940;

  /* Typography */
  --font-heading: 'Dancing Script', cursive;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== CSS-ONLY ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.anim-fade-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-fade-up-d1 { animation-delay: 0.1s; }
.anim-fade-up-d2 { animation-delay: 0.2s; }
.anim-fade-up-d3 { animation-delay: 0.3s; }
.anim-fade-up-d4 { animation-delay: 0.4s; }
.anim-fade-up-d5 { animation-delay: 0.5s; }
.anim-fade-up-d6 { animation-delay: 0.6s; }
.anim-fade-up-d7 { animation-delay: 0.7s; }

.anim-slide-left {
  animation: slideInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-slide-right {
  animation: slideInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-bounce {
  animation: bounce-gentle 2s ease-in-out infinite;
}

/* Scroll-triggered animation class (added by JS) */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.5s ease both;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.brand-veronica {
  font-family: 'Moontime', cursive;
  font-size: 1.35rem;
  color: var(--foreground);
}

.accented-o {
  position: relative;
  display: inline-block;
}

.accent {
  position: absolute;
  top: 0.15em;
  left: 0.15em;
  font-family: 'Moontime', cursive;
  font-size: 0.3em;
  line-height: 3.5;
  pointer-events: none;
  transform: scaleX(1.1);
}

@media (max-width: 768px) {
  .accent {
    top: 0.15em;
    left: 0.15em;
    font-size: 0.3em;
  }
}

.brand-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-foreground);
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav-brand:hover {
  color: var(--primary);
}

.nav-brand:hover .brand-veronica {
  color: var(--primary);
}

/* Footer brand - white text */
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* Burger menu */
.nav-toggle-checkbox {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--primary);
}

.nav-links .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-links .nav-cta {
  border: 1.5px solid var(--primary);
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  color: var(--primary);
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-links .nav-cta:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Mobile language switcher - more visible */
@media (max-width: 768px) {
  .lang-switcher {
    background: var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    gap: 0.5rem;
  }

  .lang-switcher .lang-active {
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 0.95rem;
  }

  .lang-switcher .lang-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
  }

  .lang-switcher .lang-inactive {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
  }

  .lang-switcher .lang-inactive:hover {
    color: var(--primary-foreground);
  }
}

/* LinkedIn icon in nav */
.nav-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: color 0.25s ease;
}

.nav-linkedin:hover {
  color: var(--primary);
}

.nav-linkedin svg {
  display: block;
}

.lang-active {
  color: var(--primary);
  font-weight: 700;
}

.lang-sep {
  color: var(--muted-foreground);
}

.lang-inactive {
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.25s ease;
}

.lang-inactive:hover {
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  min-height: 40vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 0;
  background: var(--cream);
  position: relative;
  background-color: var(--primary-foreground);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(156, 104, 69, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 0;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foreground);
  margin: 1rem 1rem;
  line-height: 1.15;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-name .brand-veronica {
  font-family: 'Moontime', cursive;
  font-size: inherit;
}

.hero-name .brand-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--muted-foreground);
  text-transform: none;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 500px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  margin: 1rem 1rem;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-block;
  background: var(--primary-foreground);
  color: var(--dark-section);
  padding: 0.65rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1.5px solid var(--primary-foreground);
  transition: all 0.25s ease;
  cursor: pointer;
  width: fit-content;
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--cream);
}

.btn-outline:active {
  transform: scale(0.97);
}

.hero-arrow {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--foreground);
  text-decoration: none;
  display: inline-block;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 6rem;
}

/* ===== ABOUT / EXPERT ===== */
.about {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-portrait {
  width: 100%;
  max-width: 360px;
  transition: transform 0.3s ease;
}

.about-portrait-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  overflow: visible;
}

.cert-badges {
  display: flex;
  gap: 15px;
}

.cert-badge {
  width: 140px;
  height: auto;
}

@media (max-width: 480px) {
  .cert-badge-overlay {
    width: 120px;
    bottom: -5px;
    right: -5px;
  }

  .about-portrait {
    max-width: 220px;
  }
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 55ch;
}

.about-content strong {
  color: var(--foreground);
  font-weight: 600;
}

/* ===== STATS ===== */
.stats {
  padding: 2rem 2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--cream);
  position: relative;
}

.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 125px;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  width: 100%;
  height: 100%;
}

.wave-top-methode,
.wave-bottom-methode {
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-top-methode svg,
.wave-bottom-methode svg {
  width: 100%;
  height: 100%;
}

.wave-bottom-methode {
  transform: scaleY(-1);
}

.stat-item {
  text-align: center;
  min-width: 160px;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  padding: 8px;
  transition: transform 0.3s;
  box-sizing: border-box;
}

.stat-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-icon {
  line-height: 0.1;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--primary-foreground);
  max-width: 94px;
  margin: 0 auto;
  text-align: center;
}


/* ===== SERVICES ===== */
.services {
  padding: 2rem 2rem;
  background-color: var(--dark-section);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.services-text {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-text h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 1rem);
  color: var(--primary-foreground);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ===== SERVICES BADGE ===== */
.services-badge-img {
  display: block;
  max-width: 250px;
  width: 100%;
  height: auto;
  align-self: center;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services-badge-img {
    max-width: 260px;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-badge-img {
    max-width: 200px;
    margin-bottom: 1rem;
  }
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 10rem 2rem;
  background: var(--cream);
  position: relative;
}

.wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 125px;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg {
  width: 100%;
  height: 100%;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.testimonials-inner > p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  text-align: left;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem 0;
  align-items: start;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  font-family: var(--font-heading);
}

.testimonial-content {
  position: relative;
}

.testimonial-text {
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.25s ease;
  font-family: var(--font-body);
}

.read-more-btn:hover {
  color: var(--brown-dark);
}

/* Responsive: stack testimonial cards on smaller screens */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

/* ===== CONTACT ===== */
.contact {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hs-form-frame {
  width: 100%;
}

.contact-left {
  background-color: var(--border);
  border-radius: 2rem 0 0 0;
  padding: 2rem;
}

.contact-left h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--foreground);
}

.contact-left h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--foreground);
  font-weight: 500;
}

.contact-left > p {
  font-size: 0.9rem;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 45ch;
}

.contact-right {
  display: flex;
  flex-direction: column;
  background-color: var(--border);
  border-radius: 0 2rem 0 0;
  justify-content: end;
}

.contact-right h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--foreground);
  padding-left: 40px;
  padding-top: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-foreground);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  background: var(--card);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  background: var(--dark-section);
  color: var(--cream);
  padding: 0.75rem 2rem;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: scale(0.97);
}


.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 2rem 4rem;
  text-align: center;
  width: 100%;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-card-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.contact-card-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-card-name .brand-veronica {
  font-family: 'Moontime', cursive;
  font-size: inherit;
}

.contact-card-name .brand-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted-foreground);
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-card-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-contact-card {
  display: inline-block;
  background: var(--foreground);
  color: var(--cream);
  padding: 1rem;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  border: 1.5px solid var(--foreground);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 12rem;
  height: 100%;
  max-height: 8rem;
  font-weight: 600;
}

.btn-contact-card:hover {
  background: var(--cream);
  color: var(--foreground);
}


/* ===== FOOTER ===== */
.footer {
  padding: 2rem 2rem 1.5rem;
  background: var(--dark-section);
  border-top: 1px solid rgba(248, 246, 242, 0.1);
  color: var(--primary-foreground);
  position: relative;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand .brand-veronica {
   font-family: 'Moontime', cursive;
   font-size: inherit;
   color: var(--primary-foreground);
}

.footer-brand .brand-veronica .accented-o {
   color: inherit;
}

.footer-brand .brand-veronica .accent {
   color: inherit;
}

.footer-brand .brand-sub {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-brand .brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--primary-foreground);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.footer-links a {
  text-decoration: none;
  color: var(--primary-foreground);
  font-size: 0.8rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  color: var(--primary-foreground);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(188, 175, 162, 0.08);
}

/* ===== PAGE CONTENT (inner pages) ===== */
.page-content {
  padding-top: 5rem;
}

/* ===== MA MÉTHODE PAGE ===== */
.methode-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: var(--section-cream);
}

.methode-section.neuro {
  background: var(--border);
  color: var(--foreground);
}

.methode-section.neuro .methode-with-image {
  align-items: start;
}

.methode-section.neuro .methode-section-title,
.methode-section.neuro p {
  color: var(--primary-foreground);
}


.methode-section.action .methode-cursive-title,
.methode-section.action p {
  color: var(--foreground);
}

.methode-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 2.5rem;
  line-height: 1.15;
  font-weight: 400;
}

.methode-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.methode-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.methode-col {
  padding: 1.5rem;
}

.methode-col.neuro {
  background: var(--card);
  border-radius: 2rem 0rem 0rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.methode-col.classique {
  background: var(--border);
  border-radius: 0 2rem 2rem 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.methode-col.neuro:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.methode-col.classique:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.methode-col-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.methode-col.neuro .methode-col-title {
  color: var(--primary);
}

.methode-col.classique .methode-col-title {
  color: var(--brown-dark);
}

.methode-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.methode-col-list li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  text-align: start;
  gap: 0.75rem;
}

.methode-col-list li:last-child {
  border-bottom: none;
}

.methode-section {
  padding: 4rem 4rem;
  background: var(--section-cream);
}

.methode-section.neuro {
  background: var(--border);
  color: var(--foreground);
}

.methode-section.neuro .methode-section-title,
.methode-section.neuro p {
  color: var(--foreground);
}

.methode-section.action .methode-cursive-title,
.methode-section.action p {
  color: var(--foreground);
}

.methode-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.methode-cursive-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
}

.methode-text {
  max-width: 700px;
}

.methode-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  text-align: left;
}

.methode-with-image .methode-text {
  max-width: none;
}

.methode-image-left,
.methode-image-right {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 1rem;
  transition: box-shadow 0.4s ease;
}

.methode-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  transition: transform 0.4s ease;
}

.methode-section.neuro .methode-img,
.methode-section.action .methode-img {
  aspect-ratio: 4 / 3;
}

.methode-image-left:hover .methode-img,
.methode-image-right:hover .methode-img {
  transform: scale(1.05);
}

.methode-image-left:hover,
.methode-image-right:hover {
  box-shadow: none;
}

.methode-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.methode-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.methode-cta-section {
  padding-bottom: 5rem;
}

.methode-cta-section .btn-primary {
  margin-top: 1.5rem;
}

/* ===== FAQ PAGE ===== */
.faq-section {
  padding: 4rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--foreground);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.15;
  font-weight: 400;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  padding: 0 0 1.25rem;
  max-width: 90%;
  animation: fadeInUp 0.3s ease;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 5rem 2rem;
  min-height: calc(100vh - 200px);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.legal-container h2 {
  font-size: 1.3rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-container p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.legal-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.legal-meta {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.legal-meta p {
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-toggle-checkbox:checked ~ .nav-links {
    right: 0;
  }

  .nav-toggle-checkbox:checked ~ .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle-checkbox:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-checkbox:checked ~ .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about-portrait {
    margin: 0 auto;
    max-width: 250px;
  }

  .services-inner {
    grid-template-columns: 1fr 1fr;
  }

  .services-text {
    grid-column: 1 / -1;
    grid-row: auto;
    text-align: center;
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-left {
    border-radius: 0;
  }

  .contact-right {
    border-radius: 0;
  }

  .btn-outline {
    margin: auto;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1rem;
  }

  .methode-columns {
    grid-template-columns: 1fr;
  }

  .methode-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .methode-image-left,
  .methode-image-right {
    order: -1;
  }

  .methode-col.neuro {
    border-radius: 2rem 2rem 0 0;
  }

  .methode-col.classique {
    border-radius: 0 0 2rem 2rem;
  }
}

@media (max-width: 480px) {
  .services-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== FORM SUCCESS STATE ===== */
.form-success {
  display: none;
  padding: 1rem;
  background: var(--success-background);
  border: 1px solid var(--success-border);
  border-radius: 0.5rem;
  color: var(--success-foreground);
  text-align: center;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* ===== RESERVATION PAGE ===== */
.back-to-home {
  padding: 6rem 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--brown-dark);
}

.back-arrow {
  font-size: 1.25rem;
}

.meetings-iframe-container iframe {
  width: 100%;
  border: none;
  display: block;
  height: 100%;
}

@media (max-width: 632px) {
  .meetings-iframe-container iframe {
    height: 2200px !important;
  }
}

/* ===== FOOTER CERTIFICATIONS ===== */
.footer-certifications {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
}

.footer-cert {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .footer-certifications {
    gap: 10px;
    margin-bottom: 0.5rem;
  }

  .footer-cert {
    width: 60px;
  }
}