/* =============================================================
   DEWAS LEGAL HUB — style.css
   ============================================================= */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #12203a;
  --navy-hover:  #243562;
  --gold:        #C9973E;
  --gold-hover:  #b5842c;
  --gold-light:  rgba(201, 151, 62, 0.12);
  --white:       #ffffff;
  --gray-50:     #F8F9FB;
  --gray-100:    #F1F3F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --text:        #1A1A2E;
  --cream:       #FDF6EC;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 36px rgba(0,0,0,0.13);
  --ease:        0.2s ease;
  --max-width:   1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: 'Inter', system-ui, sans-serif; font-size: 15px; line-height: 1.6; color: var(--text); background: var(--white); }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
address { font-style: normal; }
svg   { flex-shrink: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section { padding: 64px 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform 0.1s;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

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

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); font-size: 15px; padding: 12px 28px; }
.btn-navy:hover { background: var(--navy-hover); }

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-top {
  background: var(--navy);
  padding: 7px 0;
  text-align: right;
}
.for-lawyers-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  padding-right: 0;
  transition: color var(--ease);
}
.for-lawyers-link:hover { color: var(--gold); }

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name  { font-size: 15.5px; font-weight: 800; color: var(--navy); }
.logo-tagline { font-size: 10.5px; color: var(--gray-600); margin-top: 3px; font-weight: 400; }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-menu li { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: 4px;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.chevron { transition: transform var(--ease); vertical-align: middle; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--ease);
  z-index: 300;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--text);
  transition: background var(--ease), color var(--ease);
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--gold); }

/* Nav actions */
.nav-actions { flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  border-radius: 4px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 510px;
  /* Place your courthouse photo at images/hero-bg.jpg */
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #e8eef6;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.98) 38%,
    rgba(255,255,255,0.88) 54%,
    rgba(255,255,255,0.30) 72%,
    rgba(255,255,255,0)    100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 52px;
}
.hero-left { max-width: 600px; flex: 1; }

.hero-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero-accent {
  display: block;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.75;
  max-width: 480px;
}

/* Search box */
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 580px;
}

.search-tabs {
  display: flex;
}
.search-tab {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  transition: all var(--ease);
}
.search-tab.active {
  background: var(--navy);
  color: var(--white);
  border-bottom-color: var(--navy);
}
.search-tab:not(.active):hover { color: var(--navy); background: var(--gray-50); }

.search-panel { padding: 16px; }
.is-hidden { display: none !important; }

.search-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 9px 13px;
  background: var(--white);
  transition: border-color var(--ease);
}
.search-field:focus-within { border-color: var(--navy); }
.search-field--grow { flex: 1; }
.search-field--location { min-width: 140px; flex-shrink: 0; }
.search-field input,
.search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text);
  width: 100%;
}
.search-field input::placeholder { color: var(--gray-400); }
.search-field select { cursor: pointer; }
.search-submit { height: 42px; flex-shrink: 0; }

/* Popular searches */
.popular-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 5px;
  padding: 11px 16px 13px;
  border-top: 1px solid var(--gray-200);
  font-size: 12.5px;
}
.pop-label  { font-weight: 600; color: var(--text); white-space: nowrap; }
.pop-tag    { color: var(--gray-600); font-weight: 500; transition: color var(--ease); }
.pop-tag:hover { color: var(--gold); }
.pop-sep    { color: var(--gray-400); }

/* Lawyer join card */
.lawyer-join-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 230px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 70px;
}
.join-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-card-title { font-size: 16px; font-weight: 700; }
.join-card-text  { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* ── Practice Areas ─────────────────────────────────────────── */
.practice-section { background: var(--white); }

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
}
.practice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.35;
  transition: all var(--ease);
  cursor: pointer;
}
.practice-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,151,62,0.18);
  transform: translateY(-2px);
  color: var(--navy);
}
.practice-card:hover .practice-icon svg { stroke: var(--gold); }
.practice-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-card--all .all-label { color: var(--gold); font-weight: 700; }
.practice-card--all:hover { border-color: var(--gold); }

/* ── Top Rated Lawyers ──────────────────────────────────────── */
.lawyers-section { background: var(--gray-50); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.view-all-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap var(--ease);
}
.view-all-link:hover { gap: 8px; }

/* Carousel */
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  transition: all var(--ease);
}
.carousel-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* Lawyer card */
.lawyer-card {
  flex-shrink: 0;
  width: calc((100% - 64px) / 5); /* 5 visible, 4 gaps */
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.lawyer-card:hover { box-shadow: var(--shadow-md); }

.lawyer-photo {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--gray-100);
}
.lawyer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lawyer-card:hover .lawyer-photo img { transform: scale(1.04); }

.rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 0.3px;
}

.lawyer-info { padding: 14px 16px 16px; }
.lawyer-info h3   { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.lawyer-type  { font-size: 12.5px; color: var(--gray-600); margin-bottom: 3px; }
.lawyer-exp   { font-size: 12px;   color: var(--gray-600); margin-bottom: 4px; }
.lawyer-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.stars {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #F59E0B;
  margin-bottom: 12px;
  gap: 2px;
}
.review-count { font-size: 12px; color: var(--gray-400); margin-left: 4px; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section { background: var(--navy); padding: 52px 0; }

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-top: 5px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ── Features ───────────────────────────────────────────────── */
.features-section { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-choose h2,
.how-it-works h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.why-list { display: flex; flex-direction: column; gap: 15px; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.check-ico { flex-shrink: 0; }

.scales-art {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  opacity: 0.75;
}

/* Steps */
.steps-list { display: flex; flex-direction: column; gap: 30px; }
.step { display: flex; align-items: flex-start; gap: 18px; }
.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,151,62,0.35);
}
.step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.step-body p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  border-top: 1px solid rgba(201,151,62,0.18);
  border-bottom: 1px solid rgba(201,151,62,0.18);
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.cta-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-text { flex: 1; }
.cta-text h2 { font-size: 20px; font-weight: 700; }
.cta-text p  { font-size: 14px; color: var(--gray-600); margin-top: 4px; }

/* ── Site Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  line-height: 1.75;
  max-width: 290px;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
}
.footer-contact a { color: inherit; transition: color var(--ease); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--ease);
}
.footer-bottom nav a:hover { color: var(--gold); }

/* ── Responsive — Tablet (≤1100px) ─────────────────────────── */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(5, 1fr); }

  .lawyer-card { width: calc((100% - 48px) / 4); }

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

/* ── Responsive — Tablet (≤900px) ──────────────────────────── */
@media (max-width: 900px) {
  :root { --max-width: 100%; }

  .stat-divider { display: none; }
  .stats-row { justify-content: space-around; row-gap: 28px; }
  .stat-item { min-width: 140px; flex: 0 0 calc(33% - 16px); }

  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .scales-art { display: none; }
}

/* ── Responsive — Mobile (≤768px) ──────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .header-top { display: none; }
  .nav-menu, .nav-actions { display: none; }
  .mobile-toggle { display: flex; }
  .navbar-inner { flex-wrap: wrap; }

  /* Mobile nav open state (toggled via JS) */
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 16px;
    border-top: 1px solid var(--gray-200);
    gap: 0;
  }
  .nav-menu.is-open .nav-link { padding: 11px 12px; width: 100%; }
  .nav-menu.is-open .nav-link.active::after { display: none; }
  .nav-menu.is-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 20px;
    background: var(--gray-50);
    border-radius: 0;
  }
  .nav-actions.is-open { display: flex; width: 100%; padding: 0 12px 16px; }

  /* Hero */
  .hero {
    background-position: center top;
    min-height: auto;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.93) 100%
    );
  }
  .hero-content {
    flex-direction: column;
    padding-top: 36px;
    padding-bottom: 40px;
    gap: 24px;
  }
  .hero-left { max-width: 100%; }
  .search-box { max-width: 100%; }
  .search-row { flex-direction: column; align-items: stretch; }
  .search-field--location { min-width: unset; }
  .search-submit { width: 100%; }

  .lawyer-join-card {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    text-align: left;
    margin-top: 0;
    padding: 20px;
  }
  .join-card-icon { flex-shrink: 0; }

  /* Practice */
  .practice-grid { grid-template-columns: repeat(3, 1fr); }

  /* Lawyers carousel */
  .carousel-wrap { gap: 6px; }
  .lawyer-card { width: calc((100% - 16px) / 2); }

  /* Stats */
  .stats-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-item { min-width: unset; flex: none; width: 100%; }

  /* Footer */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-icon  { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
}

/* ── Responsive — Small mobile (≤480px) ────────────────────── */
@media (max-width: 480px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .practice-card { padding: 14px 8px 12px; }
  .practice-icon { width: 42px; height: 42px; }

  .lawyer-card { width: 100%; }
  .carousel-wrap { position: relative; }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-sm);
  }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
  .carousel-viewport { margin: 0 20px; }
}

/* ── Focus styles (accessibility) ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
