/* ==========================================================================
   Souza Gitirana Advocacia — stylesheet
   Palette, type and layout tokens power every page from this one file.
   ========================================================================== */

:root {
  --dark: #14100D;
  --dark-2: #0F0C0A;
  --dark-3: #0C0A08;
  --dark-card: #181310;
  --dark-card-hover: #1E1813;

  --cream: #F2EBDD;
  --cream-2: #FAF5EA;
  --cream-card: #F5EEE0;
  --cream-card-hover: #E9E0CE;

  --ink: #241D16;
  --ink-soft: #3A3026;
  --ink-soft-2: #2E2720;
  --ink-body: #4A4034;

  --gold: #B08D4F;
  --gold-light: #D8BC85;
  --gold-soft: #CDB07A;
  --gold-text: #8A6A2E;
  --gold-num: #C9B287;

  --label-brown: #8A7455;
  --label-mute: #9A8D7C;

  --text-cream: #EDE5D6;
  --text-cream-2: #F6F0E4;
  --text-cream-soft: #C9BEAD;
  --text-cream-mute: #A99B87;
  --text-cream-mute-2: #9C8A72;
  --text-cream-mute-3: #7D6E5C;
  --text-cream-mute-4: #6B5E4E;
  --text-cream-mute-5: #5C5145;

  --border-gold-strong: rgba(176, 141, 79, .55);
  --border-gold: rgba(176, 141, 79, .35);
  --border-gold-soft: rgba(176, 141, 79, .22);
  --border-gold-faint: rgba(176, 141, 79, .18);
  --border-ink: rgba(36, 29, 22, .16);
  --border-ink-soft: rgba(36, 29, 22, .12);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Lora", Georgia, serif;

  --container: 1280px;
  --container-narrow: 1180px;
}

/* Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
}
body.theme-light { background: var(--cream); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s ease, opacity .25s ease, border-color .25s ease, background .25s ease; }
a:hover { color: var(--gold-light); }
.theme-light a { color: var(--gold-text); }
.theme-light a:hover { color: var(--ink); }
::selection { background: var(--gold); color: var(--dark); }

input, textarea, select, button { font-family: inherit; font-size: 16.5px; color: var(--text-cream); }
input::placeholder, textarea::placeholder { color: var(--text-cream-mute-4); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); }

@keyframes riseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes drawRule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(7px); opacity: 1; } }

.rise-in { animation: riseIn 1s cubic-bezier(.2, .8, .2, 1) both; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--dark); padding: 12px 20px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Layout helpers
   ========================================================================== */
.wrap { max-width: var(--container); margin: 0 auto; padding-left: clamp(24px, 6vw, 64px); padding-right: clamp(24px, 6vw, 64px); }
.wrap--narrow { max-width: var(--container-narrow); margin: 0 auto; padding-left: clamp(24px, 6vw, 64px); padding-right: clamp(24px, 6vw, 64px); }
.wrap--article { max-width: 880px; margin: 0 auto; padding-left: clamp(24px, 6vw, 64px); padding-right: clamp(24px, 6vw, 64px); }
.wrap--prose { max-width: 760px; margin: 0 auto; padding-left: clamp(24px, 6vw, 64px); padding-right: clamp(24px, 6vw, 64px); }

