/* ==========================================================================
   Bruna Pessotti — Advogada
   Implementacao dos wireframes 2b (site) e 2a (linktree)
   Paleta e estrutura vindas do canvas "Site Bruna Pessotti - Wireframes"
   ========================================================================== */

:root {
  /* Cor */
  --navy-900: #061c28;   /* hover / fundos mais profundos */
  --navy:     #0a2b3c;   /* marinho do logotipo */
  --navy-600: #17475f;   /* foco, estados intermediarios */
  --navy-100: #e8eef2;   /* tinta clara para chips de icone */
  --gold:     #e3b896;   /* dourado do logotipo (usar sobre marinho) */
  --gold-700: #a8703f;   /* dourado escurecido, legivel sobre claro */
  --ink:       #1a1a1a;
  --ink-70:    #4d4d4d;
  --ink-50:    #736f6c;
  --paper:     #ffffff;
  --sand:      #f4f1ed;
  --bg:        #faf8f6;
  --line:      #e5e0d9;
  --dark:      #071f2b;   /* rodape: marinho bem escuro */

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Metrica */
  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(10, 43, 60, .07);
  --shadow-md: 0 10px 30px -12px rgba(10, 43, 60, .22);
  --shadow-lg: 0 28px 60px -24px rgba(10, 43, 60, .32);
}

/* --------------------------------------------------------- reset / base */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-900); }

:focus-visible {
  outline: 2.5px solid var(--navy-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------- tipografia */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin: 0;
}

.section-title { font-size: clamp(26px, 3.6vw, 40px); }

.section-lead {
  color: var(--ink-70);
  font-size: 16.5px;
  max-width: 56ch;
  margin-top: 14px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--sand { background: var(--sand); }

.section-head { margin-bottom: clamp(28px, 4vw, 44px); }

/* ---------------------------------------------------------------- botoes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease,
              color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--navy-900); color: #fff; }

.btn--ghost { border-color: rgba(26, 26, 26, .22); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(26, 26, 26, .04); }

.btn--light { background: var(--gold); color: var(--navy-900); }
.btn--light:hover { background: #efcfb2; color: var(--navy-900); }

.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* =========================================================== barra de topo */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  font-size: 12.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 8px;
}
.topbar__meta { display: flex; align-items: center; gap: 8px; }
.topbar__social { display: flex; align-items: center; gap: 6px; }
.topbar__social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  transition: background-color .18s ease, color .18s ease;
}
.topbar__social a:hover { background: rgba(255, 255, 255, .14); color: #fff; }

@media (max-width: 720px) {
  /* esconde o separador e o horario, deixando so a cidade */
  .topbar__meta span:nth-child(n+2) { display: none; }
  .topbar__social a span { display: none; }
}

/* ============================================================== cabecalho */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
/* logotipo com fundo removido: letras marinho no header, douradas no rodape.
   sem border-radius porque nao ha mais caixa, so o lettering. */
.brand__mark { flex: none; height: 38px; width: auto; }
@media (max-width: 480px) { .brand__mark { height: 31px; } }
.brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand__role {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--ink-50);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink-70);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-block: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: inline-flex; }

/* o CTA dentro do menu so aparece no mobile; no desktop vale o .header__cta */
.nav .btn { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  padding: 10px;
  margin-right: -10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a::after { display: none; }

  /* O CTA e um botao, nao um item de menu. Precisa de .nav .btn (0,2,0) porque
     .nav a (0,1,1) ganha de .btn--primary (0,1,0) e sobrescreveria cor e padding.
     O :hover precisa de .nav .btn:hover (0,3,0) pra ganhar de .nav a:hover (0,2,1),
     senao o texto vira marinho sobre fundo marinho. */
  .nav .btn {
    display: inline-flex;
    align-self: stretch;
    justify-content: center;
    margin-top: 16px;
    padding: 14px 22px;
    border-bottom: 0;
    font-size: 15px;
  }
  .nav .btn--primary,
  .nav .btn--primary:hover { color: #fff; }
}

/* =================================================================== hero */
.hero { padding: clamp(44px, 6.5vw, 84px) 0 clamp(48px, 7vw, 96px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); }
.hero h1 em { font-style: normal; color: var(--gold-700); }
.hero__lead { color: var(--ink-70); font-size: clamp(16px, 1.6vw, 18px); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-50);
}
.hero__note::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-700);
  box-shadow: 0 0 0 4px rgba(168, 112, 63, .18);
  flex: none;
}

