/* Boise Kitchen Cabinets & Design - homepage concept
   Design language: Earthy Organic (type, spacing, composition, motion only)
   Palette: extracted from boisekitchencabinets.com (site CSS #8b4513, logo blue
   #2e6da4 family, cream cabinetry and wood-floor photography). No em dashes. */

:root {
  /* Backgrounds */
  --linen:      #f5f0e7;
  --parchment:  #ebe3d4;
  --bark:       #241b12;
  --espresso:   #17100a;

  /* Accents (theirs) */
  --saddle:       #8b4513;
  --saddle-deep:  #74390e;
  --camel:        #d9a86f;
  --blue:         #2e6da4;
  --blue-deep:    #25587f;
  --blue-soft:    #7fb3e0;
  --saddle-muted: rgba(139, 69, 19, 0.16);

  /* Text */
  --text-dark:        #241b12;
  --text-body:        #4d4338;
  --text-muted:       #675d51;   /* 7/22/26: was #7a6f60 (4.33:1 on --linen); same hue/sat, darkened */
  --text-light:       rgba(255, 255, 255, 0.82);
  --text-light-muted: rgba(255, 255, 255, 0.56);

  /* Type */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3.5rem, 7vw, 5.5rem);
  --nav-height: 78px;
  --radius: 14px;

  /* Motion */
  --ease-organic: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: min(90%, 1140px);
  margin-inline: auto;
}

/* ---------- Type helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saddle-deep);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--saddle);
}

.on-dark .eyebrow { color: var(--camel); }
.on-dark .eyebrow::before { background: var(--camel); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: var(--linen);
  border-bottom: 1px solid rgba(36, 27, 18, 0.08);
  transition: box-shadow 0.4s var(--ease-organic);
}

.nav.is-scrolled { box-shadow: 0 10px 30px rgba(23, 16, 10, 0.1); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  list-style: none;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  transition: color 0.3s var(--ease-organic);
}

.nav__links a:hover { color: var(--blue-deep); }

.nav__right { display: flex; align-items: center; gap: 1.4rem; }

.nav__phone {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--saddle-deep);
  white-space: nowrap;
}

.nav__phone:hover { color: var(--blue-deep); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 120;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  transition: transform 0.35s var(--ease-organic), opacity 0.3s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-organic), visibility 0.45s;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu ul { list-style: none; display: grid; gap: 0.4rem; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  color: var(--linen);
  display: inline-block;
  padding-block: 0.55rem;
}

.mobile-menu__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin: 1.6rem 0;
}

.mobile-menu__contact { display: grid; gap: 0.55rem; }

.mobile-menu__contact a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--camel);
  padding-block: 0.4rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.35s var(--ease-organic), color 0.35s var(--ease-organic), border-color 0.35s var(--ease-organic), transform 0.35s var(--ease-organic);
  will-change: transform;
}

.btn__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
  transition: transform 0.35s var(--ease-organic);
}

.btn:hover .btn__dot { transform: scale(1.5); }

.btn--solid {
  background: var(--saddle-deep);
  color: #fff;
  border: 1px solid var(--saddle-deep);
}

.btn--solid:hover { background: var(--saddle); border-color: var(--saddle); }

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(36, 27, 18, 0.35);
}

.btn--outline:hover { border-color: var(--saddle-deep); color: var(--saddle-deep); }

.btn--light {
  background: var(--linen);
  color: var(--bark);
  border: 1px solid var(--linen);
}

.btn--light:hover { background: #fff; }

.btn--ghost-light {
  background: transparent;
  color: var(--linen);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover { border-color: var(--camel); color: var(--camel); }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: 100vh;
  min-height: 100svh;
  background: var(--linen);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + clamp(2rem, 5vw, 3.5rem)) clamp(1.25rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.hero__title {
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  margin: 1.3rem 0 1.4rem;
}

.hero__title em {
  font-style: italic;
  color: var(--saddle-deep);
}

.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  font-weight: 300;
  color: var(--text-body);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero__note {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Cred strip ---------- */

.cred {
  background: var(--bark);
  color: var(--text-light);
  padding: 1.3rem 0;
}

.cred__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
}

.cred__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.cred__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--camel);
  flex-shrink: 0;
}

/* ---------- Intro ---------- */

