:root {
  --navy-950: #081523;
  --navy-900: #0b1b2b;
  --navy-850: #10243a;
  --navy-700: #1b3a59;
  --gold-500: #b59662;
  --gold-300: #d4c19a;
  --paper: #f5f3ee;
  --paper-2: #ece9e1;
  --white: #ffffff;
  --ink: #1d242c;
  --muted: #67717b;
  --line: rgba(15, 31, 48, .12);
  --shadow: 0 24px 70px rgba(8, 21, 35, .12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  left: 12px;
  top: 12px;
  background: var(--white);
  color: var(--navy-950);
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8, 21, 35, .07);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 34px rgba(8, 21, 35, .08); }
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-950);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(181, 150, 98, .55);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-500);
}
.brand-text strong { display: block; font-family: var(--serif); font-size: 17px; line-height: 1.05; font-weight: 600; }
.brand-text small { display: block; margin-top: 3px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.custom-logo-link img { max-height: 50px; width: auto; }

.primary-nav { justify-self: end; }
.primary-nav .menu, .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav a {
  text-decoration: none;
  color: #263443;
  font-size: 14px;
  font-weight: 600;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-500); }
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  list-style: none;
  min-width: 220px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
}
.primary-nav li { position: relative; }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { display: block; }
.primary-nav .sub-menu a { display: block; padding: 10px 12px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--navy-900);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.header-cta:hover, .header-cta:focus-visible { background: var(--gold-500); color: var(--navy-950); }

.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; }
.menu-toggle-line { display: block; height: 2px; background: var(--navy-900); margin: 5px 0; }

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  color: var(--white);
  padding: 84px 0 70px;
}
.hero-orb { position: absolute; border-radius: 999px; pointer-events: none; filter: blur(4px); }
.hero-orb-one { width: 360px; height: 360px; top: -120px; right: 8%; background: radial-gradient(circle, rgba(181,150,98,.19), rgba(181,150,98,0) 72%); }
.hero-orb-two { width: 420px; height: 420px; bottom: -250px; left: 20%; background: radial-gradient(circle, rgba(255,255,255,.07), rgba(255,255,255,0) 72%); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 72px;
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker.is-light { color: var(--gold-300); }
.hero-copy h1,
.inner-hero h1,
.article-hero h1,
.error-inner h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}
.hero-copy h1 { max-width: 760px; font-size: clamp(48px, 6vw, 78px); color: var(--white); }
.hero-lead { max-width: 690px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-500); color: var(--navy-950); }
.button-primary:hover { background: #c1a572; }
.button-ghost { border-color: rgba(255,255,255,.25); color: var(--white); background: transparent; }
.button-ghost:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.05); }
.button-light { background: var(--white); color: var(--navy-950); }
.button-light:hover { background: var(--gold-300); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 36px; color: rgba(255,255,255,.68); font-size: 12px; }
.hero-trust span { position: relative; padding-left: 14px; }
.hero-trust span::before { content: ''; position: absolute; left: 0; top: .7em; width: 4px; height: 4px; background: var(--gold-500); border-radius: 50%; }

.hero-media {
  position: relative;
  min-height: 565px;
  background: linear-gradient(145deg, #20384e, #13273b);
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,21,35,.82), rgba(8,21,35,.05) 55%);
}
.hero-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 8px; padding: 40px; color: rgba(255,255,255,.68); }
.hero-placeholder span { color: var(--gold-300); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.hero-placeholder strong { color: var(--white); font-family: var(--serif); font-size: 30px; font-weight: 500; }
.hero-placeholder small { max-width: 280px; }
.hero-media-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; color: var(--white); }
.hero-media-caption strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.hero-media-caption span { display: block; margin-top: 5px; color: rgba(255,255,255,.7); font-size: 13px; }

.signal-section { background: var(--paper); border-bottom: 1px solid var(--line); padding: 34px 0; }
.signal-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; }
.signal-grid h2 { margin: 0; font-family: var(--serif); color: var(--navy-900); font-size: clamp(27px, 3vw, 39px); font-weight: 500; line-height: 1.15; }
.signal-grid p { margin: 0; color: var(--muted); }

.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.is-split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section-heading h2, .office-panel h2, .investigation-grid h2, .reviews-grid h2, .contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--navy-900);
}
.section-heading p, .section-heading.is-split > p { margin: 15px 0 0; color: var(--muted); font-size: 17px; }

