:root{
  --teal: #004b57;
  --teal-deep: #08464f;
  --cta-bg: #0f5b66;
  --footer-bg: #08464f;
  --teal-soft: #0d5965;
  --teal-line: rgba(255,255,255,.10);
  --beige: #f3eee6;
  --office-bg: #faf7f0;
  --areas-bg: #f8f0e6;
  --card: #ede2d4;
  --paper: #fbf8f3;
  --ink: #13363d;
  --muted: #5f6f73;
  --gold: #c7a37f;
  --gold-soft: #d5b48a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--teal-deep); scrollbar-gutter: stable; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.side-bar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

.side-rail,
.side-drawer {
  pointer-events: auto;
}

.side-rail {
  width: 66px;
  background: var(--teal-deep);
  color: rgba(255,255,255,.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px 18px;
  box-shadow: none;
}

.burger {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.icon-menu {
  position: absolute;
  transition: transform .28s ease, opacity .28s ease;
  font-size: 19px;
}

.icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(.7);
}

.side-bar.open .icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(.7);
}

.side-bar.open .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.burger:hover { background: rgba(255,255,255,.14); }

.side-icons {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin-top: 74px;
}

.side-icons a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
  font-size: 18px;
}

.side-icons a:hover {
  background: rgba(255,255,255,.12);
  transform: translateX(2px);
}

.side-drawer {
  width: min(420px, calc(100vw - 66px));
  background: var(--teal-deep);
  color: #fff;
  padding: 18px 26px 16px;
  transform: translateX(-24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  box-shadow: none;
}

.side-bar.open .side-drawer {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  padding: 6px 0 28px;
  background: var(--teal-deep);
}

.drawer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 9px;
  background: var(--teal-deep);
}

.drawer-links a {
  padding: 9px 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color .18s ease, transform .18s ease;
}

.drawer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(6px);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6,28,31,.18);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 70;
}

.side-bar.open ~ .drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

.page { width: 100%; }

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background: none;
  margin-top: -24px;
  padding-top: 24px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transform-origin: center center;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,70,79,.08), rgba(8,70,79,.38) 44%, rgba(8,70,79,.7));
  z-index: 1;
}

.hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0 0 110px 150px;
}

.brand {
  color: #fff;
  padding-top: 38px;
}

.brand-logo {
  width: min(360px, 42vw);
  height: auto;
}

.hero-copy {
  margin-top: 220px;
  max-width: 720px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 82px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 82px;
  line-height: .92;
  font-weight: 600;
}

.hero-line { display: inline; white-space: nowrap; }
.hero-line-first::after { content: " "; }
.hero-line-second::after { content: " "; }

.hero-copy .cta,
.cta-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}

.hero-copy .cta:hover,
.cta-band a:hover {
  background: rgba(255,255,255,.18);
}

.quote-band,
.cta-band,
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.94);
}

.quote-band {
  position: relative;
  padding: 48px 24px 58px 96px;
  text-align: center;
  z-index: 3;
}

.quote-band em {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.4;
}

.divider-down,
.cta-divider,
.section-divider-top::before {
  content: "";
  position: absolute;
  left: 50%;
}