.section { padding-top: clamp(84px, 11vw, 168px); padding-bottom: clamp(84px, 11vw, 168px); }
.section--tight { padding-top: clamp(56px, 7vw, 110px); padding-bottom: clamp(56px, 7vw, 110px); }
.section--page-head { padding-top: clamp(64px, 9vw, 132px); padding-bottom: clamp(56px, 8vw, 112px); }
.section--dark { background: var(--dark); }
.section--dark2 { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--cream2 { background: var(--cream-2); color: var(--ink); }
.border-top-gold { border-top: 1px solid var(--border-gold-soft); }
.border-bottom-gold { border-bottom: 1px solid var(--border-gold-soft); }
.border-top-ink { border-top: 1px solid var(--border-ink-soft); }

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.theme-light .eyebrow { color: var(--label-brown); }

.rule-row { display: flex; align-items: baseline; gap: clamp(14px, 3vw, 30px); flex-wrap: wrap; }
.rule-row__line { flex: 1; min-width: 60px; height: 1px; background: var(--border-ink); }
.section--dark .rule-row__line, .section--dark2 .rule-row__line { background: var(--border-gold); }

/* Header & nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 13, 11, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold-soft);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px clamp(14px, 5vw, 56px) 15px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 11px 18px; flex-wrap: nowrap;
}
.brand { display: flex; flex-direction: column; gap: 2px; color: var(--text-cream); flex: 0 1 auto; }
.brand__name {
  font-family: var(--font-display); font-size: clamp(14px, 1.9vw, 23px); font-weight: 800;
  letter-spacing: clamp(.04em, .18vw, .08em); text-transform: uppercase; line-height: 1.12;
}
.brand__title {
  font-size: clamp(8.5px, 1.8vw, 10px); letter-spacing: clamp(.14em, .5vw, .26em);
  text-transform: uppercase; font-weight: 600; color: var(--text-cream-mute-2);
}
.nav {
  display: flex; align-items: center; gap: 8px clamp(5px, 1.6vw, 30px);
  flex-wrap: wrap; justify-content: flex-end; flex: 0 1 auto;
}

@media (max-width: 900px) {
  .site-header__inner { flex-direction: column; align-items: flex-start; padding-top: 16px; padding-bottom: 16px; }
  .nav {
    width: 100%; justify-content: center; flex-wrap: wrap;
    padding-top: 14px; margin-top: 2px; border-top: 1px solid var(--border-gold-soft);
    row-gap: 12px;
  }
}
.nav__link {
  font-size: clamp(9.5px, 2.4vw, 13px); line-height: 1.2; letter-spacing: clamp(0em, .1vw, .18em);
  text-transform: uppercase; font-weight: 600; white-space: nowrap; color: var(--text-cream-soft);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-light); }
.nav__cta {
  border: 1px solid var(--border-gold-strong);
  padding: clamp(3px, 1.1vw, 10px) clamp(5px, 1.4vw, 16px);
  font-size: clamp(9px, 2.1vw, 11.5px); line-height: 1.2; letter-spacing: clamp(0em, .12vw, .18em);
  text-transform: uppercase; font-weight: 600; color: var(--gold-light); white-space: nowrap; flex: 0 0 auto;
}
.nav__cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Buttons
   ========================================================================== */
.btn {
  display: inline-block; padding: 19px 40px; font-size: 12.5px;
  letter-spacing: .24em; text-transform: uppercase; border: 0; cursor: pointer;
}
.btn-solid { background: var(--gold); color: var(--dark); }
.btn-solid:hover { background: var(--gold-light); color: var(--dark); }
.btn-outline { border: 1px solid var(--border-gold-strong); color: var(--gold-light); background: transparent; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--text-cream-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.text-link {
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-text); border-bottom: 1px solid rgba(138, 106, 46, .45); padding-bottom: 6px;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }
.text-link--dark { color: var(--gold-soft); border-bottom-color: rgba(205, 176, 122, .4); }
.text-link--dark:hover { color: var(--text-cream-2); border-color: var(--text-cream-2); }
.text-link--gold { color: var(--gold); border-bottom-color: var(--border-gold); }
.text-link--gold:hover { color: var(--text-cream-2); border-color: var(--text-cream-2); }

/* Hero (home)
   ========================================================================== */
.hero {
  position: relative; min-height: min(94vh, 1200px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--border-gold);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 38% 45%; filter: saturate(.72) contrast(1.05);
}
.hero__scrim-1 { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 40%, rgba(20, 16, 13, .42) 0%, rgba(20, 16, 13, .86) 62%, #14100D 100%); }
.hero__scrim-2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 16, 13, .72) 0%, rgba(20, 16, 13, 0) 26%, rgba(20, 16, 13, 0) 62%, rgba(20, 16, 13, .94) 100%); }
.hero__content {
  position: relative; z-index: 2; max-width: 1000px;
  padding: clamp(96px, 13vh, 148px) clamp(24px, 6vw, 64px) clamp(84px, 10vh, 116px);
  text-align: center;
}
.hero__title {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 7.2vw, 100px); line-height: .98; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-cream-2); text-wrap: balance;
}
.hero__title span { display: block; }
.hero__rule {
  width: clamp(120px, 18vw, 230px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: clamp(24px, 3.4vh, 38px) auto; animation: drawRule 1.6s .5s cubic-bezier(.2, .8, .2, 1) both;
}
.hero__kicker {
  margin: 0 auto; max-width: min(620px, 92%); font-family: var(--font-display);
  font-size: clamp(15px, 1.7vw, 20px); letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); line-height: 1.7;
}
.hero__lead {
  margin: clamp(34px, 5vh, 58px) auto 0; max-width: min(720px, 94%);
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(25px, 3.8vw, 47px); line-height: 1.16; color: var(--text-cream); text-wrap: balance;
}
.hero__more {
  margin: clamp(38px, 5.5vh, 64px) auto 0; display: flex; flex-direction: column;
  align-items: center; gap: 9px; width: max-content; color: var(--text-cream-mute-2);
}
.hero__more:hover { color: var(--gold-light); }
.hero__more span:first-child { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; }
.hero__more-line {
  display: block; width: 1px; height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent); animation: bob 2.6s ease-in-out infinite;
}

