/*
Theme Name: Anergi Theme
Theme URI: https://anergi.se
Author: Simon Hansen
Author URI: https://anergi.se
Description: Custom WordPress theme for Änergi AB - translating technology into business value.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anergi
*/

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: #555;
  line-height: 1.7;
}

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

/* ============================================
   SECTION LABEL (green uppercase)
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2D7A4F;
  margin-bottom: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: #2D7A4F;
  color: #fff;
  border-color: #2D7A4F;
}

.btn-primary:hover {
  background: #236b42;
  border-color: #236b42;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-outline {
  background: transparent;
  color: #2D7A4F;
  border-color: #2D7A4F;
}

.btn-outline:hover {
  background: #2D7A4F;
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: #2D7A4F;
  border-color: #fff;
}

.btn-white:hover {
  background: #f0f0f0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo svg {
  height: 32px;
  width: auto;
}

.site-logo svg .cls-1,
.site-logo svg .cls-2 {
  fill: #1a1a1a;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

.nav-cta {
  background: #2D7A4F !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: #236b42 !important;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
}

.lang-switch button {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.lang-switch button.active {
  color: #1a1a1a;
}

.lang-switch button:hover {
  color: #1a1a1a;
}

.lang-switch span {
  color: #ccc;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 140px 0 80px;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content .section-label {
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-content > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  background: #f5f5f5;
  object-fit: cover;
}

/* ============================================
   OM MIG SECTION
   ============================================ */
.om-mig-section {
  padding: 100px 0;
  background: #fff;
}

.om-mig-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.om-mig-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  object-fit: cover;
}

.om-mig-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 48px;
}

.om-mig-card h2 {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.om-mig-card p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.om-mig-card p:last-of-type {
  margin-bottom: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  background: #e8f5e9;
  color: #2D7A4F;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   TJANSTER SECTION
   ============================================ */
.tjanster-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.tjanster-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.tjanster-header h2 {
  margin-bottom: 16px;
}

.tjanster-header p {
  font-size: 1.05rem;
}

.tjanster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tjanster-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.tjanster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tjanster-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.tjanster-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tjanster-card h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
}

.tjanster-card p {
  font-size: 0.95rem;
}

/* ============================================
   AI & ENERGIBESPARING SECTION
   ============================================ */
.ai-energy-section {
  padding: 100px 0;
  background: #fff;
}

.ai-energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-energy-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ai-energy-content h2 {
  margin-bottom: 20px;
}

.ai-energy-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ============================================
   FORANDRING SECTION
   ============================================ */
.forandring-section {
  padding: 100px 0;
  background: #fff;
}

.forandring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.forandring-content h2 {
  margin-bottom: 20px;
}

.forandring-content p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.forandring-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   ARBETSSATT SECTION
   ============================================ */
.arbetssatt-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.arbetssatt-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.arbetssatt-header h2 {
  margin-bottom: 16px;
}

.arbetssatt-header p {
  font-size: 1.05rem;
}

.arbetssatt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.arbetssatt-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.arbetssatt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  color: #e8e8e8;
  line-height: 1;
  margin-bottom: 16px;
}

.arbetssatt-card h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
}

.arbetssatt-card p {
  font-size: 0.95rem;
}

.arbetssatt-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.arbetssatt-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  padding: 100px 0;
  background: #1a1a1a;
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-icon {
  margin-bottom: 28px;
}

.testimonial-quote-icon svg {
  width: 48px;
  height: 48px;
}

