/* Millcreek Cabinet & Design. Site concept.
   Design language: Heritage Craft (type, spacing, composition, motion only).
   Palette: Millcreek's real brand colors. Navy ink and mill blue from their logo,
   deep navy from their site CSS, warm paper neutrals from their photography. */

:root {
  /* Brand colors, extracted from millcreekcabinet.com */
  --navy-deep:   #0b1725;  /* their #112337 deepened for dark sections */
  --navy:        #112337;  /* their CSS brand color */
  --ink:         #242d3d;  /* logo wordmark ink, sampled from logo.png */
  --mill-blue:   #3583bb;  /* logo accent blue, sampled from logo.png */
  --mill-sky:    #8fbedf;  /* their blue lightened within family for dark bg */
  --mill-deep:   #26648f;  /* their blue deepened within family for light bg */
  --blue-muted:  rgba(53, 131, 187, 0.22);

  /* Warm paper neutrals */
  --parchment:   #f4f0e8;
  --wheat:       #eae3d4;

  /* Text */
  --text-dark:   #1d2531;
  --text-body:   #46505c;
  --text-muted:  #646c77;
  --text-light:  #f7f5f0;
  --text-light-muted: rgba(247, 245, 240, 0.66);

  /* Typography */
  --font-display: "EB Garamond", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --wide: min(90%, 1100px);
  --narrow: min(85%, 900px);
  --pad-y: clamp(3.5rem, 7vw, 5.5rem);
  --nav-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--parchment);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--text-dark); line-height: 1.15; }

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

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mill-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--mill-blue);
}
.on-dark .eyebrow { color: var(--mill-sky); }
.on-dark .eyebrow::before { background: var(--mill-sky); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--solid { background: #2d6f9f; color: #fff; }
.btn--solid:hover { background: var(--mill-deep); }

.btn--ghost-light { border-color: rgba(247, 245, 240, 0.45); color: var(--text-light); }
.btn--ghost-light:hover { border-color: var(--text-light); background: rgba(247, 245, 240, 0.08); }

.btn--ghost-dark { border-color: rgba(29, 37, 49, 0.35); color: var(--text-dark); }
.btn--ghost-dark:hover { border-color: var(--text-dark); background: rgba(29, 37, 49, 0.05); }

.reveal { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled { background: var(--navy); box-shadow: 0 1px 0 rgba(247, 245, 240, 0.08); }

.nav__inner {
  width: var(--wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.6rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav__links a:not(.btn):hover { border-color: var(--mill-sky); }
.nav__links .btn { padding: 0.7rem 1.4rem; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 340;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 320;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--text-light);
  padding: 0.55rem 1rem;
}
.mobile-menu a:hover { color: var(--mill-sky); }
.mobile-menu__rule { width: 3rem; height: 1px; background: var(--mill-blue); margin: 1.2rem 0; }
.mobile-menu__contact { font-size: 0.85rem; color: var(--text-light-muted); text-align: center; line-height: 2; }
.mobile-menu__contact a { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-light); padding: 0.3rem; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
}
.hero__img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 37, 0.74) 0%, rgba(11, 23, 37, 0.66) 40%, rgba(11, 23, 37, 0.90) 100%);
}
.hero__inner {
  position: relative;
  width: var(--wide);
  margin: 0 auto;
  padding-bottom: clamp(3rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2.5rem;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mill-sky);
  margin-bottom: 1.3rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  color: var(--text-light);
  max-width: 15ch;
  margin-bottom: 1.3rem;
}
.hero__sub {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: var(--text-light-muted);
  max-width: 54ch;
  margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__side {
  border-left: 1px solid rgba(247, 245, 240, 0.28);
  padding-left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.hero__side-item { line-height: 1.35; }
.hero__side-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
}
.hero__side-item span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ---------- heritage ---------- */

.heritage { background: var(--parchment); padding: var(--pad-y) 0; }
.heritage__head { width: var(--narrow); margin: 0 auto; }
.heritage__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 22ch; }
.heritage__lede {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  max-width: 62ch;
}

