/* ==========================================================================
   Asa Property Ventures — design system
   Palette drawn from the APV logo: near-black + warm stone, bronze accent.
   ========================================================================== */

:root {
  /* brand */
  --black: #0a0c0b;          /* page dark — from logo background */
  --coal: #151816;           /* raised dark surface */
  --coal-2: #1d211e;         /* higher dark surface */
  --stone: #c8c0b0;          /* brand greige — from logo mark */
  --stone-soft: #a49c8d;     /* muted stone for secondary dark text */
  --paper: #f6f3ec;          /* warm light background */
  --paper-2: #efeadf;        /* alternate light band */
  --white: #fffefb;
  --ink: #191b19;            /* text on light */
  --ink-soft: #50534e;       /* secondary text on light */
  --bronze: #b98a45;         /* single accent — CTAs only */
  --bronze-deep: #9c7134;    /* hover / borders */
  --bronze-text: #8a6227;    /* accent-colored text on light (AA) */
  --line-dark: rgba(200, 192, 176, 0.16);
  --line-light: rgba(25, 27, 25, 0.12);

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --container: 1140px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(20, 18, 12, 0.05), 0 12px 32px -12px rgba(20, 18, 12, 0.18);
  --shadow-pop: 0 2px 6px rgba(10, 12, 11, 0.25), 0 24px 56px -16px rgba(10, 12, 11, 0.45);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0 0 1rem;
}
a {
  color: var(--bronze-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
}
/* On light surfaces the bronze ring lacks contrast — use a darker ring + halo */
.section:not(.section--dark):not(.hero) :focus-visible,
.form-card :focus-visible,
.card :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--ink);
}
/* Inputs: keep the border cue AND a visible focus ring (never outline:none) */
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 3px solid var(--bronze-deep);
  outline-offset: 1px;
  border-color: var(--bronze-deep);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- type scale ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: inherit;
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-text);
  margin-bottom: 0.9rem;
}
.on-dark .eyebrow,
.eyebrow.on-dark {
  color: var(--stone);
  opacity: 0.85;
}

/* ---------- layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.section--tight {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.section--dark {
  background: var(--black);
  color: var(--stone);
}
.section--alt {
  background: var(--paper-2);
}
.section--white {
  background: var(--white);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--bronze);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--bronze-deep);
  color: var(--white);
}
.btn--ghost-dark {
  border-color: var(--line-dark);
  color: var(--stone);
}
.btn--ghost-dark:hover {
  border-color: var(--stone);
}
.btn--ghost-light {
  border-color: var(--line-light);
  color: var(--ink);
}
.btn--ghost-light:hover {
  border-color: var(--ink);
}
.btn--lg {
  padding: 1.1rem 2.1rem;
  font-size: 1.06rem;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 12, 11, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--stone);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--stone);
  margin-right: auto;
  flex-shrink: 0; /* never let the brand get crushed if the row runs tight */
}
.brand__mark {
  width: 52px;
  height: auto;
  flex: none;
}
.brand__name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 15em;
}
.header-cta .btn {
  white-space: nowrap;
}
.brand__tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--stone-soft);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}
.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--white);
}
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--bronze);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.header-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--stone);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover {
  color: var(--white);
}
/* Tap-to-call row — only appears inside the open mobile menu (see media query) */
.nav-call {
  display: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--stone);
}
.nav-toggle svg {
  width: 26px;
  height: 26px;
}
/* Switch to the hamburger before the full desktop nav (brand + 5 links +
   phone + CTA) can overflow the row — the desktop layout needs ~1200px. */
