/* ==========================================================================
   PORTFÓLIO FRAN LISBOA — style.css
   Estrutura: Tokens > Reset > Tipografia > Layout Base > Componentes > Páginas
   Metodologia: Mobile First | Vanilla CSS | BEM-like naming
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. TOKENS (CSS Variables)                                               */
/* ---------------------------------------------------------------------- */
:root {
  /* Paleta - Hero / Tema Escuro Teal */
  --color-teal-edge: #08262a;
  --color-teal-center: #125055;
  --color-header-dark: #1a1a1a;
  --color-accent-teal: #38b2ac;
  --color-accent-yellow: #f7c948;

  /* Paleta - Tema Claro */
  --color-subheader-bg: #e5e5e5;
  --color-offwhite: #f4f4f5;
  --color-text-dark: #333333;
  --color-text-body: #4a4a4a;
  --color-border-light: #d1d1d1;

  /* Paleta - Seções de Galeria (agora padronizada com o tema claro do restante do site) */
  --color-gallery-bg: #f4f4f5;
  --color-gallery-bg-alt: #e5e5e5;
  --color-gallery-text: #333333;
  --color-gallery-border: #d1d1d1;

  /* Tipografia */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Escala tipográfica */
  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-xxl: 2.75rem;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* Layout */
  --container-max: 1200px;
  --content-max: 900px;
  --header-height: 72px;

  /* Marca d'água ajustável (alvorada.webp) — usada no sub-header e rodapé */
  --bg-pos-x: center;
  --bg-pos-y: center;
  --bg-size: cover;

  /* Movimento */
  --ease-elegant: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.3s;
  --dur-med: 0.8s;
}

/* ---------------------------------------------------------------------- */
/* 2. RESET                                                                */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure { margin: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------- */
/* 3. TIPOGRAFIA E BASE                                                    */
/* ---------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-offwhite);
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  color: var(--color-text-dark);
  line-height: 1.2;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent-teal);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-family: var(--font-display);
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-accent-teal);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------- */
/* 4. CABEÇALHO (HEADER)                                                   */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--dur-fast) var(--ease-elegant);
}

.site-header.is-scrolled {
  background-color: var(--color-header-dark);
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
}

.site-header__toggle {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  z-index: 110;
}

.site-header__nav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background-color: var(--color-header-dark);
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--space-sm);
  gap: var(--space-sm);
  transform: translateX(100%);
  transition: transform var(--dur-fast) var(--ease-elegant);
}

.site-header__nav.is-open { transform: translateX(0); }

.site-header__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-header__nav a {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: #ffffff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity var(--dur-fast) ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible { opacity: 0.7; text-decoration: underline; }

.site-header__nav a.is-active { color: var(--color-accent-teal); }

.site-header__search {
  color: #ffffff;
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .site-header__toggle { display: none; }
  .site-header__nav {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    background: transparent;
    padding: 0;
    width: auto;
  }
  .site-header__nav > ul {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }
  .site-header__nav a { font-size: var(--fs-sm); }
}

/* ---------------------------------------------------------------------- */
/* 5. HERO SECTION (Capa)                                                  */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, var(--color-teal-center) 0%, var(--color-teal-edge) 72%);
}

.hero__illustration {
  position: relative;
  z-index: 2;
  width: min(70vw, 320px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp var(--dur-med) var(--ease-elegant) 0.3s forwards;
}

.hero__signature {
  position: relative;
  z-index: 2;
  width: min(60vw, 240px);
  height: auto;
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp var(--dur-med) var(--ease-elegant) 0.7s forwards;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin-top: var(--space-sm);
  color: var(--color-accent-yellow);
  font-weight: 700;
  font-size: var(--fs-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp var(--dur-med) var(--ease-elegant) 0.7s forwards;
}

.hero__title--mono { color: #f4f4f5; }

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: none;
  border: none;
  padding: var(--space-xs);
  color: rgba(255,255,255,0.55);
  font-size: 1.75rem;
  cursor: pointer;
  animation: bounce 2.2s ease-in-out infinite;
  transition: color var(--dur-fast) ease;
}

.hero__scroll-indicator:hover,
.hero__scroll-indicator:focus-visible {
  color: rgba(255,255,255,0.9);
}

@media (min-width: 600px) {
  .hero__illustration { width: min(45vw, 450px); }
  .hero__signature { width: min(35vw, 320px); }
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------------------------------------------------------------------- */
/* 6. FAIXA DE SUBNAVEGAÇÃO (Sub-header)                                   */
/* ---------------------------------------------------------------------- */
.subnav {
  background-color: var(--color-subheader-bg);
  background-image: url('../images/alvorada.webp');
  background-repeat: no-repeat;
  background-position: var(--bg-pos-x) var(--bg-pos-y);
  background-size: var(--bg-size);
  --bg-pos-x: center 20%;
  --bg-size: cover;
  padding: var(--space-sm);
}

.subnav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: var(--space-md);
}

.subnav a {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text-dark);
  padding-bottom: 2px;
}

.subnav a.is-active { border-bottom: 2px solid var(--color-text-dark); }

/* ---------------------------------------------------------------------- */
/* 7. MENU EXPANSÍVEL (Accordion — details/summary)                        */
/* ---------------------------------------------------------------------- */
.nav-accordion {
  background-color: var(--color-offwhite);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.nav-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-text-dark);
}

