/* ==========================================================================
   Sophie Sultana - Psychologue
   Main Stylesheet
   Mobile-first responsive design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS RESET / NORMALIZE
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  line-height: 1.15;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: none;
}

/* Remove animations for reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   2. ROOT VARIABLES
   -------------------------------------------------------------------------- */

:root {
  /* Colors - Primary palette */
  --color-primary: #4A90A4;
  --color-primary-light: #6BAABF;
  --color-primary-dark: #3A7388;
  --color-secondary: #8FA998;
  --color-secondary-light: #A8BDB0;
  --color-secondary-dark: #738A7B;
  --color-cta: #2C5F77;
  --color-cta-hover: #1E4A5E;
  --color-cta-active: #173D4E;

  /* Colors - Neutrals */
  --color-bg-light: #F5F5F5;
  --color-bg-white: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #E0E0E0;
  --color-border-light: #EEEEEE;

  /* Colors - Semantic */
  --color-success: #4CAF50;
  --color-error: #D32F2F;
  --color-warning: #F9A825;
  --color-info: #4A90A4;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font sizes - Mobile first */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.375rem;    /* 22px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: 1.75rem;    /* 28px */
  --fs-4xl: 2rem;       /* 32px */
  --fs-5xl: 2.25rem;    /* 36px */

  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Line heights */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* Spacing scale */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1rem;
  --header-height: 64px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-toast: 600;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  padding-top: var(--header-height);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-lg);
}

h4 {
  font-size: var(--fs-md);
}

h5 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
}

h6 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Paragraph & body text */
p {
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

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

.lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

small,
.text-small {
  font-size: var(--fs-sm);
}

strong,
b {
  font-weight: var(--fw-semibold);
}

/* Links */
a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--color-primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.link-underline:hover {
  text-decoration-thickness: 2px;
}

/* Lists */
.list-styled {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.list-styled li {
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-2);
}

ul.list-styled li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: 0.6em;
}

ol.list-styled {
  counter-reset: list-counter;
}

ol.list-styled li {
  counter-increment: list-counter;
}

ol.list-styled li::before {
  content: counter(list-counter) ".";
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  position: absolute;
  left: calc(-1 * var(--space-6));
}

/* Blockquote */
blockquote {
  border-left: 3px solid var(--color-primary);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
  background-color: var(--color-bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text-light);
}

blockquote cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  font-size: var(--fs-sm);
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  padding-bottom: var(--space-4);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--color-text-light);
  max-width: 600px;
  margin: var(--space-4) auto 0;
  line-height: var(--lh-relaxed);
}

/* Responsive typography */
@media (min-width: 768px) {
  h1 {
    font-size: var(--fs-4xl);
  }

  h2 {
    font-size: var(--fs-2xl);
  }

  h3 {
    font-size: var(--fs-xl);
  }

  body {
    font-size: var(--fs-md);
  }

  .lead {
    font-size: var(--fs-lg);
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: var(--fs-5xl);
  }

  h2 {
    font-size: var(--fs-3xl);
  }
}

/* --------------------------------------------------------------------------
   4. LAYOUT: CONTAINER, GRID, FLEXBOX
   -------------------------------------------------------------------------- */

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1400px;
}

@media (min-width: 576px) {
  :root {
    --container-padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  :root {
    --container-padding: 2rem;
  }
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

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

@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

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

.gap-8 {
  gap: var(--space-8);
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-fixed);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo / Site name */
.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
  color: var(--color-text);
  text-decoration: none;
  z-index: calc(var(--z-fixed) + 1);
  white-space: nowrap;
}

.header__brand:hover {
  color: var(--color-primary);
}

.header__brand img {
  height: 40px;
  width: auto;
}

.header__brand-title {
  display: none;
}

@media (min-width: 576px) {
  .header__brand-title {
    display: inline;
  }
}

.header__brand-subtitle {
  display: none;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .header__brand-subtitle {
    display: block;
  }
}

/* Desktop navigation */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

.header__nav-link.active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

/* Header CTA button */
.header__cta {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  :root {
    --header-height: 72px;
  }
}

/* --------------------------------------------------------------------------
   6. MOBILE HAMBURGER MENU (CSS-only checkbox hack)
   -------------------------------------------------------------------------- */

.menu-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.menu-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: calc(var(--z-fixed) + 2);
  position: relative;
}

