/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:      #063244;
  --navy-dark: #041e2b;
  --navy-mid:  #0a4257;
  --gold:      #ffb133;
  --gold-dim:  rgba(255,177,51,0.18);
  --cream:     #f8f5f0;
  --white:     #ffffff;
  --ink:       #1a2e3b;
  --muted:     rgba(255,255,255,0.52);
  --rule:      rgba(6,50,68,0.1);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

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

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: #f4f2ef;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  border-bottom: 1px solid rgba(6,50,68,0.08);
}

.nav-logo img { height: 62px; object-fit: contain; }

.nav-center {
  display: flex; align-items: center; gap: 2.4rem;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(6,50,68,0.7);
  transition: color .25s;
}
.nav-link:hover { color: var(--navy); }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid rgba(6,50,68,0.45);
  padding: .55rem 1.5rem;
  transition: border-color .3s, color .3s, background .3s;
  cursor: pointer;
}
.nav-cta:hover { border-color: var(--navy); background: rgba(6,50,68,0.05); }

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 1px;
  background: var(--navy);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed; top: 68px; left: 0; width: 100%;
  background: #f4f2ef;
  border-bottom: 1px solid rgba(6,50,68,0.08);
  flex-direction: column;
  padding: 1.6rem 6%;
  gap: 1.4rem;
  z-index: 199;
  pointer-events: none;
}
.nav-mobile.open { display: flex; pointer-events: all; }
.nav-mobile .nav-link {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.12em;
  color: rgba(6,50,68,0.75); padding: .6rem 0;
  border-bottom: 1px solid rgba(6,50,68,0.08);
}
.nav-mobile .nav-cta {
  align-self: flex-start; margin-top: .4rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: opacity .3s, transform .25s;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }

.btn-solid {
  background: var(--gold); color: var(--navy-dark);
  padding: .85rem 2.4rem;
}

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  padding: .85rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ── SECTION LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--gold);
}
.label-dark { color: rgba(6,50,68,0.4); }
.label-dark::before { background: rgba(6,50,68,0.3); }

/* ── HERO ── */
#hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 68px;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-photo { position: relative; overflow: hidden; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  min-height: 580px;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,30,43,0.18) 0%, transparent 55%);
}
.hero-accent {
  position: absolute; bottom: 0; right: 0;
  width: 56px; height: 56px;
  background: var(--gold); z-index: 3;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 9% 80px 8%;
}
.hero-eyebrow {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,177,51,0.7); margin-bottom: 2rem;
}
.hero-name {
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
  font-weight: 400; line-height: 1.06;
  color: var(--white); margin-bottom: 2rem;
}
.hero-name em { color: var(--gold); }
.hero-line {
  width: 40px; height: 1px;
  background: rgba(255,177,51,0.4); margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1rem; font-weight: 400; line-height: 1.9;
  color: rgba(255,255,255,0.5);
  max-width: 400px; margin-bottom: 3.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SOBRE ── */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy-mid);
}
.sobre-text-col {
  padding: 100px 7% 100px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.sobre-text-col h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: var(--white); margin-bottom: 2.4rem;
}
.sobre-text-col h2 em { color: var(--gold); }
.sobre-p {
  font-size: 1rem; font-weight: 400; line-height: 1.95;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem;
}
.sobre-stats {
  display: flex; gap: 3.5rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.stat-l {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: .4rem;
}
.sobre-photo { position: relative; overflow: hidden; }
.sobre-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; min-height: 520px;
}
.sobre-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-mid) 0%, transparent 50%);
  pointer-events: none;
}
.sobre-gold-bar {
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold); z-index: 2;
}

