/* ═══════════════════════════════════════
   ELEVATE DESIGN SYSTEM — TOKENS
═══════════════════════════════════════ */
:root {
  /* Colors */
  --navy:      #071839;
  --navy-dark: #021623;
  --white:     #FFFFFF;
  --off-white: #ECF3F8;
  --border:    #E4E4E4;
  --border-md: #D3D3D3;
  --text:      #191919;
  --text-sub:  #5D5D5D;
  --black:     #000000;
  --indigo:    #4F46E5;
  --site-gradient: linear-gradient(to right, #071A3D, #1D74DE);
  --site-gradient-soft: linear-gradient(to right, rgba(7,26,61,.52), rgba(29,116,222,.52));

  /* Spacing (8px base) */
  --sp-1:  8px;   --sp-2: 16px;  --sp-3: 24px;
  --sp-4:  32px;  --sp-5: 40px;  --sp-6: 48px;
  --sp-7:  60px;  --sp-8: 72px;  --sp-9: 80px;

  /* Typography */
  --f-display: 'Halyard Display', 'halyard-display', -apple-system, sans-serif;
  --f-body:    'Halyard Display', 'halyard-display', -apple-system, sans-serif;

  /* Shadows */
  --sh-1: 0px 1px 3px rgba(0,0,0,.05);
  --sh-2: 0px 2px 8px rgba(0,0,0,.08);
  --sh-3: 0px 4px 12px rgba(0,0,0,.12);
  --sh-4: 0px 8px 24px rgba(0,0,0,.16);

  /* Layout */
  --max-w: 1200px;
  --px: 40px;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
html {
  scroll-behavior: smooth;
  font-family: var(--f-body);
}
body {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font-family: inherit; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.t-h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}
.t-body {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
}
.t-sub     { color: var(--text-sub); }

/* ═══════════════════════════════════════
   BUTTONS  (Elevate spec)
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 8px 24px;
  min-height: 40px;
  border: none;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  white-space: nowrap;
}
/* Primary — black pill */
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-radius: 1584px;
}
.btn-primary:hover { background: #191919; }
.btn-primary:active { background: var(--navy); }
/* botão do formulário de contato no tom navy do rodapé */
.form-foot .btn-primary { background: var(--navy); }
.form-foot .btn-primary:hover { background: #0c2a57; }

/* Tertiary — text only light bg */
.btn-text {
  background: transparent;
  color: var(--text);
  border-radius: 1584px;
  padding: 0;
  min-height: auto;
}
.btn-text:hover { color: var(--navy); }

/* ═══════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
.section {
  padding: var(--sp-9) 0;
}
.section > .container,
.approach-band > .container,
.contact-section > .container,
.footer > .container {
  padding-left: var(--px);
  padding-right: var(--px);
}

/* Image placeholder */
.ph {
  background: #C8CDD8;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: block;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0;
  padding: 8px 16px;
  background: rgba(0,0,0,.3);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: var(--f-body);
  line-height: 1;
}

/* Reveal */
.r { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.r.on { opacity: 1; transform: none; }
.r.d1 { transition-delay: .1s; } .r.d2 { transition-delay: .2s; } .r.d3 { transition-delay: .3s; }
/* directional reveals (text from left, image from right) */
.reveal-left  { opacity: 0; transform: translateX(-60px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal-right { opacity: 0; transform: translateX(60px);  transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); transition-delay: .1s; }
.reveal-left.on, .reveal-right.on { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 28px 0;
  min-height: 92px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.solid {
  background: var(--site-gradient);
  box-shadow: var(--sh-4);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}
.footer-brand img { height: 30px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  transition: opacity .2s;
}
.nav-links a:hover { opacity: .75; }
/* Nav CTA button */
.nav-links .btn-nav-cta {
  background: var(--white);
  color: #071839;
  border-radius: 1584px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: opacity .2s;
}
.nav-links .btn-nav-cta:hover { opacity: .9; color: #071839; }

/* ═══════════════════════════════════════
   HERO — full-bleed with navy overlay
═══════════════════════════════════════ */
/* hero pins while the next section slides over it */
.pin-stack { position: relative; }
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(to right, #1D74DE, #071A3D);
}
/* Photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  animation: heroZoom 12s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg.active { opacity: 1; }
/* hero carousel text slides (cross-fade; height follows the ACTIVE slide so buttons sit right below it) */
.hero-slides { position: relative; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s; }
.hero-slide.active { position: relative; opacity: 1; visibility: visible; }
.hero-dot { cursor: pointer; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .approach-cta-bg { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* bottom vignette so the stats bar stays legible */
    linear-gradient(to bottom, rgba(7,26,61,0) 55%, rgba(2,16,35,.55) 100%),
    /* left-to-right tint: solid enough for text on the left, clears the tower on the right */
    linear-gradient(
      to right,
      rgba(7,26,61,.78) 0%,
      rgba(7,26,61,.55) 24%,
      rgba(7,26,61,.22) 45%,
      rgba(7,26,61,0) 62%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: calc(var(--max-w) + var(--px) * 2);
  margin: 0 auto;
  padding: 80px var(--px) var(--sp-6);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: 53px;
  font-weight: 100;
  font-style: normal;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: var(--sp-3);
  max-width: 11.5em;
  text-wrap: balance;
  opacity: 0;
  animation: up .8s .3s forwards;
}
.hero h1 em { font-style: italic; }
/* mobile-only line breaks — hidden on desktop */
.hero .br-mob { display: none; }
.hero-sub {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 50;
  font-style: normal;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #ACBDD0;
  margin-bottom: var(--sp-5);
  max-width: 24em;
  text-wrap: balance;
  opacity: 0;
  animation: up .8s .5s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  animation: up .8s .7s forwards;
}
/* Hero buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #091B29;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  padding: 13px 32px;
  border-radius: 1584px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  line-height: 1;
}
.btn-hero-primary svg { stroke: #091B29; }
.btn-hero-primary:hover { opacity: .9; }
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  padding: 13px 0;
  border: none;
  cursor: pointer;
  transition: gap .2s;
  text-decoration: none;
  line-height: 1;
}
.btn-hero-ghost svg { stroke: #ffffff; }
.btn-hero-ghost:hover { gap: 14px; }

/* Stats bar inside hero — aligned to nav container */
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.15);
  background: var(--site-gradient-soft);
  backdrop-filter: blur(16px);
}
/* Reuse the same .container class — aligned with nav */
.hero-stats > .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
/* No flex: 1 — space-between positions first flush-left, last flush-right */
.hero-stat {
  padding: var(--sp-3) 0;
  min-width: 0;
}
.hero-stat:not(:last-child) {
  padding-right: var(--sp-4);
  border-right: 1px solid rgba(255,255,255,.08);
  margin-right: var(--sp-4);
}
.hero-stat-n {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-l {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 400;
  color: #ACBDD0;
  letter-spacing: 0;
}

/* Vertical social rail (left edge) */
.hero-social {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  background: rgba(2,16,35,.55);
  backdrop-filter: blur(6px);
}
.hero-social a {
  width: 34px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: color .2s, background .2s;
}
.hero-social a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.hero-social svg { width: 15px; height: 15px; fill: currentColor; }

/* Carousel dots (right edge) */
.hero-dots {
  position: absolute;
  top: 50%;
  right: var(--px);
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hero-dot.active { background: var(--white); border-color: var(--white); }

/* Subtle vertical guide lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-lines span {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
}
.hero-lines span:nth-child(1) { left: 18%;  background: rgba(255,255,255,.06); }
.hero-lines span:nth-child(2) { left: 50%;  background: rgba(255,255,255,.06); }
.hero-lines span:nth-child(3) { left: 82%;  background: rgba(255,255,255,.06); }

@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero:not(.play) h1,
.hero:not(.play) .hero-sub,
.hero:not(.play) .hero-actions { animation: none; opacity: 0; }

/* ═══════════════════════════════════════
   INTRO — large text quote
═══════════════════════════════════════ */
/* MORPH — "Sobre o escritório" reveals, then morphs into "Quem somos" sliding in from the right */
.morph { position: relative; z-index: 2; min-height: 420vh; }
.morph-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
.pane { position: absolute; inset: 0; display: flex; align-items: center; }
.pane > .container { width: 100%; }
.pane-intro { background: #ECF3F8; border-radius: 40px 40px 0 0; z-index: 1; }
.pane-about { background: transparent; transform: translateX(100%); z-index: 2; }
.pane-about .about-img-wrap,
.pane-about .about-text > * { opacity: 0; transform: translateY(26px); will-change: opacity, transform; }
.intro-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-8);
  align-items: center;
  text-align: left;
}
.intro-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-2);
}
.intro-label::before { content: ''; width: 20px; height: 1px; background: var(--border-md); }
.intro-quote {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
}
.intro-quote strong { color: var(--navy); font-weight: 600; }
#intro strong { color: #18549C; }
/* scroll-reveal words start faint, brighten as the section scrolls */
.intro-quote .rw { opacity: .14; transition: opacity .12s linear; }

/* ═══════════════════════════════════════
   ABOUT  — image + text
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
/* Quem Somos title */
.about-title {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  white-space: nowrap;
  margin-bottom: var(--sp-4);
}
.about-title em {
  font-weight: 500;
  font-style: italic;
  color: #18549C;
}
/* reduz espaçamento entre título e texto */
.about-text > div { margin-bottom: calc(-1 * var(--sp-3)); }
.about-text p:not(.eyebrow) {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-sub);
}
.about-img-wrap { position: relative; }
.about-text { display: flex; flex-direction: column; gap: var(--sp-4); }
.about-text strong { color: var(--text); font-weight: 400; }

/* ═══════════════════════════════════════
   SERVICES — numbered (Elevate Showcase)
═══════════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.services-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.svc-item {
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  grid-template-rows: auto auto;
  align-items: start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
}
.svc-item:hover { background: rgba(7,24,57,.02); }
.svc-n {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}
.svc-text {}
.svc-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.svc-desc { font-size: 16px; line-height: 1.6; color: var(--text-sub); }

/* Accordion toggle */
.svc-toggle {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, transform .3s;
  background: none;
}
.svc-item.open .svc-toggle {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(7,24,57,.04);
  transform: rotate(45deg);
}
.svc-item:hover .svc-toggle { border-color: var(--navy); color: var(--navy); }

/* Accordion icon */
.svc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--off-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: var(--sp-1);
}
.svc-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Accordion body */
.svc-body {
  grid-column: 2 / 3;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0;
}
.svc-item.open .svc-body {
  max-height: 400px;
  padding-bottom: var(--sp-3);
}
.svc-body-inner {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.svc-detail h4 {
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.svc-detail p { font-size: 17px; line-height: 1.65; color: var(--text-sub); }

/* ═══════════════════════════════════════
   APPROACH CTA — image band
═══════════════════════════════════════ */
.approach-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.approach-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/img_abordagem.png');
  background-size: cover;
  background-position: center;
  opacity: 1;
  animation: approachZoom 11s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes approachZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.28); }
}
.approach-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7,26,61,.55), rgba(7,26,61,.20) 50%, rgba(2,16,35,.55)),
    linear-gradient(to bottom, rgba(7,26,61,.10), rgba(7,26,61,.35));
}
.approach-cta-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.approach-cta .eyebrow {
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}
.approach-cta-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 14px;
}
.approach-cta-title strong {
  display: block;
  font-weight: 600;
}
.approach-cta-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.74);
  margin-bottom: 26px;
}
.btn-approach-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 24px;
  border-radius: 1584px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: opacity .2s, transform .2s;
}
.btn-approach-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   APPROACH — advogado section
═══════════════════════════════════════ */
.approach-band {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.approach-img-col {
  border-radius: 8px;
  overflow: hidden;
}
.approach-img-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.approach-text { display: flex; flex-direction: column; gap: var(--sp-4); }
/* Advogado name */
.advogado-name {
  font-family: var(--f-display);
  font-size: 41px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}
/* Advogado description */
.advogado-desc {
  font-family: var(--f-body);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: #071839;
}

/* ═══════════════════════════════════════
   HIGHLIGHTS — 3-col cards
═══════════════════════════════════════ */
/* ─── TIMELINE (diferenciais) ─── */
.timeline {
  margin-top: var(--sp-8);
  position: relative;
}
/* connecting line */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: var(--sp-6);
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}
.tl-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.tl-dot:nth-child(1) { background: #0a3a8c; }
.tl-dot-col:nth-child(2) .tl-dot { background: #1254c8; }
.tl-dot-col:nth-child(3) .tl-dot { background: #2d6fd4; }
.tl-dot-col:nth-child(4) .tl-dot { background: #5090e0; }

.timeline-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.tl-item {}
.tl-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}
.tl-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sub);
}

/* ═══════════════════════════════════════
   PHOTO STRIP
═══════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: 280px;
  gap: var(--sp-1);
}
.photo-strip .ph { height: 100%; border-radius: 8px; }

/* ═══════════════════════════════════════
   ARTICLES
═══════════════════════════════════════ */
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--sh-3); transform: translateY(-2px); }
.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img .ph { display: block; }
.blog-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1584px;
}
.blog-card-img .ph { height: 200px; padding-bottom: 0; }
.blog-card-body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  color: var(--text-sub);
}
.blog-card-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border-md);
  flex-shrink: 0;
}
.blog-card-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sub);
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--white);
  flex-shrink: 0;
}
.blog-card-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.blog-card-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.blog-card-link:hover { gap: 9px; }
.blog-card-link::after { content: '→'; }

