/* ==================================================================
   RESTAURATION DE PHARES — feuille de style
   Style inspiré d'Apple : sobre, beaucoup d'espace, un seul accent.

   ------------------------------------------------------------------
   TOUT CE QUI EST MODIFIABLE FACILEMENT EST DANS :root CI-DESSOUS.
   Change les couleurs, les rayons, les ombres ici et tout le site
   se met à jour automatiquement.
   ================================================================== */

:root {
  /* Couleurs de fond */
  --bg-white: #ffffff;
  --bg-gray: #f5f5f7;

  /* Couleurs de texte */
  --text-primary: #1d1d1f;   /* presque noir, jamais de noir pur */
  --text-secondary: #6e6e73; /* gris Apple pour le texte secondaire */
  --text-on-accent: #ffffff;

  /* Accent unique */
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-light: rgba(0, 113, 227, 0.08);

  /* Rayons */
  --radius-card: 18px;
  --radius-pill: 980px;
  --radius-sm: 12px;

  /* Ombres douces et diffuses (jamais d'ombre dure) */
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 30px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);

  /* Typographie : pile système Apple, Inter en secours */
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;

  /* Rythme */
  --section-padding: clamp(72px, 10vw, 140px);
  --container-width: 1100px;

  /* Transitions */
  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* ------------------------------------------------------------------
   RESET DE BASE
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Empêche la nav sticky (52px) de cacher le haut des sections ciblées par un lien d'ancrage */
section[id] { scroll-margin-top: 68px; }

/* Respecte les préférences de réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ------------------------------------------------------------------
   BOUTONS
------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 22px;
  border: 1px solid transparent;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}

.btn--pill { border-radius: var(--radius-pill); }

.btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { transform: scale(0.98); }

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover { background: var(--accent-light); }

.btn--link {
  color: var(--accent);
  padding: 11px 4px;
  font-weight: 500;
}
.btn--link:hover { text-decoration: underline; }

.btn--large { padding: 14px 28px; font-size: 17px; }

/* Autorise le retour à la ligne pour les libellés de bouton plus longs
   (ex. le CTA "Envoyez une photo..."), sans toucher aux autres boutons
   qui restent en une seule ligne (white-space: nowrap par défaut). */
.btn--wrap {
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 320px;
}

.btn--nav { padding: 8px 18px; font-size: 14px; }

/* ------------------------------------------------------------------
   BANNIÈRE PROMO — bande fine tout en haut de page, au-dessus de la nav
------------------------------------------------------------------ */
.promo-banner {
  margin: 0;
  padding: 10px 24px;
  background: var(--text-primary);
  color: var(--bg-white);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.promo-banner strong { color: #ffffff; }

/* ------------------------------------------------------------------
   NAVIGATION — sticky, verre dépoli
------------------------------------------------------------------ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.nav__link:hover { opacity: 1; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s 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); }

/* ------------------------------------------------------------------
   SECTIONS génériques
------------------------------------------------------------------ */
.section {
  padding: var(--section-padding) 0;
}
.section--white { background: var(--bg-white); }
.section--gray { background: var(--bg-gray); }

.section__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.section__title--left { text-align: left; margin-left: 0; }

.section__text {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.section__text--left { text-align: left; }

/* Animation d'apparition au défilement.
   IMPORTANT : le contenu reste visible (opacity 1) si JS est désactivé,
   la classe .in-view n'est ajoutée que par script.js. Rien n'est caché
   aux moteurs de recherche : voir règle .no-js plus bas. */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Si JavaScript est désactivé, tout le contenu doit rester visible */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */
.hero {
  padding: 64px 0 var(--section-padding);
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__text { text-align: center; }

.hero__title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 20px;
}

.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__video {
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  background: #d9d9dc;
}

@media (min-width: 780px) {
  .hero__grid { gap: 56px; }
}

/* ------------------------------------------------------------------
   COMPARATEUR AVANT / APRÈS
------------------------------------------------------------------ */
.compare {
  max-width: 780px;
  margin: 0 auto;
}

.compare__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 960; /* proportions réelles des photos avant/après (4:3) */
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: #e5e5e7;
  user-select: none;
  -webkit-user-select: none;
  /* Empêche le navigateur d'interpréter un glissement horizontal du doigt
     comme un geste de défilement/zoom de page : sans ça, le doigt peut
     "échapper" au comparateur sur mobile et seule la poignée reste utilisable. */
  touch-action: none;
  cursor: ew-resize;
}

.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Le cadre reste toujours à 100% (comme .compare__img--after) ; seule la
     zone visible est rognée via clip-path (piloté par script.js). Ainsi la
     photo "avant" n'est jamais redimensionnée dans une boîte plus étroite,
     ce qui la garderait alignée avec la photo "après" au pixel près. */
  clip-path: inset(0 50% 0 0);
}

.compare__labels {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

.compare__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.compare__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.compare__handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.compare__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin-top: 20px;
  height: 4px;
  border-radius: 4px;
  background: #d2d2d7;
  outline: none;
}
.compare__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.compare__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

/* ------------------------------------------------------------------
   ÉTAPES
------------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  counter-reset: step;
}

.steps__item {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.steps__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 18px;
}
.steps__icon svg { width: 100%; height: 100%; }

.steps__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.steps__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------------------------------------------
   À PROPOS
------------------------------------------------------------------ */
.about {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about__img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1; /* photo carrée */
  object-fit: cover;
}

.about__text .section__title { margin-bottom: 20px; }
.about__text .section__text { margin-bottom: 16px; }

@media (min-width: 860px) {
  .about { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* ------------------------------------------------------------------
   FORFAITS
------------------------------------------------------------------ */
.pricing {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  text-align: center;
}

.price-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lift);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}

.price-card__price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 24px;
}