.divider-down {
  bottom: -34px;
  width: 200px;
  height: 38px;
  transform: translateX(-50%);
  background: var(--teal-deep);
  clip-path: polygon(0 0, 100% 0, 72% 0, 50% 100%, 28% 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.divider-down i {
  color: rgba(255,255,255,.96);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-3px);
}

.section {
  position: relative;
  padding: 72px 24px 72px 96px;
}

.section-soft { background: var(--beige); }
.section-light { background: var(--paper); }
.section-office { background: var(--office-bg); }
.section-areas { background: var(--areas-bg); }
.section-advogados { background: #fff; }
.section-publicacoes { background: var(--office-bg); padding-top: 76px; padding-bottom: 84px; }
.cta-divider,
.section-divider-top::before {
  width: 24px;
  height: 24px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.section-divider-top::before { top: -12px; background: inherit; }
.section-office {
  position: relative;
  z-index: 1;
}

.section-divider-office {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 200px;
  height: 38px;
  transform: translateX(-50%);
  background: var(--office-bg);
  clip-path: polygon(0 0, 100% 0, 72% 0, 50% 100%, 28% 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.section-divider-office i {
  color: var(--areas-bg);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-3px);
}

.section-divider-areas,
.section-divider-advogados {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 200px;
  height: 38px;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 72% 0, 50% 100%, 28% 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.section-divider-areas { background: var(--areas-bg); }

.section-divider-areas i {
  color: rgba(255,255,255,.96);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-3px);
}

.section-divider-advogados { background: #fff; }

.section-divider-advogados i {
  color: var(--office-bg);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-3px);
}

.section-divider-publicacoes {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 200px;
  height: 38px;
  transform: translateX(-50%);
  background: var(--office-bg);
  clip-path: polygon(0 0, 100% 0, 72% 0, 50% 100%, 28% 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.section-divider-publicacoes i {
  color: #0f5b66;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-3px);
}

.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.section-inner-narrow { max-width: 860px; }
.section-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  font-weight: 600;
  color: var(--teal-deep);
}
#escritorio .section-title { font-weight: 700; }
#publicacoes .section-title { font-weight: 700; }
.section-lead {
  max-width: 920px;
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card {
  background: var(--card);
  border-radius: 8px;
  padding: 24px 22px;
  min-height: 264px;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.card h3 { margin: 0 0 14px; font-family: "Playfair Display", Georgia, serif; font-size: 30px; font-style: italic; color: var(--gold); }
.card p, .card li { font-size: 16px; line-height: 1.72; color: #213f45; }
.card ul { margin: 0; padding-left: 18px; }
.card li + li { margin-top: 6px; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(19,54,61,.12);
  background: #e5d8c8;
}
.office-gallery {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: repeat(2, 160px);
  gap: 18px;
  margin-top: 22px;
}
.office-gallery-item {
  position: relative;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
}
.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.office-gallery-item-featured {
  grid-row: span 2;
}
.office-gallery-item:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}
.office-ready-card {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--teal-deep);
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.office-ready-card p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.94);
}
.office-ready-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(19,54,61,.12);
  background: var(--teal);
}
.areas-wrap { display: grid; gap: 28px; margin-top: 48px; }
.areas-top, .areas-mid, .areas-bottom { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.area-label {
  min-height: 206px;
  background: var(--card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.area-label span { font-family: "Playfair Display", Georgia, serif; font-size: 42px; line-height: 1.05; font-style: italic; color: var(--gold); }
.area-label:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(19,54,61,.12);
  background: #e7dccc;
}
.areas-top > .area-label:first-child {
  width: calc(100% + 18px);
  margin-right: -18px;
}
.area-item {
  min-height: 206px;
  padding: 10px 10px 10px 22px;
  border-left: 1px solid rgba(19,54,61,.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.areas-top .area-item:first-of-type {
  border-left: 0;
  padding-left: 0;
}
.areas-top > .area-item:nth-child(2) {
  border-left: 0;
  padding-left: 22px;
  margin-left: 0;
  width: 100%;
}
.area-item .n { font-size: 40px; font-weight: 600; font-family: "Playfair Display", Georgia, serif; color: var(--gold); line-height: 1; }
.area-item .t { margin-top: 12px; font-size: 18px; line-height: 1.35; font-weight: 700; color: var(--teal-deep); }
.area-item .d { margin-top: 12px; font-size: 16px; line-height: 1.75; color: #29464b; }
.large-figure { margin-top: 18px; border-radius: 18px; overflow: hidden; }
.large-figure img { width: 100%; aspect-ratio: 16/6; object-fit: cover; }
.large-figure-adv { margin-top: 6px; margin-bottom: 60px; }
.large-figure-adv img,
.adv-photo img {
  transition: transform .28s ease, filter .28s ease;
}
.large-figure-adv:hover img,
.adv-photo:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}
.adv-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; margin-top: 26px; }
.adv-card { padding-top: 8px; }
.adv-name { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 40px; font-style: italic; font-weight: 600; color: var(--teal-deep); }
.adv-oab { margin: 4px 0 18px; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.adv-bio { margin: 0; max-width: 660px; font-size: 16px; line-height: 1.75; color: #234045; }
.adv-photo { max-width: 360px; margin-left: auto; border-radius: 10px; overflow: hidden; }
#advogados .section-title { margin-bottom: 12px; }
.pubs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pubs-nav { display: flex; gap: 18px; }
.pubs-nav-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 30px;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, color .2s ease;
}
.pubs-nav-button:hover:not(:disabled) {
  transform: translateY(-1px);
  color: var(--teal-deep);
}
.pubs-nav-button:disabled {
  opacity: .35;
  cursor: default;
}
.pubs-nav-bottom { justify-content: center; margin-top: 32px; }
.pubs-link-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--teal-deep);
  background: transparent;
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pubs-link-all:hover {
  background: var(--teal-deep);
  color: #fff;
}
#publicacoes .pubs-link-all {
  border: 1px solid var(--teal-deep);
  background: transparent;
  color: var(--teal-deep);
}
#publicacoes .pubs-link-all:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.pubs-grid, .pubs-grid-list { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.pub { display: flex; flex-direction: column; min-width: 0; }
.pub.pub-is-hidden { display: none; }
.pub .img {
  position: relative;
  height: 194px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #fff;
}
.pub .img .more {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(214,191,161,.92);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
}
.pub .body { padding: 14px 0 0; }
.pub .meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gold);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 700;
}
.pub .title { margin-top: 12px; font-size: 16px; line-height: 1.75; color: #203e44; }
.pagination-wrap { margin-top: 28px; }
.back-link { display: inline-block; margin-bottom: 18px; font-size: 13px; color: var(--muted); }
.post-title { margin-top: 0; }
.post-figure { margin-top: 16px; }
.post-card { margin-top: 22px; background: var(--card); min-height: auto; }
.post-card p, .post-card li { font-size: 16px; line-height: 1.88; }
.cta-band {
  position: relative;
  padding: 84px 24px 96px 96px;
  text-align: center;
  background: var(--cta-bg);
}
.cta-band h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: 1;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}
.cta-band p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}
.cta-divider { top: -12px; background: var(--beige); }
.cta-band a {
  min-height: 40px;
  padding: 0 26px;
  border: 0;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}
.cta-band a:hover {
  background: var(--gold-soft);
}
.cta-back-top {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 22px auto 0;
  background: transparent !important;
  color: var(--gold) !important;
  min-height: 0 !important;
  padding: 0 !important;
}
.cta-back-top i {
  font-size: 30px;
  line-height: 1;
}
.cta-back-top:hover {
  transform: translateY(-2px);
}
.footer {
  padding: 0 24px 40px 96px;
  text-align: center;
  background: var(--footer-bg);
}
.footer .logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  padding: 6px 22px 22px;
  border-left: 2px solid rgba(255,255,255,.56);
  border-right: 2px solid rgba(255,255,255,.56);
  border-bottom: 2px solid rgba(255,255,255,.56);
}
.footer .logo img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}
.footer .info { margin-top: 26px; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.84); }
.footer .social { display: flex; justify-content: center; gap: 14px; margin-top: 18px; }
.footer .social a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; font-size: 19px; color: var(--gold); }
.footer .social,
.footer .social a,
.footer .social i {
  opacity: 1 !important;
  visibility: visible !important;
}
.footer .social i {
  display: inline-block;
}
.footer .social a:hover { background: rgba(255,255,255,.1); }

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.10); }
}