.testimonial-text {
  font-size: 1.35rem;
  font-style: italic;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-author {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2D7A4F;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #777;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 40px 0 80px;
  background: #fff;
}

.cta-box {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 32px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #2d2d2d;
  padding: 72px 0 0;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo svg {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
}

.footer-logo svg .cls-1,
.footer-logo svg .cls-2 {
  fill: #fff;
}

.footer-desc {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #2D7A4F;
  color: #fff;
}

.footer-nav h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: #999;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #999;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #2D7A4F;
}

.footer-contact-item a {
  color: #999;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid,
  .om-mig-grid,
  .ai-energy-grid,
  .forandring-grid {
    gap: 40px;
  }

  .tjanster-grid,
  .arbetssatt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* --- Mobile Nav --- */
  .menu-toggle {
    display: flex;
  }

  .nav-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-right.open {
    transform: translateX(0);
  }

  .main-nav {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0;
    align-items: stretch;
  }

  .main-nav a {
    padding: 16px 20px;
    font-size: 1.1rem;
    width: 100%;
    border-radius: 12px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav a:active {
    background: #eee;
  }

  .nav-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 8px;
    min-height: 52px;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 24px;
  }

  .lang-switch button {
    padding: 8px 12px;
    font-size: 1rem;
    min-height: 44px;
    min-width: 44px;
  }

  /* --- Hero --- */
  .hero-section {
    padding: 100px 0 48px;
  }

  .hero-grid,
  .om-mig-grid,
  .ai-energy-grid,
  .forandring-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 240px;
    border-radius: 16px;
  }

  .hero-content .section-label {
    font-size: 0.7rem;
  }

  .hero-content > p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
  }

  /* --- Sections Padding --- */
  .om-mig-section,
  .tjanster-section,
  .ai-energy-section,
  .forandring-section,
  .arbetssatt-section,
  .testimonial-section {
    padding: 60px 0;
  }

  .stats-section {
    padding: 48px 0;
  }

  /* --- Om Mig --- */
  .om-mig-image img {
    max-width: 100%;
    border-radius: 16px;
  }

  .om-mig-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .om-mig-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .om-mig-card p {
    font-size: 0.95rem;
  }

  .tags {
    gap: 8px;
  }

  .tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  /* --- Tjänster & Arbetssätt grids --- */
  .tjanster-grid,
  .arbetssatt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tjanster-card,
  .arbetssatt-card {
    padding: 28px 24px;
    border-radius: 14px;
  }

  .tjanster-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* --- Forandring --- */
  .forandring-image {
    order: -1;
  }

  .forandring-image img,
  .ai-energy-image img {
    border-radius: 16px;
  }

  /* --- Testimonial --- */
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
  }

  /* --- CTA --- */
  .cta-section {
    padding: 24px 0 60px;
  }

  .cta-box {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .cta-box h2 {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

  .cta-box .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 48px 0 0;
  }

  .footer-nav ul {
    gap: 10px;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  .container {
    padding: 0 16px;
  }

  .hero-section {
    padding: 92px 0 40px;
  }

  .hero-image img {
    max-width: 200px;
  }

  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .site-logo svg {
    height: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

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

  .stat-number {
    font-size: 2rem;
    min-width: 80px;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .tjanster-header p,
  .arbetssatt-header p {
    font-size: 0.95rem;
  }

  .om-mig-section,
  .tjanster-section,
  .ai-energy-section,
  .forandring-section,
  .arbetssatt-section,
  .testimonial-section {
    padding: 48px 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }

/* Fallback: if JS hasn't added .visible after 2s, show content anyway */
@keyframes fade-in-fallback {
  to { opacity: 1; transform: translateY(0); }
}

.no-js .fade-in,
.fade-in-fallback {
  animation: fade-in-fallback 0.6s ease forwards;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2E8B57;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form button {
  padding: 10px 20px;
  background: #2E8B57;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-form button:hover {
  opacity: 0.85;
}

.contact-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-status.success { color: #4ade80; }
.form-status.error { color: #f87171; }

/* CTA Contact Form enhancements */
.cta-box .contact-form {
  margin: 24px auto 0;
  max-width: 440px;
}

.cta-box .contact-form input,
.cta-box .contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .cta-box .contact-form {
    max-width: 100%;
  }
}

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #2E8B57;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