.price-card__list {
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__list li {
  font-size: 15px;
  color: var(--text-secondary);
}

.price-card__tagline {
  margin: -12px 0 20px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
}

@media (min-width: 720px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}

/* Blocs de paliers — plusieurs véhicules / garages-revendeurs */
.volume-block {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px 32px 28px;
}

.volume-block--dark {
  background: var(--text-primary);
  color: var(--bg-white);
}

.volume-block__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.volume-block__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.volume-block--dark .volume-block__text { color: #c7c7cc; }

.volume-block__tagline {
  font-size: 15px;
  font-style: italic;
  color: #cfe4ff;
  margin: 0 0 20px;
}

.tier-table-wrap { overflow-x: auto; }

.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.tier-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 0 10px;
  border-bottom: 1px solid #e5e5e7;
}

.volume-block--dark .tier-table th {
  color: #a1a1a6;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.tier-table td {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e7;
}

.volume-block--dark .tier-table td { border-bottom-color: rgba(255, 255, 255, 0.16); }

.tier-table tr:last-child td { border-bottom: none; }

.tier-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--accent);
}

.volume-block--dark .tier-table td:last-child { color: #5eb0ff; }

.volume-block__list {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.volume-block__list li {
  font-size: 14px;
  color: #c7c7cc;
  padding-left: 18px;
  position: relative;
}

.volume-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eb0ff;
}

/* Options (add-ons) */
.addons {
  max-width: 760px;
  margin: 24px auto 0;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
}

.addons__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 14px;
}

.addons__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addons__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e7;
}

.addons__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.addons__label { color: var(--text-primary); }

.addons__price {
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Appel à l'action de fin de section Forfaits */
.forfait-cta {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
}

.forfait-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.forfait-cta__meta {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.forfait-cta__meta a { color: var(--accent); }

/* ------------------------------------------------------------------
   FAQ
------------------------------------------------------------------ */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
}

.faq__question {
  font-size: 17px;
  font-weight: 600;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
  margin-left: 16px;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ------------------------------------------------------------------
   AVIS CLIENTS
------------------------------------------------------------------ */
.testimonials {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  margin: 0;
}

.testimonial__quote {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 16px;
}

.testimonial__author {
  display: block;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (min-width: 860px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------------
   CONTACT
------------------------------------------------------------------ */
.contact__grid {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 40px 32px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.contact__meta {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e5e7;
}
.contact__meta a { color: var(--accent); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form__row input,
.form__row textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #d2d2d7;
  background: var(--bg-gray);
  color: var(--text-primary);
  resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ------------------------------------------------------------------
   PIED DE PAGE
------------------------------------------------------------------ */
.footer {
  background: var(--bg-gray);
  padding: 56px 0 28px;
  border-top: 1px solid #e5e5e7;
}

.footer__grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.footer__brand {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 6px;
}

.footer__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 4px;
  line-height: 1.6;
}
.footer__text a:hover { color: var(--accent); }

.footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #e5e5e7;
}

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ------------------------------------------------------------------
   ACCESSIBILITÉ — focus clavier visible partout
------------------------------------------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------
   RESPONSIVE — menu mobile
------------------------------------------------------------------ */
@media (max-width: 760px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .btn--nav {
    margin-top: 14px;
    justify-content: center;
  }
}