.intro {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro__heading {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-top: 1.2rem;
}

.intro__body { margin-top: 1.4rem; display: grid; gap: 1rem; }

.intro__body p { color: var(--text-body); font-weight: 300; font-size: 1.04rem; }

.intro__media { position: relative; }

.intro__media img {
  border-radius: var(--radius);
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}

.intro__chip {
  position: absolute;
  left: clamp(-1rem, -2vw, -1.6rem);
  bottom: 1.6rem;
  background: var(--linen);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  box-shadow: 0 18px 40px rgba(23, 16, 10, 0.18);
  max-width: 16rem;
}

.intro__chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--saddle-deep);
  margin-bottom: 0.15rem;
}

.intro__chip span { font-size: 0.85rem; color: var(--text-body); }

/* ---------- Services ---------- */

.services {
  background: var(--linen);
  padding: var(--section-pad) 0;
}

.services__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.services__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-top: 1.2rem; }

.service {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.service:last-child { margin-bottom: 0; }

.service__media { grid-row: 1; position: relative; }

.service__media img {
  width: 100%;
  height: clamp(300px, 38vw, 480px);
  object-fit: cover;
  border-radius: var(--radius);
}

.service__card {
  grid-row: 1;
  background: var(--parchment);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: 0 24px 60px rgba(23, 16, 10, 0.14);
  z-index: 2;
}

.service--img-left .service__media { grid-column: 1 / 8; }
.service--img-left .service__card { grid-column: 7 / 13; }
.service--img-right .service__media { grid-column: 6 / 13; }
.service--img-right .service__card { grid-column: 1 / 7; }

.service__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--blue-deep);
  display: block;
  margin-bottom: 0.6rem;
}

.service__card h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin-bottom: 0.9rem; }

.service__card > p { color: var(--text-body); font-weight: 300; margin-bottom: 1.1rem; }

.service__list { list-style: none; display: grid; gap: 0.5rem; }

.service__list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-body);
  font-size: 0.97rem;
}

.service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 2px;
  background: var(--saddle);
}

/* ---------- Work (expanding panels, signature moment) ---------- */

.work {
  background: var(--bark);
  padding: var(--section-pad) 0;
}

.work__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.work__head h2 {
  color: var(--linen);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-top: 1.2rem;
  max-width: 26ch;
}

.work__hint {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.panels {
  display: flex;
  gap: 0.8rem;
  height: clamp(420px, 55vh, 560px);
}

.panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--espresso);
  transition: flex 0.75s var(--ease-organic);
  text-align: left;
}

.panel.is-active { flex: 3.2; }

.panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.6s var(--ease-organic), transform 0.9s var(--ease-organic);
}

.panel.is-active img { opacity: 1; transform: scale(1.03); }

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Contrast 7/22/26: in a collapsed panel the label wraps and pushes .panel__num
     up into what was a 0.12 scrim, over bright window light (1.86:1). The band is
     extended up the card so the whole label sits on real weight. */
  background: linear-gradient(to top, rgba(23, 16, 10, 0.92) 0%, rgba(23, 16, 10, 0.82) 45%, rgba(23, 16, 10, 0.22) 72%, rgba(23, 16, 10, 0) 100%);
}

.panel__label {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.2rem;
  z-index: 2;
  color: var(--linen);
}

.panel__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--blue-soft);
  display: block;
  margin-bottom: 0.35rem;
}

.panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  display: block;
}

.panel__caption {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 34rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-organic) 0.2s, transform 0.5s var(--ease-organic) 0.2s;
}

.panel.is-active .panel__caption { opacity: 1; transform: none; }

.panel:not(.is-active) .panel__title {
  font-size: 0.95rem;
  color: var(--text-light);
}

.panel:focus-visible { outline: 2px solid var(--camel); outline-offset: 3px; }

/* ---------- Process ---------- */

.process {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.process__head { max-width: 40rem; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }

.process__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-top: 1.2rem; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.step {
  background: var(--linen);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  border-top: 3px solid var(--saddle);
}

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--saddle);
  opacity: 0.65;
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }

.step p { color: var(--text-body); font-weight: 300; font-size: 0.98rem; }

/* ---------- Testimonials ---------- */

.raves {
  background: var(--bark);
  padding: var(--section-pad) 0;
}

.raves__lead { max-width: 46rem; margin-bottom: clamp(2.4rem, 4vw, 3.4rem); }

.raves__lead h2 {
  color: var(--linen);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-top: 1.2rem;
}

