/* ============================================================
   STUCKMANN CONSULTING — Design Tokens
   Dark navy / silver, minimal, typography-led.
   Reference: Apple, Porsche, Polestar, Rimowa.
   ============================================================ */

:root {
  /* Color */
  --navy-950: #10152a;   /* deepest background */
  --navy-900: #1a2140;   /* section background — subtle, slightly darker now */
  --silver-100: #edeef2; /* headlines */
  --silver-300: #b7bcc6; /* body copy */
  --silver-600: #5c6472; /* faint labels, hairlines */
  --line: rgba(237, 238, 242, 0.14);

  /* Type */
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Inter", sans-serif;

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

/* ============================================================
   Navigation
   Fixed, transparent, three links. No hamburger, no dropdown.
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(16, 21, 42, 0.55), rgba(16, 21, 42, 0));
}

.nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-300);
  text-decoration: none;
  transition: color 0.3s var(--ease-soft);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--silver-100);
}

@media (max-width: 640px) {
  .nav {
    padding: 22px 20px;
    gap: 26px;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

/* ============================================================
   Reset
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-950);
  color: var(--silver-300);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.9);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(16, 21, 42, 0.35) 0%,
      rgba(16, 21, 42, 0.15) 35%,
      rgba(16, 21, 42, 0.55) 78%,
      rgba(16, 21, 42, 0.92) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 28px;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 9.7vw, 7rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--silver-100);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__wordmark span {
  display: block;
}

.hero__wordmark-sub {
  font-weight: 200;
  font-size: 0.42em;
  letter-spacing: 0.5em;
  margin-top: 0.6em;
  color: var(--silver-300);
}

.hero__cta {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--silver-100);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--ease-soft), gap 0.4s var(--ease-soft), color 0.4s var(--ease-soft);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  border-color: var(--silver-100);
  gap: 16px;
}

.hero__cta-arrow {
  transition: transform 0.4s var(--ease-soft);
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(2px);
}

.hero__cta:focus-visible {
  outline: 1px solid var(--silver-100);
  outline-offset: 6px;
}

/* Scroll cue */

.hero__scrollcue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 44px;
  background: var(--line);
  overflow: hidden;
}

.hero__scrollcue span {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--silver-100);
  animation: scrollcue 2.6s ease-in-out infinite;
  animation-delay: 3.2s;
}

@keyframes scrollcue {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

/* Reveal-on-load: hero content fades in slowly, staggered per element */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 1.4s var(--ease-soft) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__scrollcue span {
    animation: none;
  }
}

/* Depth reveal: the wordmark emerges from behind rather than simply fading up —
   scale + blur settle into place, simulating it coming toward the viewer. */

.reveal-depth {
  opacity: 0;
  transform: scale(0.82) translateY(10px);
  filter: blur(10px);
  animation: reveal-depth 1.6s var(--ease-soft) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal-depth {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-depth {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ============================================================
   Scroll 1 · Vision
   Pure typography. Maximum whitespace. No imagery, no icons.
   ============================================================ */

.vision {
  background: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 160px;
}

.vision__inner {
  text-align: center;
  max-width: 720px;
}

.vision__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 48px;
}

.vision__statement {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: var(--silver-100);
  max-width: 11ch;
  margin: 0 auto;
  text-wrap: balance;
}

/* ============================================================
   Scroll-triggered reveal (used from Vision section onward)
   ============================================================ */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  transition-delay: var(--delay, 0s);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Scroll 2 · Trust Through Facts
   A spec-sheet moment: large typography, hairline grid, zero icons.
   ============================================================ */

.facts {
  background: var(--navy-900);
  padding: 150px 24px 120px;
}

.facts__eyebrow {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 40px;
}

.facts__intro {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--silver-100);
  margin-bottom: 90px;
}

.facts__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts__item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 48px;
  text-align: center;
}

.facts__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--silver-100);
  line-height: 1;
  letter-spacing: 0.01em;
}

.facts__value--word {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.05em;
}

.facts__label {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-600);
}

.facts__footnote {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--silver-300);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .facts {
    padding: 140px 20px 100px;
  }

  .facts__intro {
    margin-bottom: 90px;
  }

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

  .facts__item {
    padding: 48px 24px;
  }
}

/* ============================================================
   Scroll 3 · Experience
   Two-column split: understated credentials + one restrained photo.
   ============================================================ */

.experience {
  background: var(--navy-950);
  padding: 150px 24px;
}

.experience__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.experience__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 40px;
}

.experience__statement {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.25;
  color: var(--silver-100);
  margin-bottom: 64px;
  max-width: 9ch;
  text-wrap: balance;
}

.experience__credentials {
  list-style: none;
}

.experience__credentials li {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  color: var(--silver-300);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  letter-spacing: 0.01em;
}

.experience__credentials li:last-child {
  border-bottom: 1px solid var(--line);
}

.experience__journey-btn {
  margin-top: 40px;
  background: none;
  border: 1px solid var(--silver-600);
  padding: 15px 32px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-100);
  transition: background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}

.experience__journey-btn:hover,
.experience__journey-btn:focus-visible {
  background-color: var(--silver-100);
  border-color: var(--silver-100);
  color: var(--navy-950);
}

.experience__image {
  width: 100%;
}

.experience__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.96);
}

