/* ============================================
   VERDANT CHRONICLE — Theme CSS
   Visual DNA: Solartec renewable energy template
   Palette: Green accent (#32C36C) + Dark navy (#1A2A36) + Light gray (#F6F7F8)
   Layout: Full-width split panels, centered content blocks, alternating rhythms
   Typography: Sans-serif, bold headings with small green label above
   ============================================ */

:root {
  --primary: #32C36C;
  --primary-dark: #28a85a;
  --primary-light: rgba(50, 195, 108, 0.1);
  --dark: #1A2A36;
  --dark-soft: #243442;
  --light: #F6F7F8;
  --white: #FFFFFF;
  --body-text: #5A6A78;
  --heading-text: #1A2A36;
  --border: #E2E6EA;
  --shadow-sm: 0 2px 12px rgba(26, 42, 54, 0.06);
  --shadow-md: 0 4px 30px rgba(26, 42, 54, 0.08);
  --shadow-lg: 0 8px 45px rgba(26, 42, 54, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 50px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --gap: 2rem;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-text);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 620px;
  color: var(--body-text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.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;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 195, 108, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.3s;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---- Topbar ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__email a {
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.topbar__email a:hover {
  color: var(--primary);
}

.topbar__brand-tag {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}

/* ---- Navbar ---- */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.navbar__brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__brand-accent {
  color: var(--primary);
}

.navbar__logo {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.navbar__links a {
  display: block;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---- Hero (split-screen style) ---- */
.hero {
  background: var(--dark);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 0;
  max-width: calc(var(--container) / 2);
  margin-left: auto;
  padding-left: 1.25rem;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.hero__title {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__subtitle p { color: inherit; }

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(50,195,108,0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(50,195,108,0.1) 0%, transparent 50%);
}

.hero__graphic {
  position: relative;
  z-index: 1;
  width: 65%;
  max-width: 300px;
}

.hero__graphic svg {
  width: 100%;
  height: auto;
}

/* ---- Split Section (full-bleed image + text) ---- */
.split {
  overflow: hidden;
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split--reverse .split__inner {
  direction: rtl;
}

.split--reverse .split__inner > * {
  direction: ltr;
}

.split__image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

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

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.5rem;
}

.split--bg-light {
  background: var(--light);
}

/* ---- Topics Grid ---- */
.topics {
  padding: 5rem 0;
}

.topics__header {
  margin-bottom: 3rem;
}

.topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}

.topic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.topic-card__icon {
  position: relative;
  margin: -28px 0 0 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.35s, color 0.35s;
  z-index: 2;
}

.topic-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  transition: color 0.35s;
}

.topic-card:hover .topic-card__icon {
  background: var(--primary);
}

.topic-card:hover .topic-card__icon svg {
  color: var(--white);
}

.topic-card__bar {
  height: 4px;
  background: var(--primary);
}

.topic-card__body {
  padding: 1.25rem 1.5rem 1.75rem;
}

.topic-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--heading-text);
}

.topic-card__desc {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.65;
}

.topic-card__desc p { margin-bottom: 0.5rem; }
.topic-card__desc p:last-child { margin-bottom: 0; }

/* ---- Latest Posts ---- */
.latest-posts {
  background: var(--light);
  padding: 5rem 0;
}

.latest-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.latest-posts__grid {
  display: grid;
  gap: 2rem;
}

/* Featured first post */
.latest-posts__grid--featured {
  grid-template-columns: 1fr 1fr;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__date {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card__title a {
  color: var(--heading-text);
  text-decoration: none;
  transition: color 0.3s;
}

.post-card__title a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.65;
  flex: 1;
}

.post-card__excerpt p { margin-bottom: 0.5rem; }
.post-card__excerpt p:last-child { margin-bottom: 0; }

.post-card__link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s;
}

.post-card__link:hover {
  gap: 0.65rem;
}

/* Featured (large) card */
.post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.post-card--featured .post-card__image {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 320px;
}

.post-card--featured .post-card__body {
  padding: 2.5rem;
  justify-content: center;
}

.post-card--featured .post-card__title {
  font-size: 1.5rem;
}

/* ---- Blog Index Grid ---- */
.blog-grid {
  padding: 4rem 0;
}

.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ---- FAQ ---- */
.faq {
  padding: 5rem 0;
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 100px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text);
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  line-height: 1.45;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  color: var(--body-text);
  transition: transform 0.35s, color 0.35s;
}

.faq-item.active .faq-item__icon {
  border-color: var(--primary);
  background: var(--primary);
}

.faq-item.active .faq-item__icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 0 1.25rem 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--body-text);
}

.faq-item__answer-inner p { margin-bottom: 0.75rem; }
.faq-item__answer-inner p:last-child { margin-bottom: 0; }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--body-text);
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.pagination a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  pointer-events: none;
}

.pagination__arrow {
  font-weight: 600;
}

/* ---- Single Post ---- */
.post-single {
  padding: 3rem 0 5rem;
}

.post-single__header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.post-single__date {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.post-single__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.post-single__excerpt {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--body-text);
  max-width: 640px;
  margin: 0 auto;
}

.post-single__excerpt p { margin-bottom: 0; }

.post-single__cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-single__cover img {
  width: 100%;
  display: block;
}

.post-single__body {
  max-width: 740px;
  margin: 0 auto;
}

/* Content HTML styling */
.content-html h1,
.content-html h2,
.content-html h3,
.content-html h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-html p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-html ul, .content-html ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.content-html li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.content-html img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.content-html blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--heading-text);
}

.content-html a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Page (static) ---- */
.page-single {
  padding: 3rem 0 5rem;
}

.page-single__header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.page-single__body {
  max-width: 740px;
  margin: 0 auto;
}

/* ---- Page Banner ---- */
.page-banner {
  background: var(--dark);
  padding: 3.5rem 0;
  text-align: center;
}

.page-banner__title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
}

.page-banner__breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.page-banner__breadcrumb a {
  color: var(--primary);
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer__brand-accent {
  color: var(--primary);
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__email a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.footer__email a:hover {
  color: var(--white);
}

.footer__heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links a::before {
  content: '›';
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1em;
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.footer__copy {
  color: rgba(255,255,255,0.45);
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(50,195,108,0.35);
  z-index: 999;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top.visible {
  display: flex;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .navbar__links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    padding: 0.9rem 1.25rem;
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

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

  .hero__content {
    padding: 3.5rem 1.25rem;
    max-width: none;
  }

  .hero__visual {
    min-height: 240px;
  }

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

  .split--reverse .split__inner {
    direction: ltr;
  }

  .split__image {
    min-height: 280px;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq__intro {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .latest-posts__grid--featured {
    grid-template-columns: 1fr;
  }

  .post-card--featured {
    flex-direction: column;
  }

  .post-card--featured .post-card__image {
    width: 100%;
    min-height: 220px;
  }

  .topbar {
    display: none;
  }
}

@media (max-width: 640px) {
  .topics__grid {
    grid-template-columns: 1fr;
  }

  .blog-grid__list {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .post-card--featured .post-card__body {
    padding: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Focus styles ---- */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---- Skip nav ---- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-nav:focus {
  top: 0.5rem;
  color: var(--white);
}