.situations-section { background: var(--white); }
.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.situation-card {
  min-height: 255px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  background: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.situation-card:hover { background: var(--paper); transform: translateY(-2px); }
.situation-card.is-featured { background: var(--navy-900); color: var(--white); }
.situation-card.is-featured:hover { background: var(--navy-850); }
.situation-card > span { color: var(--gold-500); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.situation-card strong { margin-top: auto; font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.16; }
.situation-card small { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.situation-card.is-featured small { color: rgba(255,255,255,.66); }

.office-section { background: var(--paper); }
.office-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 80px; align-items: center; }
.office-panel p { max-width: 720px; color: var(--muted); font-size: 17px; }
.office-proof { background: var(--navy-900); color: var(--white); padding: 44px; min-height: 390px; display: flex; flex-direction: column; justify-content: center; }
.proof-label { color: var(--gold-300); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.office-proof strong { font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.14; }
.office-proof ul { margin: 28px 0 0; padding-left: 18px; color: rgba(255,255,255,.72); }
.office-proof li + li { margin-top: 10px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy-900); text-decoration: none; font-weight: 800; font-size: 14px; }
.text-link span { color: var(--gold-500); }
.text-link:hover { color: var(--gold-500); }

.areas-section { background: var(--white); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card { padding: 30px; border: 1px solid var(--line); text-decoration: none; min-height: 275px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(8,21,35,.08); border-color: rgba(181,150,98,.48); }
.area-card-top { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.area-dot { width: 7px; height: 7px; background: var(--gold-500); border-radius: 50%; }
.area-card h3 { margin: auto 0 10px; color: var(--navy-900); font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.15; }
.area-card p { margin: 0; color: var(--muted); font-size: 14px; }
.area-arrow { margin-top: 20px; color: var(--navy-900); font-size: 13px; font-weight: 800; }
.area-arrow b { color: var(--gold-500); font-size: 16px; }

.investigation-section { background: linear-gradient(135deg, var(--navy-950), var(--navy-850)); color: var(--white); }
.investigation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.investigation-grid h2 { color: var(--white); }
.investigation-grid p { margin-top: 0; color: rgba(255,255,255,.7); font-size: 17px; }
.investigation-grid .button { margin-top: 16px; }

.process-section { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(15,31,48,.12); border: 1px solid rgba(15,31,48,.12); }
.process-grid article { background: var(--paper); padding: 30px; min-height: 230px; }
.process-grid article > span { color: var(--gold-500); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 44px 0 10px; font-family: var(--serif); color: var(--navy-900); font-size: 25px; font-weight: 500; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.reviews-grid p { color: var(--muted); }
.review-placeholder { background: var(--paper); padding: 48px; border-left: 3px solid var(--gold-500); }
.stars { color: var(--gold-500); letter-spacing: .14em; font-size: 17px; }
.review-placeholder blockquote { margin: 28px 0 20px; font-family: var(--serif); font-size: 28px; line-height: 1.35; color: var(--navy-900); }
.review-placeholder > span { color: var(--muted); font-size: 13px; }

.content-section { background: var(--paper); }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: var(--white); padding: 30px; border: 1px solid var(--line); min-height: 310px; display: flex; flex-direction: column; }
.post-meta { color: var(--gold-500); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card h2, .post-card h3 { margin: 40px 0 12px; font-family: var(--serif); color: var(--navy-900); font-size: 27px; font-weight: 500; line-height: 1.2; }
.post-card h2 a, .post-card h3 a { text-decoration: none; }
.post-card p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.post-card .text-link { margin-top: auto; }

.contact-section { padding: 88px 0; background: var(--navy-900); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.contact-section h2 { color: var(--white); }
.contact-section p { color: rgba(255,255,255,.7); font-size: 17px; }
.contact-details { border-top: 1px solid rgba(255,255,255,.16); }
.contact-details > div { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-details span { color: var(--gold-300); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.contact-details strong { font-weight: 600; }

.site-footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding: 62px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .9fr .7fr; gap: 70px; }
.footer-brand { margin: 0; color: var(--white); font-family: var(--serif); font-size: 27px; }
.footer-copy { max-width: 410px; color: rgba(255,255,255,.58); }
.footer-meta { color: var(--gold-300); }
.footer-heading { color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--gold-300); }
.footer-menu li + li { margin-top: 8px; }
.footer-bottom { margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: rgba(255,255,255,.46); }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(8,21,35,.13);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.floating-whatsapp > span:first-child { color: var(--gold-500); }

.inner-main { background: var(--white); }
.inner-hero, .article-hero { background: linear-gradient(135deg, var(--navy-950), var(--navy-850)); color: var(--white); padding: 82px 0; }
.inner-hero.compact { padding: 64px 0; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: center; }
.inner-hero h1, .article-hero h1 { font-size: clamp(44px, 5vw, 68px); color: var(--white); }
.inner-hero p, .archive-description { color: rgba(255,255,255,.7); font-size: 18px; max-width: 720px; }
.inner-hero-image img { width: 100%; max-height: 420px; object-fit: cover; }
.article-hero-inner { max-width: 900px; }
.article-meta { color: rgba(255,255,255,.58); margin-top: 20px; }
.article-featured { margin-top: -34px; position: relative; z-index: 2; }
.article-featured img { width: 100%; max-height: 590px; object-fit: cover; box-shadow: var(--shadow); }
.prose-content { max-width: 850px; }
.prose-content > *:first-child { margin-top: 0; }
.prose-content h2, .prose-content h3 { font-family: var(--serif); color: var(--navy-900); font-weight: 500; line-height: 1.2; }
.prose-content h2 { margin-top: 48px; font-size: 38px; }
.prose-content h3 { margin-top: 34px; font-size: 28px; }
.prose-content p, .prose-content li { color: #36414b; font-size: 17px; }
.prose-content a { color: var(--navy-700); text-decoration-color: var(--gold-500); }
.prose-content blockquote { margin: 36px 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--gold-500); color: var(--navy-900); font-family: var(--serif); font-size: 25px; }
.pagination-wrap { margin-top: 32px; }

.error-page { min-height: 70vh; display: grid; place-items: center; background: var(--paper); }
.error-inner { padding: 80px 0; max-width: 720px; }
.error-inner h1 { font-size: clamp(48px, 6vw, 76px); color: var(--navy-900); }
.error-inner p { color: var(--muted); font-size: 18px; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: auto auto 1fr; gap: 18px; }
  .menu-toggle { display: block; justify-self: end; grid-column: 3; }
  .primary-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--line); padding: 20px; box-shadow: 0 20px 40px rgba(8,21,35,.1); }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu { display: block; }
  .primary-nav .menu > li + li { border-top: 1px solid var(--line); }
  .primary-nav a { display: block; padding: 13px 4px; }
  .primary-nav .sub-menu { display: block; position: static; box-shadow: none; padding: 0 0 8px 14px; }
  .header-cta { display: none; }
  .hero-grid, .office-grid, .investigation-grid, .reviews-grid, .contact-grid { gap: 48px; }
  .hero-grid { grid-template-columns: 1fr .82fr; }
  .area-grid, .situation-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .primary-nav { top: 68px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { display: none; }
  .hero-section { padding: 60px 0 32px; }
  .hero-grid,
  .signal-grid,
  .office-grid,
  .investigation-grid,
  .reviews-grid,
  .contact-grid,
  .inner-hero-grid,
  .section-heading.is-split,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-media { min-height: 430px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-trust { display: grid; gap: 8px; }
  .signal-grid { gap: 14px; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading.is-split { gap: 14px; }
  .situation-grid, .area-grid, .posts-grid, .process-grid { grid-template-columns: 1fr; }
  .situation-card { min-height: 220px; }
  .office-proof { padding: 30px; min-height: 0; }
  .investigation-grid { gap: 28px; }
  .process-grid article { min-height: 190px; }
  .review-placeholder { padding: 30px; }
  .review-placeholder blockquote { font-size: 24px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { gap: 30px; }
  .footer-bottom { display: grid; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
  .floating-whatsapp span:last-child { display: none; }
  .inner-hero, .article-hero { padding: 58px 0; }
}

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

.junkes-contact-form { display: grid; gap: 18px; }
.junkes-contact-form p { margin: 0; }
.junkes-contact-form label { display: block; color: var(--navy-900); font-size: 14px; font-weight: 700; }
.junkes-contact-form input[type='text'],
.junkes-contact-form input[type='email'],
.junkes-contact-form input[type='tel'],
.junkes-contact-form textarea,
.junkes-contact-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
}
.junkes-contact-form input:focus,
.junkes-contact-form textarea:focus,
.junkes-contact-form select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(181,150,98,.15);
}
.junkes-contact-form button {
  border: 0;
  background: var(--navy-900);
  color: var(--white);
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}
.junkes-contact-form button:hover { background: var(--gold-500); color: var(--navy-950); }
.junkes-contact-form small { color: var(--muted); font-weight: 400; }
.junkes-form-notice { padding: 14px 16px; border-left: 3px solid var(--gold-500); background: var(--paper); }

/* =========================================================
   Junkes Advocacia v0.2 — visual real / editorial
   ========================================================= */

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  width: 150px;
  height: auto;
}
.header-inner {
  grid-template-columns: auto 1fr auto;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  color: var(--navy-900);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-500); }

.hero-v2 {
  padding-top: 74px;
  padding-bottom: 0;
}
.hero-v2 .hero-grid {
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 74px;
}
.hero-v2 .hero-copy {
  padding-bottom: 78px;
}
.hero-v2 .hero-copy h1 {
  max-width: 690px;
}
.hero-location {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
}
.hero-since {
  margin: 28px 0 0;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-photo {
  min-height: 650px;
  border: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}
.hero-photo::after { display: none; }
.hero-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.9) contrast(1.02);
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-strip-grid > div {
  min-height: 104px;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.trust-strip-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-strip-grid strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.trust-strip-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.compact-heading { max-width: 840px; }
.situation-card em {
  margin-top: 20px;
  color: var(--navy-900);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.situation-card.is-featured em { color: var(--gold-300); }

.office-v2 { padding: 0; }
.office-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}
.office-image-wrap {
  margin: 0;
  min-height: 760px;
  overflow: hidden;
}
.office-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}
.office-v2 .office-panel {
  padding: 96px 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.office-v2 .office-panel h2 { max-width: 580px; }
.office-v2 .office-panel p { max-width: 610px; }
.office-v2 .text-link { margin-top: 12px; }

.investigation-v2 .investigation-grid {
  align-items: start;
}
.investigation-v2 .investigation-grid h2 {
  max-width: 530px;
}
.investigation-copy > p { max-width: 710px; }
.investigation-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 34px 0 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}
.investigation-points > div {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.investigation-points strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}
.investigation-points span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.55;
}

.lawyer-section { background: var(--white); padding-bottom: 0; }
.lawyer-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 86px;
  align-items: end;
}
.lawyer-copy { padding-bottom: 92px; }
.lawyer-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.lawyer-meta {
  margin: 14px 0 28px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lawyer-copy > p:not(.lawyer-meta) {
  color: var(--muted);
  font-size: 16px;
}
.lawyer-photo {
  margin: 0;
  min-height: 710px;
  overflow: hidden;
  background: #2b201d;
}
.lawyer-photo img {
  width: 100%;
  height: 710px;
  object-fit: cover;
  object-position: center 20%;
}

.office-gallery-section {
  padding: 92px 0;
  background: var(--paper);
}
.office-gallery-heading {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: end;
}
.office-gallery-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.025em;
}
.office-gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.office-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}
.office-gallery figure {
  margin: 0;
  overflow: hidden;
  min-height: 440px;
  background: var(--navy-900);
}
.office-gallery figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .45s ease;
}
.office-gallery figure:hover img { transform: scale(1.02); }
.office-gallery .gallery-tall img { object-position: center 28%; }