.menu-toggle-label span,
.menu-toggle-label span::before,
.menu-toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle-label span::before,
.menu-toggle-label span::after {
  content: '';
  position: absolute;
}

.menu-toggle-label span::before {
  transform: translateY(-7px);
}

.menu-toggle-label span::after {
  transform: translateY(7px);
}

/* Hamburger with 3 separate spans (.hamburger-line) */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-toggle-label {
  flex-direction: column;
  gap: 5px;
}

/* Toggle open state - single span (BEM) */
.menu-toggle:checked ~ .menu-toggle-label span:not(.hamburger-line) {
  background-color: transparent;
}

.menu-toggle:checked ~ .menu-toggle-label span:not(.hamburger-line)::before {
  transform: rotate(45deg);
  background-color: var(--color-text);
}

.menu-toggle:checked ~ .menu-toggle-label span:not(.hamburger-line)::after {
  transform: rotate(-45deg);
  background-color: var(--color-text);
}

/* Toggle open state - 3 hamburger-line spans */
.menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  padding: calc(var(--header-height) + var(--space-6)) var(--space-6) var(--space-6);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menu-toggle:checked ~ .mobile-nav {
  transform: translateX(0);
}

/* Mobile menu overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.menu-toggle:checked ~ .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

/* Mobile nav links */
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  min-height: 44px;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

.mobile-nav__link.active {
  color: var(--color-primary);
  background-color: rgba(74, 144, 164, 0.08);
}

.mobile-nav__cta {
  margin-top: var(--space-6);
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  .menu-toggle-label,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height) + var(--space-12)) var(--container-padding) var(--space-12);
  background-color: var(--color-bg-light);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 95, 119, 0.85) 0%,
    rgba(74, 144, 164, 0.75) 50%,
    rgba(143, 169, 152, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.hero__title {
  color: var(--color-bg-white);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 576px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--fs-4xl);
  }

  .hero__subtitle {
    font-size: var(--fs-lg);
  }

  .hero {
    min-height: 80vh;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: var(--fs-5xl);
  }
}

/* --------------------------------------------------------------------------
   8. SECTIONS
   -------------------------------------------------------------------------- */

.section {
  padding: var(--space-12) 0;
}

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

.section--light {
  background-color: var(--color-bg-light);
}

.section--primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.section--primary h2,
.section--primary h3,
.section--primary p {
  color: var(--color-bg-white);
}

.section--primary .section-title::after {
  background-color: var(--color-bg-white);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }
}

@media (min-width: 992px) {
  .section {
    padding: var(--space-20) 0;
  }
}

/* Alternating sections */
.section:nth-of-type(even) {
  background-color: var(--color-bg-light);
}

.section:nth-of-type(odd) {
  background-color: var(--color-bg-white);
}

/* Override for explicit classes */
.section.section--white {
  background-color: var(--color-bg-white);
}

.section.section--light {
  background-color: var(--color-bg-light);
}

/* --------------------------------------------------------------------------
   9. CARD COMPONENTS
   -------------------------------------------------------------------------- */

.card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: rgba(74, 144, 164, 0.1);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.card__icon svg,
.card__icon img {
  width: 28px;
  height: 28px;
}

.card__icon i {
  font-size: 1.5rem;
  line-height: 1;
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
  flex-grow: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-3);
}

.card__link::after {
  content: '\2192';
}

/* Service card variant */
.card--service {
  text-align: center;
  align-items: center;
}

.card--service .card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
}

/* Horizontal card variant */
.card--horizontal {
  flex-direction: row;
  gap: var(--space-4);
}

.card--horizontal .card__icon {
  margin-bottom: 0;
}

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

  .card__icon {
    width: 64px;
    height: 64px;
  }
}

