/* ==========================================================================
   BLISA Advocacia — Design System
   Paleta da marca mantida. Dourado reduzido (só logo, CTA, links, detalhes).
   Off-white no lugar de branco puro. Respiro generoso. Sobriedade.
   Ajuste os HEX abaixo para casar 100% com a logo/cartões.
   ========================================================================== */

:root {
  /* Cores da marca (aproximadas — afine para o verde/dourado exatos da logo) */
  --green-900: #14342A;   /* verde mais escuro: faixas escuras, footer */
  --green-800: #1C4034;   /* títulos, header */
  --green-700: #22513F;   /* botão primário */
  --green-600: #2E6450;   /* hover do primário */
  --gold:      #B89146;   /* dourado — usar com parcimônia */
  --gold-soft: #C9A968;

  --ink:    #2A2A26;      /* preto suave — texto corrido */
  --muted:  #6A6A62;      /* texto secundário */
  --cream:  #F7F4ED;      /* off-white principal (fundo seções claras) */
  --cream-2:#FAF7F0;      /* off-white alternativo */
  --line:   #E7E1D3;      /* hairline / divisores */
  --white:  #FFFFFF;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-pad: clamp(60px, 9vw, 110px); /* >=80px desktop, >=60px mobile */
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(20,52,42,.06), 0 2px 8px rgba(20,52,42,.05);
  --shadow-md: 0 10px 30px rgba(20,52,42,.10);

  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --t-fast: .25s ease;
  --t: .4s cubic-bezier(.2,.6,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--green-800);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .2px;
}

p { color: var(--ink); }
strong { font-weight: 600; color: var(--green-800); }

/* --------------------------------------------------------- Layout utils */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--green-900); color: #EAE7DD; }
.section--dark h2, .section--dark h3 { color: #FFFFFF; }
.section--dark p { color: #CDD6CE; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

h2.title { font-size: clamp(28px, 4vw, 42px); }
h3.subtitle { font-size: clamp(21px, 2.4vw, 27px); }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); margin-top: 14px; }

/* --------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
}
.btn svg { width: 19px; height: 19px; }

/* Primário: VERDE escuro, texto branco (CTA WhatsApp) */
.btn--primary { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn--primary:hover { background: var(--green-600); border-color: var(--green-600); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Secundário: contorno fino, texto claro/escuro conforme fundo */
.btn--outline { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn--outline:hover { background: var(--green-800); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color:#fff; }

.btn--block { width: 100%; }

/* --------------------------------------------------------- Header / Nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--t-fast), box-shadow var(--t-fast), padding var(--t-fast);
  padding-block: 18px;
}
.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  padding-block: 10px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 56px; width: auto; transition: height var(--t-fast); }
.is-scrolled .brand__logo { height: 48px; }
/* Troca de logo: dourada sobre o hero escuro; completa (BLISA verde) com header off-white */
.brand__logo--on-light { display: none; }
.is-scrolled .brand__logo--on-dark { display: none; }
.is-scrolled .brand__logo--on-light { display: block; }
/* Fallback de logo em texto (troque pelo <img> da logo real) */
.brand__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1;
}
.brand__text small { display:block; font-family: var(--font-body); font-size: 10px; letter-spacing: 4px; font-weight: 500; color: var(--gold-soft); margin-top: 4px; }
.is-scrolled .brand__text { color: var(--green-800); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.is-scrolled .nav-menu a { color: var(--ink); }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a:hover, .is-scrolled .nav-menu a:hover { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 250px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  padding: 8px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-fast);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { color: var(--ink) !important; padding: 11px 14px; border-radius: var(--radius); }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--cream); color: var(--green-700) !important; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: all var(--t-fast); }
.is-scrolled .nav-toggle span { background: var(--green-800); }

/* --------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  /* FOTO (amanhecer no campo) + VERDE da marca sobreposto em alpha.
     Overlay mais forte à esquerda (onde fica o texto) e mais leve à direita,
     revelando a foto. hero-bg.svg fica como reserva: se hero.jpg ainda não
     foi enviado, o SVG aparece e nada quebra. */
  background:
    linear-gradient(108deg, rgba(14,38,30,.88) 0%, rgba(16,40,32,.62) 46%, rgba(20,52,42,.36) 100%),
    linear-gradient(180deg, rgba(20,52,42,0) 55%, rgba(14,38,30,.55) 100%),
    url('../images/hero.webp') center/cover no-repeat,
    url('../images/hero-bg.svg') center/cover no-repeat,
    #14342A;
  background-position: center;
}

.hero__inner { max-width: 760px; padding-block: 120px; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: .5px;
}
.hero__sub {
  font-size: clamp(18px, 2.2vw, 23px);
  color: #E4E0D5;
  line-height: 1.5;
  margin-top: 22px;
  max-width: 620px;
  font-weight: 300;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content:""; width:1px; height:34px; background: rgba(255,255,255,.4); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* Trust strip sob o hero */
.trust {
  background: var(--green-900);
  color: #CDD6CE;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px,5vw,64px); padding-block: 26px; text-align: center; }
.trust__item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; letter-spacing: .3px; }
.trust__item svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; }

/* --------------------------------------------------------- O Escritório */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__text h2.title { margin-bottom: 18px; }
.about__text p + p { margin-top: 18px; }
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: linear-gradient(135deg, #22513F, #14342A);
  box-shadow: var(--shadow-md);
}
.about__media::after {
  content: "Foto: sócio em ambiente rural\Aou fachada do escritório";
  white-space: pre-wrap;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: 14px; text-align: center; padding: 24px;
  font-style: italic;
}
/* Quando houver uma foto real dentro, ela cobre o placeholder */
.about__media:has(img)::after { content: none; }
.about__media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.about__quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 26px;
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: var(--green-800);
  line-height: 1.4;
}