/* ═══════════════════════════════════════
   CONTACT — unified (form + map + info)
═══════════════════════════════════════ */
.contact-section { background: var(--white); }

/* Top: intro (left) + form (right) */
.contact-top {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: var(--sp-7);
  align-items: start;
  margin-bottom: var(--sp-7);
}

/* Intro side */
.contact-intro .eyebrow { margin-bottom: var(--sp-3); }
.contact-headline {
  font-family: var(--f-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.contact-socials { display: flex; gap: var(--sp-2); }
/* mobile-only inline contact details (hidden on desktop) */
.contact-mobile-info { display: none; }
.contact-soc {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: opacity .15s;
}
.contact-soc:hover { opacity: .6; }
.contact-soc svg { width: 22px; height: 22px; }

/* Form side */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
.fg { position: relative; display: flex; flex-direction: column; }
.fg.full { grid-column: 1/-1; }
.fi, .ft {
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 46px 16px 18px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.fi::placeholder, .ft::placeholder { color: var(--text-sub); }
.fi:focus, .ft:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(7,24,57,.08);
}
.ft { resize: none; height: 108px; }
.fld-icon {
  position: absolute; top: 17px; right: 16px;
  width: 18px; height: 18px;
  color: var(--text-sub);
  pointer-events: none;
}
.fld-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.form-foot {
  grid-column: 1/-1;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); flex-wrap: wrap;
  margin-top: var(--sp-1);
}
.form-consent {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-sub); cursor: pointer;
}
.form-consent input { width: 16px; height: 16px; accent-color: var(--navy); }
.form-foot .btn { border-radius: 1584px; padding: 15px 44px; }