@media (max-width: 860px) {
  .experience {
    padding: 140px 20px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .experience__image {
    order: -1;
  }
}

/* ============================================================
   Scroll 4 · Trust
   Names only. No gallery, no headshots, no team-of-icons layout.
   ============================================================ */

.trust {
  background: var(--navy-900);
  padding: 150px 24px;
  text-align: center;
}

.trust__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 40px;
}

.trust__statement {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--silver-100);
  max-width: 16ch;
  margin: 0 auto 80px;
  text-wrap: balance;
}

.trust__names {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.trust__names li {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  color: var(--silver-100);
  padding: 26px 20px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.01em;
}

.trust__names li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.trust__names-more {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--silver-600) !important;
  border-right: none !important;
}

@media (max-width: 640px) {
  .trust {
    padding: 110px 20px;
  }

  .trust__statement {
    margin-bottom: 64px;
  }

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

  .trust__names li:nth-child(odd) {
    border-right: none;
  }
}

/* ============================================================
   Scroll 4.5 · Trusted Network
   Same restrained grid language as Trust — competency fields,
   not a partner-logo strip. Continues the navy-900 block from
   Trust above, so the two read as one connected moment.
   ============================================================ */

.network {
  background: var(--navy-950);
  min-height: 100vh;
  min-height: 100svh;
  padding: 110px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.network__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 40px;
}

.network__statement {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.35;
  color: var(--silver-100);
  max-width: 30ch;
  margin: 0 auto 24px;
  text-wrap: balance;
}

.network__subline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--silver-300);
  max-width: 60ch;
  margin: 0 auto 80px;
  text-wrap: balance;
}

.network__fields {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.network__fields li {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  letter-spacing: 0.01em;
  color: var(--silver-100);
  padding: 40px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  .network {
    padding: 110px 20px;
  }

  .network__statement {
    margin-bottom: 20px;
  }

  .network__subline {
    margin-bottom: 56px;
  }

  .network__fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Scroll 5 · Results
   A curated three, not a feed. Square frames, quiet captions.
   ============================================================ */

.results {
  background: var(--navy-900);
  padding: 150px 24px;
  text-align: center;
}

.results__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 40px;
}

.results__statement {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--silver-100);
  margin-bottom: 70px;
}

.results__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.results__item {
  text-align: left;
}

.results__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy-950);
  border: 1px solid var(--line);
  overflow: hidden;
}

.results__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.results__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease-soft);
}

.results__slide.is-active {
  opacity: 1;
}

.results__frame.is-empty img {
  display: none;
}

.results__frame.is-empty::after {
  content: "+ " attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-600);
}

.results__item figcaption {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-600);
}

@media (max-width: 760px) {
  .results {
    padding: 140px 20px;
  }

  .results__statement {
    margin-bottom: 64px;
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   Scroll 6 · Contact
   Pure CTA moment. The footer below carries logo and links.
   ============================================================ */

.contact {
  background: var(--navy-950);
  min-height: 100vh;
  min-height: 100svh;
  padding: 110px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 32px;
}

.contact__lets-talk {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--silver-100);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease-soft);
}

.contact__lets-talk:hover,
.contact__lets-talk:focus-visible {
  color: var(--silver-300);
}

.contact__icons {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--silver-600);
  transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.contact__icon-btn:hover,
.contact__icon-btn:focus-visible {
  color: var(--silver-100);
  border-color: rgba(237, 238, 242, 0.32);
  background: rgba(237, 238, 242, 0.06);
  transform: translateY(-2px);
}

.contact__icon-btn svg {
  width: 17px;
  height: 17px;
}

.contact__icon-btn--tm {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .contact {
    padding: 90px 20px;
  }
}

/* ============================================================
   Footer
   A section of its own: the logo gets real space to breathe,
   then a quiet row of social links with small line-art icons.
   ============================================================ */

.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 100px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
}

.footer__logo {
  height: 68px;
  width: auto;
}

.footer__logo-wrap.is-empty .footer__logo {
  display: none;
}

.footer__logo-wrap.is-empty::after {
  content: attr(data-fallback);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-100);
}

.footer__claim {
  margin-top: 44px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-600);
}

.footer__copyright {
  margin-top: 56px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--silver-600);
  opacity: 0.6;
}

.footer__copyright a {
  color: var(--silver-600);
  text-decoration: none;
  border-bottom: 1px solid var(--silver-600);
  transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}

.footer__copyright a:hover,
.footer__copyright a:focus-visible {
  color: var(--silver-100);
  border-color: var(--silver-100);
}

@media (max-width: 640px) {
  .footer {
    padding: 72px 20px 36px;
  }

  .footer__copyright {
    margin-top: 40px;
  }

  .contact__icons {
    margin-top: 40px;
    gap: 12px;
  }
}

/* ============================================================
   Modal · My Journey
   Simple overlay, same brand system, no separate page needed.
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease-soft), visibility 0.35s;
}

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

.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 6, 0.75);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--navy-900);
  border: 1px solid var(--line);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 64px 48px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease-soft);
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--silver-600);
  padding: 8px;
  transition: color 0.3s var(--ease-soft);
}

.modal__close:hover,
.modal__close:focus-visible {
  color: var(--silver-100);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-600);
  margin-bottom: 24px;
}

.modal__title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.3;
  color: var(--silver-100);
  margin-bottom: 40px;
}

.modal__body p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver-300);
  margin-bottom: 20px;
}

.modal__body p:last-child {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .modal__panel {
    padding: 48px 24px;
    max-height: 90vh;
  }
}