/* Urgency strip & pull quotes
   ========================================================================== */
.urgency-strip { text-align: center; }
.urgency-strip p {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 2.1vw, 25px); color: #D8CFBF;
}
.quote-block { position: relative; overflow: hidden; }
.quote-block__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-block__scrim { position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% 50%, rgba(15, 12, 10, .55), #0F0C0A 78%); }
.quote-block__body { position: relative; z-index: 2; margin: 0 auto; max-width: 1000px; padding: clamp(92px, 13vw, 190px) clamp(24px, 6vw, 64px); text-align: center; }
.quote-block__text { margin: 0; font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(25px, 3.7vw, 48px); line-height: 1.22; color: #F1E9DA; text-wrap: pretty; }
.quote-block__cite { margin-top: clamp(28px, 3.6vw, 44px); font-size: 12px; letter-spacing: .34em; text-transform: uppercase; font-weight: 600; color: var(--gold); }

/* Manifesto (numbered columns)
   ========================================================================== */
.manifesto blockquote {
  margin: 0; border-left: 1px solid rgba(138, 116, 85, .5);
  padding-left: clamp(22px, 4vw, 48px); max-width: min(760px, 100%);
}
.manifesto blockquote p {
  margin: 0; font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(27px, 4.2vw, 52px); line-height: 1.14; color: var(--ink); text-wrap: pretty;
}
.manifesto blockquote footer { margin-top: clamp(18px, 2.4vw, 28px); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; color: var(--label-brown); }
.numbered-grid { margin-top: clamp(56px, 7vw, 104px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--border-ink-soft); display: flex; flex-wrap: wrap; gap: clamp(30px, 3.6vw, 48px); }
.numbered-grid--tight { margin-top: 0; padding-top: 0; border-top: 0; }
.numbered-item {
  flex: 1 1 330px; border-top: 1px solid var(--border-gold-strong); padding-top: clamp(18px, 2.2vw, 26px);
  display: grid; grid-template-columns: minmax(0, auto) minmax(0, 1fr); gap: clamp(14px, 2vw, 26px); align-items: start;
}
.numbered-item__num { margin: 0; font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 38px); font-weight: 600; line-height: 1; color: var(--gold-num); }
.numbered-item__label { margin: 0 0 12px; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); }
.numbered-item__text { margin: 0; font-size: clamp(18.5px, 1.65vw, 23px); line-height: 1.78; color: var(--ink-soft); text-wrap: pretty; }

/* Feature band (Gestão de Crise) with background art
   ========================================================================== */
.feature-band { position: relative; background: var(--dark); overflow: hidden; }
.feature-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; opacity: .3; filter: grayscale(.25) contrast(1.1); }
.feature-band__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, #14100D 8%, rgba(20, 16, 13, .9) 46%, rgba(20, 16, 13, .55) 100%); }
.feature-band__body { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: clamp(84px, 11vw, 172px) clamp(24px, 6vw, 64px); }
.feature-band__title { margin: 0; max-width: 20ch; font-family: var(--font-display); font-weight: 600; font-size: clamp(33px, 5.6vw, 72px); line-height: 1.05; color: var(--text-cream-2); text-wrap: balance; }
.feature-band__title em { font-style: italic; color: var(--gold-soft); }
.feature-band__lead { margin: clamp(26px, 3.4vw, 40px) 0 0; max-width: 56ch; font-size: clamp(19px, 1.75vw, 24px); line-height: 1.72; color: var(--text-cream-soft); text-wrap: pretty; }
.feature-band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1px; background: var(--border-gold); margin-top: clamp(52px, 6.5vw, 96px); }
.feature-band__cell { background: var(--dark-card); padding: clamp(30px, 3.6vw, 48px); }
.feature-band__cell-num { margin: 0 0 22px; font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); font-weight: 600; line-height: 1; color: rgba(176, 141, 79, .55); }
.feature-band__cell h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(21px, 2.1vw, 27px); font-weight: 600; letter-spacing: .02em; color: var(--text-cream-2); }
.feature-band__cell p { margin: 0; font-size: 18.5px; line-height: 1.68; color: #A99B87; text-wrap: pretty; }

/* Practice-area cards
   ========================================================================== */
.card-grid { display: flex; flex-wrap: wrap; gap: clamp(20px, 2.4vw, 32px); }
.card {
  flex: 1 1 320px; border: 1px solid var(--border-ink); padding: clamp(28px, 3.4vw, 46px);
  background: var(--cream-card); transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card__eyebrow { margin: 0 0 clamp(22px, 2.6vw, 32px); font-size: 11.5px; letter-spacing: .32em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); }
.card h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 33px); font-weight: 600; line-height: 1.14; color: var(--ink); text-wrap: balance; }
.card p { margin: 0; font-size: 18.5px; line-height: 1.7; color: var(--ink-body); text-wrap: pretty; }

