/* =========================================================
   Isis Novais — Psicóloga Clínica
   Sistema visual: editorial, terracota, calmo
   ========================================================= */

:root {
  --bg:        #FAF6F0;
  --bg-alt:    #F1E9DC;
  --bg-deep:   #E8DDC9;
  --ink:       #3D2F25;
  --ink-soft:  #6B5648;
  --ink-mute:  #97836F;
  --accent:    #B8694A;
  --accent-deep:#8E4A30;
  --gold:      #B8945E;
  --rule:      #E5DBCA;
  --paper:     #FFFCF7;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;

  --pad-section: clamp(80px, 11vw, 160px);
  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1280px;
  --gap-stack: clamp(16px, 1.6vw, 24px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "kern";
  text-wrap: pretty;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----------- typography ----------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.h-display {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.h-section {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 50;
}
.h-section em {
  font-style: italic;
  font-weight: 320;
  color: var(--accent-deep);
}
.h-card {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lead {
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 56ch;
}
.body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.italic-pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.35;
  color: var(--accent-deep);
  letter-spacing: -0.01em;
}

/* ----------- layout ----------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
  position: relative;
}
section.tight { padding-top: calc(var(--pad-section) * 0.45); padding-bottom: calc(var(--pad-section) * 0.45); }

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ----------- buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 8px 24px -10px rgba(184,105,74,.6);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 12px 28px -10px rgba(142,74,48,.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn .arrow {
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ----------- header ----------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-symbol { width: 30px; height: 30px; color: var(--accent-deep); }
.brand-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
}
.brand-mark small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  display: block;
  width: 16px; height: 1px;
  background: var(--ink);
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px; height: 1px;
  background: var(--ink);
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

/* mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px var(--pad-x) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 350;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  transition: color .2s ease;
}
.mobile-drawer a:hover { color: var(--accent-deep); }
.mobile-drawer .btn {
  margin-top: 24px;
  align-self: flex-start;
  font-size: 15px;
}

/* ----------- hero ----------- */
.hero {
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: var(--pad-section);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero-text { position: relative; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin: 0 0 28px; }
.hero .lead { margin-bottom: 36px; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .crp {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta .divider {
  width: 1px; height: 16px;
  background: var(--rule);
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(61,47,37,0.18));
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--paper);
  font-family: var(--serif);
}
.hero-tag .yr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-tag .num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 320;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-tag .num em { font-style: italic; }

.hero-orn {
  position: absolute;
  top: 18%;
  left: -10%;
  width: 380px;
  opacity: 0.45;
  pointer-events: none;
  color: var(--accent);
}

/* ----------- ABOUT ----------- */
.about {
  background: var(--bg-alt);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-deep);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-content > * + * { margin-top: 28px; }
.about-content .h-section { margin: 16px 0 32px; }
.about-content p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
}
.about-content .italic-pull {
  border-left: 1px solid var(--accent);
  padding-left: 28px;
  margin: 36px 0;
  max-width: 50ch;
}

.formation {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.formation .card {
  background: var(--bg-alt);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.formation .card .num {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  font-weight: 500;
}
.formation .card .title {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
}
.formation .card .desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.formation .card .badge {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: 8px;
}

/* ----------- ABORDAGEM ----------- */
.approach {
  position: relative;
}
.approach-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.pillar .icon {
  width: 56px; height: 56px;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ----------- TEMAS ----------- */
.themes {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.themes-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.themes-head .lead { margin-top: 24px; }
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.theme-card {
  padding: 36px 28px 32px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--bg-deep);
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-height: 200px;
}
.theme-card:nth-child(3n) { border-right: 0; }
.theme-card:hover { background: var(--bg-alt); }
.theme-card .ix {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.theme-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.005em;
}
.theme-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.theme-card .glyph {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 22px; height: 22px;
  color: var(--accent);
  opacity: 0.55;
  transition: opacity .3s ease, transform .3s ease;
}
.theme-card:hover .glyph { opacity: 1; transform: rotate(-8deg); }

/* ----------- AUDIENCE ----------- */
.audience {
  background: var(--paper);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(48px, 6vw, 80px);
}
.audience-card {
  padding: 36px 32px 40px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, border-color .3s ease, box-shadow .35s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -24px rgba(61,47,37,0.18);
}
.audience-card .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}
.audience-card h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.015em;
}
.audience-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* ----------- PROCESS ----------- */
.process {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.process .eyebrow { color: #E5B891; }
.process .h-section { color: var(--paper); }
.process .h-section em { color: #E5B891; }
.process .lead { color: rgba(255,252,247,0.7); }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,252,247,0.12);
}
.step {
  padding: 0 24px 0 0;
  position: relative;
  padding-top: 60px;
}
.step::before {
  content: "";
  position: absolute;
  top: 18px; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(184,105,74,0.18);
}
.step .num {
  position: absolute;
  top: 0; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #E5B891;
  letter-spacing: 0.04em;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--paper);
}
.step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,252,247,0.65);
  margin: 0;
}

/* ----------- BANNER CTA ----------- */
.banner {
  background: var(--bg-alt);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
}
.banner-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.banner h2 {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.banner h2 em {
  font-style: italic;
  color: var(--accent-deep);
}
.banner-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0;
}

/* ----------- FAQ ----------- */
.faq {
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: color .25s ease;
}
.faq-item button:hover { color: var(--accent-deep); }
.faq-item .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  color: var(--accent-deep);
}
.faq-item .plus::before, .faq-item .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-item .plus::before { width: 14px; height: 1px; }
.faq-item .plus::after { width: 1px; height: 14px; }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.5,.05,.2,1), padding .35s ease;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
}
.faq-item.open .answer {
  max-height: 360px;
  padding: 0 0 28px;
}

/* ----------- FOOTER / CONTATO ----------- */
.footer-cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.footer-cta .h-section { color: var(--paper); }
.footer-cta .h-section em { color: #E5B891; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(64px, 8vw, 100px);
  align-items: end;
}
.footer-cta .eyebrow { color: #E5B891; }
.footer-cta .lead { color: rgba(255,252,247,0.75); margin: 28px 0 36px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,252,247,0.12);
}
.contact-item:first-child { border-top: 1px solid rgba(255,252,247,0.12); }
.contact-item .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(229,184,145,0.85);
  font-weight: 500;
}
.contact-item .value {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  color: var(--paper);
  line-height: 1.3;
  transition: color .2s ease;
}
.contact-item a.value:hover { color: #E5B891; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255,252,247,0.12);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,252,247,0.55);
}
.footer-bottom .brand-mark { color: var(--paper); }
.footer-bottom .brand-mark small { color: rgba(229,184,145,0.85); }
.footer-bottom .crp-block {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,252,247,0.4);
  max-width: 60ch;
  margin-top: 24px;
}

/* ----------- reveal animation ----------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: .24s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: .32s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: .4s; }

.parallax-wrap { overflow: hidden; }

/* ----------- responsive ----------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-btn { display: flex; }
  .nav-cta-desktop { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: relative; top: 0; aspect-ratio: 4 / 3; }
  .approach-head { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .themes-grid { grid-template-columns: 1fr; }
  .theme-card { border-right: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .process-head { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .step { padding-top: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .formation { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-tag { left: 20px; bottom: 20px; }
  .hero-tag .num { font-size: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .audience-card { padding: 28px 24px 32px; }
  .theme-card { padding: 28px 24px; }
}