/* --------------------------------------------------------------------------
   10. BADGE / TAG COMPONENTS
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge--primary {
  background-color: rgba(74, 144, 164, 0.12);
  color: var(--color-primary-dark);
}

.badge--secondary {
  background-color: rgba(143, 169, 152, 0.15);
  color: var(--color-secondary-dark);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
}

/* Therapy method tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  min-height: 36px;
}

.tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(74, 144, 164, 0.05);
}

.tag--active {
  border-color: var(--color-primary);
  background-color: rgba(74, 144, 164, 0.1);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* --------------------------------------------------------------------------
   11. FORM STYLES
   -------------------------------------------------------------------------- */

.form {
  max-width: 600px;
}

.form--centered {
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-base);
  font-family: var(--font-body);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
  appearance: none;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--color-primary-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--color-error);
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

/* Textarea */
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select dropdown */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

/* Form helper text */
.form-helper {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.form-error {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-1);
}

/* Checkbox and radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  min-height: 44px;
  padding: var(--space-2) 0;
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.form-check-label {
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

/* --------------------------------------------------------------------------
   12. CTA BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  min-height: 44px;
  min-width: 44px;
  white-space: nowrap;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary button */
.btn--primary {
  background-color: var(--color-cta);
  color: var(--color-bg-white);
  border-color: var(--color-cta);
}

.btn--primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-bg-white);
}

.btn--primary:active {
  background-color: var(--color-cta-active);
  border-color: var(--color-cta-active);
}

/* Secondary / Outline button */
.btn--secondary {
  background-color: transparent;
  color: var(--color-cta);
  border-color: var(--color-cta);
}

.btn--secondary:hover {
  background-color: var(--color-cta);
  color: var(--color-bg-white);
}

/* White outline (for dark backgrounds) */
.btn--white {
  background-color: transparent;
  color: var(--color-bg-white);
  border-color: var(--color-bg-white);
}

.btn--white:hover {
  background-color: var(--color-bg-white);
  color: var(--color-cta);
}

/* Ghost button */
.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: transparent;
}

.btn--ghost:hover {
  background-color: rgba(74, 144, 164, 0.08);
}

/* Button sizes */
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  min-height: 36px;
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-base);
  min-height: 52px;
}

/* Full width on mobile */
.btn--block {
  display: flex;
  width: 100%;
}

@media (min-width: 576px) {
  .btn--block-mobile {
    width: auto;
    display: inline-flex;
  }
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background-color: #1a2a33;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

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

@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-bg-white);
  margin-bottom: var(--space-4);
}

.footer__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.7);
}

.footer__list li {
  margin-bottom: var(--space-2);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) 0;
  min-height: 44px;
}

@media (min-width: 992px) {
  .footer__link {
    min-height: auto;
  }
}

.footer__link:hover {
  color: var(--color-bg-white);
}

/* Contact info in footer */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
  margin-top: 2px;
}

/* Footer bottom bar */
.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.footer__legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   14. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Text colors */
.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}

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

.text-white {
  color: var(--color-bg-white);
}

/* Margins - top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

/* Margins - bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

/* Padding */
.p-0 { padding: 0; }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline { display: inline; }
.d-inline-flex { display: inline-flex; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-prose { max-width: 65ch; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-light);
  border: none;
  margin: var(--space-6) 0;
}

/* Body offset for fixed header */
.has-fixed-header {
  padding-top: var(--header-height);
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.accordion__toggle {
  display: none;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  min-height: 44px;
  gap: var(--space-4);
}

.accordion__header:hover {
  color: var(--color-primary);
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-base);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  border-radius: 1px;
}

.accordion__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base);
}

/* CSS-only accordion using checkbox hack */
.accordion__toggle:checked ~ .accordion__header .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__toggle:checked ~ .accordion__header {
  color: var(--color-primary);
}

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

.accordion__toggle:checked ~ .accordion__body {
  max-height: 500px;
}