.quote--big {
  border-left: 2px solid var(--camel);
  padding-left: clamp(1.2rem, 3vw, 2.2rem);
  margin-bottom: clamp(2.4rem, 4vw, 3.2rem);
}

.quote--big blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  color: var(--linen);
  max-width: 52rem;
}

.quote__who {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--camel);
}

.raves__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.quote-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-card p {
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.97rem;
  flex: 1;
}

.quote-card .quote__who { margin-top: 0; color: var(--blue-soft); }

/* ---------- CTA ---------- */

.cta {
  background: linear-gradient(135deg, var(--espresso) 0%, #3a2410 55%, var(--saddle-deep) 130%);
  padding: var(--section-pad) 0;
}

.cta__inner { text-align: center; max-width: 44rem; margin-inline: auto; }

.cta__inner h2 {
  color: var(--linen);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-top: 1.2rem;
}

.cta__inner > p {
  color: var(--text-light);
  font-weight: 300;
  font-size: 1.08rem;
  margin: 1.2rem 0 2.2rem;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta__note {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--espresso);
  color: var(--text-light-muted);
  padding: clamp(3rem, 5vw, 4rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__brand img { height: 48px; width: auto; filter: brightness(1.5); }

.footer__brand p {
  margin-top: 1.1rem;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 26rem;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 1rem;
}

.footer ul { list-style: none; display: grid; gap: 0.15rem; }

.footer a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  display: inline-block;
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease-organic);
}

.footer a:hover { color: var(--camel); }

.footer__contact li { color: var(--text-light); font-weight: 300; font-size: 0.95rem; padding-block: 0.3rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
}

/* ---------- 404 ---------- */

.error-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bark);
  padding: calc(var(--nav-height) + 2rem) var(--gutter) 3rem;
}

.error__code {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(5rem, 16vw, 9rem);
  color: var(--saddle);
  opacity: 0.55;
  line-height: 1;
}

.error__title { color: var(--linen); font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 1rem 0; }

.error__body { color: var(--text-light); font-weight: 300; max-width: 30rem; margin: 0 auto 2rem; }

/* ---------- Reveal animation base ---------- */

.reveal { opacity: 0; transform: translateY(28px); }

html.no-js .reveal, body.no-gsap .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .service--img-left .service__card { grid-column: 6 / 13; }
  .service--img-right .service__card { grid-column: 1 / 8; }
}

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + 2.5rem);
    min-height: 0;
  }

  .hero__media { min-height: 58vw; }
  .hero__media img { height: 118%; }

  .intro__grid { grid-template-columns: 1fr; }
  .intro__media { order: -1; }
  .intro__chip { left: 1rem; }

  .service { grid-template-columns: 1fr; gap: 0; }
  .service__media, .service__card { grid-column: 1 / -1 !important; }
  .service__media { grid-row: 1; }
  .service__card { grid-row: 2; margin: -2.2rem 1rem 0; }

  .panels {
    flex-direction: column;
    height: auto;
  }

  .panel { min-height: 220px; }
  .panel.is-active { min-height: 340px; }
  .panel:not(.is-active) .panel__title { font-size: 1.02rem; }

  .process__grid { grid-template-columns: 1fr; }
  .raves__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer a { padding-block: 0.65rem; }
  .footer__contact li { padding-block: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta__buttons { flex-direction: column; align-items: stretch; }
  .cred__row { flex-direction: column; gap: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .panel, .panel img, .panel__caption { transition: none; }
}

/* ---------- Mobile drawer close control ---------- */
/* The burger doubles as the close (X), but the nav's own z-index traps it in a
   stacking context below the drawer, so it is painted over and cannot be tapped.
   This control lives inside the drawer, so it is always visible and always hits. */
#mobileMenu .mnav-close {
  position: absolute;
  top: max(0.85rem, env(safe-area-inset-top, 0px));
  right: 0.85rem;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: rgb(245, 240, 231);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
#mobileMenu .mnav-close::before,
#mobileMenu .mnav-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 1.5px;
  margin: -0.75px 0 0 -10.5px;
  background: currentColor;
  border-radius: 2px;
}
#mobileMenu .mnav-close::before { transform: rotate(45deg); }
#mobileMenu .mnav-close::after { transform: rotate(-45deg); }
#mobileMenu .mnav-close:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