@keyframes topPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: .82;
  }
}

.cta-back-top i {
  animation: topPulse 1.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-back-top i {
    animation: none;
  }
}

@media (max-width: 980px) {
  .side-rail { width: 58px; padding-inline: 8px; }
  .side-drawer { width: min(340px, calc(100vw - 58px)); }
  .hero { min-height: 860px; margin-top: -24px; padding-top: 24px; }
  .hero::after { background-position: 56% bottom; }
  .hero .inner { padding-left: 110px; }
  .quote-band, .section, .cta-band, .footer { padding-left: 78px; }
  .brand-logo { width: min(300px, 48vw); }
  .hero-copy { margin-top: 184px; max-width: 560px; }
  .hero-copy h1 { font-size: 64px; margin-bottom: 70px; }
  .section-title { font-size: 42px; }
  .quote-band em { font-size: 24px; }
  .cards-3, .office-gallery, .areas-top, .areas-mid, .areas-bottom, .pubs-grid, .pubs-grid-list, .adv-wrap { grid-template-columns: 1fr; }
  .office-gallery {
    grid-template-rows: none;
  }
  .office-gallery-item,
  .office-gallery-item-featured {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .office-ready-card {
    grid-column: auto;
  }
  .pubs-head { align-items: flex-start; }
  .area-item, .area-label { min-height: auto; }
  .area-label span { font-size: 34px; }
  .large-figure img { aspect-ratio: 16/9; }
  .large-figure-adv { margin-bottom: 24px; }
  .adv-photo { margin: 0; max-width: 100%; }
  .cta-band h2 { font-size: 40px; }
  }

@media (max-width: 640px) {
  .side-rail { width: 54px; padding: 10px 6px 14px; }
  .burger { width: 40px; height: 40px; }
  .icon-menu { font-size: 18px; }
  .side-icons { gap: 18px; margin-top: 56px; }
  .side-icons a { width: 40px; height: 40px; font-size: 17px; }
  .side-drawer { width: min(300px, calc(100vw - 54px)); padding: 18px 16px 14px; }
  .drawer-logo { width: 150px; }
  .drawer-header { padding: 6px 0 12px; }
  .drawer-links { margin-top: 19px; gap: 10px; }
  .drawer-links a { padding: 7px 0; font-size: 14px; }
  .hero { min-height: 600px; margin-top: -24px; padding-top: 24px; }
  .hero::after { background-position: 62% bottom; }
  .hero .inner { padding: 0 24px 54px 88px; }
  .brand-logo { width: min(220px, 50vw); }
  .hero-copy { margin-top: 196px; max-width: 200px; }
  .hero-copy h1 { font-size: 46px; margin-bottom: 76px; line-height: .95; }
  .hero-break { display: none; }
  .hero-line { display: block; white-space: normal; }
  .hero-line-first::after,
  .hero-line-second::after { content: none; }
  .quote-band { padding: 32px 14px 42px 64px; }
  .quote-band em { font-size: 18px; }
  .section { padding: 52px 14px 52px 64px; }
  .section-title { font-size: 34px; }
  .section-lead, .card p, .card li, .adv-bio, .cta-band p, .post-card p, .post-card li { font-size: 14px; }
  .card { padding: 18px 16px; min-height: auto; }
  .card h3 { font-size: 24px; }
  .large-figure-adv { margin-bottom: 20px; }
  .area-label span { font-size: 28px; }
  .areas-top > .area-label:first-child {
    width: 100%;
    margin-right: 0;
  }
  .area-item {
    padding-left: 16px;
    border-left: 0;
  }
  .areas-top > .area-item:nth-child(2) {
    padding-left: 16px;
  }
  .area-item .n { font-size: 32px; }
  .area-item .t { font-size: 17px; }
  .area-item .d { font-size: 14px; }
  .pub .img { height: 170px; }
  .pubs-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band { padding: 64px 14px 76px 64px; }
  .cta-band h2 { font-size: 31px; }
  .footer { padding: 0 14px 32px 64px; }
  .footer .logo { padding: 6px 22px 22px; }
  .footer .logo img { width: 160px; }
  }

.pubs-link-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.pubs-link-all:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

.posts-hero,
.post-single-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(199,163,127,.22), transparent 24%),
    linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
}