.accordion__content {
  padding: 0 0 var(--space-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .accordion__header {
    font-size: var(--fs-md);
    padding: var(--space-6) 0;
  }
}

/* --------------------------------------------------------------------------
   16. BREADCRUMB NAVIGATION
   -------------------------------------------------------------------------- */

.breadcrumb {
  padding: var(--space-4) 0;
  font-size: var(--fs-sm);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
  margin-left: var(--space-1);
}

.breadcrumb__link {
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  padding: var(--space-1) 0;
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

/* --------------------------------------------------------------------------
   17. GOOGLE MAPS RESPONSIVE CONTAINER
   -------------------------------------------------------------------------- */

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-light);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-container--square {
  padding-bottom: 100%;
}

.map-container--short {
  padding-bottom: 40%;
}

@media (min-width: 768px) {
  .map-container {
    padding-bottom: 45%;
  }
}

/* --------------------------------------------------------------------------
   18. SCHEMA / SEO VISIBLE ELEMENTS
   -------------------------------------------------------------------------- */

/* Address block (structured data) */
.address-block {
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

.address-block__name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.address-block__line {
  display: block;
  margin-bottom: var(--space-1);
}

.address-block__phone,
.address-block__email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-top: var(--space-2);
  min-height: 44px;
}

.address-block__phone:hover,
.address-block__email:hover {
  color: var(--color-primary-dark);
}

/* ADELI badge */
.adeli-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-light);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.adeli-badge__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.adeli-badge__number {
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

/* Professional credentials section */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* --------------------------------------------------------------------------
   19. SMOOTH SCROLL (set in :root, enhanced here)
   -------------------------------------------------------------------------- */

/* Already set via html { scroll-behavior: smooth; } */

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-cta);
  color: var(--color-bg-white);
  font-weight: var(--fw-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: var(--z-toast);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  color: var(--color-bg-white);
}

/* Scroll margin for anchored sections (account for fixed header) */
[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-4));
}

/* --------------------------------------------------------------------------
   20. PRINT STYLES
   -------------------------------------------------------------------------- */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html {
    font-size: 12pt;
  }

  body {
    padding-top: 0 !important;
    line-height: 1.5;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 80%;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after,
  a[href^="tel:"]::after {
    content: "";
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }

  p {
    orphans: 3;
    widows: 3;
  }

  .header,
  .mobile-nav,
  .mobile-nav-overlay,
  .menu-toggle-label,
  .floating-cta,
  .btn,
  .footer,
  .map-container {
    display: none !important;
  }

  .section {
    padding: 1rem 0 !important;
    page-break-inside: avoid;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* --------------------------------------------------------------------------
   21. ANIMATIONS: Fade-in on scroll (CSS classes for IntersectionObserver)
   -------------------------------------------------------------------------- */

/* Base state: elements to be animated */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state: triggered by IntersectionObserver adding .is-visible */
.fade-in.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible,
.fade-in-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered delays for child elements */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .fade-in-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* --- 576px: Small devices (landscape phones) --- */
@media (min-width: 576px) {
  .d-sm-none { display: none; }
  .d-sm-block { display: block; }
  .d-sm-flex { display: flex; }
  .d-sm-grid { display: grid; }
  .text-sm-left { text-align: left; }
  .text-sm-center { text-align: center; }
}

/* --- 768px: Medium devices (tablets) --- */
@media (min-width: 768px) {
  .d-md-none { display: none; }
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
  .d-md-grid { display: grid; }
  .text-md-left { text-align: left; }
  .text-md-center { text-align: center; }
}

/* --- 992px: Large devices (desktops) --- */
@media (min-width: 992px) {
  .d-lg-none { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex { display: flex; }
  .d-lg-grid { display: grid; }
  .text-lg-left { text-align: left; }
  .text-lg-center { text-align: center; }
}

/* --- 1200px: Extra large devices (large desktops) --- */
@media (min-width: 1200px) {
  .d-xl-none { display: none; }
  .d-xl-block { display: block; }
  .d-xl-flex { display: flex; }
  .d-xl-grid { display: grid; }
}

/* --------------------------------------------------------------------------
   FLOATING MOBILE CTA - "Prendre rendez-vous"
   -------------------------------------------------------------------------- */

.floating-cta {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-sticky);
  display: flex;
}

.floating-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: var(--fs-sm);
  padding: var(--space-3) var(--space-4);
  min-height: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-cta);
  color: var(--color-bg-white);
  border-color: var(--color-cta);
}

.floating-cta .btn:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  box-shadow: var(--shadow-xl);
}

/* Add bottom padding to body so floating CTA doesn't overlap content */
.has-floating-cta {
  padding-bottom: 80px;
}