/* moldura verde atras do retrato, como na referencia */
.hero__figure { position: relative; }
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 12% -6% -7% 14%;
  background: var(--navy);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 400px; }
  .hero__content { align-items: flex-start; }
}

/* ================================================= videos (arquivos locais) */
.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 24px);
}

.video-card { margin: 0; display: flex; flex-direction: column; gap: 12px; }

.video-card__player {
  width: 100%;
  /* height:auto e obrigatorio: os atributos width/height do <video> fixam uma
     altura usada, e o aspect-ratio so vale quando a altura e auto. */
  height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  /* contain: o video ja e 9:16, entao nao corta nada e evita distorcer
     caso algum arquivo futuro venha noutra proporcao */
  object-fit: contain;
  transition: box-shadow .22s ease;
}
.video-card__player:hover { box-shadow: var(--shadow-md); }

.video-card__cap { display: flex; flex-direction: column; gap: 3px; }
.video-card__titulo {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
}
.video-card__desc { font-size: 14px; line-height: 1.45; color: var(--ink-70); }

.videos__foot { margin-top: clamp(24px, 3vw, 34px); }

@media (max-width: 900px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  /* Carrossel: tres videos 9:16 empilhados dariam ~2000px de rolagem.
     Scroll horizontal com snap, sem JS. */
  .videos__grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    /* sangra ate a borda da tela, mas mantem o alinhamento do conteudo */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .videos__grid::-webkit-scrollbar { display: none; }

  .video-card {
    /* 78% deixa aparecer um pedaco do proximo card: e o que avisa que rola */
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* a area rolavel precisa ser alcancavel por teclado */
  .videos__grid:focus-visible { outline: 2.5px solid var(--navy-600); outline-offset: 4px; }
}

/* =============================================================== manifesto */
.manifesto { background: var(--dark); padding: clamp(56px, 9vw, 104px) 0; text-align: center; }
.eyebrow--light { color: rgba(255, 255, 255, .55); }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.22;
  color: #fff;
  max-width: 18ch;
  margin: 18px auto 0;
}
.manifesto__quote em { font-style: normal; color: var(--gold); }
.manifesto__assinatura {
  display: block;
  margin-top: 20px;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* ================================================================== areas */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
}
.area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 43, 60, .32);
  box-shadow: var(--shadow-md);
}
.area-card__icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 11px;
  background: var(--navy-100);
  color: var(--navy);
  display: grid;
  place-items: center;
}
.area-card h3 { font-size: 20px; }
.area-card p { color: var(--ink-70); font-size: 14.8px; }

@media (max-width: 900px) { .areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .areas__grid { grid-template-columns: 1fr; } }

/* ================================================================== sobre */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about__media {
  /* 4/5 e nao 4/3: a foto original e quadrada e o recorte retrato enquadra
     melhor uma pessoa. Diferente do hero, que usa 1/1. */
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

/* ============================================== como funciona (3 passos) */
.passos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px);
  counter-reset: passo;
}
.passo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.passo__num {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
.passo h3 { font-size: 19px; line-height: 1.25; }
.passo p { color: var(--ink-70); font-size: 15px; }

/* linha ligando os passos, so onde eles ficam lado a lado */
@media (min-width: 761px) {
  .passo::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 50px;
    right: calc(clamp(20px, 3vw, 34px) * -1);
    height: 1px;
    background: var(--line);
  }
  .passo:last-child::after { display: none; }
}

@media (max-width: 760px) {
  .passos { grid-template-columns: 1fr; gap: 26px; }
}

.about__content { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.about__content p { color: var(--ink-70); }

.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}
.about__facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink-70);
}
.about__facts svg { color: var(--navy); flex: none; }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 400px; }
}

/* ==================================================== duvidas frequentes */
.duvidas__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.duvidas__head { position: sticky; top: 100px; }

.duvidas__list { display: flex; flex-direction: column; gap: 10px; }

.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq[open] { border-color: rgba(10, 43, 60, .28); box-shadow: var(--shadow-sm); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }

.faq__chevron { flex: none; color: var(--ink-50); transition: transform .22s ease; }
.faq[open] .faq__chevron { transform: rotate(180deg); color: var(--navy); }

.faq p { padding-bottom: 20px; color: var(--ink-70); font-size: 15px; max-width: 62ch; }