.reviews-v2 { background: var(--white); }
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  min-height: 320px;
  padding: 32px;
  background: var(--paper);
  border-top: 3px solid var(--gold-500);
  display: flex;
  flex-direction: column;
}
.review-card blockquote {
  margin: 28px 0 34px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
}
.review-card blockquote p { margin: 0; }
.review-card footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}
.review-card footer strong {
  color: var(--navy-900);
  font-size: 13px;
}
.review-card footer span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.content-cta { margin-top: 28px; }

.contact-v2 { padding: 92px 0 0; }
.contact-intro-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}
.contact-v2 .contact-details { margin-top: 30px; }
.contact-v2 .contact-details a { color: inherit; text-decoration: none; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.contact-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.contact-form-panel {
  margin-top: 76px;
  padding: 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  background: var(--paper);
  color: var(--ink);
}
.contact-form-copy {
  padding: 48px;
  background: var(--paper-2);
}
.contact-form-copy h3 {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}
.contact-form-copy p { color: var(--muted); font-size: 14px; }
.contact-form-box { padding: 48px; }
.contact-form-box .junkes-contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-form-box .junkes-contact-form p:nth-of-type(5),
.contact-form-box .junkes-contact-form p:nth-of-type(6),
.contact-form-box .junkes-contact-form p:nth-of-type(7),
.contact-form-box .junkes-contact-form p:nth-of-type(8) { grid-column: 1 / -1; }
.contact-form-box .junkes-contact-form p:last-child { grid-column: 1 / -1; }

.security-note-section {
  background: var(--white);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.security-note {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.security-note h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}
.security-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid-v2 {
  grid-template-columns: 1.35fr .72fr .9fr 1fr;
  gap: 54px;
}
.footer-logo {
  display: inline-block;
  max-width: 190px;
}
.footer-logo img {
  width: 190px;
  height: auto;
  filter: invert(1);
  opacity: .92;
}
.footer-static-menu { list-style: none; padding: 0; margin: 0; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-bottom { margin-top: 18px; }

@media (max-width: 1120px) {
  .header-phone { display: none; }
  .hero-v2 .hero-grid { grid-template-columns: 1fr .82fr; gap: 46px; }
  .office-v2 .office-panel { padding: 72px 48px; }
  .lawyer-grid { gap: 50px; }
  .footer-grid-v2 { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid-v2 > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { grid-column: auto; }
  .header-contact { display: none; }
  .hero-v2 .hero-grid,
  .office-visual-grid,
  .lawyer-grid,
  .contact-intro-grid,
  .contact-form-panel,
  .office-gallery-heading,
  .security-note { grid-template-columns: 1fr; }
  .hero-v2 .hero-copy { padding-bottom: 12px; }
  .hero-photo { min-height: 570px; max-width: 600px; }
  .hero-photo img { height: 570px; }
  .office-image-wrap, .office-image-wrap img { min-height: 620px; }
  .office-v2 .office-panel { padding: 70px 0 82px; }
  .lawyer-copy { padding-bottom: 0; }
  .lawyer-photo { min-height: 650px; max-width: 650px; }
  .lawyer-photo img { height: 650px; }
  .review-cards { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1 / -1; }
  .office-gallery { grid-template-columns: 1.15fr 1fr; }
  .office-gallery figure:last-child { grid-column: 1 / -1; }
  .contact-form-panel { margin-top: 60px; }
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; }
  .footer-grid-v2 > div:last-child { grid-column: auto; }
}

@media (max-width: 760px) {
  .brand-logo img { width: 116px; }
  .hero-v2 { padding-top: 50px; }
  .hero-v2 .hero-copy { padding-bottom: 0; }
  .hero-photo { min-height: 485px; }
  .hero-photo img { height: 485px; object-position: center 16%; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-grid > div { min-height: 82px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip-grid strong { font-size: 20px; }
  .office-image-wrap, .office-image-wrap img { min-height: 520px; }
  .office-v2 .office-panel { padding: 62px 0 70px; }
  .investigation-points { grid-template-columns: 1fr; }
  .lawyer-section { padding-top: 68px; }
  .lawyer-photo { min-height: 540px; }
  .lawyer-photo img { height: 540px; }
  .office-gallery-section { padding: 68px 0; }
  .office-gallery-heading { gap: 16px; }
  .office-gallery { grid-template-columns: 1fr; }
  .office-gallery figure,
  .office-gallery figure img { height: 390px; min-height: 390px; }
  .office-gallery figure:last-child { grid-column: auto; }
  .review-cards { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; }
  .contact-v2 { padding-top: 68px; }
  .contact-actions { flex-direction: column; }
  .contact-form-panel { margin-top: 48px; }
  .contact-form-copy, .contact-form-box { padding: 28px; }
  .contact-form-box .junkes-contact-form { grid-template-columns: 1fr; }
  .contact-form-box .junkes-contact-form p { grid-column: 1 !important; }
  .security-note { gap: 14px; }
  .footer-grid-v2 { grid-template-columns: 1fr; }
  .footer-grid-v2 > div:last-child { grid-column: auto; }
}

/* =========================================================
   Junkes Advocacia v0.3 — páginas internas e conteúdo
   ========================================================= */

.breadcrumbs { margin-bottom: 26px; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.52); font-size: 12px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,.28); }
.breadcrumbs a { color: rgba(255,255,255,.72); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-300); }

.inner-hero-note,
.area-hero-summary,
.problem-urgency-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
}
.inner-hero-note > span,
.area-hero-summary > span,
.problem-urgency-card > span {
  display: block;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
}
.inner-hero-note p,
.area-hero-summary p,
.problem-urgency-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; }

