/*
Theme Name: Asist Legal 2026
Theme URI: https://asist-legal.com.ar/web2026/
Author: OSSolutions
Description: Tema institucional personalizado para Asist Legal. Diseño sobrio, responsive y orientado a consultas.
Version: 1.0.8
Text Domain: asist-legal
*/

:root {
  --navy-950: #081a2c;
  --navy-900: #0d2238;
  --navy-800: #102a43;
  --navy-700: #173f61;
  --blue-200: #cbd9e6;
  --blue-100: #eaf0f5;
  --blue-050: #f4f7fa;
  --ink: #142332;
  --muted: #5f6d78;
  --line: #dce4eb;
  --white: #ffffff;
  --whatsapp: #1f9f62;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 24px 70px rgba(8, 26, 44, 0.12);
  --radius: 2px;
  --header-height: 88px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

::selection { color: var(--white); background: var(--navy-700); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
}
.skip-link:focus { top: 12px; }

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}
.shell--narrow { width: min(800px, calc(100% - 48px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 228, 235, 0.85);
  transition: box-shadow .25s ease, min-height .25s ease;
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(8, 26, 44, .08); }
.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}
.brand__copy { display: grid; line-height: 1.1; color: var(--navy-900); }
.brand__copy strong { font-family: var(--serif); font-size: 19px; letter-spacing: .12em; font-weight: 500; }
.brand__copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav > a:not(.button) {
  position: relative;
  color: #263747;
  font-size: 14px;
  font-weight: 500;
}
.site-nav > a:not(.button)::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  content: '';
  background: var(--navy-700);
  transition: right .2s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a.is-current::after { right: 0; }

.menu-toggle {
  display: none;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
}
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after { display: block; width: 26px; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-toggle__bars { position: relative; }
.menu-toggle__bars::before,
.menu-toggle__bars::after { position: absolute; left: 0; content: ''; }
.menu-toggle__bars::before { top: -7px; }
.menu-toggle__bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 24px;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid var(--navy-800);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .045em;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); color: var(--navy-800); background: transparent; }
.button--small { min-height: 43px; padding: 9px 18px; font-size: 12px; }
.button--light { color: var(--navy-900); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.button--outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.48); }
.button--outline-light:hover { color: var(--navy-900); background: var(--white); border-color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--blue-200); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}
.hero--home { min-height: calc(100vh - var(--header-height)); display: grid; align-content: space-between; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 100px;
  align-items: end;
  padding-block: clamp(90px, 11vw, 150px) 105px;
}
.hero__content { max-width: 790px; }
.hero h1 {
  margin-bottom: 31px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
}
.hero h1 em { color: var(--blue-200); font-weight: 400; }
.hero__lead { max-width: 660px; margin-bottom: 38px; color: rgba(255,255,255,.77); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__statement {
  position: relative;
  padding: 28px 0 0 31px;
  border-left: 1px solid rgba(255,255,255,.3);
}
.hero__statement-number { position: absolute; top: -14px; left: -13px; padding: 2px 7px; color: var(--navy-900); background: var(--blue-200); font-size: 10px; font-weight: 800; }
.hero__statement > p { margin-bottom: 26px; font-family: var(--serif); font-size: 24px; line-height: 1.35; }
.hero__statement-line { width: 54px; height: 1px; margin-bottom: 22px; background: var(--blue-200); }
.hero__statement ul { margin: 0; padding: 0; color: rgba(255,255,255,.68); list-style: none; font-size: 12px; letter-spacing: .03em; }
.hero__statement li { padding-block: 7px; border-bottom: 1px solid rgba(255,255,255,.13); }
.hero__orb { position: absolute; border: 1px solid rgba(203, 217, 230, .12); border-radius: 50%; pointer-events: none; }
.hero__orb--one { width: 620px; height: 620px; top: -300px; right: -150px; }
.hero__orb--two { width: 420px; height: 420px; bottom: -230px; left: 29%; }
.hero__ticker { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.13); }
.hero__ticker-inner { min-height: 73px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero__ticker i { width: 5px; height: 5px; flex: 0 0 auto; border: 1px solid var(--blue-200); transform: rotate(45deg); }

.section { padding-block: clamp(84px, 10vw, 140px); }
.section--soft { background: var(--blue-050); }
.section--process { color: var(--white); background: var(--navy-800); }
.section--faq { background: var(--white); }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 10vw, 130px); }
.split--about { align-items: start; }
.split--story { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.split--process { grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); }
.split--faq { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); }
.split--manifesto { align-items: center; }

