/* Piotr Lisicki — Portfolio CSS */
/* ============================================================ */

/* CSS Custom Properties */
:root {
  --bg: #0a0a0a;
  --text: #e8e8e8;
  --text-secondary: #a0a0a0;
  --accent: #ffffff;
  --header-height: 88px;
  --max-width: 1200px;
  --site-max-width: 1296px;
  --site-padding: 48px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 600ms ease;
}

/* ============================================================ */
/* RESET & NORMALIZE */
/* ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

/* ============================================================ */
/* HEADER */
/* ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.site-logo {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.site-logo a {
  color: inherit;
  display: inline-block;
  transition: transform var(--transition-normal);
}

.site-logo a:hover {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
  transition: opacity var(--transition-normal), transform var(--transition-normal), text-shadow var(--transition-normal);
  position: relative;
}

.site-nav a:hover {
  opacity: 1;
  transform: scale(1.05);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.site-nav a.active {
  opacity: 1;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

/* ============================================================ */
/* HAMBURGER */
/* ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-overlay.open {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.9;
  transition: opacity var(--transition-normal);
}

.nav-overlay a:hover {
  opacity: 1;
}

/* ============================================================ */
/* LAZY-LOAD ANIMATION */
/* ============================================================ */
.lazy-load {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.lazy-load.visible {
  opacity: 1;
}

/* ============================================================ */
/* HOME PAGE */
/* ============================================================ */
.home-page {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--header-height);
}

.home-photo-wrap {
  max-width: var(--site-max-width);
  width: 100%;
  padding: 16px var(--site-padding) 20px;
}

.home-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.home-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* ============================================================ */
/* PAGE LAYOUT */
/* ============================================================ */
.page-content {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

/* ============================================================ */
/* ABOUT PAGE */
/* ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 60px;
  max-width: 100%;
  align-items: start;
}

.about-photo {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-contact-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.about-contact-link:hover {
  opacity: 1;
}

/* ============================================================ */
/* CONTACT PAGE */
/* ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 60px;
  max-width: 100%;
  align-items: start;
}

.contact-photo {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.contact-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-text h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity var(--transition-normal);
}

.contact-link:hover {
  opacity: 1;
}

.contact-link-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  width: 110px;
  flex-shrink: 0;
}

/* ============================================================ */
/* GALLERIES LIST */
/* ============================================================ */
.galleries-page {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

/* ============================================================ */
/* BREADCRUMB */
/* ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 36px;
}

.breadcrumb a {
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb-sep {
  opacity: 0.2;
}

.breadcrumb-current {
  opacity: 0.85;
}

/* ============================================================ */
/* GALLERY DETAIL (MASONRY) */
/* ============================================================ */
.gallery-masonry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 2em var(--site-padding) 0;
}

.gallery-masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-masonry-item {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  /* Aspect-ratio z data-w/data-h (ustawiane przez JS) — rezerwuje miejsce PRZED pobraniem zdjęcia → zero CLS */
  aspect-ratio: var(--ar, 3 / 2);
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, opacity 400ms ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.02);
  opacity: 0.85;
}

/* ============================================================ */
/* LIGHTBOX */
/* ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  opacity: 0;
  transition: opacity 250ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-img-wrap img.loaded {
  opacity: 1;
}

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px 24px;
  transition: color var(--transition-normal);
  z-index: 1010;
  line-height: 1;
}

.lightbox-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.lightbox-btn--prev {
  left: 8px;
}

.lightbox-btn--next {
  right: 8px;
}

.lightbox-btn--close {
  position: fixed;
  top: 20px;
  right: 20px;
  transform: none;
  font-size: 1.5rem;
  padding: 10px 14px;
  z-index: 1010;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  z-index: 1010;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ▶ / ‖ klikalna ikona obok licznika — wejście do slideshow z lightboxa */
.lightbox-counter-play {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 3px 8px;
  font-size: 0.7rem;
  line-height: 1;
  transition: color var(--transition-normal), border-color var(--transition-normal);
}
.lightbox-counter-play:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ============================================================ */
/* SLIDESHOW END SCREEN — ekran "Koniec galerii" */
/* ============================================================ */
.lightbox-end-screen {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1015;
  background: rgba(0, 0, 0, 0.97);
  padding: 40px 24px;
}
.lightbox-end-screen.active {
  display: flex;
}
.lightbox-end-screen .end-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 14px;
}
.lightbox-end-screen .end-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
  line-height: 1.2;
}
.lightbox-end-screen .end-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.lightbox-end-screen .end-link {
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  text-decoration: none;
  padding: 4px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.85;
  transition: opacity var(--transition-normal), border-color var(--transition-normal);
}
.lightbox-end-screen .end-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}
.lightbox-end-screen .end-link-next {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  padding: 6px 4px;
}