.heritage__body {
  width: var(--wide);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.wheel-col { position: sticky; top: calc(var(--nav-h) + 2rem); text-align: center; }
.wheel {
  width: min(100%, 320px);
  margin: 0 auto;
  aspect-ratio: 1;
}
.wheel svg { width: 100%; height: 100%; display: block; }
.wheel-col figcaption {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.timeline { list-style: none; }
.timeline li {
  position: relative;
  padding: 0 0 clamp(1.8rem, 3.5vw, 2.6rem) 2.2rem;
  border-left: 1px solid rgba(36, 45, 61, 0.18);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mill-blue);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.35rem;
}
.timeline p { max-width: 48ch; }

/* ---------- portfolio showcase ---------- */

.portfolio { background: var(--navy); padding: var(--pad-y) 0; }
.portfolio__head { width: var(--wide); margin: 0 auto clamp(2.2rem, 4.5vw, 3.5rem); }
.portfolio__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--text-light); max-width: 24ch; }

.showcase {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: stretch;
}

.showcase__list { list-style: none; display: flex; flex-direction: column; }
.showcase__list button {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(247, 245, 240, 0.14);
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: var(--text-light-muted);
  padding: 0.85rem 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  cursor: pointer;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.showcase__list li:first-child button { border-top: 1px solid rgba(247, 245, 240, 0.14); }
.showcase__list button .idx {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--mill-sky);
  flex: none;
  width: 1.6rem;
}
.showcase__list button:hover { color: var(--text-light); }
.showcase__list button.active { color: var(--text-light); padding-left: 0.9rem; }
.showcase__list button.active .idx { color: var(--mill-sky); }

.showcase__stage { position: relative; min-height: 420px; overflow: hidden; }
.showcase__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.showcase__stage img.show { opacity: 1; }
.showcase__caption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--navy-deep);
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  z-index: 2;
}
/* mobile rail (shown under 820px) */
.showcase-rail { display: none; }

/* ---------- craft ---------- */

.craft { background: var(--wheat); padding: var(--pad-y) 0; }
.craft__grid {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.craft h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 20ch; }
.craft__lede { margin-top: 1.3rem; max-width: 56ch; }

.craft__points { margin-top: 2.2rem; display: grid; gap: 1.6rem; }
.craft__point { border-left: 2px solid var(--mill-blue); padding-left: 1.2rem; }
.craft__point h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.craft__point p { font-size: 0.95rem; max-width: 52ch; }

.craft__media { display: grid; gap: 1rem; }
.craft__media img { width: 100%; height: 100%; object-fit: cover; }
.craft__media-tall { aspect-ratio: 3 / 3.6; }
.craft__media-wide { aspect-ratio: 16 / 9; }

/* ---------- process ---------- */

.process { background: var(--parchment); padding: var(--pad-y) 0; }
.process__head { width: var(--narrow); margin: 0 auto; }
.process__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.process__head p { margin-top: 1.2rem; max-width: 60ch; }

.process__grid {
  width: var(--wide);
  margin: clamp(2.2rem, 4.5vw, 3.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}
.step {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(36, 45, 61, 0.1);
  padding: 1.7rem 1.5rem 1.6rem;
}
.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--mill-deep);
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; }

.process__foot {
  width: var(--wide);
  margin: 1.8rem auto 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- testimonials ---------- */

.quotes { background: var(--navy-deep); padding: var(--pad-y) 0; }
.quotes__head { width: var(--wide); margin: 0 auto clamp(2rem, 4vw, 3rem); }
.quotes__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--text-light); }
.quotes__grid {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.quote { border-top: 1px solid rgba(247, 245, 240, 0.18); padding-top: 1.6rem; }
.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(247, 245, 240, 0.88);
  margin-bottom: 1.2rem;
}
.quote figcaption { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mill-sky); }
.quote figcaption span { display: block; color: var(--text-light-muted); letter-spacing: 0.06em; text-transform: none; margin-top: 0.15rem; }