@media (max-width: 1200px) {
  .nav-toggle {
    display: block;
    order: 3;
  }
  .header-cta .btn {
    display: none;
  }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.5rem 0 1rem;
    display: none;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 0;
    font-size: 1.05rem;
  }
  .site-nav a[aria-current="page"] {
    color: var(--bronze);
  }
  /* Tap-to-call, always present when the mobile menu is open */
  .site-nav .nav-call {
    display: block;
    margin-top: 0.4rem;
    color: var(--bronze);
    font-weight: 700;
  }
}
@media (max-width: 560px) {
  .brand__tag {
    display: none;
  }
  .header-phone {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(200, 192, 176, 0.1), transparent 62%),
    radial-gradient(900px 480px at -8% 110%, rgba(185, 138, 69, 0.12), transparent 58%),
    var(--black);
  color: var(--stone);
  overflow: hidden;
}
.hero::after {
  /* faint roofline motif echoing the logo */
  content: "";
  position: absolute;
  right: -6%;
  bottom: -14%;
  width: 56%;
  aspect-ratio: 26 / 15;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 150'%3E%3Cpath d='M118 6 14 118h232V64Z' fill='none' stroke='%23c8c0b0' stroke-width='2'/%3E%3Cpath d='M172 118V64h74' fill='none' stroke='%23c8c0b0' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero .lead {
  color: var(--stone);
  max-width: 34em;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  color: var(--stone-soft);
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__meta svg {
  width: 16px;
  height: 16px;
  color: var(--bronze);
  flex: none;
}
.hero--inner {
  text-align: left;
}
.hero--inner .hero__inner {
  grid-template-columns: 1fr;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.hero--inner p.lead {
  max-width: 46em;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

/* ---------- lead form card ---------- */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form-card h2,
.form-card h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.form-card__sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--bronze);
}
.field textarea {
  resize: vertical;
  min-height: 108px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .field--row {
    grid-template-columns: 1fr;
  }
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0.9rem 0 0;
}
.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
}
.form-status.is-error {
  display: block;
  background: #fbeceb;
  color: #8c2f28;
}
.form-status.is-success {
  display: block;
  background: #edf3e9;
  color: #33591f;
}

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-card);
}
.card h3 {
  margin-bottom: 0.55rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.card--link {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card--link:hover {
  transform: translateY(-3px);
  border-color: var(--bronze);
  box-shadow: var(--shadow-pop);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--bronze-deep);
  margin-bottom: 1.1rem;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card__more {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bronze-text);
  margin-top: 1rem;
}

/* dark cards */
.card--dark {
  background: var(--coal);
  border-color: var(--line-dark);
  color: var(--stone);
}
.card--dark h3 {
  color: var(--white);
}
.card--dark p {
  color: var(--stone-soft);
}

/* ---------- steps ---------- */
.step {
  position: relative;
  padding-top: 0.4rem;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1;
  color: var(--bronze);
  opacity: 0.9;
  margin-bottom: 0.7rem;
}
.step h3 {
  margin-bottom: 0.45rem;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}
.section--dark .step p {
  color: var(--stone-soft);
}
.section--dark .step h3 {
  color: var(--white);
}

/* ---------- split feature ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse > :first-child {
  order: 2;
}
@media (max-width: 860px) {
  .split,
  .split--reverse > :first-child {
    grid-template-columns: 1fr;
    order: initial;
  }
}
.figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--coal-2), var(--black) 70%);
  position: relative;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Subtle warm vignette unifies mixed stock photos with the brand palette */
.figure:not(.figure--placeholder)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, rgba(10, 12, 11, 0) 55%, rgba(10, 12, 11, 0.32));
  pointer-events: none;
}
.figure--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 300px at 80% 0%, rgba(200, 192, 176, 0.14), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 150'%3E%3Cpath d='M118 6 14 118h232V64Z' fill='none' stroke='%23c8c0b0' stroke-width='1.5'/%3E%3Cpath d='M172 118V64h74' fill='none' stroke='%23c8c0b0' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center 58% / 52%;
  opacity: 0.35;
}

/* ---------- checklist ---------- */
.checklist {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}
.checklist svg {
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 19px;
  height: 19px;
  color: var(--bronze-deep);
}
.section--dark .checklist svg {
  color: var(--bronze);
}

/* ---------- comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.97rem;
}
.compare th,
.compare td {
  text-align: left;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line-light);
}
.compare thead th {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-2);
}
.compare thead th.compare__us {
  background: var(--black);
  color: var(--stone);
}
.compare td.compare__us {
  background: rgba(185, 138, 69, 0.08);
  font-weight: 600;
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare tbody th {
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 380px at 15% 120%, rgba(185, 138, 69, 0.16), transparent 60%),
    var(--black);
  color: var(--stone);
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  max-width: 18em;
  margin-inline: auto;
}
.cta-band .lead {
  max-width: 38em;
  margin-inline: auto;
  color: var(--stone);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.cta-band__phone {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--stone-soft);
}
.cta-band__phone a {
  color: var(--stone);
  font-weight: 600;
}

/* ---------- service blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.4rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  scroll-margin-top: 100px;
}
.service-block + .service-block {
  margin-top: 1.4rem;
}
.service-block .card__icon {
  margin-bottom: 0;
}
.service-block h3 {
  margin-bottom: 0.6rem;
}
.service-block p {
  color: var(--ink-soft);
}
.service-block p:last-of-type {
  margin-bottom: 0;
}
.service-block .btn {
  margin-top: 1.2rem;
}
@media (max-width: 560px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--stone-soft);
  border-top: 1px solid var(--line-dark);
  font-size: 0.95rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin-bottom: 0.55rem;
}
.site-footer a {
  color: var(--stone-soft);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--stone);
}
.footer-brand img,
.footer-brand svg {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  max-width: 30em;
  margin-bottom: 0;
}
.site-footer__legal {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ---------- misc ---------- */
.phone-strong {
  white-space: nowrap;
  font-weight: 700;
  color: inherit;
}
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.area-chip {
  border: 1px solid var(--line-dark);
  color: var(--stone);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
}
.section:not(.section--dark) .area-chip {
  border-color: var(--line-light);
  color: var(--ink-soft);
}
.notice {
  background: var(--paper-2);
  border-left: 3px solid var(--bronze);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
/* Keep sticky-header-offset anchors from hiding their target headings */
#lead-form,
.split[id],
section[id] {
  scroll-margin-top: 96px;
}
/* Reveal-on-scroll: hidden state only applies when JS is running (html.js) */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
.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;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--bronze);
  color: var(--black);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}