@media (max-width: 820px) {
  .duvidas__grid { grid-template-columns: 1fr; }
  .duvidas__head { position: static; }
}

/* ==================================================================== CTA */
.cta { background: var(--navy); color: #fff; }
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  /* padding-block, nao shorthand: o shorthand zeraria o padding-inline
     que vem do .wrap (mesma especificidade, e esta regra vem depois). */
  padding-block: clamp(52px, 8vw, 96px);
}
.cta h2 { font-size: clamp(28px, 4.2vw, 44px); color: #fff; }
.cta p { color: rgba(255, 255, 255, .8); max-width: 50ch; }
.cta__meta { font-size: 13px; color: rgba(255, 255, 255, .62); }

/* ================================================================= rodape */
.footer { background: var(--dark); color: rgba(255, 255, 255, .62); font-size: 14px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  /* padding-block: o shorthand zerava o padding-inline herdado do .wrap,
     colando o rodape nas bordas no celular. */
  padding-block: clamp(44px, 6vw, 72px) 32px;
}
.footer h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer a { color: rgba(255, 255, 255, .62); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer .brand__name { color: #fff; }
.footer__about { max-width: 38ch; margin-top: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
}
/* o credito fica por ultimo e, quando sobra espaco, empurrado para a direita */
.footer__credito { margin-left: auto; }
.footer__credito a { color: rgba(255, 255, 255, .72); }
.footer__credito a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .footer__bottom { justify-content: flex-start; }
  .footer__credito { margin-left: 0; }
}

@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; } }

/* ================================================= botao flutuante mobile */
/* Dock sticky no fim do <main>. Enquanto o <main> esta a vista o botao gruda
   16px acima da base da tela; quando o rodape comeca, o dock chega ao fim do
   seu bloco pai e para ali, entao o botao sobe junto em vez de cobrir o rodape.
   Sem JS: nada de listener de scroll, nada de travar durante a rolagem. */
.wa-dock {
  position: sticky;
  bottom: 16px;
  height: 0;          /* nao ocupa espaco no fluxo */
  z-index: 90;
  display: none;
}
@media (max-width: 860px) { .wa-dock { display: block; } }

.wa-float {
  position: absolute;
  right: 16px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 12px 28px -8px rgba(10, 43, 60, .55);
}
.wa-float:hover { color: #fff; }

/* ================================================== animacao de entrada */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================== LINKTREE */
/* Pagina links.html - implementacao do wireframe 2a */
body.linktree {
  background: var(--navy);
  display: flex;
  justify-content: center;
  padding: 0;
}
.lt {
  width: 100%;
  max-width: 460px;
  background: var(--bg);
  min-height: 100vh;
  box-shadow: 0 0 80px rgba(0, 0, 0, .25);
}
.lt__head {
  background: var(--navy);
  color: #fff;
  padding: 40px 26px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.lt__avatar {
  width: 116px; height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .32);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .5);
}
.lt__name { font-family: var(--font-display); font-size: 27px; line-height: 1.1; }
.lt__role { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .72); }
.lt__bio { font-size: 14.5px; color: rgba(255, 255, 255, .82); max-width: 32ch; }

.lt__links { padding: 24px 22px 8px; display: flex; flex-direction: column; gap: 11px; }
.lt-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lt-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }
.lt-link svg { flex: none; color: var(--navy); }
.lt-link__arrow { margin-left: auto; color: var(--ink-50); }
.lt-link--primary { background: var(--navy); border-color: var(--navy); color: #fff; }
.lt-link--primary:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.lt-link--primary svg, .lt-link--primary .lt-link__arrow { color: rgba(255, 255, 255, .9); }

.lt__section { padding: 22px 22px 4px; }
.lt__section h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; }
.lt__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.lt__tags li {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12.5px;
  color: var(--ink-70);
}

.lt__about { margin: 22px 22px 26px; padding: 22px; background: var(--sand); border-radius: var(--radius); }
.lt__about h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 9px; }
.lt__about p { font-size: 14.5px; color: var(--ink-70); }

.lt__foot {
  background: var(--dark);
  color: rgba(255, 255, 255, .5);
  text-align: center;
  padding: 24px 22px 30px;
  font-size: 12.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lt__foot a { color: rgba(255, 255, 255, .72); }
.lt__foot a:hover { color: #fff; }

.footer__oab {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
}