/* ---------- visit ---------- */

.visit { background: var(--parchment); padding: var(--pad-y) 0; }
.visit__grid {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.visit__media { aspect-ratio: 4 / 3.4; }
.visit__media img { width: 100%; height: 100%; object-fit: cover; }
.visit h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 18ch; }
.visit__lede { margin-top: 1.2rem; max-width: 52ch; }

.visit__facts { margin-top: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; }
.visit__fact h3 { font-size: 0.75rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mill-deep); margin-bottom: 0.4rem; }
.visit__fact p { font-size: 0.95rem; }
.visit__fact a { border-bottom: 1px solid rgba(38, 100, 143, 0.35); padding-block: 0.2rem; }
.visit__fact a:hover { color: var(--mill-deep); }

/* ---------- cta ---------- */

.cta { background: var(--navy); padding: var(--pad-y) 0; position: relative; overflow: hidden; }
.cta::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(53, 131, 187, 0.25);
  pointer-events: none;
}
.cta__inner { width: var(--narrow); margin: 0 auto; text-align: center; position: relative; }
.cta h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); color: var(--text-light); }
.cta p { margin: 1.2rem auto 2.2rem; max-width: 52ch; color: var(--text-light-muted); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- footer ---------- */

.footer { background: var(--navy-deep); color: var(--text-light-muted); padding: clamp(2.8rem, 5vw, 4rem) 0 2rem; }
.footer__grid {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}
.footer__logo img {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__tag { margin-top: 1.1rem; font-size: 0.9rem; max-width: 34ch; }
.footer h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mill-sky);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.15rem; }
.footer a { font-size: 0.92rem; color: var(--text-light-muted); transition: color 0.3s var(--ease); display: inline-block; padding-block: 0.25rem; }
.footer a:hover { color: var(--text-light); }
.footer address { font-style: normal; font-size: 0.92rem; line-height: 1.9; }
.footer__base {
  width: var(--wide);
  margin: 1.6rem auto 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

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

.error-section {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
}
.error__inner { width: var(--narrow); margin: 0 auto; }
.error__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 11rem);
  color: var(--blue-muted);
  line-height: 1;
}
.error__title { color: var(--text-light); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0.6rem 0 1rem; }
.error__body { color: var(--text-light-muted); max-width: 46ch; margin: 0 auto 2.2rem; }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .nav__links { gap: 1.4rem; }
}

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

  .hero__inner { grid-template-columns: 1fr; }
  .hero__side {
    border-left: none;
    border-top: 1px solid rgba(247, 245, 240, 0.28);
    padding: 1.3rem 0 0;
    flex-direction: row;
    gap: 2.2rem;
  }

  .heritage__body { grid-template-columns: 1fr; }
  .wheel-col { position: static; }
  .wheel { width: min(60%, 250px); }

  .showcase { display: none; }
  .showcase-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: var(--wide);
    margin: 0 auto;
    padding-bottom: 0.5rem;
  }
  .showcase-rail::-webkit-scrollbar { display: none; }
  .rail-card { flex: 0 0 78%; max-width: 340px; }
  .rail-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .rail-card figcaption {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light-muted);
    padding: 0.7rem 0.1rem 0;
  }

  .craft__grid, .visit__grid { grid-template-columns: 1fr; }
  .craft__media { grid-template-columns: 1fr 1fr; }
  .craft__media-tall { aspect-ratio: 4 / 3.4; }
  .craft__media-wide { aspect-ratio: 4 / 3.4; }

  .process__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotes__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 100svh; padding-top: 7rem; }
}

@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
  .craft__media { grid-template-columns: 1fr; }
  .visit__facts { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer a { padding-block: 0.65rem; }
  .hero__side { flex-wrap: wrap; gap: 1.3rem 2rem; }
  .cta::after { display: 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(247, 245, 240);
  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; }
/* The homepage opening ends exactly at the viewport edge. */
.hero{height:100vh;height:100svh;min-height:0;max-height:100svh;overflow:hidden}