.posts-hero::before,
.post-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 85%);
}

.posts-hero-inner,
.post-single-hero .section-inner {
  position: relative;
  z-index: 1;
  padding-left: 96px;
  padding-right: 24px;
  padding-top: 108px;
  padding-bottom: 90px;
}

.posts-kicker,
.post-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

.posts-hero-title,
.post-single-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
}

.posts-hero-copy,
.post-single-excerpt {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,.84);
}

.posts-listing,
.post-single-shell {
  background:
    linear-gradient(180deg, #faf6ef 0%, #f5ede1 100%);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.post-card-press {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.8);
  box-shadow: 0 24px 54px rgba(19,54,61,.08);
}

.post-card-media {
  position: relative;
  min-height: 100%;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 28px 28px 26px;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}

.post-card-title {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1.06;
  color: var(--teal-deep);
}

.post-card-title a {
  transition: color .2s ease;
}

.post-card-title a:hover {
  color: var(--gold);
}

.post-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.post-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}

.post-single-shell .section-inner {
  padding-top: 56px;
  padding-bottom: 90px;
}

.post-single-cover {
  overflow: hidden;
  margin-bottom: 34px;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(19,54,61,.12);
}

.post-single-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.post-single-content {
  padding: 34px clamp(24px, 4vw, 48px);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 60px rgba(19,54,61,.08);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.85;
}

