/* Louvre Heists product page — page-specific (mockup fidelity)
   Load after styles.css + home-v2.css. Scoped to .heists-page / .heists
   so global nav/footer keep site chrome. */

.heists-page {
  --heists-red: #8B0000;
  --heists-red-dark: #7A1B1B;
  --heists-gold: #B08D3E;
  --heists-gold-light: #C9A35A;
  --heists-cream: #FCF6F3;
  --heists-cream-alt: #FAF5EA;
  --heists-ink: #241812;
  --heists-ink-soft: #2A211C;
  --heists-display: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  --heists-sans: Jost, "Hanken Grotesk", "Helvetica Neue", Oxygen, sans-serif;
}

/* Content area sits under sticky site nav */
.heists-page .heists {
  font-family: var(--heists-sans);
  font-weight: 300;
  color: var(--heists-ink);
  background: var(--heists-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.heists-page .heists a {
  color: inherit;
}

.heists-page .heists .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Mobile: more side inset from "only here" through remaining sections */
@media (max-width: 900px) {
  .heists-page .heists .only.wrap,
  .heists-page .heists .runmap .wrap,
  .heists-page .heists .dive.wrap,
  .heists-page .heists .dark .wrap,
  .heists-page .heists .practical.wrap,
  .heists-page .heists .meet .wrap,
  .heists-page .heists .faq.wrap {
    padding-left: max(32px, env(safe-area-inset-left, 0px) + 20px);
    padding-right: max(32px, env(safe-area-inset-right, 0px) + 20px);
  }

  .heists-page .heists .price-block {
    margin-left: max(12px, env(safe-area-inset-left, 0px));
    margin-right: max(12px, env(safe-area-inset-right, 0px));
    padding-left: 22px;
    padding-right: 22px;
  }

  .heists-page .heists .map-side {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }
}

.heists-page .heists .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--heists-gold);
  font-weight: 500;
  margin: 0;
}

.heists-page .heists h2 {
  font-family: var(--heists-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin: 14px 0 0;
  color: var(--heists-ink);
}

.heists-page .heists h2 em,
.heists-page .heists h1 em,
.heists-page .heists .stmt em,
.heists-page .heists h3 em {
  font-style: italic;
  color: var(--heists-red);
  font-weight: inherit;
}

.heists-page .heists .secdek {
  margin-top: 14px;
  max-width: 58ch;
  color: var(--heists-ink-soft);
}

.heists-page .heists .dark h2 em,
.heists-page .heists .dark .stmt em {
  color: var(--heists-gold-light);
}

/* ---------- hero ---------- */
.heists-page .heists .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background: var(--heists-ink);
  overflow: hidden;
}

.heists-page .heists .hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.heists-page .heists .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36, 24, 18, 0.94) 0%,
    rgba(36, 24, 18, 0.35) 55%,
    rgba(36, 24, 18, 0.55) 100%
  );
}

.heists-page .heists .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 64px;
  color: var(--heists-cream);
  width: 100%;
}

.heists-page .heists .hero .eyebrow {
  color: var(--heists-gold-light);
}