/* ── FORMAÇÃO ── */
#formacao {
  background: var(--cream);
  padding: 110px 8%;
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 100px;
  align-items: start;
}
.formacao-label h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; line-height: 1.25; color: var(--navy);
}
.formacao-label h2 em { color: var(--navy-mid); }
.form-row {
  display: flex; align-items: flex-start; gap: 1.6rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--rule);
}
.form-row:first-child { border-top: 1px solid var(--rule); }
.form-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: .55rem;
}
.form-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: .2rem;
}
.form-sub { font-size: 0.9rem; font-weight: 400; color: #8a9ba8; line-height: 1.5; }

/* ── SERVIÇOS ── */
#servicos {
  background: var(--navy);
  padding: 110px 8%;
  position: relative; overflow: hidden;
}
#servicos::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,177,51,0.25);
}
.servicos-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 60px;
}
.servicos-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; color: var(--white); line-height: 1.25;
}
.servicos-head h2 em { color: var(--gold); }
.serv-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.serv-card {
  padding: 2.6rem 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden; transition: background .35s;
}
.serv-card:hover { background: rgba(255,255,255,0.03); }
.serv-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 400;
  color: rgba(255,177,51,0.08);
  line-height: 1; margin-bottom: 1.6rem; transition: color .35s;
}
.serv-card:hover .serv-n { color: rgba(255,177,51,0.18); }
.serv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400;
  color: rgba(255,255,255,0.85); margin-bottom: .8rem; line-height: 1.4;
}
.serv-desc { font-size: 0.95rem; font-weight: 400; line-height: 1.8; color: rgba(255,255,255,0.38); }
.serv-bar {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .5s ease;
}
.serv-card:hover .serv-bar { width: 100%; }

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--cream); padding: 110px 8%; }
#diferenciais h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; line-height: 1.25;
  color: var(--navy); margin-bottom: 1rem;
}
#diferenciais h2 em { color: var(--navy-mid); }
#diferenciais .intro {
  font-size: 1rem; font-weight: 400; line-height: 1.9;
  color: #7a8b96; max-width: 540px; margin-bottom: 4.5rem;
}
.dif-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(6,50,68,0.06); margin-bottom: 4rem;
}
.dif-card {
  background: var(--cream); padding: 2.4rem 2rem;
  position: relative; transition: background .3s;
}
.dif-card:hover { background: var(--white); }
.dif-card svg { margin-bottom: 1.4rem; }
.dif-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: .55rem;
}
.dif-card-desc { font-size: 0.95rem; font-weight: 400; line-height: 1.8; color: #7a8b96; }
.dif-gold-line {
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .4s ease;
}
.dif-card:hover .dif-gold-line { width: 100%; }

/* ── CONTATO ── */
#contato { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy-dark); }
.contato-photo { position: relative; overflow: hidden; }
.contato-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; min-height: 520px;
}
.contato-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--navy-dark) 100%);
}
.contato-gold-line {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 3px; background: var(--gold); z-index: 2;
}
.contato-col {
  padding: 90px 8% 90px 7%;
  display: flex; flex-direction: column; justify-content: center;
}
.contato-col h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 3.5rem;
}
.contato-col h2 em { color: var(--gold); }
.c-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.4rem; }
.c-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(255,177,51,0.2);
  display: flex; align-items: center; justify-content: center;
}
.c-label {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,177,51,0.6); margin-bottom: .35rem;
}
.c-value { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.65; }
.c-value a { color: rgba(255,255,255,0.65); transition: color .25s; }
.c-value a:hover { color: var(--gold); }
.horario {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 0; margin-bottom: 2.4rem;
}
.horario .c-label { margin-bottom: .5rem; }
.horario .c-value { color: rgba(255,255,255,0.45); }

/* ── ATENDIMENTO ── */
#atendimento {
  background: var(--gold);
  padding: 52px 8%;
  text-align: center;
}
#atendimento h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--navy-dark); line-height: 1.2;
}

/* ── FOOTER ── */
footer {
  background: #f4f2ef;
  padding: 56px 8%;
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  border-top: 1px solid rgba(6,50,68,0.08);
}
.ft-brand img { height: 40px; object-fit: contain; margin-bottom: 1.2rem; }
.ft-brand p { font-size: 0.9rem; font-weight: 400; line-height: 1.8; color: rgba(6,50,68,0.55); max-width: 260px; }
.ft-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: .7rem; }
.ft-col a { font-size: 0.9rem; font-weight: 400; color: rgba(6,50,68,0.55); transition: color .25s; }
.ft-col a:hover { color: var(--navy); }
.ft-col p { font-size: 0.9rem; font-weight: 400; color: rgba(6,50,68,0.55); line-height: 1.75; margin-top: .6rem; }
.ft-bottom {
  background: #ece9e3;
  text-align: center; padding: 1.1rem 5%;
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.1em; color: rgba(6,50,68,0.35);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  display: inline-flex; align-items: center; gap: .7rem;
  background: #1aad4e; padding: .75rem 1.4rem; border-radius: 50px;
  transition: transform .25s, background .25s;
  color: white; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}
