/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --color-primary: #2c5f5d;
  --color-primary-dark: #1f4644;
  --color-accent: #d97f47;
  --color-accent-dark: #b96935;
  --color-bg: #faf7f2;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #1a2e2d;
  --color-text: #2d3748;
  --color-text-light: #4a5568;
  --color-text-muted: #718096;
  --color-border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); }

ul { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; color: var(--color-text-light); }

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--color-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(217, 127, 71, 0.35);
}
.btn-primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(217, 127, 71, 0.45);
}
.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}
.btn-ghost {
  background-color: white;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Doctolib branded button */
.btn-doctolib {
  background-color: #107ACA;
  color: white;
  box-shadow: 0 4px 14px rgba(16, 122, 202, 0.35);
  font-family: 'Inter', -apple-system, sans-serif;
  padding: 0.85rem 1.5rem;
}
.btn-doctolib:hover {
  background-color: #0e6cb3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 122, 202, 0.45);
}
.btn-doctolib .doctolib-mark {
  font-family: 'Nunito', 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 1.05em;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: white;
  display: inline-block;
  line-height: 1;
}
.btn-doctolib .btn-label-main {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.btn-doctolib .btn-label-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Small variant for topbar / nav */
.btn-doctolib.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}
.btn-doctolib.btn-sm .doctolib-mark { font-size: 1em; }
.btn-doctolib.btn-sm .btn-label-sub { display: none; }

/* Phone secondary on dark backgrounds */
.btn-phone {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-phone:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}

/* CTA pair: Doctolib + phone */
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cta-pair .cta-or {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   Top Bar
   ============================================ */
.topbar {
  background-color: var(--color-primary-dark);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.topbar-info a {
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-info a:hover { color: var(--color-accent); }
.topbar-icon { width: 14px; height: 14px; opacity: 0.9; }

/* ============================================
   Header
   ============================================ */
.header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

/* Mobile menu close button - hidden on desktop */
.nav-close { display: none; }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1.5rem;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   Navigation
   ============================================ */
.nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}
.nav-list li { margin-bottom: 0; }
.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--color-primary); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: none; }
.has-dropdown > a::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}
.has-dropdown:hover > a::before { width: 100%; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  min-width: 240px;
  padding: 0.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text);
}
.dropdown a:hover {
  background-color: var(--color-bg);
  color: var(--color-primary);
}
.dropdown a::after { content: none; }

.nav-cta { margin-left: 1rem; }
.nav-cta a::after,
.nav-cta a::before,
.nav-list .btn::after,
.nav-list .btn::before { content: none !important; }

.menu-toggle {
  display: none;
  background: var(--color-bg);
  border: 0;
  padding: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background var(--transition);
}
.menu-toggle:hover { background: var(--color-border); }
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary-dark);
  border-radius: 3px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, rgba(44, 95, 93, 0.92), rgba(31, 70, 68, 0.85)),
              url('../images/IMG_6594.jpg') center/cover;
  color: white;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(217, 127, 71, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 800px;
}
.hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.hero .btn-outline:hover {
  background-color: white;
  color: var(--color-primary);
}

/* ============================================
   Section
   ============================================ */
.section {
  padding: 5rem 0;
}
.section-alt {
  background-color: white;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header .label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }

/* ============================================
   Page Header (sub pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-bg);
  border-radius: 50%;
}
.page-header h1 { color: white; margin-bottom: 0.5rem; }
.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
}
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================
   Content Layout
   ============================================ */
.content {
  padding: 4rem 0;
}
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.content-main {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.content-main h2 {
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 1.5rem; color: var(--color-accent-dark); }
.content-main ul { padding-left: 0; list-style: none; }
.content-main ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Sidebar */
.sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li {
  margin-bottom: 0.5rem;
  padding-left: 0;
}
.sidebar-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.sidebar-list a:hover,
.sidebar-list a.active {
  background-color: var(--color-bg);
  color: var(--color-primary);
  padding-left: 1rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}
.contact-card h3 { color: white; }
.contact-card p { color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; font-size: 0.9rem; }
.contact-card a { color: white; font-weight: 500; }
.contact-card .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ============================================
   Practice cards (home)
   ============================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.practice-card {
  background: white;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.practice-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.practice-icon svg { width: 32px; height: 32px; }
.practice-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.practice-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}
.practice-card .link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 1rem auto 0;
  align-self: center;
}
.practice-card .link-arrow:hover { color: var(--color-accent-dark); }

/* ============================================
   Approach (home steps)
   ============================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .approach-grid { grid-template-columns: 1fr; }
}
.approach-card {
  text-align: center;
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.approach-card h3 { margin-bottom: 0.75rem; }

/* ============================================
   Info Box (home pricing)
   ============================================ */