.heists-page .heists .hero h1 {
  font-family: var(--heists-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  line-height: 1;
  margin: 16px 0 18px;
  color: var(--heists-cream);
}

.heists-page .heists .hero .dek {
  font-size: 1.08rem;
  max-width: 56ch;
  opacity: 0.95;
  margin: 0;
}

.heists-page .heists .hero .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: 30px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.heists-page .heists .hero .stats b {
  font-weight: 500;
  color: var(--heists-gold-light);
}

.heists-page .heists .hero .cue {
  margin-top: 38px;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- statement ---------- */
.heists-page .heists .stmt-band {
  padding: 88px 0 80px;
  text-align: center;
}

.heists-page .heists .stmt {
  font-family: var(--heists-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.3;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--heists-ink);
}

/* ---------- figure band ---------- */
.heists-page .heists .fig {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.heists-page .heists .fig img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.heists-page .heists .fig .ph {
  width: 100%;
  height: 520px;
  border: 1px solid var(--heists-gold);
  background: linear-gradient(160deg, var(--heists-cream-alt), #f2e9dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heists-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--heists-gold);
}

.heists-page .heists .fig figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--heists-ink-soft);
}

.heists-page .heists .fig figcaption b {
  font-weight: 500;
  color: var(--heists-ink);
}

@media (max-width: 760px) {
  .heists-page .heists .fig img,
  .heists-page .heists .fig .ph {
    height: 300px;
  }
}

/* ---------- only here ---------- */
.heists-page .heists .only {
  padding: 100px 0 30px;
}

.heists-page .heists .only-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .heists-page .heists .only-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.heists-page .heists .only-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 20px;
}

.heists-page .heists .only-item .bignum {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 3rem;
  color: var(--heists-red);
  line-height: 1;
  margin: 0;
}

.heists-page .heists .only-item h3 {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 10px 0;
  color: var(--heists-ink);
}

.heists-page .heists .only-item p {
  font-size: 0.95rem;
  color: var(--heists-ink-soft);
  margin: 0;
}

/* ---------- scrolly map ---------- */
.heists-page .heists .runmap {
  background: var(--heists-cream-alt);
  border-top: 1px solid rgba(176, 141, 62, 0.3);
  border-bottom: 1px solid rgba(176, 141, 62, 0.3);
  margin-top: 90px;
  padding: 96px 0 80px;
}

.heists-page .heists .scrolly {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.heists-page .heists .map-side {
  position: sticky;
  top: 88px;
  order: 2;
}

.heists-page .heists .beats {
  order: 1;
  position: relative;
}

.heists-page .heists .now {
  display: inline-block;
  border: 1px solid var(--heists-gold);
  background: var(--heists-cream-alt);
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--heists-ink-soft);
  margin-bottom: 14px;
}

.heists-page .heists .now b {
  color: var(--heists-red);
  font-weight: 500;
}

.heists-page .heists .map-frame {
  background: var(--heists-ink);
  border: 1px solid var(--heists-gold);
  padding: 8px;
}

.heists-page .heists .map-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.heists-page .heists .map-legend {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heists-ink-soft);
}

.heists-page .heists .map-legend .dot {
  color: var(--heists-red);
  font-weight: 500;
}

.heists-page .heists .mp-name {
  font-family: var(--heists-sans);
  font-size: 17px;
  font-weight: 500;
  fill: #fcf6f3;
  letter-spacing: 0.05em;
}

.heists-page .heists .mp-sub {
  font-family: var(--heists-sans);
  font-size: 12.5px;
  fill: #c9a35a;
  letter-spacing: 0.14em;
}

.heists-page .heists .mp-street {
  font-family: var(--heists-sans);
  font-size: 13px;
  fill: #fcf6f3;
  opacity: 0.5;
  letter-spacing: 0.5em;
}

.heists-page .heists .mp-num {
  font-family: var(--heists-sans);
  font-size: 13px;
  font-weight: 600;
  fill: #fcf6f3;
}

.heists-page .heists #youDot {
  transition: transform 1.1s cubic-bezier(0.45, 0, 0.2, 1);
}

.heists-page .heists #routeProg {
  transition: stroke-dashoffset 1.1s cubic-bezier(0.45, 0, 0.2, 1);
}

.heists-page .heists .stop-g .halo {
  opacity: 0;
  transition: opacity 0.5s;
}

.heists-page .heists .stop-g.active .halo {
  opacity: 1;
}

.heists-page .heists .beat {
  position: relative;
  padding: 0 0 0 118px;
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58ch;
  opacity: 0.4;
  transition: opacity 0.45s;
}

.heists-page .heists .beat.on {
  opacity: 1;
}

.heists-page .heists .beats::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--heists-gold);
}

.heists-page .heists .beat::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 50%;
  margin-top: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--heists-cream-alt);
  border: 2px solid var(--heists-red);
}

.heists-page .heists .beat .t {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-58%);
  width: 52px;
  text-align: right;
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--heists-red);
}

.heists-page .heists .beat h3 {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 6px;
  color: var(--heists-ink);
}

.heists-page .heists .beat p {
  font-size: 0.96rem;
  color: var(--heists-ink-soft);
  margin: 0;
}

.heists-page .heists .beat .note {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heists-gold);
}