/* Bottom: 3 info highlights */
.contact-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.contact-info-label {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-sub);
}
.contact-info-value a { color: var(--text-sub); transition: color .15s; }
.contact-info-value a:hover { color: var(--navy); }

/* ═══════════════════════════════════════
   FOOTER — Caelor style
═══════════════════════════════════════ */
.footer {
  background: var(--navy);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--sp-6) 0 var(--sp-5);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: var(--sp-8);
  padding: var(--sp-4) 0 var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.footer-col h4 {
  font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: var(--sp-3);
  letter-spacing: .02em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.footer-col ul li a {
  font-size: 15px; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col-contact { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.8; }
.footer-col-contact a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-col-contact a:hover { color: var(--white); }
.footer-social-col { display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-3); }
.footer-socials { display: flex; gap: var(--sp-1); }
.footer-soc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s;
}
.footer-soc:hover { background: rgba(255,255,255,.18); color: var(--white); }
.footer-soc svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
}
.footer-copy { font-size: 14px; color: rgba(255,255,255,.25); }
.footer-links { display: flex; gap: var(--sp-4); }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa {
  position: fixed; bottom: var(--sp-5); right: var(--sp-5); z-index: 400;
  width: 48px; height: 48px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}
.wa:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.42); }
.wa svg { width: 22px; height: 22px; fill: white; }