/* Profile section (advogado)
   ========================================================================== */
.profile { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 6vw, 96px); align-items: center; }
.profile__frame { border: 1px solid var(--border-gold); padding: clamp(10px, 1.2vw, 16px); }
.profile__photo { position: relative; width: 100%; aspect-ratio: 4 / 5; }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.profile__title { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.06; color: var(--text-cream-2); text-wrap: balance; }
.profile__oab { margin: 18px 0 clamp(28px, 3.4vw, 40px); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; color: var(--text-cream-mute-2); }
.profile__body p { margin: 0 0 1.1em; font-size: clamp(18.5px, 1.65vw, 23px); line-height: 1.72; color: var(--text-cream-soft); text-wrap: pretty; }

/* Acervo teaser & listing
   ========================================================================== */
.acervo-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--border-ink); border-top: 1px solid var(--border-ink); border-bottom: 1px solid var(--border-ink); }
.acervo-teaser { display: block; background: var(--cream); padding: clamp(30px, 3.6vw, 48px); color: var(--ink); transition: background .3s ease; }
.acervo-teaser:hover { background: var(--cream-card-hover); color: var(--ink); }
.acervo-teaser__label { margin: 0 0 clamp(22px, 2.6vw, 34px); font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--label-brown); }
.acervo-teaser h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 29px); font-weight: 600; line-height: 1.18; text-wrap: balance; }
.acervo-teaser p { margin: 0 0 26px; font-size: 18px; line-height: 1.66; color: var(--ink-body); text-wrap: pretty; }
.acervo-teaser span { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); }

.essay-list { border-top: 1px solid var(--border-ink); }
.essay-row {
  display: grid; gap: clamp(10px, 2vw, 28px); padding: clamp(30px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--border-ink); color: var(--ink); transition: padding-left .35s ease;
}
.essay-row:hover { padding-left: 14px; }
.essay-row__meta { display: flex; gap: clamp(14px, 3vw, 34px); align-items: baseline; flex-wrap: wrap; }
.essay-row__cat { font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--gold-text); }
.essay-row__time { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--label-mute); }
.essay-row h2 { margin: 0; max-width: 26ch; font-family: var(--font-display); font-size: clamp(27px, 3.6vw, 46px); font-weight: 600; line-height: 1.1; text-wrap: balance; }
.essay-row p { margin: 0; max-width: 60ch; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.7; color: var(--ink-body); text-wrap: pretty; }
.essay-disclaimer { margin: clamp(44px, 5vw, 72px) 0 0; font-size: 17px; line-height: 1.7; color: #7A6E5F; font-style: italic; max-width: 52ch; }

/* Essay article page
   ========================================================================== */
.essay-hero { padding-top: clamp(52px, 7vw, 104px); padding-bottom: clamp(48px, 6.5vw, 96px); }
.essay-hero__meta { margin: 0 0 clamp(26px, 3.4vw, 42px); display: flex; gap: clamp(14px, 3vw, 28px); flex-wrap: wrap; font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.essay-hero__meta a { color: var(--gold); letter-spacing: .3em; }
.essay-hero__meta span { color: var(--text-cream-mute-4); }
.essay-hero h1 { margin: 0; max-width: 24ch; font-family: var(--font-display); font-weight: 600; font-size: clamp(33px, 5.1vw, 66px); line-height: 1.06; color: var(--text-cream-2); text-wrap: balance; }
.essay-hero__subtitle { margin: clamp(22px, 3vw, 34px) 0 0; max-width: 52ch; font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2.1vw, 27px); line-height: 1.45; color: var(--text-cream-soft); text-wrap: pretty; }

.essay-body { padding-top: clamp(56px, 8vw, 120px); padding-bottom: clamp(56px, 8vw, 120px); }
.essay-body p { margin: 0 0 1.35em; font-size: clamp(19px, 1.75vw, 23px); line-height: 1.8; color: var(--ink-soft-2); text-wrap: pretty; }
.essay-body p.drop-cap::first-letter {
  float: left; font-family: var(--font-display); font-size: 5em; line-height: .8; font-weight: 700;
  margin: .05em .12em 0 0; color: var(--gold-text);
}
.essay-body h2 { margin: clamp(40px, 5vw, 64px) 0 1.35em; font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 34px); font-weight: 600; line-height: 1.2; color: var(--ink); }
.essay-body blockquote { margin: clamp(40px, 5vw, 68px) 0; padding: 0 0 0 clamp(20px, 3.4vw, 40px); border-left: 1px solid rgba(138, 106, 46, .6); }
.essay-body blockquote p { margin: 0; font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: clamp(23px, 3.1vw, 38px); line-height: 1.24; color: var(--ink); text-wrap: pretty; }
.essay-footer { margin-top: clamp(52px, 6.5vw, 88px); padding-top: clamp(28px, 3.4vw, 40px); border-top: 1px solid var(--border-ink); display: flex; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; align-items: baseline; justify-content: space-between; }
.essay-footer__author { margin: 0; font-size: 16.5px; line-height: 1.7; color: #5A4F42; }
.essay-footer__author span { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--label-brown); }

