/* ══════════════════════════════════════════════════
   CLINIQUE MOTS ET GESTES — Global Styles
   Font: IBM Plex Sans
   Primary: #2A9D8F  |  Accent: #E76F51  |  Dark: #1A3D3A
   ══════════════════════════════════════════════════ */

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

/* ── Language toggle visibility ── */
body[data-lang="en"] .fr-only,
body[data-lang="fr"] .en-only,
body:not([data-lang]) .en-only { display: none !important; }

:root {
  --teal:      #2A9D8F;
  --teal-dark: #1F7A6E;
  --teal-light:#E8F5F3;
  --orange:    #E76F51;
  --dark:      #1A3D3A;
  --mid:       #3D5A57;
  --muted:     #4A7A75;
  --faint:     #F7FAFA;
  --white:     #FFFFFF;
  --font:      'IBM Plex Sans', system-ui, sans-serif;
  --radius:    10px;
  --shadow:    0 2px 16px rgba(42,157,143,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ── Shared ── */
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.section-subtitle-en {
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--teal-light); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.13);
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
}
.btn-teal:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 #E2EEEC;
  height: 72px;
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 16px; font-weight: 700;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-title  { font-size: 16px; font-weight: 700; color: var(--dark); white-space: nowrap; }
.logo-subtitle { font-size: 11px; color: #5A9E8F; white-space: nowrap; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--mid); transition: color 0.15s; }
.nav-link:hover, .nav-link.active { color: var(--teal); }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-toggle {
  display: flex;
  background: var(--teal-light);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--teal);
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active { background: var(--teal); color: var(--white); font-weight: 600; }

.cta-btn {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.9; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  display: flex;
  height: 620px;
  background: var(--white);
  max-width: 1440px;
  margin: 0 auto;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px;
}
.hero-right {
  width: 600px;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-right img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-headline {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  max-width: 560px;
}
.hero-subline-fr {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-subline-en {
  color: #7A9E9B;
  font-size: 16px;
  line-height: 1.5;
  max-width: 480px;
}

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.lang-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-badge {
  background: #F0F9F8;
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ══════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--teal);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.stat-val  { font-size: 28px; font-weight: 700; color: var(--white); }
.stat-label { font-size: 13px; color: #B2DDD8; }
.stat-div  { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services-section {
  background: var(--faint);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.services-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  max-width: 800px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--dark); }
.service-card h3 span { font-weight: 400; }
.service-card p  { font-size: 14px; line-height: 1.6; color: #5A7A77; }

.services-cta-row { display: flex; justify-content: center; }

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
  display: flex;
  align-items: stretch;
}
.about-image { width: 580px; flex-shrink: 0; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px 72px;
}
.about-content h2 { font-size: 36px; font-weight: 700; line-height: 1.15; color: var(--dark); }

.founder-note {
  background: #F0FAF8;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founder-note strong { font-size: 15px; color: var(--dark); }
.founder-note p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.values-row { display: flex; gap: 16px; }
.value-card {
  flex: 1;
  background: var(--faint);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.value-card svg { width: 20px; height: 20px; }
.value-card strong { font-size: 13px; color: var(--dark); }
.value-card span   { font-size: 12px; color: #6A9590; }

/* ══════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════ */
.team-section {
  background: var(--faint);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.team-header h2 { font-size: 38px; font-weight: 700; line-height: 1.15; color: var(--dark); max-width: 700px; }
.team-header p   { font-size: 17px; color: var(--muted); max-width: 600px; text-align: center; }

.team-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.member-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: 380px;
  box-shadow: var(--shadow);
}
.member-photo { height: 220px; overflow: hidden; background: var(--teal-light); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-info { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.member-info strong { font-size: 16px; font-weight: 700; color: var(--dark); }
.member-role { font-size: 13px; font-weight: 500; color: var(--teal); }
.member-info p { font-size: 12px; line-height: 1.5; color: #6A9590; }

/* Featured founder card — horizontal layout */
.member-card--featured {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 820px;
}
.member-card--featured .member-photo {
  width: 280px;
  min-width: 280px;
  height: auto;
  min-height: 320px;
}
.member-card--featured .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-card--featured .member-info {
  padding: 28px 32px;
  gap: 10px;
  flex: 1;
}
.member-card--featured .member-info strong {
  font-size: 20px;
}
.member-card--featured .member-role {
  font-size: 14px;
}
.member-blurb {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: var(--mid) !important;
}
.member-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--teal-light);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-dark);
}
.credential-badge svg { width: 13px; height: 13px; }

@media (max-width: 700px) {
  .member-card--featured {
    flex-direction: column;
  }
  .member-card--featured .member-photo {
    width: 100%;
    min-width: unset;
    height: 240px;
    min-height: unset;
  }
}

/* ══════════════════════════════════════════════════
   SUMMER PROGRAMS & EMAIL LIST
   ══════════════════════════════════════════════════ */
.summer-email-section {
  background: linear-gradient(135deg, #E8F5F3 0%, #FFF5F2 100%);
  padding: 80px;
}
.summer-email-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.summer-card, .email-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}
.summer-icon, .email-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summer-icon { background: #FFF3E0; color: #E76F51; }
.email-icon  { background: var(--teal-light); color: var(--teal); }
.summer-icon svg, .email-icon svg { width: 24px; height: 24px; }
.summer-card h3, .email-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); }
.summer-card p, .email-card p { font-size: 14px; line-height: 1.65; color: var(--mid); }

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  margin-top: 4px;
  width: fit-content;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-outline-teal svg { width: 16px; height: 16px; }

.email-signup-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.email-input-group {
  display: flex;
  gap: 8px;
}
.email-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #D5E5E3;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.email-input-group input:focus {
  border-color: var(--teal);
}
.email-input-group .btn-primary {
  white-space: nowrap;
}
.email-privacy {
  font-size: 11px;
  color: #8AABA7;
}

@media (max-width: 700px) {
  .summer-email-section { padding: 48px 20px; }
  .summer-email-grid { grid-template-columns: 1fr; }
  .email-input-group { flex-direction: column; }
}

/* ══════════════════════════════════════════════════
   RESOURCES
   ══════════════════════════════════════════════════ */
.resources-section {
  background: var(--white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.resources-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.resources-header h2 { font-size: 38px; font-weight: 700; color: var(--dark); max-width: 700px; }

.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  background: var(--faint);
  border: 1px solid #E2EEEC;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-card svg { width: 24px; height: 24px; }
.resource-card h3  { font-size: 16px; font-weight: 700; color: var(--dark); }
.resource-card p   { font-size: 13px; line-height: 1.6; color: #5A7A77; }

.partner-row { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.partner-title { font-size: 15px; font-weight: 600; color: var(--muted); text-align: center; }
.partner-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.partner-badge {
  background: #F0FAF8;
  border: 1px solid #C0DDD8;
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(90deg, #1F7A6E 0%, #2A9D8F 100%);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-left { display: flex; flex-direction: column; gap: 12px; max-width: 560px; }
.cta-left h2 { font-size: 32px; font-weight: 700; line-height: 1.2; color: var(--white); }
.cta-left p  { font-size: 16px; line-height: 1.5; color: #B2DDD8; }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

/* ══════════════════════════════════════════════════
   MAP
   ══════════════════════════════════════════════════ */
.map-section { display: flex; flex-direction: column; }
.map-placeholder { height: 400px; overflow: hidden; }
.map-overlay {
  background: var(--dark);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.map-overlay p { font-size: 15px; font-weight: 500; color: var(--white); }

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact-section {
  background: var(--faint);
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.contact-header h2 { font-size: 38px; font-weight: 700; color: var(--dark); max-width: 700px; }
.contact-note { font-size: 14px; line-height: 1.6; color: var(--orange); text-align: center; max-width: 600px; }

.contact-grid { display: flex; gap: 32px; align-items: flex-start; }
.contact-left { flex: 1; display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-row svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-row > div { display: flex; flex-direction: column; gap: 2px; }
.contact-row strong { font-size: 14px; color: var(--dark); }
.contact-row span,
.contact-row a { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-row a:hover { color: var(--teal); }

.accessibility-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}
.accessibility-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); }
.access-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.access-badge {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 8px;
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  width: 540px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--mid); }
.form-group input,
.form-group textarea {
  background: var(--faint);
  border: 1px solid #C5DDD9;
  border-radius: 8px;
  padding: 0 16px;
  height: 44px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { height: auto; padding: 12px 16px; resize: vertical; }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  display: flex;
  flex-direction: column;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 80px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; width: 320px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; }
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px; font-weight: 700;
}
.footer-brand-name { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 14px; line-height: 1.6; color: #7AADA8; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: #2A4A47;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #7AADA8;
  transition: background 0.15s;
}
.social-btn:hover { background: var(--teal); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

.footer-nav { display: flex; gap: 64px; justify-content: flex-end; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span { font-size: 14px; color: #7AADA8; transition: color 0.15s; cursor: pointer; }
.footer-col a:hover { color: var(--white); }

.footer-divider { border: none; border-top: 1px solid #2A4A47; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom > span { font-size: 13px; color: #4A6E6A; }
.footer-privacy { display: flex; gap: 24px; }
.footer-privacy a { font-size: 13px; color: #4A6E6A; transition: color 0.15s; }
.footer-privacy a:hover { color: #7AADA8; }

/* ══════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #1A2E2C;
  padding: 16px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 200;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 13px; color: #9AC8C4; flex: 1; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-decline {
  background: #2A4A47;
  color: #9AC8C4;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}
.cookie-accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 32px; }
  .nav-links  { gap: 16px; }
  .hero-left  { padding: 48px 40px; }
  .hero-right { width: 420px; }
  .stats-bar, .services-section, .resources-section,
  .cta-strip, .contact-section, .team-section { padding: 60px 40px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image    { width: 420px; }
  .about-content  { padding: 48px 40px; }
  .footer-main    { padding: 48px 40px; }
  .footer-bottom  { padding: 20px 40px; }
  .map-overlay    { padding: 24px 40px; }
  .cookie-banner  { padding: 16px 40px; }
  .contact-form-card { width: auto; flex: 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { flex-direction: column; height: auto; }
  .hero-left  { padding: 48px 24px; }
  .hero-right { width: 100%; height: 300px; }
  .hero-headline { font-size: 36px; }
  .stats-bar { flex-direction: column; align-items: flex-start; }
  .stat-div  { width: 48px; height: 1px; }
  .services-section, .resources-section, .contact-section,
  .team-section, .cta-strip { padding: 48px 24px; }
  .services-grid  { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .about-section  { flex-direction: column; }
  .about-image    { width: 100%; height: 300px; }
  .about-content  { padding: 40px 24px; }
  .values-row     { flex-direction: column; }
  .cta-strip      { flex-direction: column; }
  .contact-grid   { flex-direction: column; }
  .contact-form-card { width: 100%; }
  .footer-main    { flex-direction: column; padding: 40px 24px; }
  .footer-brand   { width: 100%; }
  .footer-nav     { flex-wrap: wrap; gap: 32px; justify-content: flex-start; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .cookie-banner  { flex-direction: column; align-items: flex-start; padding: 16px 24px; }
  .map-overlay    { flex-direction: column; padding: 24px; }
}