/* ═══════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════ */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: var(--sp-2);
}
.eyebrow-light {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-2);
}

/* ═══════════════════════════════════════
   HAMBURGER MENU
═══════════════════════════════════════ */
.nav-hamburger {
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  width: 43px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
/* keep the hamburger hidden on desktop (mobile menu only) */
@media (min-width: 901px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-menu a {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  transition: opacity .2s;
}
.nav-mobile-menu a:hover { opacity: .7; }
.nav-mobile-menu .btn-nav-cta {
  margin-top: var(--sp-2);
  font-size: 18px;
  background: var(--white);
  color: var(--navy);
  border-radius: 1584px;
  padding: 12px 32px;
}

/* ═══════════════════════════════════════
   STACKED SECTIONS — each pins at the top, the next slides over it
═══════════════════════════════════════ */
.stack-sections { position: relative; }
.stack-sections > section {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -22px 50px rgba(7,24,57,.12);
}
/* contact pins like the others; compacted so it fits the viewport when pinned */
.stack-sections > #contact { z-index: 5; padding-top: var(--sp-5); padding-bottom: var(--sp-5); }
.stack-sections > #contact .contact-top { margin-bottom: var(--sp-4); }
/* breathing room: each card holds alone before the next slides over it */
.stack-sections > section:not(#contact) { margin-bottom: 55vh; }
/* invisible tail gives the contact card its pin range (footer scrolls normally after) */
.stack-tail { height: 55vh; }

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --px: 28px; --sp-9: 56px; --sp-8: 48px; }
  /* stacked sections disabled on mobile — normal flow */
  .stack-sections > section,
  .stack-sections > #contact {
    position: static;
    min-height: 0;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0 !important;
  }
  .stack-tail { display: none; }

  /* NAV */
  .nav { padding: 26px 0; min-height: auto; z-index: 200; }
  .nav-logo img { height: 22px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }

  /* HERO */
  .hero { min-height: 100svh; }
  .hero-bg { animation: none; background-position: center; }
  .hero-bg:nth-child(1) { background-image: url('../img/img_mobile.png') !important; }
  .hero-bg:nth-child(2) { background-image: url('../img/img_mobile_02.jpg') !important; }
  .hero-bg:nth-child(3) { background-image: url('../img/img_mobile_03.jpg') !important; }
  .hero-bg:nth-child(4) { background-image: url('../img/img_mobile_04.jpg') !important; }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(7,26,61,0) 55%, rgba(2,16,35,.60) 100%),
      linear-gradient(
        to right,
        rgba(7,26,61,.88) 0%,
        rgba(7,26,61,.68) 30%,
        rgba(7,26,61,.28) 58%,
        rgba(7,26,61,.05) 100%
      );
  }
  .hero-content {
    padding-top: 80px;
    justify-content: center;
  }
  .hero h1 { font-size: 35px; line-height: 1.18; }
  /* mobile breaks on / desktop breaks off */
  .hero .br-mob  { display: inline; }
  .hero .br-desk { display: none; }
  .hero-sub { font-size: 16px; line-height: 1.5; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .btn-hero-primary { font-size: 17px; padding: 12px 28px; }
  /* align the ghost link's content with the pill's content above */
  .btn-hero-ghost { font-size: 16px; padding-left: 28px; }
  .hero-social { display: none; }
  .hero-dots { display: none; }
  .hero-lines { display: none; }

  /* STATS BAR — transparent over the building, single scrollable row */
  .hero-stats {
    background: transparent;
    backdrop-filter: none;
    border-top: none;
  }
  .hero-stats > .container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }
  .hero-stats > .container::-webkit-scrollbar { display: none; }
  /* 2 stats fully visible + half of the 3rd peeking to hint at scroll */
  .hero-stat {
    flex: 0 0 40%;
    padding: var(--sp-2) var(--sp-3);
    border-right: 1px solid rgba(255,255,255,.12) !important;
    border-bottom: none !important;
    margin-right: 0 !important;
  }
  /* first stat lines up with the logo / hero text */
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child { border-right: none !important; }
  .hero-stat-n { font-size: 34px; }
  .hero-stat-l { font-size: 13px; }

  /* INTRO */
  /* morph disabled on mobile — panes stack as normal sections */
  .morph { min-height: 0; }
  .morph-sticky { position: static; height: auto; overflow: visible; background: transparent; }
  .pane { position: static; display: block; padding: var(--sp-7) 0; }
  .pane-intro { border-radius: 0; }
  .pane-about { transform: none; background: var(--white); }
  .pane-about .about-img-wrap, .pane-about .about-text > * { opacity: 1; transform: none; }
  .intro-quote .rw { opacity: 1; }
  .intro-inner { grid-template-columns: 1fr; gap: var(--sp-3); }
  .intro-label { display: flex; justify-content: flex-start; }
  .intro-quote { font-size: 25px; }
  .intro-quote br { display: none; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .about-title { font-size: 27px; white-space: normal; margin-bottom: 11px; }
  .about-text p:not(.eyebrow) { font-size: 16px; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .services-sticky { position: static; }
  .svc-body-inner { grid-template-columns: 1fr; }
  .svc-name { font-size: 18px; }
  .svc-desc { font-size: 14px; }
  .svc-detail p { font-size: 15px; }

  /* ADVOGADO */
  .approach-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .approach-img-col { order: -1; }
  .approach-text { gap: 0; }
  .advogado-name { font-size: 30px; margin-bottom: 14px; }
  .advogado-desc { font-size: 16px; }
  .advogado-desc + .advogado-desc { margin-top: 24px; }

  /* ABORDAGEM CTA */
  .approach-cta { min-height: 380px; padding: var(--sp-6) 0; }
  .approach-cta-text br { display: none; }
  .approach-cta-title { font-size: 28px; }

  /* DIFERENCIAIS — vertical timeline (numbered dots + line, like desktop) */
  .timeline {
    margin-top: var(--sp-5);
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 18px;
    row-gap: 32px;
  }
  .timeline-track, .timeline-items { display: contents; }
  .timeline-track::before { display: none; }
  .tl-dot-col { grid-column: 1; position: relative; }
  .tl-item { grid-column: 2; padding-top: 6px; }
  .timeline-track .tl-dot-col:nth-child(1), .timeline-items .tl-item:nth-child(1) { grid-row: 1; }
  .timeline-track .tl-dot-col:nth-child(2), .timeline-items .tl-item:nth-child(2) { grid-row: 2; }
  .timeline-track .tl-dot-col:nth-child(3), .timeline-items .tl-item:nth-child(3) { grid-row: 3; }
  .timeline-track .tl-dot-col:nth-child(4), .timeline-items .tl-item:nth-child(4) { grid-row: 4; }
  /* connecting vertical line between dots */
  .tl-dot-col::after {
    content: '';
    position: absolute;
    top: 44px;
    bottom: -32px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: var(--border);
  }
  .timeline-track .tl-dot-col:last-child::after { display: none; }
  .tl-title { font-size: 18px; }
  .tl-desc { font-size: 15px; }

  /* PHOTO STRIP — swipeable like the stats (1st full, 2nd peeks) */
  .photo-strip {
    display: flex;
    grid-template-columns: none;
    height: 200px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .photo-strip::-webkit-scrollbar { display: none; }
  .photo-strip .ph { flex: 0 0 84%; height: 100%; }

  /* ARTIGOS */
  .articles-header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .blog-grid { grid-template-columns: 1fr; gap: var(--sp-3); }

  /* CONTATO — centered layout (anexo 1) */
  .contact-top { grid-template-columns: 1fr; gap: var(--sp-5); margin-bottom: 0; }
  .contact-intro { text-align: center; }
  .contact-headline { font-size: 34px; margin-bottom: var(--sp-3); }
  .contact-headline .ch-d { display: none; }
  .contact-mobile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 var(--sp-4);
  }
  .cmi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
    max-width: 300px;
    text-align: center;
  }
  .cmi svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }
  .contact-socials { justify-content: center; }
  /* remove the 3 info cards (anexo 2) on mobile */
  .contact-bottom { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer-top { padding: var(--sp-4) 0 var(--sp-3); }
  .footer-mid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    padding: var(--sp-4) 0;
  }
  .footer-social-col { align-items: flex-start; grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: var(--sp-2); }

  /* GERAL */
  .wa { bottom: var(--sp-3); right: var(--sp-3); }
  .section { padding: var(--sp-7) 0; }
}