/* Hide floating CTA on desktop (header CTA is visible instead) */
@media (min-width: 992px) {
  .floating-cta {
    display: none;
  }

  .has-floating-cta {
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   ADDITIONAL COMPONENT STYLES
   -------------------------------------------------------------------------- */

/* Testimonial card */
.testimonial {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary-light);
  opacity: 0.4;
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
}

.testimonial__text {
  font-style: italic;
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
}

.testimonial__author {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

/* Image with text layout */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

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

  .content-with-image--reverse {
    direction: rtl;
  }

  .content-with-image--reverse > * {
    direction: ltr;
  }
}

.content-with-image__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* Separator line with centered text */
.separator {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--color-border-light);
}

.separator__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

/* Icon list (for features / services) */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.icon-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}

.icon-list__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  color: var(--color-bg-white);
}

.cta-banner h2,
.cta-banner h3 {
  color: var(--color-bg-white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-12) var(--space-8);
  }
}

/* Contact info component */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(74, 144, 164, 0.1);
  color: var(--color-primary);
}

.contact-info__label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: block;
}

.contact-info__value {
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

/* Opening hours table */
.hours-table {
  width: 100%;
  font-size: var(--fs-sm);
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.hours-table td {
  padding: var(--space-2) 0;
}

.hours-table td:first-child {
  font-weight: var(--fw-medium);
  color: var(--color-text);
  padding-right: var(--space-4);
}

.hours-table td:last-child {
  color: var(--color-text-light);
  text-align: right;
}

.hours-table .today {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

/* ==========================================================================
   ALIAS SELECTORS
   Simple-dash aliases for BEM selectors used in HTML pages.
   These duplicate the BEM styles so both naming conventions work.
   ========================================================================== */

/* --------------------------------------------------------------------------
   BUTTON ALIASES
   -------------------------------------------------------------------------- */

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-bg-white);
  border-color: var(--color-cta);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-bg-white);
}

.btn-primary:active {
  background-color: var(--color-cta-active);
  border-color: var(--color-cta-active);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-cta);
  border-color: var(--color-cta);
}

.btn-secondary:hover {
  background-color: var(--color-cta);
  color: var(--color-bg-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-cta);
  border-color: var(--color-cta);
}

.btn-outline:hover {
  background-color: var(--color-cta);
  color: var(--color-bg-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-base);
  min-height: 52px;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  min-height: 36px;
}

/* --------------------------------------------------------------------------
   HEADER ALIASES
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-fixed);
  transition: box-shadow var(--transition-base);
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner,
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Body lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-fixed) - 1);
}

/* Mobile: nav panel slides in from right */
.main-nav,
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  padding: calc(var(--header-height) + var(--space-6)) var(--space-6) var(--space-6);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Open mobile menu when checkbox checked */
.menu-toggle:checked ~ .main-nav,
.menu-toggle:checked ~ .nav-menu,
.menu-toggle:checked ~ nav.main-nav,
.menu-toggle:checked ~ nav.nav-menu {
  transform: translateX(0);
}

/* Nav list: vertical on mobile */
.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Desktop: horizontal nav, static position */
@media (min-width: 992px) {
  .main-nav,
  .nav-menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
    padding: 0;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-1);
  }
}

/* Hide hamburger on desktop */
.menu-toggle-label,
.menu-button,
.hamburger {
  display: flex;
}