.inner-contact-cta { background: linear-gradient(135deg, var(--navy-950), var(--navy-850)); color: var(--white); padding: 68px 0; }
.inner-contact-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.inner-contact-cta h2 { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.08; }
.inner-contact-cta p { max-width: 740px; color: rgba(255,255,255,.7); font-size: 17px; }
.inner-contact-cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }

/* O Escritório */
.inner-hero-office { padding-bottom: 72px; }
.inner-hero-grid-office { grid-template-columns: 1fr .72fr; }
.office-hero-photo { margin: 0; box-shadow: 0 26px 70px rgba(0,0,0,.24); }
.office-hero-photo img { min-height: 470px; object-position: center 54%; }
.office-story-section { background: var(--paper); }
.office-story-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: 90px; align-items: start; }
.office-story-copy h2,
.lawyer-profile-inner h2,
.office-location-grid h2,
.contact-channel-panel h2,
.contact-form-panel h2,
.contact-security-grid h2,
.extrajudicial-grid h2 {
  margin: 0 0 24px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.025em;
}
.office-story-copy p,
.lawyer-profile-copy p,
.office-location-grid p { color: #3d4750; font-size: 17px; }
.office-facts-card { background: var(--navy-900); color: var(--white); padding: 34px; position: sticky; top: 110px; }
.office-facts-label { display: block; color: var(--gold-300); font-family: var(--serif); font-size: 24px; line-height: 1.2; margin-bottom: 26px; }
.office-facts-card dl { margin: 0; }
.office-facts-card dl > div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); }
.office-facts-card dt { color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .11em; font-size: 10px; }
.office-facts-card dd { margin: 5px 0 0; color: rgba(255,255,255,.9); font-size: 14px; }
.lawyer-profile-section { background: var(--white); }
.lawyer-profile-inner { grid-template-columns: .78fr 1.02fr; gap: 92px; }
.lawyer-profile-inner .lawyer-photo-wrap { min-height: 640px; }
.lawyer-profile-inner .lawyer-photo-wrap img { height: 100%; object-fit: cover; object-position: center 26%; }
.office-gallery-inner { grid-template-columns: 1.05fr 1fr .82fr; }
.office-gallery-inner figure { min-height: 440px; }
.office-gallery-inner img { height: 100%; object-fit: cover; }
.office-location-section { background: var(--paper); }
.office-location-grid { display: grid; grid-template-columns: 1.05fr .65fr; gap: 90px; align-items: center; }
.office-address-line { padding-top: 18px; border-top: 1px solid var(--line); color: var(--navy-900) !important; font-weight: 700; }
.official-channels-card { background: var(--white); border: 1px solid var(--line); padding: 34px; }
.official-channels-icon { display: grid; place-items: center; width: 40px; height: 40px; background: var(--navy-900); color: var(--gold-300); border-radius: 50%; margin-bottom: 28px; }
.official-channels-card h3 { font-family: var(--serif); color: var(--navy-900); font-size: 29px; font-weight: 500; margin: 0 0 12px; }
.official-channels-card p { color: var(--muted); }