/* ═══════════════════════════════════════
   BLOG (páginas de artigos + post)
═══════════════════════════════════════ */
.btn-light{background:var(--white);color:var(--navy)}
.btn-light:hover{opacity:.9}
.nav-links a.active{opacity:1;font-weight:600}
/* ── PAGE HERO (navy gradient) ── */
.page-hero{position:relative;background:var(--site-gradient);color:var(--white);padding:160px 0 var(--sp-9);overflow:hidden}
.page-hero::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(255,255,255,.08),transparent 55%);pointer-events:none}
.page-hero .container{position:relative;z-index:1}
.page-hero-eyebrow{color:rgba(255,255,255,.6);margin-bottom:var(--sp-3)}
.page-hero h1{font-family:var(--f-display);font-size:clamp(40px,5.4vw,68px);font-weight:300;line-height:1.08;margin-bottom:var(--sp-3)}
.page-hero h1 em{font-style:italic;color:#9ec2f0}
.page-hero-desc{font-size:18px;font-weight:300;line-height:1.6;color:rgba(255,255,255,.72);max-width:620px}
.page-hero-breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:rgba(255,255,255,.55);margin-bottom:var(--sp-4)}
.page-hero-breadcrumb a:hover{color:var(--white)}
.page-hero-breadcrumb span{opacity:.5}