.info-box {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}
.info-box h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.price-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}
.price-item .price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}
.price-item .label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================
   Locations (home)
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.location-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.location-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-text-light);
}
.location-card .info-row svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.cta-banner .btn:not(.btn-doctolib):not(.btn-phone) {
  background-color: white;
  color: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
}
.cta-banner .btn:not(.btn-doctolib):not(.btn-phone):hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
}
.cta-banner .btn-doctolib {
  background-color: #107ACA;
  color: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.cta-banner .btn-doctolib:hover {
  background-color: #0e6cb3;
  color: white;
}
.cta-banner .btn-phone {
  background-color: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-phone:hover {
  background-color: rgba(255,255,255,0.25);
  border-color: white;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.footer p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--color-accent); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.footer-info-row svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   Contact page specifics
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.contact-info-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-info-card .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon-circle svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}
.contact-access {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.contact-access p { margin-bottom: 0.5rem; }
.contact-access strong { color: var(--color-primary-dark); }

.useful-links {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.useful-links h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}
.useful-links ul { list-style: none; padding: 0; }
.useful-links li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.useful-links li:last-child { border-bottom: 0; }
.useful-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-text);
}
.useful-links a:hover { color: var(--color-accent); }
.useful-links a::after {
  content: '→';
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ============================================
   About (mon-experience)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-portrait {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.about-credentials {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.about-credentials h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.about-credentials ul { list-style: none; padding: 0; margin: 0; }
.about-credentials li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}
.about-credentials li:last-child { border: 0; }

/* ============================================
   Responsive
   ============================================ */
/* ============================================
   Tablet (980px and below)
   ============================================ */
@media (max-width: 980px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sidebar { position: static; }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    max-width: 240px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Mobile (768px and below)
   ============================================ */
@media (max-width: 768px) {
  /* Topbar tightening */
  .topbar { padding: 0.4rem 0; }
  .topbar-info { font-size: 0.78rem; gap: 0.6rem; flex: 1; min-width: 0; }
  .topbar-info a span { display: none; }
  .topbar-info a { padding: 0.2rem; }
  .topbar-inner { gap: 0.5rem; }
  .topbar .btn-doctolib.btn-sm { font-size: 0.72rem; padding: 0.35rem 0.7rem; }

  /* Header — drop stacking context so child <nav> can compete with backdrop */
  .header { z-index: auto; }
  .container.header-inner { padding: 0.75rem 1rem; gap: 0.75rem; }
  .logo { font-size: 1.35rem; gap: 0.6rem; }
  .logo-mark { width: 48px; height: 48px; }
  .logo-sub { font-size: 0.65rem; }

  /* Mobile menu */
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: white;
    padding: 1rem 1.5rem 2rem;
    box-shadow: -8px 0 24px rgba(0,0,0,0.18);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 300;
    display: flex;
    flex-direction: column;
  }
  .nav.open { right: 0; }

  /* Close button — in flow so it doesn't overlap menu items */
  .nav-close {
    display: flex;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 0;
    color: var(--color-text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
    margin-bottom: 0.25rem;
  }
  .nav-close:hover {
    background: var(--color-border);
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .has-dropdown:hover .dropdown,
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: var(--color-bg);
    padding: 0.25rem 0;
    margin: 0 -1.5rem;
    min-width: 0;
    border-radius: 0;
  }
  .dropdown a {
    padding: 0.6rem 1.5rem 0.6rem 2.5rem !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .nav-cta {
    margin: 1.25rem 0 0;
    width: 100%;
  }
  .nav-cta a {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  .nav-cta a::after,
  .nav-cta a::before { content: none !important; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 290;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .content { padding: 2rem 0; }
  .content-main { padding: 1.5rem; }
  .content-main h2 { font-size: 1.3rem; }

  /* Page header */
  .page-header { padding: 2.5rem 0 2rem; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 2.25rem); }

  /* Practice cards */
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .practice-card { padding: 1.5rem 1.25rem; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .info-box { padding: 1.5rem; }

  /* Locations */
  .location-card { padding: 1.5rem; }

  /* CTA Banner */
  .cta-banner { padding: 2.5rem 0; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 1rem; }
  .cta-pair {
    flex-direction: column;
    width: 100%;
  }
  .cta-pair .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer { padding: 3rem 0 1.25rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* Contact page */
  .contact-info-card { padding: 1.5rem; }
  .useful-links { padding: 1.5rem; }
  .contact-access { padding: 1.25rem; }
}

/* ============================================
   Small mobile (480px and below)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .topbar-info { justify-content: flex-start; gap: 0.4rem; }
  .topbar-info a:last-child { display: none; } /* hide address icon on tiny screens */
  .topbar .btn-doctolib.btn-sm { padding: 0.3rem 0.6rem; font-size: 0.7rem; }

  .logo { gap: 0.45rem; }
  .logo span:last-of-type { font-size: 0.95rem; }
  .logo-sub { display: none; }

  .hero { padding: 2rem 0 2.5rem; }
  .hero h1 { font-size: 1.5rem; line-height: 1.25; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }

  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.95rem; }

  .approach-num { font-size: 2.5rem; }

  .content-main { padding: 1.25rem; }
  .content-main h2 { font-size: 1.15rem; }
  .content-main h3 { font-size: 1.05rem; }

  .footer h4 { font-size: 0.95rem; }

  .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
}