/* ============================================================ */
/* SLIDESHOW MODE — auto-hide UI po 3s bezruchu */
/* ============================================================ */
.lightbox-overlay.slideshow-mode .lightbox-btn,
.lightbox-overlay.slideshow-mode .lightbox-counter {
  transition: opacity 300ms ease;
}
.lightbox-overlay.slideshow-mode.ui-hidden .lightbox-btn,
.lightbox-overlay.slideshow-mode.ui-hidden .lightbox-counter {
  opacity: 0;
  pointer-events: none;
}
.lightbox-overlay.slideshow-mode.ui-hidden {
  cursor: none;
}

/* ============================================================ */
/* SLIDESHOW TRIGGER (mały ghost button pod teaserem galerii) */
/* ============================================================ */
.slideshow-trigger {
  display: inline-block;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 4px 11px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: color var(--transition-normal), border-color var(--transition-normal);
}
.slideshow-trigger:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ============================================================ */
/* STORIES LIST */
/* ============================================================ */
.stories-page {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px 60px;
}

.story-card a {
  display: block;
}

.story-card-cover {
  overflow: hidden;
  margin-bottom: 24px;
}

.story-card-cover img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 600ms ease;
}

.story-card a:hover .story-card-cover img {
  transform: scale(1.02);
}

.story-card-date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 12px;
}

.story-card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.story-card-teaser {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================================ */
/* STORY DETAIL */
/* ============================================================ */
.story-detail-page {
  padding-top: var(--header-height);
  padding-bottom: 100px;
}

.story-hero {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-padding);
}

.story-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.story-header {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 0 40px;
  text-align: center;
}

.story-header .story-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 20px;
}

.story-header h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3.5rem;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.story-header .teaser {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.story-body {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.story-body p,
.story-body h2,
.story-body h3,
.story-body h4,
.story-body h5,
.story-body h6,
.story-body blockquote {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0;
  font-weight: normal;
  font-style: normal;
  border: none;
  padding: 0;
  font-family: inherit;
}

.story-body .story-photo {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 40px;
}

.story-body .story-photo img {
  width: 100%;
}

.story-body .photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 40px;
}

.story-body .photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================ */
/* 404 PAGE */
/* ============================================================ */
.not-found-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px;
}

.not-found-page .code {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 300;
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 20px;
}

.not-found-page h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.not-found-page p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.not-found-page a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.not-found-page a:hover {
  opacity: 1;
}

/* ============================================================ */
/* PAGE HEADER (galleries/stories list heading) */
/* ============================================================ */
.section-heading {
  text-align: center;
  padding: 0 40px 60px;
}

.section-heading h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================ */
/* UTILITY */
/* ============================================================ */
.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;
}

/* ============================================================ */
/* FOCUS VISIBLE */
/* ============================================================ */
:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================ */
/* PREFERS REDUCED MOTION */
/* ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .site-nav a:hover {
    transform: none;
  }

  .story-card-cover img,
  .gallery-masonry-item img {
    transition: opacity 200ms ease;
  }

  .story-card a:hover .story-card-cover img {
    transform: none;
  }
}

/* ============================================================ */
/* RESPONSIVE — TABLET */
/* ============================================================ */
@media (max-width: 1024px) {
  .stories-grid {
    gap: 80px 40px;
  }
}

/* ============================================================ */
/* RESPONSIVE — MOBILE */
/* ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --site-padding: 20px;
  }

  .site-header-inner {
    padding: 0 var(--site-padding);
  }

  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-content {
    padding-left: var(--site-padding);
    padding-right: var(--site-padding);
    padding-top: calc(var(--header-height) + 40px);
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h1,
  .contact-text h1 {
    font-size: 2.2rem;
  }

  .gallery-masonry {
    gap: 8px;
    padding: 2em 24px 0;
  }

  .gallery-masonry-col {
    gap: 8px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .galleries-page,
  .stories-page {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: calc(var(--header-height) + 40px);
  }

.story-header h1 {
    font-size: 2.5rem;
  }

  .story-body .photo-pair {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .story-body .story-photo {
    padding: 0 24px;
  }

  .story-header,
  .story-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-heading {
    padding: 0 24px 40px;
  }

  .section-heading h1 {
    font-size: 2.2rem;
  }

  .lightbox-btn {
    font-size: 1.5rem;
    padding: 14px 16px;
  }

  .lightbox-img-wrap {
    max-width: calc(100vw - 80px);
  }
}

@media (max-width: 480px) {
  .site-logo {
    font-size: 1.2rem;
  }
}

/* ============================================================ */
/* FOOTER */
/* ============================================================ */
.site-footer {
  width: 100%;
  padding: 0 0 40px;
}

.site-footer-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 24px var(--site-padding) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  opacity: 0.5;
  text-transform: uppercase;
}