/* ── ARTICLES TOOLBAR (filters) ── */
.art-toolbar{background:var(--off-white);border-bottom:1px solid var(--border)}
.art-toolbar .container{display:flex;align-items:center;justify-content:space-between;gap:var(--sp-3);padding-top:var(--sp-3);padding-bottom:var(--sp-3);flex-wrap:wrap}
.art-cats{display:flex;flex-wrap:wrap;gap:var(--sp-1)}
.cat-chip{font-size:14px;color:var(--text-sub);background:transparent;border:1px solid var(--border-md);border-radius:1584px;padding:7px 16px;cursor:pointer;transition:all .15s}
.cat-chip:hover{border-color:var(--navy);color:var(--navy)}
.cat-chip.active{background:var(--navy);border-color:var(--navy);color:var(--white)}
.art-sort{display:flex;align-items:center;gap:var(--sp-1)}
.art-sort label{font-size:13px;color:var(--text-sub);text-transform:uppercase;letter-spacing:.06em}
.art-sort select{font-size:14px;color:var(--navy);background:var(--white);border:1px solid var(--border-md);border-radius:8px;padding:8px 14px;cursor:pointer}

/* ── PAGINATION ── */
.pagination{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:var(--sp-8)}
.page-btn{min-width:42px;height:42px;padding:0 12px;border:1px solid var(--border);background:var(--white);border-radius:8px;font-size:15px;color:var(--text-sub);cursor:pointer;transition:all .15s}
.page-btn:hover,.page-btn.active{background:var(--navy);border-color:var(--navy);color:var(--white)}

