/* =========================================
   CSS variables / Design System Workspace
   ========================================= */
:root {
  /* Colors */
  --clr-navy: #0b2040;
  --clr-navy-light: #1a3668;
  --clr-gold: #c0a159;
  --clr-gold-light: #d4b97b;
  --clr-white: #ffffff;
  --clr-bg-light: #f8f9fa;
  --clr-text-main: #333333;
  --clr-text-muted: #666666;

  /* Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing & Sizes */
  --max-width: 1200px;
  --section-padding: 80px 20px;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-navy);
  line-height: 1.2;
}

p {
  color: var(--clr-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* =========================================
   Header & Navigation
   ========================================= */
.header {
  background-color: var(--clr-navy);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.logo img {
  height: 60px;
  /* Adjusting the logo size */
  width: auto;
  transition: var(--transition);
}

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

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: var(--clr-white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  background: linear-gradient(
    135deg,
    var(--clr-navy) 0%,
    var(--clr-navy-light) 100%
  );
  color: var(--clr-white);
  padding: 150px 20px 80px;
  /* Top padding to account for fixed header */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  color: var(--clr-white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.highlight {
  color: var(--clr-gold);
}

.hero-subtitle {
  color: #e0e0e0;
  font-size: 1.25rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--clr-white);
}

.hero-cta .btn-outline:hover {
  border-color: var(--clr-gold);
}

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

.image-wrapper {
  position: relative;
  max-width: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image styling */
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  /* Slight scale to hide potential border artifacts */
}

/* Decorative element behind the image */
.hero-image::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--clr-gold);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
  transform: translate(50px, 50px);
}

/* =========================================
   Responsive / Mobile Styles
   ========================================= */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .d-none-mobile {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .nav {
    display: none;
    /* We will toggle this with JS */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-navy);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
  }

  .nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

/* =========================================
   Utility / Shared Section Styles
   ========================================= */
.section-title {
  font-size: 2.5rem;
  color: var(--clr-navy);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: var(--clr-gold);
  margin-bottom: 30px;
  border-radius: 2px;
}

.center-underline {
  margin: 0 auto 30px;
}

.text-center {
  text-align: center;
}

.highlight-text {
  color: var(--clr-navy);
  font-weight: 600;
}

/* =========================================
   About Section
   ========================================= */
.about {
  background-color: var(--clr-white);
  position: relative;
}

.about-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-text {
  flex: 2;
  max-width: 800px;
}

.about-photo {
  flex: 1;
  min-width: 0;
}

.about-photo img {
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--clr-bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--clr-gold);
  transition: var(--transition);
}

.credential-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.credential-item i {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-top: 5px;
}

.credential-item h4 {
  margin-bottom: 5px;
  color: var(--clr-navy-light);
}

.credential-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .credentials {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================================
   Services Section
   ========================================= */
.services {
  background-color: var(--clr-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--clr-white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(192, 161, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--clr-gold);
}

.service-icon i {
  font-size: 30px;
  color: var(--clr-gold);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--clr-white);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--clr-navy);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
  background-color: var(--clr-white);
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-list {
  margin-top: 40px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-list i {
  width: 50px;
  height: 50px;
  background-color: rgba(192, 161, 89, 0.1);
  color: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-list h4 {
  color: var(--clr-navy);
  margin-bottom: 5px;
}

.contact-form-wrapper {
  flex: 1;
  background-color: var(--clr-bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--clr-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(192, 161, 89, 0.2);
}

.w-100 {
  width: 100%;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background-color: var(--clr-navy);
  color: var(--clr-white);
  padding-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #e0e0e0;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--clr-gold);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--clr-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #08172e;
  font-size: 0.9rem;
  color: #a0a0a0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }
}

/* =========================================
   Active Nav Link
   ========================================= */
.nav-link.active::after {
  width: 100%;
}

/* =========================================
   Page Hero (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  color: var(--clr-white);
  padding: 150px 20px 60px;
  text-align: center;
}

.page-hero-title {
  color: var(--clr-white);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-hero-subtitle {
  color: #e0e0e0;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================
   Professional Timeline
   ========================================= */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--clr-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background-color: var(--clr-gold);
  border: 3px solid var(--clr-white);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -8px;
}

.timeline-item:nth-child(even)::before {
  left: -8px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 5px;
}

.timeline-logo {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  opacity: 0.8;
}

.timeline-org {
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 5px;
}

.timeline-role {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.timeline-location {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 20px;
  }

  .timeline-item::before {
    left: 12px !important;
    right: auto !important;
  }
}

/* =========================================
   Blog Listing
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background-color: var(--clr-white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
  display: block;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--clr-gold);
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--clr-navy);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-card-link {
  color: var(--clr-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.blog-card-link:hover {
  color: var(--clr-gold-light);
}

/* =========================================
   Blog Post Content
   ========================================= */
.blog-post-content {
  max-width: 720px;
  margin: 60px auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.blog-post-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin: 40px auto;
  padding: 30px;
  background-color: var(--clr-bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--clr-gold);
}

.author-photo {
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-cta {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 60px;
  padding: 40px;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  border-radius: 10px;
  color: var(--clr-white);
}

.blog-post-cta h3 {
  color: var(--clr-white);
  margin-bottom: 20px;
}

/* =========================================
   Trust / Logos Section
   ========================================= */
.trust-section {
  background-color: var(--clr-white);
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-logo-item {
  width: 160px;
  height: 80px;
  padding: 12px 16px;
  background-color: var(--clr-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trust-logo-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.trust-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  text-align: center;
  color: var(--clr-white);
}

.cta-section h2 {
  color: var(--clr-white);
  margin-bottom: 15px;
}

.cta-section p {
  color: #e0e0e0;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* =========================================
   Google Maps Embed
   ========================================= */
.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* =========================================
   Contact Cards Grid
   ========================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background-color: var(--clr-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  min-width: 0;
}

.contact-card div {
  min-width: 0;
}

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

.contact-card i {
  width: 50px;
  height: 50px;
  background-color: rgba(192, 161, 89, 0.1);
  color: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  margin-bottom: 3px;
  color: var(--clr-navy);
}

.contact-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* =========================================
   Service Detail Page
   ========================================= */
.service-detail {
  background-color: var(--clr-white);
}

.service-detail-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-detail-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.service-deliverables {
  list-style: none;
  margin: 30px 0;
}

.service-deliverables li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid #eee;
}

.service-deliverables li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--clr-gold);
}

/* =========================================
   Timeline Preview (homepage)
   ========================================= */
.timeline-preview {
  background-color: var(--clr-bg-light);
}

.timeline-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.timeline-preview-item {
  padding: 25px;
  background-color: var(--clr-white);
  border-radius: 10px;
  border-left: 4px solid var(--clr-gold);
  box-shadow: var(--shadow-sm);
}

.timeline-preview-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 8px;
}

/* =========================================
   Trust Indicators (hero)
   ========================================= */
.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  font-size: 0.9rem;
}

.hero-trust-item i {
  color: var(--clr-gold);
}

@media (max-width: 768px) {
  .hero-trust {
    justify-content: center;
  }
}

/* =========================================
   Utility Classes
   ========================================= */
.bg-light-section { background-color: var(--clr-bg-light); }
.section-intro { text-align: center; max-width: 750px; margin: 0 auto 40px; font-size: 1.1rem; color: var(--clr-text-muted); }
.service-cta-wrapper { text-align: center; margin-top: 40px; }
.timeline-cta { text-align: center; margin-top: 30px; }
.btn-outline-gold { border-color: var(--clr-gold); color: var(--clr-navy); }
.map-address { text-align: center; margin-top: 15px; color: var(--clr-text-muted); }
.blog-empty { text-align: center; padding: 60px 0; color: var(--clr-text-muted); }

/* =========================================
   Skip to Content (Accessibility)
   ========================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--clr-navy);
  color: var(--clr-white);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}
