/* ============================================================
   ABC AVOCATS — Main Stylesheet
   Brand: Navy #105089, White #FFFFFF, Light grey #F5F6F8
   Font: Avenir Next (system stack fallback)
   ============================================================ */

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

:root {
  --navy:       #105089;
  --navy-dark:  #0c3d6b;
  --navy-light: #1a6ab5;
  --white:      #FFFFFF;
  --off-white:  #F5F6F8;
  --grey-light: #E8EAED;
  --grey-mid:   #9BA3AE;
  --grey-text:  #4A5568;
  --text:       #1A202C;

  --font-body:  'Avenir Next', 'Avenir', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-size:  16px;
  --line-height: 1.65;

  --max-width:  1200px;
  --section-pad: 5rem 1.5rem;
  --radius:     4px;
  --transition: 0.2s ease;
}

html { font-size: var(--font-size); scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Utilities ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy    { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--grey-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo img { height: 20px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  background: var(--off-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-switch a {
  padding: 0.25rem 0.5rem;
  color: var(--grey-mid);
  border-radius: 2px;
  transition: color var(--transition);
}
.lang-switch a.active, .lang-switch a:hover { color: var(--navy); }
.lang-switch span { color: var(--grey-light); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 9rem 1.5rem 5rem;
  background: var(--navy-dark);
  background-image: url('../images/montreal-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 61, 107, 0.88) 0%,
    rgba(16, 80, 137, 0.80) 50%,
    rgba(16, 80, 137, 0.65) 100%
  );
  z-index: 0;
}
.hero::after { display: none; }

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero responsive image */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    background-image: url('../images/montreal-hero@2x.jpg');
  }
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; max-width: 700px; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

section { padding: var(--section-pad); }

/* Divider line accent */
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--navy);
  margin-top: 0.75rem;
}
.section-header.centered h2::after { margin-left: auto; margin-right: auto; }

/* ============================================================
   EXPERTISE / PRACTICE AREAS
   ============================================================ */
#expertise { background: var(--white); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--grey-light);
  border: 1.5px solid var(--grey-light);
}

.expertise-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.expertise-card:hover { background: var(--off-white); }
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--navy);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.expertise-card:hover::before { transform: scaleY(1); }

.expertise-card-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.expertise-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.expertise-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.expertise-card p  { font-size: 0.9rem; margin-bottom: 1rem; }
.expertise-card .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.expertise-card .card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.expertise-card:hover .card-link svg { transform: translateX(4px); }

/* ============================================================
   ABOUT / FIRM
   ============================================================ */
#about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  background: var(--navy);
  border-radius: var(--radius);
  z-index: -1;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: 0.25rem;
}

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  background: var(--grey-light);
  transition: opacity var(--transition);
}
.team-card a:hover .team-card-img { opacity: 0.88; }
.team-card-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img-placeholder svg { width: 64px; height: 64px; color: var(--grey-light); }
.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .title { font-size: 0.82rem; color: var(--grey-mid); font-weight: 500; }
.team-card .bar  {
  display: block;
  width: 32px; height: 2px;
  background: var(--navy);
  margin: 0.75rem auto;
}
.team-card-bio {
  font-size: 0.88rem;
  color: var(--grey-dark);
  text-align: left;
  margin-top: 1rem;
  line-height: 1.7;
}
.team-card-bio p { margin-bottom: 0.75rem; }
.team-card-bio p:last-child { margin-bottom: 0; }
.team-card-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-start;
}
.team-card-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  border: 1.5px solid rgba(16,80,137,0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  transition: background var(--transition), border-color var(--transition);
}
.team-card-social a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
/* Single-profile layout: full-width card with side-by-side placeholder + bio */
.team-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
}
@media (max-width: 680px) {
  .team-profile {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-profile .team-card-social { justify-content: flex-start; }
}

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
#insights { background: var(--off-white); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.insight-card:hover { box-shadow: 0 8px 32px rgba(16,80,137,0.1); }
.insight-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.insight-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(16,80,137,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.insight-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.insight-card p  { font-size: 0.875rem; flex: 1; }
.insight-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--grey-light);
  font-size: 0.78rem;
  color: var(--grey-mid);
}
.insight-card-footer a {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.8rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--navy); color: var(--white); }
#contact .section-label { color: rgba(255,255,255,0.5); }
#contact h2 { color: var(--white); }
#contact h2::after { background: rgba(255,255,255,0.3); }
#contact p { color: rgba(255,255,255,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.contact-detail-value { color: var(--white); font-size: 0.95rem; }
.contact-detail-value a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* Contact form */
.contact-form { }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* Light-background form variant (used on profile pages, about, etc.) */
.form-light .form-group label {
  color: var(--grey-dark);
}
.form-light .form-group input,
.form-light .form-group textarea,
.form-light .form-group select {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  color: var(--grey-dark);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: var(--grey-mid); }
.form-light .form-group input:focus,
.form-light .form-group textarea:focus,
.form-light .form-group select:focus {
  border-color: var(--navy);
  background: var(--white);
  outline: none;
}
.form-light .form-consent { color: var(--grey-mid); }
.form-light .form-consent a { color: var(--navy); }

.form-consent {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}
.form-consent a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .logo img { height: 22px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; max-width: 260px; color: var(--white); }
.site-footer p { color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  padding: 0.2rem 0;
  transition: color var(--transition);
  opacity: 0.85;
}
.footer-col a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--white);
}
.footer-bottom a { color: var(--white); opacity: 0.85; }
.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.75); flex: 1; min-width: 200px; margin: 0; }
.cookie-banner p a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions button {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition);
}
.btn-cookie-accept {
  background: var(--white);
  color: var(--navy);
}
.btn-cookie-accept:hover { background: var(--off-white); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .lang-switch {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-light);
  justify-content: flex-start;
  font-size: 0.9rem;
}

/* ============================================================
   PAGE: EXPERTISE DETAIL
   ============================================================ */
.page-hero {
  padding: 8rem 1.5rem 3.5rem;
  background: var(--navy);
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 600px; margin-top: 0.75rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.content-block { padding: 4rem 1.5rem; }
.content-block .container { max-width: 820px; }
.content-block h2 { margin-bottom: 1rem; font-size: 1.5rem; }
.content-block h3 { margin-bottom: 0.5rem; font-size: 1.15rem; color: var(--navy); }
.content-block p  { margin-bottom: 1.25rem; }
.content-block ul { margin: 0 0 1.25rem 1.25rem; list-style: disc; }
.content-block ul li { color: var(--grey-text); padding: 0.2rem 0; }
.content-block ul li::marker { color: var(--navy); }

/* ============================================================
   PAGE: PRIVACY POLICY
   ============================================================ */
.policy-content { padding: 4rem 1.5rem; }
.policy-content .container { max-width: 820px; }
.policy-content h2 { font-size: 1.25rem; margin: 2rem 0 0.5rem; color: var(--navy); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: 0.92rem; color: var(--grey-text); }
.policy-content ul { margin: 0 0 1rem 1.25rem; list-style: disc; }
.policy-content ul li::marker { color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .lang-switch { display: flex; } /* keep visible */

  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}