@media (max-width: 900px) {
  .heists-page .heists .scrolly {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .heists-page .heists .map-side {
    order: -1;
    top: 72px;
    z-index: 5;
    background: var(--heists-cream-alt);
    padding-bottom: 10px;
  }
  .heists-page .heists .now {
    margin-top: 2px;
  }
  .heists-page .heists .beats {
    margin-top: 26px;
  }
  .heists-page .heists .beat {
    min-height: 46vh;
    padding-left: 34px;
    max-width: none;
  }
  .heists-page .heists .beats::before {
    left: 5px;
  }
  .heists-page .heists .beat::before {
    left: 0;
  }
  .heists-page .heists .beat .t {
    position: static;
    transform: none;
    width: auto;
    text-align: left;
    display: block;
    margin-bottom: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heists-page .heists #youDot,
  .heists-page .heists #routeProg,
  .heists-page .heists .stop-g .halo,
  .heists-page .heists .beat {
    transition: none;
  }
}

/* ---------- deep dives ---------- */
.heists-page .heists .dive {
  padding: 100px 0 20px;
}

.heists-page .heists .dive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .heists-page .heists .dive-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.heists-page .heists .dive p {
  margin-top: 20px;
  max-width: 56ch;
  font-size: 1.02rem;
  color: var(--heists-ink);
}

.heists-page .heists .dive .kick {
  font-family: var(--heists-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--heists-ink-soft);
  margin-top: 22px;
}

.heists-page .heists .dive img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

@media (max-width: 760px) {
  .heists-page .heists .dive img {
    height: 320px;
  }
}

.heists-page .heists .dive figcaption {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--heists-ink-soft);
}

.heists-page .heists .dark {
  background: var(--heists-ink);
  color: var(--heists-cream);
  margin-top: 100px;
  padding: 100px 0;
}

.heists-page .heists .dark h2 {
  color: var(--heists-cream);
}

.heists-page .heists .dark .eyebrow {
  color: var(--heists-gold-light);
}

.heists-page .heists .dark p {
  color: var(--heists-cream);
  opacity: 0.95;
}

.heists-page .heists .dark .pull {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 163, 90, 0.4);
  padding-top: 30px;
  flex-wrap: wrap;
}

.heists-page .heists .dark .pull div span {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--heists-gold-light);
  display: block;
  line-height: 1;
}

.heists-page .heists .dark .pull div small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.heists-page .heists .dark .fnote {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.8;
  max-width: 56ch;
}

/* ---------- practical ---------- */
.heists-page .heists .practical {
  padding: 100px 0 30px;
}

.heists-page .heists .prac-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 52px;
}

@media (max-width: 820px) {
  .heists-page .heists .prac-grid {
    grid-template-columns: 1fr;
  }
}

.heists-page .heists .prac h3 {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--heists-ink);
}

.heists-page .heists .prac ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.heists-page .heists .prac li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(36, 24, 18, 0.08);
  color: var(--heists-ink);
}

.heists-page .heists .prac li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--heists-gold);
}

.heists-page .heists .price-block {
  margin-top: 70px;
  border: 1px solid var(--heists-gold);
  background: #fff;
  padding: 44px 40px;
  text-align: center;
}

.heists-page .heists .price-block .per {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--heists-ink-soft);
  margin: 0;
}

.heists-page .heists .price-block .p {
  font-family: var(--heists-display);
  font-weight: 600;
  font-size: 4rem;
  color: var(--heists-red);
  line-height: 1;
  margin: 10px 0 4px;
}

.heists-page .heists .price-block .sub {
  font-size: 0.9rem;
  color: var(--heists-ink-soft);
  margin: 0;
}

.heists-page .heists .price-block .addon {
  max-width: 52ch;
  margin: 22px auto 0;
  font-size: 0.94rem;
  color: var(--heists-ink);
}

.heists-page .heists .price-block .addon b {
  font-weight: 500;
}

.heists-page .heists .price-block .cta {
  display: block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  font-family: var(--heists-sans);
  margin: 28px auto 0;
  background: var(--heists-red);
  color: #fff;
  text-decoration: none;
  padding: 17px 52px;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}

.heists-page .heists .price-block .cta:hover {
  background: var(--heists-red-dark);
  color: #fff;
}

.heists-page .heists .price-block .trust {
  display: block;
  width: 100%;
  clear: both;
  margin: 10px 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heists-ink-soft);
  line-height: 1.55;
}

.heists-page .heists .price-block .alt {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--heists-ink-soft);
}

.heists-page .heists .price-block .alt a {
  color: var(--heists-red);
  text-decoration: none;
  border-bottom: 1px solid var(--heists-gold);
}

