/* =========================================================
   IronSouth Mechanical | styles.css
   Built Strong. Controlled Smart.
   ========================================================= */

:root {
  --rust:       #C8501E;
  --rust-dark:  #A8401A;
  --charcoal:   #1F1F1F;
  --black:      #0F0F0F;
  --navy:       #1F3142;
  --off-white:  #F5F2EE;
  --steel-1:    #D8D8D8;
  --steel-2:    #9A9A9A;
  --mid-gray:   #8A8A8A;
  --line:       rgba(255,255,255,0.12);

  --font-head:  "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --gut:  clamp(20px, 4vw, 48px);
  --r:    2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); font-weight: 800; line-height: 1; letter-spacing: -0.005em; text-transform: uppercase; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ---------- Shared bits ---------- */
.eyebrow,
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 18px;
}
.section-eyebrow--light { color: var(--rust); }

.section-title {
  font-size: clamp(40px, 6vw, 56px);
  color: var(--charcoal);
}
.section-title--light { color: #fff; }

.rule {
  width: 64px;
  height: 4px;
  background: var(--rust);
  margin: 18px 0 28px;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: #fff;
  color: var(--black);
  transform: translateY(-2px);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled {
  background: var(--black);
  border-bottom-color: var(--rust);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo img {
  height: 52px;
  width: auto;
  transition: height .25s var(--ease);
}
.nav.is-scrolled .nav__logo img { height: 44px; }
@media (max-width: 768px) {
  .nav__logo img { height: 42px; }
  .nav.is-scrolled .nav__logo img { height: 38px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--rust);
  transition: right .25s var(--ease);
}
.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn):focus-visible::after { right: 0; }
.nav__cta { padding: 10px 20px; font-size: 14px; }
.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black) url('assets/photos/hero-jobsite.jpg') center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gut) 80px;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.75) 50%, rgba(15,15,15,0.90) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__overlay {
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 8px),
      linear-gradient(180deg, rgba(15,15,15,0.90) 0%, rgba(15,15,15,0.85) 50%, rgba(15,15,15,0.95) 100%);
  }
}
.hero__content {
  position: relative;
  max-width: 1100px;
  z-index: 1;
}
.hero__headline {
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.hero__headline .accent { color: var(--rust); }
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--mid-gray);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  animation: bounce 2.4s var(--ease) infinite;
  z-index: 1;
}
.hero__scroll:hover { color: var(--rust); }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* ---------- About ---------- */
.about {
  background: var(--off-white);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__copy p { color: #333; }
.about__copy p + p { margin-top: 1em; }

.about__media {
  position: relative;
  isolation: isolate;
  padding: 32px;
  border-radius: var(--r);
  overflow: hidden;
}
.about__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
.about__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,31,31,0.75) 0%, rgba(31,31,31,0.50) 100%);
  z-index: -1;
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.stat {
  padding: 28px 32px;
  background: #fff;
  border-left: 4px solid var(--rust);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216,216,216,0.0) 0%, rgba(154,154,154,0.06) 100%);
  pointer-events: none;
}
.stat:hover { transform: translateY(-3px); box-shadow: 0 8px 0 -2px rgba(200,80,30,0.18); }
.stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--rust);
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 8px;
}