/* ── POST HERO META ── */
.post-hero-tag{display:inline-block;background:rgba(255,255,255,.14);color:var(--white);font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;padding:5px 14px;border-radius:1584px;margin-bottom:var(--sp-3)}
.post-hero-meta{display:flex;flex-wrap:wrap;align-items:center;gap:var(--sp-3);margin-top:var(--sp-5);font-size:14px;color:rgba(255,255,255,.7)}
.post-hero-meta .dot{width:4px;height:4px;border-radius:50%;background:rgba(255,255,255,.4)}
.post-hero-author{display:flex;align-items:center;gap:10px}
.post-hero-avatar{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;color:var(--white)}

/* ── POST BODY LAYOUT ── */
.post-layout{display:grid;grid-template-columns:1fr 340px;gap:var(--sp-8);align-items:start}
.post-content{font-size:18px;line-height:1.8;color:#2c2c2c}
.post-content > *{margin-bottom:var(--sp-3)}
.post-content h2{font-family:var(--f-display);font-size:30px;font-weight:400;color:var(--navy);line-height:1.2;margin-top:var(--sp-6);margin-bottom:var(--sp-3)}
.post-content h3{font-family:var(--f-display);font-size:22px;font-weight:600;color:var(--navy);margin-top:var(--sp-4);margin-bottom:var(--sp-2)}
.post-content p{font-weight:300}
.post-content strong{color:var(--navy);font-weight:600}
.post-content a{color:var(--blue);text-decoration:underline;text-underline-offset:2px}
.post-content ul,.post-content ol{padding-left:var(--sp-3);font-weight:300}
.post-content li{margin-bottom:8px}
.post-content blockquote{border-left:3px solid var(--navy);background:var(--off-white);padding:var(--sp-3) var(--sp-4);font-family:var(--f-display);font-size:22px;font-weight:300;font-style:italic;color:var(--navy);line-height:1.45;border-radius:0 8px 8px 0}
.post-content figure img,.post-content > img{width:100%;border-radius:10px}
.post-content figcaption{font-size:13px;color:var(--text-sub);text-align:center;margin-top:8px}

/* share */
.post-share{display:flex;align-items:center;gap:var(--sp-2);margin-top:var(--sp-6);padding-top:var(--sp-4);border-top:1px solid var(--border)}
.post-share span{font-size:13px;text-transform:uppercase;letter-spacing:.06em;color:var(--text-sub)}
.share-btn{width:38px;height:38px;border-radius:50%;border:1px solid var(--border);background:var(--white);display:flex;align-items:center;justify-content:center;color:var(--navy);cursor:pointer;transition:all .15s}
.share-btn:hover{background:var(--navy);border-color:var(--navy);color:var(--white)}
.share-btn svg{width:16px;height:16px;fill:currentColor}

/* author box */
.post-author{display:flex;gap:var(--sp-3);align-items:center;background:var(--off-white);border:1px solid var(--border);border-left:3px solid var(--navy);border-radius:10px;padding:var(--sp-3);margin-top:var(--sp-5)}
.post-author-avatar{width:64px;height:64px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;font-family:var(--f-display);font-size:22px;color:var(--white);flex-shrink:0}
.post-author-name{font-family:var(--f-display);font-size:18px;color:var(--navy);font-weight:400}
.post-author-role{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--text-sub);margin:2px 0 6px}
.post-author-bio{font-size:14px;line-height:1.6;color:var(--text-sub)}