.section-title {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--navy-900);
}
.section-title--light { color: var(--white); }
.section-copy { color: var(--muted); font-size: 18px; line-height: 1.75; }
.prose { color: var(--muted); }
.prose--large { font-size: 18px; line-height: 1.8; }
.prose p { margin-bottom: 24px; }
.prose .button { margin-top: 10px; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, .7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}
.section-heading > p { max-width: 450px; margin-bottom: 24px; color: var(--muted); }
.section-heading--inline .text-link { justify-self: end; margin-bottom: 23px; }

.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.practice-card { min-height: 440px; display: flex; flex-direction: column; padding: 38px; background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.practice-card:hover { position: relative; z-index: 2; transform: translateY(-7px); box-shadow: var(--shadow); }
.practice-card--featured { color: var(--white); background: var(--navy-800); }
.practice-card__top { display: flex; justify-content: space-between; margin-bottom: 88px; color: #8292a0; font-size: 11px; font-weight: 800; }
.practice-card--featured .practice-card__top { color: var(--blue-200); }
.practice-card h3 { margin-bottom: 20px; color: var(--navy-900); font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.15; }
.practice-card--featured h3 { color: var(--white); }
.practice-card p { margin-bottom: 30px; color: var(--muted); font-size: 14px; }
.practice-card--featured p { color: rgba(255,255,255,.7); }
.practice-card a { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--navy-800); font-size: 12px; font-weight: 750; }
.practice-card a span { float: right; }
.practice-card--featured a { color: var(--white); border-color: rgba(255,255,255,.2); }

.process-intro > p:not(.eyebrow) { max-width: 420px; margin-bottom: 36px; color: rgba(255,255,255,.7); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.17); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.process-list > li > span { color: var(--blue-200); font-size: 11px; font-weight: 800; }
.process-list h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.process-list p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { min-width: 0; background: var(--white); border: 1px solid var(--line); }
.post-card__media { aspect-ratio: 16 / 10; display: block; overflow: hidden; background: var(--navy-800); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__media img { transform: scale(1.035); }
.post-card__placeholder { height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.16); font-family: var(--serif); font-size: 80px; letter-spacing: .1em; }
.post-card__body { padding: 28px; }
.post-card__meta { margin-bottom: 13px; color: #73828e; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.post-card h2, .post-card h3 { margin-bottom: 22px; color: var(--navy-900); font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.24; }
.post-card__body > p:not(.post-card__meta) { color: var(--muted); font-size: 14px; }

.empty-state { padding: 58px; background: var(--blue-050); border-left: 3px solid var(--navy-700); }
.empty-state > span { color: var(--navy-700); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.empty-state h2, .empty-state h3 { margin: 12px 0; color: var(--navy-900); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.empty-state p { max-width: 690px; margin-bottom: 0; color: var(--muted); }
.empty-state--large { padding: clamp(60px, 10vw, 110px); text-align: center; border-left: 0; }
.empty-state--large p { margin-inline: auto; margin-bottom: 28px; }

.faq-intro { position: sticky; top: 140px; align-self: start; }
.faq-intro > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span,
.faq-list summary span::after { position: absolute; right: 5px; top: 50%; width: 16px; height: 1px; content: ''; background: var(--navy-700); transition: transform .2s ease; }
.faq-list summary span::after { right: 0; top: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -7px 45px 28px 0; color: var(--muted); font-size: 14px; }

.cta-band { padding-block: 82px; color: var(--white); background: var(--navy-950); }
.cta-band__inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(36px, 4.3vw, 57px); font-weight: 400; line-height: 1.08; }

.page-hero { padding-block: clamp(85px, 10vw, 135px); color: var(--white); background: var(--navy-900); }
.page-hero--compact { padding-block: clamp(70px, 8vw, 110px); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 90px; align-items: end; }
.page-hero h1 { max-width: 850px; margin-bottom: 0; font-family: var(--serif); font-size: clamp(49px, 5.8vw, 76px); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.page-hero__grid > p { margin: 0 0 8px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--line); gap: 1px; }
.value-grid article { min-height: 290px; padding: 33px; background: var(--white); }
.value-grid span { color: #84929d; font-size: 10px; font-weight: 800; }
.value-grid h3 { margin: 72px 0 13px; color: var(--navy-900); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.value-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.manifesto-card { padding: clamp(45px, 6vw, 70px); color: var(--white); background: var(--navy-800); box-shadow: var(--shadow); }
.manifesto-card p { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(29px, 3.3vw, 43px); line-height: 1.24; }
.manifesto-card span { color: var(--blue-200); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.services-intro { padding-bottom: 80px; }
.services-stack { margin-bottom: clamp(90px, 11vw, 150px); border-top: 1px solid var(--line); }
.service-detail { display: grid; grid-template-columns: 80px minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(30px, 6vw, 80px); padding-block: 70px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.service-detail__number { color: #8595a2; font-size: 11px; font-weight: 800; }
.service-detail__heading h2 { margin-bottom: 20px; color: var(--navy-900); font-family: var(--serif); font-size: clamp(38px, 4.2vw, 55px); font-weight: 400; line-height: 1.05; }
.service-detail__heading > p:last-child { max-width: 510px; color: var(--muted); }
.service-detail__items ul { margin: 0 0 28px; padding: 0; list-style: none; }
.service-detail__items li { padding: 11px 0; border-bottom: 1px solid var(--line); color: #344657; font-size: 14px; }
.service-detail__items li::before { margin-right: 12px; content: '—'; color: var(--navy-700); }
.split--service-note { align-items: center; }

.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(60px, 9vw, 115px); align-items: start; }
.contact-panel { position: sticky; top: 130px; padding: clamp(42px, 5.5vw, 68px); color: var(--white); background: var(--navy-800); box-shadow: var(--shadow); }
.contact-panel h2 { margin-bottom: 25px; font-family: var(--serif); font-size: clamp(38px, 4vw, 52px); font-weight: 400; }
.contact-panel > p:not(.eyebrow) { margin-bottom: 32px; color: rgba(255,255,255,.7); }
.contact-steps { margin: 38px 0 0; padding: 0; list-style: none; }
.contact-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding-block: 25px; border-top: 1px solid var(--line); }
.contact-steps > li > span { color: #81909c; font-size: 10px; font-weight: 800; }
.contact-steps h3 { margin-bottom: 6px; color: var(--navy-900); font-family: var(--serif); font-size: 23px; font-weight: 400; }
.contact-steps p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-details-card { margin-top: 30px; padding: 6px 25px; background: var(--blue-050); }
.contact-details-card > div { padding-block: 18px; border-bottom: 1px solid var(--line); }
.contact-details-card > div:last-child { border-bottom: 0; }
.contact-details-card span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.contact-details-card a { color: var(--navy-800); font-weight: 700; word-break: break-word; }
.contact-details-card a:hover { color: var(--navy-950); text-decoration: underline; text-underline-offset: 3px; }

.post-grid--archive { row-gap: 42px; }
.single-post__header { padding-block: 92px; color: var(--white); background: var(--navy-900); }
.single-post__header h1 { margin-bottom: 22px; font-family: var(--serif); font-size: clamp(46px, 5.7vw, 73px); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.single-post__meta { color: var(--blue-200); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.single-post__image { margin-top: 70px; }
.single-post__image img { width: 100%; }
.article-content { color: #374857; font-size: 18px; line-height: 1.85; }
.article-content h2, .article-content h3 { margin: 1.8em 0 .6em; color: var(--navy-900); font-family: var(--serif); font-weight: 400; line-height: 1.2; }
.article-content h2 { font-size: 39px; }
.article-content h3 { font-size: 29px; }
.article-content a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote { margin: 2.2em 0; padding: 25px 35px; color: var(--navy-800); background: var(--blue-050); border-left: 3px solid var(--navy-700); font-family: var(--serif); font-size: 25px; }

.not-found { min-height: 70vh; display: grid; align-items: center; padding-block: 100px; color: var(--white); background: var(--navy-900); }
.not-found h1 { margin-bottom: 20px; font-family: var(--serif); font-size: clamp(50px, 6vw, 78px); font-weight: 400; line-height: 1; }
.not-found p:not(.eyebrow) { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: 18px; }

.site-footer { padding-top: 78px; color: rgba(255,255,255,.68); background: #071521; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr .7fr 1fr; gap: 75px; padding-bottom: 65px; }
.brand--footer .brand__copy { color: var(--white); }
.brand--footer .brand__copy small { color: rgba(255,255,255,.48); }
.site-footer__brand > p { max-width: 390px; margin: 25px 0 0; font-size: 14px; }
.site-footer__title { margin-bottom: 22px; color: var(--white); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__nav, .site-footer__contact { display: grid; gap: 12px; font-size: 14px; }
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 40px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom p { max-width: 630px; margin: 0; font-size: 10px; line-height: 1.6; }

.whatsapp-float {
  position: fixed;
  right: 96px;
  bottom: 24px;
  z-index: 80;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px 12px 13px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(8, 26, 44, .28);
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(8, 26, 44, .36); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }

@media (max-width: 1060px) {
  :root { --header-height: 78px; }
  .site-header__inner { min-height: var(--header-height); }
  .menu-toggle { position: relative; z-index: 102; width: 44px; height: 44px; display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 101;
    height: calc(100vh - var(--header-height));
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 20px;
    padding: 40px max(24px, calc((100vw - 1160px) / 2));
    color: var(--white);
    background: #0d2238;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.button) { color: var(--white); font-family: var(--serif); font-size: clamp(29px, 5vw, 42px); font-weight: 400; }
  .site-nav__cta { margin-top: 15px; color: var(--navy-900); background: var(--white); border-color: var(--white); }
  .hero__grid { grid-template-columns: 1fr; gap: 75px; align-items: start; }
  .hero__statement { max-width: 520px; }
  .practice-card { padding: 30px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .shell, .shell--narrow { width: min(100% - 34px, 1160px); }
  .brand__mark { width: 50px; height: 50px; }
  .brand__copy strong { font-size: 16px; }
  .brand__copy small { font-size: 8px; }
  .hero__grid { padding-block: 74px 70px; }
  .hero h1 { font-size: clamp(45px, 12.6vw, 67px); }
  .hero__lead { font-size: 16px; }
  .hero__ticker-inner { justify-content: center; flex-wrap: wrap; padding-block: 18px; }
  .hero__ticker i { display: none; }
  .hero__ticker span { width: 100%; text-align: center; }
  .split, .split--story, .split--process, .split--faq, .page-hero__grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 45px; }
  .section-heading--inline .text-link { justify-self: start; margin-bottom: 0; }
  .practice-grid, .post-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: auto; }
  .practice-card__top { margin-bottom: 55px; }
  .process-intro .button { margin-bottom: 10px; }
  .faq-intro, .contact-panel { position: static; }
  .cta-band__inner { align-items: start; flex-direction: column; }
  .page-hero__grid { gap: 35px; }
  .page-hero h1 { font-size: clamp(45px, 12vw, 66px); }
  .service-detail { grid-template-columns: 45px 1fr; gap: 25px; }
  .service-detail__items { grid-column: 2; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 55px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 520px) {
  .section { padding-block: 76px; }
  .brand__copy small { display: none; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__statement { padding-left: 24px; }
  .section-title { font-size: 39px; }
  .practice-card { padding: 27px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 240px; }
  .value-grid h3 { margin-top: 45px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__number, .service-detail__items { grid-column: 1; }
  .contact-panel { padding: 36px 27px; }
  .empty-state { padding: 38px 27px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: 1; }
  .whatsapp-float { right: 80px; bottom: 16px; width: 55px; height: 55px; justify-content: center; padding: 0; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