.nav-accordion summary::-webkit-details-marker { display: none; }

.nav-accordion__chevron {
  transition: transform var(--dur-fast) var(--ease-elegant);
}

.nav-accordion[open] .nav-accordion__chevron { transform: rotate(180deg); }

.nav-accordion__list {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm) var(--space-sm);
  display: grid;
  gap: var(--space-xs);
}

.nav-accordion__list a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: var(--fs-sm);
  color: var(--color-text-body);
}

.nav-accordion__list a:hover,
.nav-accordion__list a:focus-visible { text-decoration: underline; }

@media (min-width: 700px) {
  .nav-accordion__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Variante escura do accordion (páginas de galeria) */
.nav-accordion--dark {
  background-color: var(--color-gallery-bg);
  border-color: var(--color-gallery-border);
}
.nav-accordion--dark summary { color: var(--color-gallery-text); }
.nav-accordion--dark .nav-accordion__list a { color: var(--color-text-body); }

/* ---------------------------------------------------------------------- */
/* 8. SEÇÃO DE SAUDAÇÃO (Greeting)                                         */
/* ---------------------------------------------------------------------- */
.greeting {
  background-color: var(--color-offwhite);
  padding: var(--space-xl) var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

.greeting__image {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* Scroll reveal (aplicado via JS + IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-med) ease-out, transform var(--dur-med) ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* 9. SEÇÃO DE APRESENTAÇÃO (Texto)                                        */
/* ---------------------------------------------------------------------- */
.presentation {
  background-color: var(--color-offwhite);
  padding: 0 var(--space-sm) var(--space-xl);
}

.presentation__container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.presentation p {
  font-size: var(--fs-md);
  line-height: 1.8;
  text-align: center;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.presentation a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-text-dark);
}

.presentation__cta {
  text-align: right;
  margin-top: var(--space-md);
}

.presentation__cta a {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  text-decoration: underline;
  color: var(--color-text-dark);
}

/* ---------------------------------------------------------------------- */
/* 10. RODAPÉ (Footer)                                                     */
/* ---------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--color-border-light);
  background-color: var(--color-subheader-bg);
  background-image: url('../images/alvorada.webp');
  background-repeat: no-repeat;
  background-position: var(--bg-pos-x) var(--bg-pos-y);
  background-size: var(--bg-size);
  --bg-pos-x: center 60%;
  --bg-size: cover;
  padding: var(--space-lg) var(--space-sm);
}

.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-dark);
}

.site-footer__inner p { margin-bottom: 0.4rem; }
.site-footer a { text-decoration: underline; }

/* ---------------------------------------------------------------------- */
/* 11. PÁGINA SOBRE MIM                                                    */
/* ---------------------------------------------------------------------- */
.banner-strip {
  width: 100%;
  height: 56px; /* mesma altura da .subnav (padding + linha de texto), para alinhamento visual entre as duas faixas */
  overflow: hidden;
  --banner-pos: center 14%;
}
.banner-strip img { width: 100%; height: 100%; object-fit: cover; object-position: var(--banner-pos); }

.profile-photo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.profile-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 4px solid var(--color-offwhite);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  object-fit: cover;
}

@media (min-width: 700px) {
  .profile-photo { width: 200px; height: 200px; }
}

.bio {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-offwhite);
}

.bio p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: var(--space-sm);
}

.bio__signature {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-md);
}
.bio__signature img { width: 160px; height: auto; }

.bio__return-link {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-xs);
}
.bio__return-link a { text-decoration: underline; font-size: var(--fs-sm); }

/* ---------------------------------------------------------------------- */
/* 12. PÁGINAS DE GALERIA (Dark Mode)                                      */
/* ---------------------------------------------------------------------- */
.gallery-intro {
  background-color: var(--color-gallery-bg);
  color: var(--color-gallery-text);
  padding: var(--space-lg) var(--space-sm);
}

.gallery-intro__text {
  max-width: var(--content-max);
  margin: 0 auto;
  font-size: var(--fs-md);
  line-height: 1.8;
}