/* ---------- Services ---------- */
.services {
  background: var(--charcoal);
  color: #fff;
  padding: 0 0 clamp(72px, 10vw, 120px);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 8px);
  pointer-events: none;
}
.services__banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  z-index: 1;
}
.services__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.services__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,0.60) 0%, rgba(31,31,31,0.95) 100%);
  pointer-events: none;
}
.services > .container { padding-top: clamp(48px, 6vw, 80px); position: relative; }
.services__head { position: relative; margin-bottom: 56px; }
@media (max-width: 768px) {
  .services__banner { height: 160px; }
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.card {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 36px 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), border-width .15s var(--ease);
  border-radius: var(--r);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--rust);
  box-shadow: inset 0 0 0 2px var(--rust);
}
.card__icon {
  color: var(--rust);
  margin-bottom: 22px;
}
.card__title {
  font-size: 26px;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 0.02em;
}
.card__copy {
  color: #BFBFBF;
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Markets ---------- */
.markets {
  background: var(--navy);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
}
.markets__head { margin-bottom: 64px; }

.markets__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.market {
  background: var(--charcoal);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.market__media {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--charcoal);
}
.market__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms var(--ease);
}
.market:hover .market__media img {
  transform: scale(1.04);
}
.market__body {
  position: relative;
  padding: 32px;
  flex: 1;
}
.market__body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
  transition: height .2s var(--ease);
}
.market:hover .market__body::before { height: 4px; }
.market__title {
  font-size: clamp(36px, 4vw, 48px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.market__copy {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Service Area ---------- */
.service-area {
  background: var(--off-white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.service-area__head { margin-bottom: 56px; max-width: 800px; }
.service-area__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  color: #444;
  line-height: 1.6;
  margin: 24px 0 0;
}

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.service-area__map {
  background: #fff;
  border-left: 4px solid var(--rust);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.service-area__map img { width: 100%; height: auto; display: block; }

.service-area__counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.county__name {
  font-size: 20px;
  color: var(--charcoal);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--rust);
}
.county__cities {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.service-area__footnote {
  margin-top: 56px;
  text-align: center;
  font-size: 15px;
  color: var(--mid-gray);
}
.service-area__footnote a {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  transition: opacity .2s var(--ease);
}
.service-area__footnote a:hover { opacity: 0.7; }

@media (max-width: 960px) {
  .service-area__grid { grid-template-columns: 1fr; }
  .service-area__map { position: static; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .service-area__counties { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--off-white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
}
.contact__lede { color: #444; margin-bottom: 36px; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 36px;
}
.contact__list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--charcoal);
}
.contact__list a {
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contact__list a:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--rust);
  color: #fff;
  border-radius: var(--r);
  flex-shrink: 0;
}

.contact__tagline {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-size: 14px;
}

/* ---------- Quote form ---------- */
.quote-form {
  background: #FFFFFF;
  padding: clamp(28px, 4vw, 40px);
  border-left: 4px solid var(--rust);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: var(--r);
}
.quote-form__honeypot { display: none !important; }

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.quote-form__field label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.quote-form__req {
  color: var(--rust);
  margin-left: 2px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
  background: var(--off-white);
  border: 1px solid var(--steel-1);
  border-radius: var(--r);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--mid-gray); }

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--rust);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 80, 30, 0.15);
}

.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><polyline points='2,4 6,8 10,4' fill='none' stroke='%23C8501E' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 12px;
  cursor: pointer;
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}
.quote-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.quote-form__status {
  margin: 0;
  font-size: 14px;
  color: var(--mid-gray);
  min-height: 1.2em;
}
.quote-form__status.is-error {
  color: #B00020;
}
.quote-form__status.is-loading {
  color: var(--rust);
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--charcoal);
  padding: 32px 0;
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
}
.trust__item + .trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: var(--rust);
}
.trust__item svg {
  color: var(--rust);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .trust__item {
    padding: 0;
    justify-content: center;
  }
  .trust__item + .trust__item::before { display: none; }
  .trust__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---------- Thank-you page ---------- */
body[data-page="thanks"] .nav {
  background: var(--black);
  border-bottom: 2px solid var(--rust);
}
body[data-page="thanks"] .nav__logo img { height: 44px; }
@media (max-width: 768px) {
  body[data-page="thanks"] .nav__logo img { height: 38px; }
}

.thanks {
  background: var(--off-white);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: clamp(120px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
}
.thanks__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.thanks__headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 18px 0 24px;
}
.thanks__headline .accent { color: var(--rust); }
.thanks__sub {
  color: #444;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  margin: 0 0 36px;
}
.thanks__sub a {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  transition: opacity .2s var(--ease);
}
.thanks__sub a:hover { opacity: 0.75; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: #fff;
  border-top: 2px solid var(--rust);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo img { height: 44px; width: auto; }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 { transition-delay: 120ms; }
.reveal--d2 { transition-delay: 240ms; }
.reveal--d3 { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal--d1, .reveal--d2, .reveal--d3 { transition-delay: 0ms; }
  .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-top: 2px solid var(--rust);
    padding: 12px var(--gut) 20px;
    transform: translateY(calc(-100% - 80px));
    transition: transform .3s var(--ease);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { margin-top: 8px; align-self: flex-start; }
  .nav { background: var(--black); border-bottom-color: var(--rust); }
  .nav__toggle { display: flex; }

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

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

  .markets__row { grid-template-columns: 1fr; gap: 24px; }
  .market__media { height: 200px; }

  .contact__inner { grid-template-columns: 1fr; }
  .quote-form__row { grid-template-columns: 1fr; }
  .quote-form__submit { align-self: stretch; width: 100%; }

  .about__media { padding: 0; isolation: auto; border-radius: 0; }
  .about__media-img {
    position: relative;
    height: 200px;
    width: 100%;
    z-index: auto;
    margin-bottom: 24px;
  }
  .about__media-overlay { display: none; }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

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

/* Focus ring */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