/* Áreas */
.areas-index-hero .inner-hero-grid { grid-template-columns: 1fr .7fr; }
.area-grid-directory { grid-template-columns: repeat(3, 1fr); }
.situation-path-section { background: var(--paper); }
.situation-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.situation-path-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); text-decoration: none; transition: background .18s ease, transform .18s ease; }
.situation-path-card:hover { background: #fbfaf7; transform: translateY(-2px); }
.situation-path-card strong { color: var(--navy-900); font-family: var(--serif); font-size: 24px; line-height: 1.18; font-weight: 500; }
.situation-path-card span { display: block; margin-top: 13px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.situation-path-card em { margin-top: auto; padding-top: 24px; color: var(--gold-500); font-style: normal; font-size: 12px; font-weight: 800; }
.extrajudicial-section { background: var(--navy-900); color: var(--white); }
.extrajudicial-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.extrajudicial-grid h2 { color: var(--white); }
.extrajudicial-grid p { color: rgba(255,255,255,.7); font-size: 17px; }

/* Single de área e situação */
.area-single-hero-grid,
.problem-hero-grid { display: grid; grid-template-columns: 1fr .56fr; gap: 90px; align-items: end; }
.area-single-hero h1,
.problem-single-hero h1 { font-size: clamp(44px, 5.5vw, 72px); }
.area-single-hero p,
.problem-single-hero p { max-width: 760px; }
.area-content-section,
.problem-content-section { background: var(--white); }
.area-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 80px; align-items: start; }
.area-prose { margin: 0; }
.area-side-card { position: sticky; top: 110px; background: var(--paper); border-top: 3px solid var(--gold-500); padding: 30px; }
.area-side-card h2 { margin: 0 0 14px; color: var(--navy-900); font-family: var(--serif); font-size: 29px; line-height: 1.16; font-weight: 500; }
.area-side-card p { color: var(--muted); font-size: 14px; }
.area-side-card .button { width: 100%; margin-top: 14px; }
.area-side-card .text-link { margin-top: 20px; display: inline-flex; }
.related-problems-section { background: var(--paper); }
.process-section-inner { border-top: 1px solid var(--line); }

/* Conteúdo */
.content-index-intro { max-width: 900px; }
.content-index-intro h1 { font-size: clamp(44px, 5vw, 68px); color: var(--white); font-family: var(--serif); font-weight: 500; line-height: 1.04; margin: 0; }
.content-index-intro p { color: rgba(255,255,255,.7); font-size: 18px; max-width: 780px; }
.posts-grid-archive { grid-template-columns: repeat(3, 1fr); }
.post-card-archive h2 { font-size: 29px; margin-top: 32px; }
.empty-content-state { padding: 70px; background: var(--paper); text-align: center; }
.empty-content-state h2 { font-family: var(--serif); color: var(--navy-900); font-size: 38px; font-weight: 500; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 80px; align-items: start; }
.article-disclaimer { position: sticky; top: 110px; padding: 26px; background: var(--paper); border-top: 3px solid var(--gold-500); }
.article-disclaimer h2 { margin: 0 0 10px; font-family: var(--serif); color: var(--navy-900); font-size: 28px; font-weight: 500; }
.article-disclaimer p { color: var(--muted); font-size: 13px; }
.article-hero .breadcrumbs { margin-bottom: 34px; }

/* Contato */
.contact-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-channel-panel { background: var(--paper); padding: 38px; position: sticky; top: 110px; }
.contact-channel-list { margin-top: 30px; border-top: 1px solid var(--line); }
.contact-channel-list > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-channel-list span { display: block; margin-bottom: 4px; color: var(--gold-500); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; }
.contact-channel-list a,
.contact-channel-list p { margin: 0; color: var(--navy-900); text-decoration: none; font-size: 15px; }
.contact-channel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.button-dark-outline { border-color: rgba(8,21,35,.2); color: var(--navy-900); }
.contact-form-panel { padding: 6px 0; }
.contact-form-panel > p { color: var(--muted); }
.contact-security-section { background: var(--navy-900); color: var(--white); }
.contact-security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-security-grid h2 { color: var(--white); }
.contact-security-grid p { color: rgba(255,255,255,.68); }
.security-checklist { display: grid; gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.security-checklist span { display: block; padding: 18px 20px; background: var(--navy-900); color: rgba(255,255,255,.78); font-size: 14px; }
.security-checklist span::first-letter { color: var(--gold-300); }

/* Legal */
.legal-hero h1 { max-width: 920px; }
.legal-prose { max-width: 900px; }
.legal-prose h2:first-child { margin-top: 0; }

@media (max-width: 1040px) {
  .office-story-grid,
  .office-location-grid,
  .area-single-hero-grid,
  .problem-hero-grid,
  .contact-page-grid,
  .contact-security-grid,
  .article-layout { gap: 48px; }
  .area-grid-directory,
  .situation-path-grid,
  .posts-grid-archive { grid-template-columns: repeat(2, 1fr); }
  .area-content-layout { grid-template-columns: 1fr 290px; gap: 44px; }
  .office-gallery-inner { grid-template-columns: 1fr 1fr; }
  .office-gallery-inner figure:last-child { grid-column: 1 / -1; min-height: 340px; }
}

@media (max-width: 760px) {
  .inner-contact-cta-grid,
  .office-story-grid,
  .lawyer-profile-inner,
  .office-location-grid,
  .areas-index-hero .inner-hero-grid,
  .extrajudicial-grid,
  .area-single-hero-grid,
  .problem-hero-grid,
  .area-content-layout,
  .contact-page-grid,
  .contact-security-grid,
  .article-layout { grid-template-columns: 1fr; }
  .inner-contact-cta-grid { gap: 28px; }
  .inner-contact-cta-actions { min-width: 0; }
  .office-facts-card,
  .area-side-card,
  .contact-channel-panel,
  .article-disclaimer { position: static; }
  .office-hero-photo img { min-height: 350px; }
  .lawyer-profile-inner .lawyer-photo-wrap { min-height: 480px; }
  .office-gallery-inner { grid-template-columns: 1fr; }
  .office-gallery-inner figure,
  .office-gallery-inner figure:last-child { grid-column: auto; min-height: 320px; }
  .area-grid-directory,
  .situation-path-grid,
  .posts-grid-archive { grid-template-columns: 1fr; }
  .situation-path-card { min-height: 190px; }
  .contact-channel-panel { padding: 26px; }
  .article-layout { gap: 36px; }
}

/* =========================================================
   Junkes Advocacia v1.0 — tema autocontido e páginas codificadas
   ========================================================= */
.brand-logo-fixed { display:block; width:132px; min-width:132px; }
.brand-logo-fixed img { width:100%; height:auto; max-height:58px; object-fit:contain; }
.footer-logo { width:170px; max-height:90px; object-fit:contain; filter:invert(1); opacity:.82; margin-bottom:22px; }
.footer-lawyer { color:var(--gold-300) !important; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:24px; padding:22px 0 28px; border-top:1px solid rgba(255,255,255,.09); color:rgba(255,255,255,.46); font-size:12px; }
.footer-bottom > div { display:flex; flex-wrap:wrap; gap:18px; }
.footer-bottom a { color:rgba(255,255,255,.56); text-decoration:none; }
.footer-bottom a:hover { color:var(--gold-300); }

.breadcrumbs { display:flex; flex-wrap:wrap; gap:8px; align-items:center; color:rgba(255,255,255,.52); font-size:12px; }
.breadcrumbs a { color:rgba(255,255,255,.72); text-decoration:none; }
.breadcrumbs > span { color:rgba(255,255,255,.32); }

.contact-cta-section { background:linear-gradient(135deg,var(--navy-950),var(--navy-850)); color:var(--white); padding:68px 0; }
.contact-cta-grid { display:grid; grid-template-columns:1fr auto; gap:70px; align-items:center; }
.contact-cta-grid h2 { margin:0; color:var(--white); font-family:var(--serif); font-size:clamp(34px,4vw,52px); font-weight:500; line-height:1.08; }
.contact-cta-grid p { color:rgba(255,255,255,.7); }
.contact-cta-actions { display:flex; flex-direction:column; gap:10px; min-width:215px; }

.office-hero-grid { display:grid; grid-template-columns:1.02fr .72fr; gap:80px; align-items:center; }
.office-hero-grid figure { margin:0; box-shadow:0 26px 70px rgba(0,0,0,.2); overflow:hidden; }
.office-hero-grid figure img { width:100%; height:460px; object-fit:cover; }
.office-story-grid { display:grid; grid-template-columns:1.15fr .65fr; gap:90px; align-items:start; }
.office-story-grid article > h2,
.lawyer-profile-grid h2 { font-family:var(--serif); color:var(--navy-900); font-size:clamp(38px,4.3vw,58px); font-weight:500; line-height:1.08; letter-spacing:-.028em; margin:0 0 24px; }
.office-story-grid article > p,
.lawyer-profile-grid article > p { color:#3d4750; font-size:17px; }
.office-facts-card h3 { margin:0 0 20px; font-family:var(--serif); font-size:26px; font-weight:500; color:var(--white); }
.office-facts-card dl > div { padding:16px 0; border-top:1px solid rgba(255,255,255,.12); }
.office-facts-card dt { color:rgba(255,255,255,.48); text-transform:uppercase; font-size:10px; letter-spacing:.1em; }
.office-facts-card dd { margin:5px 0 0; color:rgba(255,255,255,.9); }
.lawyer-profile-grid { display:grid; grid-template-columns:.78fr 1.02fr; gap:90px; align-items:center; }
.lawyer-profile-grid figure { margin:0; overflow:hidden; background:#332b29; }
.lawyer-profile-grid figure img { width:100%; max-height:760px; object-fit:cover; object-position:center 25%; }
.office-gallery-page { background:var(--paper); }

.areas-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.area-card { min-height:260px; padding:30px; display:flex; flex-direction:column; text-decoration:none; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--white); transition:.2s ease; }
.area-card:hover { transform:translateY(-3px); background:#fbfaf7; }
.area-card > span { color:var(--gold-500); text-transform:uppercase; font-weight:800; font-size:10px; letter-spacing:.13em; }
.area-card h2 { margin:28px 0 12px; font-family:var(--serif); color:var(--navy-900); font-size:28px; line-height:1.14; font-weight:500; }
.area-card p { color:var(--muted); font-size:14px; }
.area-card em { margin-top:auto; color:var(--gold-500); font-style:normal; font-size:12px; font-weight:800; }
.situation-path-card.is-static { cursor:default; }
.situation-path-card.is-static:hover { transform:none; }
.dark-split-section,.security-section { background:var(--navy-900); color:var(--white); }
.dark-split-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:90px; align-items:start; }
.dark-split-grid h2 { margin:0; color:var(--white); font-family:var(--serif); font-size:clamp(38px,4.5vw,58px); font-weight:500; line-height:1.08; }
.dark-split-grid p { color:rgba(255,255,255,.7); font-size:16px; }

.legal-two-col { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:start; }
.legal-two-col h2 { margin:0 0 22px; font-family:var(--serif); color:var(--navy-900); font-size:clamp(32px,3.4vw,46px); font-weight:500; line-height:1.1; }
.check-list { list-style:none; padding:0; margin:0; border-top:1px solid var(--line); }
.check-list li { position:relative; padding:14px 0 14px 26px; border-bottom:1px solid var(--line); color:#3f4952; }
.check-list li::before { content:'✓'; position:absolute; left:0; color:var(--gold-500); font-weight:800; }
.small-note { margin-top:18px; color:var(--muted); font-size:12px; }

.faq-section { background:var(--paper); }
.faq-list { max-width:900px; border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item summary { cursor:pointer; list-style:none; padding:22px 44px 22px 0; color:var(--navy-900); font-family:var(--serif); font-size:22px; position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; position:absolute; right:4px; top:20px; color:var(--gold-500); font-family:var(--sans); }
.faq-item[open] summary::after { content:'−'; }
.faq-item > div { padding:0 42px 20px 0; color:var(--muted); }

.contact-grid-v2 { display:grid; grid-template-columns:.78fr 1.05fr; gap:70px; align-items:start; }
.contact-info-card,.contact-form-card { background:var(--paper); padding:38px; border-top:3px solid var(--gold-500); }
.contact-info-card h2,.contact-form-card h2 { margin:0 0 22px; font-family:var(--serif); color:var(--navy-900); font-size:clamp(34px,4vw,52px); font-weight:500; line-height:1.08; }
.contact-info-card dl { margin:24px 0 30px; }
.contact-info-card dl > div { padding:16px 0; border-top:1px solid var(--line); }
.contact-info-card dt { color:var(--gold-500); text-transform:uppercase; letter-spacing:.1em; font-size:10px; font-weight:800; }
.contact-info-card dd { margin:5px 0 0; color:var(--navy-900); }
.contact-info-card a { text-decoration:none; }
.contact-form-card .button { margin:14px 0 18px; }
.security-checklist p { margin:0; padding:18px 20px; border-bottom:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.78); }

.content-guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.content-guide-card { min-height:250px; display:flex; flex-direction:column; padding:30px; background:var(--white); text-decoration:none; }
.content-guide-card > span { color:var(--gold-500); text-transform:uppercase; font-size:10px; letter-spacing:.12em; font-weight:800; }
.content-guide-card h2 { margin:26px 0 12px; color:var(--navy-900); font-family:var(--serif); font-size:27px; font-weight:500; line-height:1.14; }
.content-guide-card p { color:var(--muted); font-size:14px; }
.content-guide-card em { margin-top:auto; color:var(--gold-500); font-style:normal; font-weight:800; font-size:12px; }
.content-posts-section { background:var(--paper); }
.empty-content-card { grid-column:1/-1; padding:50px; background:var(--white); border-top:3px solid var(--gold-500); }
.empty-content-card h2 { font-family:var(--serif); color:var(--navy-900); font-weight:500; }
.policy-prose { max-width:900px; }
.policy-prose h2 { font-family:var(--serif); color:var(--navy-900); font-size:32px; font-weight:500; margin-top:42px; }
.article-content { max-width:840px; }
.article-disclaimer { margin-top:42px; padding:20px; background:var(--paper); border-left:3px solid var(--gold-500); }

@media (max-width:1040px){
  .brand-logo-fixed{width:108px;min-width:108px}.header-inner{gap:20px}.primary-nav .menu{gap:16px}
  .office-hero-grid,.office-story-grid,.lawyer-profile-grid,.legal-two-col,.contact-grid-v2,.dark-split-grid{gap:48px}
  .areas-grid,.content-guide-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .brand-logo-fixed{width:100px;min-width:100px}.brand-logo-fixed img{max-height:48px}
  .office-hero-grid,.office-story-grid,.lawyer-profile-grid,.legal-two-col,.contact-grid-v2,.dark-split-grid,.contact-cta-grid{grid-template-columns:1fr}
  .office-hero-grid figure img{height:360px}.office-facts-card{position:static}.lawyer-profile-grid figure img{max-height:600px}
  .areas-grid,.content-guide-grid{grid-template-columns:1fr}.contact-cta-actions{min-width:0}.footer-bottom{align-items:flex-start;flex-direction:column}
  .contact-info-card,.contact-form-card{padding:28px}
}