@media (min-width: 992px) {
  .menu-toggle-label,
  .menu-button,
  .hamburger {
    display: none;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.nav-link--dropdown::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.4em;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

@media (max-width: 991px) {
  .nav-link--dropdown::after {
    display: none;
  }
}

.nav-item {
  list-style: none;
}

/* --- Dropdown Menu --- */
.nav-item--dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  z-index: var(--z-dropdown);
}

.nav-item--dropdown:hover > .dropdown-menu,
.nav-item--dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

.dropdown-link.active {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

/* Mobile: dropdown inline */
@media (max-width: 991px) {
  .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 1rem;
    min-width: unset;
  }

  .dropdown-link {
    padding: 0.5rem 0.75rem;
  }
}

.header-cta,
.btn-header-cta {
  display: none;
}

@media (min-width: 992px) {
  .header-cta,
  .btn-header-cta {
    display: inline-flex;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: calc(var(--z-fixed) + 1);
  white-space: nowrap;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-md);
  color: var(--color-text);
}

.logo-subtitle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   HERO ALIASES
   -------------------------------------------------------------------------- */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.hero-title {
  color: var(--color-bg-white);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero-subtitle {
    font-size: var(--fs-lg);
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: var(--fs-5xl);
  }
}

/* --------------------------------------------------------------------------
   CARD ALIASES
   -------------------------------------------------------------------------- */

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: rgba(74, 144, 164, 0.1);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.card-icon svg,
.card-icon img {
  width: 28px;
  height: 28px;
}

.card-icon i {
  font-size: 1.5rem;
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.card-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.card-link:hover {
  gap: var(--space-3);
}


/* --------------------------------------------------------------------------
   APPROCHES SECTION
   -------------------------------------------------------------------------- */

.approches-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approches-content .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.approches-text {
  color: var(--color-text-light);
  font-size: var(--fs-md);
  margin-bottom: var(--space-6);
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}

.cta-text {
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 576px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}

.cta-phone:hover {
  color: var(--color-primary);
}

.cta-phone .icon-phone {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   FOOTER ALIASES
   -------------------------------------------------------------------------- */

.site-footer {
  background-color: #1a2a33;
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    align-items: start;
  }
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-bg-white);
  margin-bottom: var(--space-4);
}

.footer-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  line-height: var(--lh-relaxed);
}

.footer-link:hover {
  color: var(--color-bg-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
}

.footer-address {
  font-style: normal;
}

.footer-address p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2);
}

.footer-hours li:last-child {
  margin-bottom: 0;
}

.footer-note {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-3);
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  margin-bottom: var(--space-2);
}

.footer-legal li:last-child {
  margin-bottom: 0;
}

.footer-adeli {
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: var(--space-2);
}

.footer-nav li:last-child {
  margin-bottom: 0;
}

.footer-logo,
.footer-name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-bg-white);
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   BREADCRUMB ALIASES
   -------------------------------------------------------------------------- */

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--color-border);
  margin-left: var(--space-1);
}

/* --------------------------------------------------------------------------
   MOBILE NAV ALIASES
   -------------------------------------------------------------------------- */

.menu-button,
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: calc(var(--z-fixed) + 2);
  position: relative;
  background: none;
  border: none;
  padding: 0;
}

.menu-button span,
.hamburger span,
.menu-button span::before,
.hamburger span::before,
.menu-button span::after,
.hamburger span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.menu-button span::before,
.hamburger span::before,
.menu-button span::after,
.hamburger span::after {
  content: '';
  position: absolute;
}

.menu-button span::before,
.hamburger span::before {
  transform: translateY(-7px);
}

.menu-button span::after,
.hamburger span::after {
  transform: translateY(7px);
}

@media (min-width: 992px) {
  .menu-button,
  .hamburger {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   FAQ ALIASES
   -------------------------------------------------------------------------- */

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  min-height: 44px;
  gap: var(--space-4);
}

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

.faq-answer {
  padding: 0 0 var(--space-5);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .faq-question {
    font-size: var(--fs-md);
    padding: var(--space-6) 0;
  }
}

/* --------------------------------------------------------------------------
   FADE-IN ANIMATION ALIAS (.visible for .is-visible)
   -------------------------------------------------------------------------- */

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   LAYOUT ALIASES - Commonly used page-specific grids
   -------------------------------------------------------------------------- */

/* Contact page two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

/* Tarifs page pricing cards layout */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 576px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Reassurance row (4 items) */
.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 992px) {
  .reassurance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Specialties grid (3 cards) */
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

/* Therapy method badges */
.approaches-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* About page timeline */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-primary-light);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 5px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid var(--color-bg-white);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-date {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.timeline-content {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-light);
}

/* ---- Homepage Presentation Grid ---- */
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.presentation-photo {
  text-align: center;
}

.presentation-location {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

.presentation-location .icon-location {
  flex-shrink: 0;
}

.presentation-img {
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .presentation-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12, 3rem);
  }
}

/* ---- About Page Photo ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12, 3rem);
  }
}

/* Alternating background sections */
.section-alt {
  background-color: var(--color-bg-light);
}
