/* ============================================
 DESIGN TOKENS & CSS CUSTOM PROPERTIES
 ============================================ */
:root {
  /* Personal Academic Theme - Warm, Professional, Approachable */
  --color-base-bg: #fafbfc;
  --color-base-surface: #ffffff;
  --color-base-text: #1a202c;
  --color-base-text-muted: #4a5568;

  /* Primary Academic Color Palette */
  --color-accent-1: #87634B;
  --color-accent-2: #6B4E3D;
  --color-accent-3: #A07856;
  --color-accent-light: #F5F0EB;

  /* Section-specific colors */
  --color-teaching: #1B80CF;
  --color-travel: #FFC2E6;
  --color-research: #A9A9A9;
  --color-writings: #3c7546;
  --color-linguistics: #8E44AD;
  --color-external: #fdf2f2;

  /* Functional Colors */
  --color-shadow: rgba(135, 99, 75, 0.15);
  --color-border: rgba(135, 99, 75, 0.12);
  --color-hover: rgba(135, 99, 75, 0.08);

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-theme: 0 12px 32px var(--color-shadow), 0 4px 12px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 2.75rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

/* ============================================
 RESET & BASE STYLES
 ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-base-text);
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
 NAVIGATION STYLES
 ============================================ */
.navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(135, 99, 75, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  flex-wrap: wrap;
}

.nav-brand {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-accent-1);
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(135, 99, 75, 0.1) 100%);
  border-radius: var(--radius-full);
  letter-spacing: -0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.nav-brand:hover::before {
  left: 100%;
}

.nav-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 99, 75, 0.2);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xs);
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-base-text);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: var(--weight-medium);
  font-size: var(--text-base);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent-1);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--color-accent-1);
  background: var(--color-hover);
}

.nav-menu a:hover::after {
  width: 60%;
}

/* ============================================
 HERO SECTION
 ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
      var(--color-accent-1) 0%,
      var(--color-accent-2) 50%,
      var(--color-accent-3) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-links li a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.hero-links li a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.hero-image-container:hover {
  transform: scale(1.02) rotate(-1deg);
}

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

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(135, 99, 75, 0.1), transparent);
  pointer-events: none;
  z-index: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--weight-semibold);
  transition: all 0.3s ease;
}

.read-more-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

/* ============================================
 CONTENT SECTIONS
 ============================================ */
.content-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  margin: var(--space-3xl) 0;
  overflow: hidden;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
}

.section-reverse {
  direction: rtl;
}

.section-reverse>* {
  direction: ltr;
}

.section-content h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.section-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section-links li a {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  color: var(--color-base-text);
  text-decoration: none;
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.section-links li a::before {
  content: '→';
  font-size: var(--text-xl);
  transition: transform 0.3s ease;
}

.section-links li a:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.12);
}

.section-links li a:hover::before {
  transform: translateX(4px);
}

.section-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-theme);
  transition: transform 0.5s ease;
}

.section-image:hover {
  transform: scale(1.02) rotate(1deg);
}