@media (max-width: 640px) {
  .heists-page .heists .price-block {
    padding: 34px 16px;
  }
}

/* ---------- meeting point ---------- */
.heists-page .heists .meet {
  background: var(--heists-cream-alt);
  border-top: 1px solid rgba(176, 141, 62, 0.3);
  border-bottom: 1px solid rgba(176, 141, 62, 0.3);
  margin-top: 90px;
  padding: 96px 0;
}

.heists-page .heists .meet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: start;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .heists-page .heists .meet-grid {
    grid-template-columns: 1fr;
  }
}

.heists-page .heists .meet .mini-map {
  background: var(--heists-ink);
  border: 1px solid var(--heists-gold);
  padding: 8px;
}

.heists-page .heists .meet .mini-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.heists-page .heists .meet-rows {
  margin-top: 34px;
}

.heists-page .heists .mrow {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(176, 141, 62, 0.35);
  font-size: 0.96rem;
  color: var(--heists-ink);
}

.heists-page .heists .mrow b {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.heists-page .heists .mrow a {
  color: var(--heists-red);
  text-decoration: none;
  border-bottom: 1px solid var(--heists-gold);
}

.heists-page .heists .meet .sms {
  margin-top: 22px;
  font-family: var(--heists-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--heists-ink-soft);
}

.heists-page .heists .mini-map .mp-name {
  font-size: 12.5px;
}

.heists-page .heists .mini-map .mp-sub {
  font-size: 10px;
}

.heists-page .heists .mini-map .mp-street {
  font-size: 11px;
}

/* ---------- faq ---------- */
.heists-page .heists .faq {
  padding: 100px 0 80px;
}

.heists-page .heists .faq details {
  border-bottom: 1px solid rgba(176, 141, 62, 0.4);
  padding: 6px 0;
}

.heists-page .heists .faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--heists-ink);
}

.heists-page .heists .faq summary::-webkit-details-marker {
  display: none;
}

.heists-page .heists .faq summary::after {
  content: "+";
  font-family: var(--heists-display);
  font-size: 1.5rem;
  color: var(--heists-gold);
  flex: none;
}

.heists-page .heists .faq details[open] summary::after {
  content: "–";
}

.heists-page .heists .faq .a {
  padding: 0 0 20px;
  max-width: 64ch;
  font-size: 0.96rem;
  color: var(--heists-ink-soft);
  margin: 0;
}

.heists-page .heists .faq .a b {
  font-weight: 500;
  color: var(--heists-ink);
}

.heists-page .heists .faq-head {
  margin-bottom: 26px;
}

.heists-page .heists :focus-visible {
  outline: 2px solid var(--heists-gold);
  outline-offset: 3px;
}

/* ---------- mobile sticky book banner ---------- */
.heists-page .heists-mobile-book {
  display: none;
}

@media (max-width: 880px) {
  .heists-page .heists-mobile-book {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(252, 246, 243, 0.96);
    border-top: 1.5px solid var(--heists-red, #8b0000);
    box-shadow: 0 -8px 28px rgba(36, 24, 18, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .heists-page .heists-mobile-book__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border: 1.5px solid var(--heists-red, #8b0000);
    border-radius: 14px;
  }

  .heists-page .heists-mobile-book__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .heists-page .heists-mobile-book__price {
    font-family: var(--heists-display, "Cormorant Garamond", Georgia, serif);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
    color: var(--heists-red, #8b0000);
  }

  .heists-page .heists-mobile-book__note {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--heists-ink-soft, #2a211c);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .heists-page .heists-mobile-book__cta {
    flex: none;
    border: 1.5px solid var(--heists-red, #8b0000);
    background: var(--heists-red, #8b0000);
    color: #fff;
    font-family: var(--heists-sans, Jost, sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 18px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
  }

  .heists-page .heists-mobile-book__cta:hover,
  .heists-page .heists-mobile-book__cta:focus-visible {
    background: var(--heists-red-dark, #7a1b1b);
    border-color: var(--heists-red-dark, #7a1b1b);
    color: #fff;
    outline: none;
  }

  /* keep page content clear of the fixed bar */
  .heists-page .heists {
    padding-bottom: 96px;
  }

  .heists-page .foot.footer {
    padding-bottom: calc(24px + 88px + env(safe-area-inset-bottom, 0px));
  }
}