.post-single-content h2,
.post-single-content h3,
.post-single-content h4 {
  margin-top: 1.7em;
  margin-bottom: .55em;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--teal-deep);
  line-height: 1.12;
}

.post-single-content p,
.post-single-content ul,
.post-single-content ol {
  margin: 0 0 1.2em;
}

.post-single-content ul,
.post-single-content ol {
  padding-left: 1.4em;
}

.post-single-content a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(15,91,102,.35);
  text-underline-offset: 3px;
}

.appointments-shell {
  background: linear-gradient(180deg, #faf6ef 0%, #f5ede1 100%);
}

.appointment-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 60px rgba(19,54,61,.08);
}

.appointment-date-form,
.appointment-form {
  display: grid;
  gap: 18px;
}

.appointment-form {
  margin-top: 24px;
}

.appointment-field {
  display: grid;
  gap: 8px;
}

.appointment-field span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.appointment-field input,
.appointment-field select,
.appointment-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19,54,61,.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.appointment-field small {
  color: #b42318;
}

.appointment-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff4e5;
  color: #7a4b00;
}

.appointment-alert-success {
  background: #ecfdf3;
  color: #027a48;
}

.appointment-help {
  margin: 0;
  color: var(--muted);
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.pagination-wrap nav > div:first-child {
  display: none;
}

.pagination-wrap nav > div:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-wrap span,
.pagination-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--teal-deep);
  box-shadow: 0 12px 24px rgba(19,54,61,.06);
}

.pagination-wrap [aria-current="page"] > span,
.pagination-wrap span[aria-current="page"] {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 1100px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card-press {
    grid-template-columns: 1fr;
  }

  .post-card-media {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .posts-hero-inner,
  .post-single-hero .section-inner {
    padding-left: 78px;
    padding-right: 18px;
    padding-top: 82px;
    padding-bottom: 68px;
  }

  .posts-hero-copy,
  .post-single-excerpt {
    font-size: 17px;
  }

  .post-card-body {
    padding: 22px 20px 20px;
  }

  .post-card-title {
    font-size: 28px;
  }

  .post-card-excerpt,
  .post-single-content {
    font-size: 16px;
  }

  .post-single-content {
    padding: 24px 18px;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .appointment-hero .posts-hero-inner {
    padding-left: 64px;
    padding-right: 14px;
  }
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.adv-grid .adv-card {
  padding: 26px;
  border-radius: 18px;
  background: #f8f2e8;
  box-shadow: 0 20px 46px rgba(19,54,61,.06);
}

.adv-grid .adv-photo {
  max-width: 220px;
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
}

.adv-grid .adv-name {
  font-size: 28px;
  font-style: normal;
  line-height: 1.1;
}

.adv-grid .adv-oab {
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: .04em;
}

.adv-grid + .large-figure-adv {
  margin-top: 40px;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}