/* sidebar */
.post-sidebar{position:sticky;top:104px;display:flex;flex-direction:column;gap:var(--sp-3)}
.sidebar-title{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:var(--text-sub);font-weight:600;margin-bottom:4px}
.related-card{display:flex;gap:var(--sp-2);align-items:center;border:1px solid var(--border);border-radius:10px;overflow:hidden;padding:10px;transition:box-shadow .2s,transform .2s}
.related-card:hover{box-shadow:var(--sh-2);transform:translateY(-2px)}
.related-card-img{width:74px;height:74px;border-radius:8px;background-size:cover;background-position:center;background-color:#dde4ee;flex-shrink:0}
.related-card-tag{font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--blue);font-weight:600}
.related-card-title{font-family:var(--f-display);font-size:15px;color:var(--navy);line-height:1.3;margin:3px 0 4px}
.related-card-date{font-size:12px;color:var(--text-sub)}
.sidebar-cta{background:var(--navy);border-radius:12px;padding:var(--sp-4);color:var(--white)}
.sidebar-cta h4{font-family:var(--f-display);font-size:20px;font-weight:400;margin-bottom:8px}
.sidebar-cta p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.6;margin-bottom:var(--sp-3)}

/* ── CTA / NEWSLETTER BAND ── */
.cta-band{background:var(--off-white);border-top:1px solid var(--border)}
.cta-band .container{padding-top:var(--sp-8);padding-bottom:var(--sp-8);text-align:center}
.cta-band h2{font-family:var(--f-display);font-size:clamp(28px,3.4vw,40px);font-weight:300;color:var(--navy);margin-bottom:var(--sp-2)}
.cta-band h2 strong{font-weight:600}
.cta-band p{font-size:17px;font-weight:300;color:var(--text-sub);max-width:560px;margin:0 auto var(--sp-4)}
.newsletter-form{display:flex;gap:10px;max-width:480px;margin:0 auto}
.newsletter-form input{flex:1;border:1px solid var(--border-md);background:var(--white);border-radius:1584px;padding:12px 22px;font-size:15px}
.newsletter-form input:focus{outline:none;border-color:var(--navy)}

.blog-card-img{background:#dde4ee}
.blog-card-img .ph::after{display:none}
.related-card-img{background-color:#dde4ee}
@media (max-width:900px){
  .page-hero{padding:120px 0 var(--sp-7)}
  .art-toolbar .container{justify-content:flex-start}
  .post-layout{grid-template-columns:1fr;gap:var(--sp-6)}
  .post-sidebar{position:static}
  .newsletter-form{flex-direction:column}
  .newsletter-form input,.newsletter-form .btn{width:100%}
  .newsletter-form .btn{justify-content:center}
}
@media (max-width:560px){
  .post-author{flex-direction:column;text-align:center;align-items:center}
}