.section-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Section-specific backgrounds */
.teaching-section {
  background: linear-gradient(135deg, #1B80CF 0%, #1565B0 100%);
}

.teaching-section h2,
.teaching-section .section-links li a {
  color: #ffffff;
}

.teaching-section .section-links li a {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.teaching-section .section-links li a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.travel-section {
  background: linear-gradient(135deg, #FFC2E6 0%, #FFB3DC 100%);
}

.travel-section h2,
.travel-section .section-links li a {
  color: var(--color-base-text);
}

.travel-section .section-links li a {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}

.research-section {
  background: linear-gradient(135deg, #A9A9A9 0%, #939393 100%);
}

.research-section h2,
.research-section .section-links li a {
  color: var(--color-base-text);
}

.research-section .section-links li a {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}

.writings-section {
  background: linear-gradient(135deg, #3c7546 0%, #2f5d38 100%);
}

.writings-section h2,
.writings-section .section-links li a {
  color: #ffffff;
}

.writings-section .section-links li a {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.writings-section .section-links li a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.linguistics-section {
  background: linear-gradient(135deg, #8E44AD 0%, #7D3C98 100%);
}

.linguistics-section h2,
.linguistics-section .section-links li a {
  color: #ffffff;
}

.linguistics-section .section-links li a {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.linguistics-section .section-links li a:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
 EXTERNAL LINKS SECTION
 ============================================ */
.external-section {
  background: linear-gradient(135deg, #fdf2f2 0%, #fef8f8 100%);
  padding: var(--space-4xl) 0;
}

.external-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.external-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
}

.external-column h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-base-text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.external-links {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.external-links li a {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  color: var(--color-base-text);
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.external-links li a::before {
  content: '◆';
  color: var(--color-accent-1);
  font-size: var(--text-lg);
}

.external-links li a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-1);
}

/* ============================================
 SEARCH SECTION
 ============================================ */
.search-section {
  background: linear-gradient(135deg, var(--color-accent-1) 0%, var(--color-accent-2) 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.search-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.search-container-home {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 1;
  text-align: center;
}

.search-container-home h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.search-container-home p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
}

.search-box-home {
  position: relative;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.search-icon-home {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  pointer-events: none;
}

.search-input-home {
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  padding-left: 3.5rem;
  font-size: var(--text-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-base-text);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input-home:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-input-home::placeholder {
  color: var(--color-base-text-muted);
}

.search-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
 FOOTER
 ============================================ */
.footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #ffffff;
  padding: var(--space-4xl) 0 var(--space-xl);
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-info h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-lg);
  color: var(--color-accent-3);
}

.footer-info p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

.language-selector {
  text-align: right;
}

.language-selector h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-lg);
  color: var(--color-accent-3);
}

.language-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  align-items: flex-end;
}

.language-list li a {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: all 0.3s ease;
}

.language-list li a:hover,
.language-list li.active a {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-4px);
}

.language-list li.active a {
  border-color: var(--color-accent-3);
  background: rgba(167, 120, 86, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ============================================
 FLOATING DECORATION
 ============================================ */
.floating-shape {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 63% 37% 54% 46% / 45% 62% 38% 55%;
  background: linear-gradient(135deg, rgba(135, 99, 75, 0.08), rgba(167, 120, 86, 0.08));
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite, morphShape 12s ease-in-out infinite;
  filter: blur(60px);
}

.floating-shape-1 {
  top: 10%;
  right: 10%;
}

.floating-shape-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(30px, -30px);
  }

  66% {
    transform: translate(-20px, 20px);
  }
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 45% 62% 38% 55%;
  }

  50% {
    border-radius: 37% 63% 46% 54% / 62% 45% 55% 38%;
  }
}

/* ============================================
 RESPONSIVE DESIGN
 ============================================ */
@media (max-width: 1024px) {

  .hero-container,
  .section-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .section-reverse {
    direction: ltr;
  }

  .hero-links {
    grid-template-columns: 1fr;
  }

  .external-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .language-selector {
    text-align: left;
  }

  .language-list {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: var(--space-md);
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
  }

  .nav-menu a {
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-md);
  }

  .hero-section,
  .content-section {
    min-height: auto;
  }

  .section-image img {
    height: 300px;
  }

  .floating-shape {
    display: none;
  }

  .search-container-home h2 {
    font-size: var(--text-2xl);
  }

  .search-container-home p {
    font-size: var(--text-base);
  }

  .search-input-home {
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-lg);
    padding-left: 3rem;
  }

  .search-icon-home {
    font-size: 1.1rem;
    left: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-brand {
    font-size: var(--text-lg);
  }

  .nav-menu {
    gap: var(--space-xs);
  }

  .nav-menu a {
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ============================================
 ACCESSIBILITY
 ============================================ */
@media (prefers-reduced-motion: reduce) {

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent-1);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 10000;
}

.skip-link:focus {
  top: var(--space-sm);
}