.related { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 44px); }
.related__item { flex: 1 1 260px; display: block; color: var(--ink); border-top: 1px solid rgba(36, 29, 22, .25); padding-top: 24px; }
.related__item:hover { border-color: var(--gold-text); }
.related__item p:first-child { margin: 0 0 14px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--label-brown); }
.related__item h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: clamp(21px, 2.1vw, 28px); font-weight: 600; line-height: 1.16; text-wrap: balance; }
.related__item p:last-child { margin: 0; font-size: 18px; line-height: 1.68; color: var(--ink-body); text-wrap: pretty; }

/* Areas / repertório index + tabs
   ========================================================================== */
.repertorio { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(34px, 5vw, 80px); }
.repertorio__nav { position: sticky; top: clamp(96px, 12vw, 132px); align-self: start; max-width: min(100%, 260px); }
.repertorio__nav-label { margin: 0 0 clamp(24px, 3vw, 34px); font-size: 11.5px; letter-spacing: .36em; text-transform: uppercase; font-weight: 600; color: var(--label-mute); }
.repertorio__tabs { display: flex; flex-direction: column; gap: 2px; }
.repertorio__tab {
  display: flex; align-items: baseline; gap: 14px; padding: 13px 0 13px 14px;
  border: 0; border-left: 2px solid transparent; background: transparent; cursor: pointer;
  text-align: left; color: #8C8172; font-family: inherit;
}
.repertorio__tab:hover { color: var(--ink); }
.repertorio__tab[aria-selected="true"] { border-left-color: var(--gold); color: var(--ink); }
.repertorio__tab-num { font-size: 11px; letter-spacing: .22em; color: #B4A78F; }
.repertorio__tab-title { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; line-height: 1.35; }
.repertorio__panel-head { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); padding-bottom: clamp(26px, 3vw, 38px); border-bottom: 1px solid var(--border-ink); }
.repertorio__panel-num { font-size: 12px; letter-spacing: .24em; color: var(--gold); }
.repertorio__panel-head h2 { margin: 0; font-family: var(--font-display); font-size: clamp(23px, 3vw, 40px); font-weight: 600; letter-spacing: .03em; line-height: 1.1; color: var(--ink); text-wrap: balance; }
.repertorio__summary { margin: clamp(24px, 3vw, 34px) 0 0; max-width: 62ch; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.72; color: var(--ink-body); text-wrap: pretty; }
.repertorio__lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 0 clamp(28px, 4vw, 64px); margin-top: clamp(30px, 3.6vw, 48px); }
.repertorio__lists ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.repertorio__lists li { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; font-size: 18.5px; line-height: 1.5; color: var(--ink-soft); }
.repertorio__lists li span:first-child { color: var(--gold); }
.repertorio__panel[hidden] { display: none; }

