/* =========================================================
   Advocacia — Recuperação Judicial de Contas
   ========================================================= */

:root {
  --navy-950: #060a14;
  --navy-900: #0a1128;
  --navy-800: #0f1a38;
  --navy-700: #16214a;
  --navy-600: #202d5e;
  --gold-500: #c9a227;
  --gold-400: #dab94a;
  --gold-100: #f3e6bf;
  --cream: #f6f3ea;
  --white: #ffffff;
  --ink: #101324;
  --muted: #8b93b3;
  --radius: 14px;
  --shadow-lg: 0 30px 60px -20px rgba(6, 10, 20, 0.55);
  --shadow-md: 0 14px 30px -12px rgba(6, 10, 20, 0.4);
  --ff: 'Playfair Display', Georgia, serif;
  --ff-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.loaded { opacity: 1; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--ff);
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 640px;
}

.section-lead {
  color: #4a4f6a;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
}
.btn-gold:hover { box-shadow: 0 18px 36px -14px rgba(201, 162, 39, 0.55); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }

.btn-outline-dark {
  background: transparent;
  border-color: rgba(16, 19, 36, 0.25);
  color: var(--navy-900);
}
.btn-outline-dark:hover { background: rgba(16, 19, 36, 0.06); }

.btn-whatsapp {
  background: #21c063;
  color: #08210f;
}
.btn-whatsapp:hover { box-shadow: 0 18px 36px -14px rgba(33, 192, 99, 0.55); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--ff);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:active { background: rgba(255, 255, 255, 0.1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  padding: 150px 0 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: grayscale(1) contrast(1.12) brightness(0.72);
  transform: scale(1.0) translateX(20%);
  transform-origin: center;
}

.hero-bg-duotone {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, var(--navy-950) 0%, rgba(10, 17, 40, 0.55) 42%, transparent 68%),
    radial-gradient(circle at 97% 20%, rgba(201, 162, 39, 0.55), transparent 55%);
  mix-blend-mode: color;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 10, 20, 0.95) 0%, rgba(6, 10, 20, 0.86) 42%, rgba(6, 10, 20, 0.32) 64%, rgba(6, 10, 20, 0.15) 100%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.5) 0%, transparent 22%, transparent 78%, rgba(6, 10, 20, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 600px; }

.hero-copy .eyebrow { color: var(--gold-400); }

.hero-avatar { display: none; }

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
}

.hero-copy h1 span { color: var(--gold-400); }

.hero-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-trust div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  max-width: 190px;
}

.hero-trust svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-400); }

.hero-credit {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.hero-credit::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(201, 162, 39, 0.6);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-400), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: bottom; }
}

/* ---------- About the lawyer ---------- */
.about {
  padding: 110px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: box-shadow 0.4s ease;
}

.about-photo-frame:hover { box-shadow: 0 36px 70px -18px rgba(201, 162, 39, 0.32); }

.about-photo-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s ease;
}

.about-photo-frame:hover img { transform: scale(1.05); }

.about-photo-ring {
  position: absolute;
  bottom: -28px;
  right: 6%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  z-index: 0;
}

.about-text p {
  color: #4a4f6a;
  font-size: 1.02rem;
  margin: 0 0 18px;
}

.about-credentials {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-credentials li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(16, 19, 36, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-credentials li:hover {
  transform: translateX(6px);
  border-color: rgba(201, 162, 39, 0.4);
}

.about-credentials li svg {
  flex-shrink: 0;
  color: var(--gold-500);
}

/* ---------- Pain points ---------- */
.pain {
  padding: 110px 0 90px;
  background: var(--cream);
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 19, 36, 0.14);
}

.pain-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 34px 8px;
  border-bottom: 1px solid rgba(16, 19, 36, 0.14);
  transition: padding-left 0.4s ease, background 0.4s ease;
}

.pain-row:nth-child(even) {
  border-left: 1px solid rgba(16, 19, 36, 0.14);
  padding-left: 40px;
  margin-left: -1px;
}

.pain-row:hover {
  padding-left: 24px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.05), transparent 60%);
}

.pain-row:nth-child(even):hover { padding-left: 56px; }

.pain-index {
  font-family: var(--ff);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  min-width: 58px;
}

.pain-row-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pain-row-body p {
  color: #565b78;
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 15% 90%, rgba(201, 162, 39, 0.12), transparent 60%);
}

.services .section-title, .services .eyebrow { position: relative; z-index: 1; }
.services .section-title { color: var(--white); }
.services .section-lead { color: rgba(255, 255, 255, 0.65); position: relative; z-index: 1; }

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.5);
}

.service-num {
  font-family: var(--ff-sans);
  color: var(--gold-400);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-card ul li svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }

/* ---------- Process ---------- */
.process {
  padding: 110px 0;
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.5) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px 26px;
  border: 1px solid rgba(16, 19, 36, 0.06);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -18px rgba(6, 10, 20, 0.28);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  font-family: var(--ff);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

.step:hover .step-num { transform: scale(1.08); }

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: #565b78; font-size: 0.88rem; margin: 0; }

/* ---------- Why us ---------- */
.why {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.why-visual-inner {
  text-align: center;
  color: var(--white);
}

.why-visual-inner .quote-mark {
  font-family: var(--ff);
  font-size: 4rem;
  color: var(--gold-400);
  line-height: 1;
}

.why-visual-inner p {
  font-family: var(--ff);
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 360px;
  margin: 10px auto 0;
}

.why-list {
  display: grid;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 18px;
}

.why-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { color: #565b78; font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 780px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(16, 19, 36, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-900);
  cursor: pointer;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(16, 19, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-900);
}
.faq-question .plus::before { width: 10px; height: 1.5px; }
.faq-question .plus::after { width: 1.5px; height: 10px; }

.faq-item.active .faq-question .plus {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: rotate(180deg);
}
.faq-item.active .faq-question .plus::before,
.faq-item.active .faq-question .plus::after { background: var(--navy-950); }
.faq-item.active .faq-question .plus::after { display: none; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  color: #565b78;
  font-size: 0.92rem;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(201, 162, 39, 0.18), transparent 70%);
}

.cta-final .container { position: relative; z-index: 1; }

.cta-final .eyebrow { justify-content: center; }
.cta-final .eyebrow::before { display: none; }

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  max-width: 700px;
  margin: 0 auto 18px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 34px;
}

.cta-final .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--ff-sans);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.76rem;
  max-width: 900px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 600;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #21c063;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(33, 192, 99, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float svg { color: #08210f; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(33, 192, 99, 0.55); }
  50% { box-shadow: 0 14px 40px -4px rgba(33, 192, 99, 0.8); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-bg-scrim {
    background:
      linear-gradient(180deg, rgba(6, 10, 20, 0.55) 0%, rgba(6, 10, 20, 0.72) 45%, rgba(6, 10, 20, 0.92) 100%);
  }
  .hero-credit { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; margin-bottom: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding-top: 120px; }
  .hero-bg-img, .hero-bg-duotone { display: none; }
  .pain-list { grid-template-columns: 1fr; }
  .pain-row:nth-child(even) { border-left: none; padding-left: 8px; margin-left: 0; }
  .pain-row:nth-child(even):hover { padding-left: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }

  .hero-avatar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
  }

  .hero-avatar img {
    width: 84px;
    height: 104px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center 15%;
    flex-shrink: 0;
  }

  .hero-avatar span {
    display: block;
    font-family: var(--ff);
    color: var(--white);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .hero-avatar em {
    display: block;
    font-style: normal;
    color: var(--gold-400);
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 5px;
  }
}

.site-header:has(.nav-open) {
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav.nav-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-950);
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.65);
}