/* --------------------------------------------------------- Para quem atendemos */
.audience__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.audience-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--green-700);
  margin-bottom: 22px;
}
.audience-card__icon svg { width: 28px; height: 28px; }
.audience-card h3 { font-size: 16px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green-800); margin-bottom: 14px; }
.audience-card p { font-size: 15.5px; color: var(--muted); }
.audience-card p + p { margin-top: 12px; }

/* --------------------------------------------------------- Áreas de Atuação */
.areas__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-card {
  display: flex; gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform var(--t);
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.area-card:hover::before { transform: scaleY(1); }
.area-card__icon { flex: none; width: 52px; height: 52px; color: var(--green-700); }
.area-card__icon svg { width: 52px; height: 52px; stroke-width: 1.4; }
.area-card h3 { font-size: 21px; margin-bottom: 10px; }
.area-card p { font-size: 15.5px; color: var(--muted); margin-bottom: 14px; }
.area-card__link { font-size: 14.5px; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.area-card__link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.area-card:hover .area-card__link svg { transform: translateX(4px); }

/* --------------------------------------------------------- Diferenciais */
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
.value { display: flex; gap: 20px; }
.value__num { font-family: var(--font-head); font-size: 30px; color: var(--gold); line-height: 1; flex: none; opacity: .8; }
.value h3 { font-size: 19px; margin-bottom: 8px; color: #fff; }
.value p { font-size: 15.5px; }

/* --------------------------------------------------------- Sócio / rosto */
.partner { display: grid; grid-template-columns: 380px 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.partner__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #2E6450, #14342A);
  box-shadow: var(--shadow-md);
}
.partner__photo::after {
  content: "Foto do sócio responsável";
  position: absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.55); font-style: italic; font-size: 14px; text-align:center; padding: 20px;
}
.partner__photo:has(img)::after { content: none; }
.partner__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.partner__name { font-size: 26px; margin-bottom: 4px; }
.partner__role { color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.partner__bio p + p { margin-top: 14px; }
.partner__oab { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* --------------------------------------------------------- CTA band */
.cta-band { background: var(--green-900); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,145,70,.12), transparent 60%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color:#fff; font-size: clamp(28px, 4vw, 40px); max-width: 760px; margin-inline:auto; }
.cta-band p { color:#CDD6CE; max-width: 600px; margin: 16px auto 32px; }
.cta-band__btns { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* --------------------------------------------------------- Footer */
.site-footer { background: #0E261E; color: #B7C2B8; padding-top: clamp(56px, 7vw, 84px); }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer__brand .brand__text { color:#fff; }
.footer__logo { height: 68px; width: auto; margin-bottom: 18px; }
.footer__tagline { font-size: 15px; max-width: 320px; color:#94A296; }
.footer h4 { color:#fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight:600; }
.footer__list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.footer__list a, .footer__list li { color:#B7C2B8; font-size: 15px; display:flex; align-items:flex-start; gap:12px; }
.footer__list svg { width:18px; height:18px; color: var(--gold-soft); flex:none; margin-top:2px; }
.footer__list a:hover { color: var(--gold-soft); }
.footer__social { display:flex; gap:12px; margin-top: 4px; }
.footer__social a {
  width:42px; height:42px; border:1px solid rgba(255,255,255,.18); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#B7C2B8;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width:19px; height:19px; }
.footer__bottom {
  margin-top: clamp(40px,5vw,60px); border-top:1px solid rgba(255,255,255,.08);
  padding-block: 24px; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between;
  font-size: 13px; color:#7E8C80;
}
.footer__bottom a { color:#7E8C80; }
.footer__bottom a:hover { color: var(--gold-soft); }

/* --------------------------------------------------------- WhatsApp flutuante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); color:#fff; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s infinite;
}
@keyframes waPulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.45);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* --------------------------------------------------------- Páginas internas (cabeçalho) */
.page-hero {
  background: linear-gradient(180deg, #1C4034, #14342A);
  color:#fff; padding-top: 150px; padding-bottom: clamp(50px,7vw,80px);
}
.page-hero h1 { color:#fff; font-size: clamp(32px,5vw,52px); }
.page-hero .lead { color:#CDD6CE; }
.breadcrumb { font-size: 13.5px; letter-spacing:.3px; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb span { margin-inline: 8px; opacity:.6; }

/* Conteúdo longo (páginas de área) */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--ink); }
.prose h2 { font-size: clamp(24px,3vw,32px); margin: 40px 0 16px; }
.prose h3 { font-size: 21px; margin: 30px 0 12px; }
.prose ul { list-style: none; margin: 18px 0; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ink); }
.prose ul li::before { content:""; position:absolute; left:0; top:10px; width:8px; height:8px; border:1.5px solid var(--gold); transform: rotate(45deg); }

.layout-2col { display:grid; grid-template-columns: 1fr 320px; gap: clamp(32px,5vw,64px); align-items:start; }
.sidebar-card { background: var(--green-900); color:#EAE7DD; border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 100px; }
.sidebar-card h3 { color:#fff; font-size: 20px; margin-bottom: 10px; }
.sidebar-card p { color:#CDD6CE; font-size: 15px; margin-bottom: 20px; }
.sidebar-card .btn { width:100%; }
.sidebar-nav { list-style:none; margin-top: 8px; }
.sidebar-nav a { display:block; padding: 12px 16px; border-radius: var(--radius); color:#CDD6CE; font-size:15px; border:1px solid transparent; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.12); }

/* --------------------------------------------------------- Contato */
.contact__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); }
.field { margin-bottom: 18px; }
.field label { display:block; font-size: 14px; font-weight:600; color: var(--green-800); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width:100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border:1px solid var(--line); border-radius: var(--radius);
  background:#fff; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline:none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(34,81,63,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { display:flex; flex-direction:column; gap: 22px; }
.contact-info__item { display:flex; gap:16px; align-items:flex-start; }
.contact-info__item svg { width:24px; height:24px; color: var(--green-700); flex:none; margin-top:3px; }
.contact-info__item strong { display:block; color: var(--green-800); font-size:15px; }
.contact-info__item a, .contact-info__item span { color: var(--muted); font-size:15.5px; }
.map-embed { margin-top: 8px; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
.map-embed iframe { width:100%; height:280px; border:0; display:block; }

/* --------------------------------------------------------- Animação fade-in
   Progressive enhancement: o conteúdo é visível por padrão. Só escondemos
   para animar quando o JS está ativo (classe .js no <html>). Assim, sem JS
   (ou se algo falhar), nada some. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior: auto; }
  .wa-float::after, .hero__scroll::after { animation: none; }
}

/* --------------------------------------------------------- Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--green-900);
  display: flex; flex-direction: column; padding: 28px var(--gutter);
  transform: translateX(100%); transition: transform var(--t);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display:flex; justify-content: space-between; align-items:center; margin-bottom: 30px; }
.mobile-menu__close { background:none; border:0; color:#fff; font-size: 34px; line-height:1; cursor:pointer; }
.mobile-menu nav a { display:block; color:#fff; font-family: var(--font-head); font-size: 24px; padding: 14px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-menu nav a.sub { font-family: var(--font-body); font-size: 17px; padding-left: 18px; color:#CDD6CE; }
.mobile-menu .btn { margin-top: 26px; }

/* ========================================================= RESPONSIVE */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 320px; order: -1; }
  .audience__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline:auto; }
  .areas__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; gap: 28px; }
  .partner { grid-template-columns: 1fr; }
  .partner__photo { max-width: 320px; }
  .layout-2col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 88vh; }
  .hero__inner { padding-block: 100px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