.gallery-list {
  background-color: var(--color-gallery-bg);
  padding: 0 var(--space-sm) var(--space-xl);
}

.gallery-item {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-gallery-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gallery-item:last-child { border-bottom: none; }

.gallery-item__image {
  border: 2px solid #000000;
  max-height: 65vh;
  width: auto;
  max-width: 100%;
  align-self: center;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.gallery-item__image:hover,
.gallery-item__image:focus-visible {
  transform: scale(1.015);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

/* Variante circular, para obras que são medalhas/emblemas redondos por natureza */
.gallery-item__image--round {
  border: none;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.gallery-item__image--round:hover,
.gallery-item__image--round:focus-visible {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.gallery-item__info h3 {
  color: var(--color-gallery-text);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.gallery-item__info p {
  color: var(--color-text-body);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.gallery-item__info strong { color: var(--color-text-dark); }

@media (min-width: 800px) {
  .gallery-item {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .gallery-item:nth-child(even) { flex-direction: row-reverse; }
  .gallery-item__image { flex: 0 1 auto; max-width: 45%; }
  .gallery-item__info { flex: 1; padding-top: var(--space-sm); }
}

.gallery-bottom-nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--space-sm);
  text-align: right;
}

.gallery-bottom-nav a {
  color: var(--color-text-body);
  font-size: var(--fs-sm);
}

.gallery-bottom-nav a:hover,
.gallery-bottom-nav a:focus-visible {
  text-decoration: underline;
  color: var(--color-text-dark);
}

/* ---------------------------------------------------------------------- */
/* 13. PÁGINA DESTAQUES — CARROSSEL                                        */
/* ---------------------------------------------------------------------- */
.carousel-section {
  background-color: var(--color-gallery-bg);
  padding: 0 var(--space-sm) var(--space-xl);
}

.carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform var(--dur-med) var(--ease-elegant);
}

.carousel__slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
}

.carousel__slide img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #ffffff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background-color var(--dur-fast) ease;
}
.carousel__btn:hover,
.carousel__btn:focus-visible { background-color: rgba(0,0,0,0.8); }
.carousel__btn--prev { left: var(--space-xs); }
.carousel__btn--next { right: var(--space-xs); }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-sm) 0;
}

.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel__dot.is-active { background-color: var(--color-text-dark); }

/* ---------------------------------------------------------------------- */
/* 14. UTILITÁRIOS                                                        */
/* ---------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-title {
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: var(--space-md);
}

.dark-bg { background-color: var(--color-gallery-bg); color: var(--color-gallery-text); }

/* ---------------------------------------------------------------------- */
/* 15. LIGHTBOX (ampliar obras da galeria em tela cheia)                   */
/* ---------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  z-index: 200;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast) ease;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background-color: rgba(255, 255, 255, 0.28);
}

.carousel__caption {
  text-align: center;
  color: var(--color-text-body);
  font-size: var(--fs-sm);
  max-width: 700px;
  margin: var(--space-xs) auto 0;
  min-height: 1.4em; /* evita "pulo" de layout ao trocar de legenda */
}

/* ---------------------------------------------------------------------- */
/* 16. DROPDOWN "GALERIA" (menu em cascata com as categorias)              */
/* ---------------------------------------------------------------------- */
.site-header__dropdown { position: relative; }

.site-header__dropdown-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-header__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0.25rem;
}

.site-header__dropdown-toggle svg {
  transition: transform var(--dur-fast) ease;
}

.site-header__dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.site-header__dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile: lista expansível dentro do próprio menu, sem navegar */
.site-header__dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: var(--space-sm);
  transition: max-height 0.35s ease;
}

.site-header__dropdown-menu.is-open { max-height: 300px; }

.site-header__dropdown-menu a {
  display: block;
  padding: 0.4rem 0;
  color: #ffffff;
  font-size: var(--fs-base);
  opacity: 0.85;
}

.site-header__dropdown-menu a:hover,
.site-header__dropdown-menu a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 900px) {
  /* Desktop: menu flutuante revelado ao passar o mouse (ou navegar por teclado) */
  .site-header__dropdown-toggle { display: none; }

  .site-header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.85rem;
    background-color: var(--color-header-dark);
    min-width: 200px;
    max-height: none;
    overflow: visible;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility var(--dur-fast);
  }

  .site-header__dropdown:hover .site-header__dropdown-menu,
  .site-header__dropdown:focus-within .site-header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header__dropdown-menu a {
    padding: 0.55rem 1.25rem;
    font-size: var(--fs-sm);
    white-space: nowrap;
    opacity: 1;
  }

  .site-header__dropdown-menu a:hover,
  .site-header__dropdown-menu a:focus-visible {
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
  }
}