.wa-float:hover { transform: translateY(-2px); background: #158f41; }
.wa-float svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* ── UTILS ── */
.tc { text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-toggle { display: flex; }

  #hero, #sobre, #contato { grid-template-columns: 1fr; }
  .hero-photo img, .sobre-photo img, .contato-photo img { min-height: 380px; }
  #formacao { grid-template-columns: 1fr; gap: 40px; }
  .serv-grid, .dif-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .serv-grid, .dif-grid { grid-template-columns: 1fr; }
  .sobre-stats { gap: 2.5rem; }
  #formacao, #servicos, #diferenciais { padding: 70px 6%; }
}

/* ═══════════════════════════════════════
   ARTIGOS — listagem
   ═══════════════════════════════════════ */

.page-hero {
  background: var(--navy);
  padding: 130px 8% 80px;
  border-bottom: 3px solid var(--gold);
}
.page-hero .label {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.page-hero .label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.5);
  max-width: 500px; line-height: 1.8;
}

.artigos-section {
  background: var(--cream);
  padding: 80px 8%;
}
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.artigo-card {
  background: var(--white);
  display: flex; flex-direction: column;
  border-top: 2px solid transparent;
  transition: border-color .35s, transform .25s;
  text-decoration: none; color: inherit;
}
.artigo-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.artigo-card-body {
  padding: 2rem 2rem 2.4rem;
  display: flex; flex-direction: column; flex: 1;
}
.artigo-tag {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.artigo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--navy); line-height: 1.3;
  margin-bottom: .8rem;
}
.artigo-excerpt {
  font-size: 0.88rem; font-weight: 400;
  line-height: 1.8; color: #6b7a84;
  flex: 1; margin-bottom: 1.6rem;
}
.artigo-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.artigo-date {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em; color: #a0adb5;
}
.artigo-link {
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .25s;
}
.artigo-link:hover { color: var(--gold); }
.artigo-link svg { transition: transform .25s; }
.artigo-link:hover svg { transform: translateX(3px); }

@media (max-width: 960px) { .artigos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .artigos-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   ARTIGO — página individual
   ═══════════════════════════════════════ */

.art-hero {
  background: var(--navy);
  padding: 130px 8% 80px;
  border-bottom: 3px solid var(--gold);
}
.breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color .25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,177,51,0.6); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.art-tag {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.art-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.art-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 1.6rem;
  max-width: 780px;
}
.art-title em { font-style: italic; color: var(--gold); }

.art-subtitle {
  font-size: 1.05rem; font-weight: 400;
  color: rgba(255,255,255,0.55);
  max-width: 640px; line-height: 1.8;
  margin-bottom: 2.4rem;
}
.art-meta {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.art-author { display: flex; align-items: center; gap: 1rem; }
.art-author-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 1px solid rgba(255,177,51,0.3);
}
.art-author-name { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.75); }
.art-author-role {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: .1rem;
}

.art-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 8%;
}
.art-content p {
  font-size: 1rem; font-weight: 400;
  line-height: 1.95; color: #2e4552;
  margin-bottom: 1.6rem;
}
.art-content h2 {
  font-size: 1.7rem; font-weight: 400;
  color: var(--navy); line-height: 1.25;
  margin-top: 3rem; margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--rule);
}
.art-content h3 {
  font-size: 1.2rem; font-weight: 400;
  color: var(--navy); line-height: 1.3;
  margin-top: 2rem; margin-bottom: .8rem;
}
.art-quote {
  border-left: 3px solid var(--gold);
  padding: 1.4rem 2rem;
  margin: 2.5rem 0;
  background: var(--cream);
}
.art-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--navy); line-height: 1.6;
  margin-bottom: .6rem !important;
}
.art-quote cite {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(6,50,68,0.45);
}

.art-sidebar {}
.sidebar-sticky { position: sticky; top: 90px; }
.sidebar-author {
  background: var(--cream);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid var(--gold);
}
.sidebar-author img {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: top;
  margin-bottom: 1rem;
}
.sidebar-author h4 { font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: .3rem; }
.sidebar-author p { font-size: 0.8rem; font-weight: 400; line-height: 1.7; color: #6b7a84; }

.sidebar-cta { background: var(--navy); padding: 2rem; }
.sidebar-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--white); margin-bottom: .8rem; line-height: 1.3;
}
.sidebar-cta p {
  font-size: 0.85rem; font-weight: 400;
  line-height: 1.75; color: rgba(255,255,255,0.55);
  margin-bottom: 1.4rem;
}
.btn-gold-sm {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--gold); color: var(--navy);
  padding: .7rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s;
}
.btn-gold-sm:hover { background: #ffc55a; }

@media (max-width: 960px) {
  .art-body { grid-template-columns: 1fr; gap: 48px; }
  .art-sidebar { display: none; }
}