@media (max-width: 820px) {
  .repertorio__nav { position: static; top: auto; max-width: 100%; margin-bottom: 8px; }
  .repertorio__tabs { flex-direction: row; flex-wrap: wrap; gap: 8px 22px; }
  .repertorio__tab { padding: 6px 0; border-left: 0; border-bottom: 2px solid transparent; }
  .repertorio__tab[aria-selected="true"] { border-left-color: transparent; border-bottom-color: var(--gold); }
}

/* Method steps (escritório)
   ========================================================================== */
.method-grid { display: flex; flex-wrap: wrap; gap: clamp(28px, 3.5vw, 44px); }
.method-item { flex: 1 1 215px; border-top: 1px solid rgba(176, 141, 79, .7); padding-top: 26px; }
.method-item__num { margin: 0 0 16px; font-family: var(--font-display); font-size: 34px; font-weight: 600; line-height: 1; color: var(--gold); }
.method-item h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: clamp(21px, 2vw, 26px); font-weight: 600; color: var(--ink); }
.method-item p { margin: 0; font-size: 18.5px; line-height: 1.68; color: var(--ink-body); text-wrap: pretty; }

/* Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 5.5vw, 88px); }
.contact-label { margin: 0 0 clamp(30px, 3.6vw, 44px); font-size: 12px; letter-spacing: .36em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.contact-card { display: block; border: 1px solid var(--border-gold-soft); background: var(--dark-card); padding: clamp(24px, 3vw, 34px); margin-bottom: 16px; color: var(--text-cream); transition: border-color .3s ease, background .3s ease; }
.contact-card:hover { border-color: var(--gold); background: var(--dark-card-hover); }
.contact-card--primary { border-color: rgba(176, 141, 79, .4); }
.contact-card__kicker { margin: 0 0 10px; display: flex; align-items: center; gap: 11px; font-size: 11.5px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.contact-card__kicker--muted { color: var(--text-cream-mute-2); }
.contact-card__dot { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.contact-card__value { margin: 0; font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 600; line-height: 1.1; color: var(--text-cream-2); word-break: break-word; }
.contact-card__value--small { font-size: clamp(19px, 2vw, 25px); line-height: 1.3; }
.contact-card__note { margin: 12px 0 0; font-size: 17.5px; line-height: 1.6; color: var(--text-cream-mute-2); }
.contact-map { border: 1px solid var(--border-gold); filter: grayscale(.35) contrast(1.05); }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field span { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; color: var(--text-cream-mute-2); }
.field input, .field select, .field textarea { background: transparent; border: 0; border-bottom: 1px solid var(--border-gold); padding: 11px 0; transition: border-color .25s ease; }
.field select { background: var(--dark-card); }
.field textarea { resize: vertical; line-height: 1.6; }
.form-submit-row { display: flex; align-items: flex-start; gap: 14px; padding-top: 4px; flex-wrap: wrap; }
.form-status { font-size: 16px; line-height: 1.6; color: var(--text-cream-mute-3); }
.form-note { margin: clamp(30px, 3.6vw, 44px) 0 0; padding-top: 22px; border-top: 1px solid var(--border-gold-soft); font-size: 16px; line-height: 1.75; color: var(--text-cream-mute-4); }

/* Footer
   ========================================================================== */
.site-footer { background: var(--dark-3); color: var(--text-cream-mute); border-top: 1px solid var(--border-gold-soft); }
.site-footer__grid { max-width: var(--container); margin: 0 auto; padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(30px, 4vw, 56px); }
.site-footer__brand { margin: 0 0 10px; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-cream); }
.site-footer__tag { margin: 0; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--text-cream-mute-3); }
.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a { font-size: 16.5px; color: var(--text-cream-mute); }
.site-footer__links a:hover { color: var(--gold-light); }
.site-footer__links p { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--text-cream-mute-3); }
.site-footer__disclaimer { margin: 0; font-size: 14px; line-height: 1.7; color: var(--text-cream-mute-4); }
.site-footer__credits { border-top: 1px solid var(--border-gold-faint); padding: 22px clamp(24px, 6vw, 64px); text-align: center; }
.site-footer__credits p { margin: 0; font-size: 12px; letter-spacing: .16em; color: var(--text-cream-mute-5); }

/* Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise-in, .hero__content, .hero__rule, .hero__more-line { animation: none; }
}
