/* Lettrage Marceau — refonte 2026 : clair, moderne, responsive (mobile → 4K) */

:root {
  /* Marque */
  --brand-1: #0b57d0;
  --brand-2: #5b21b6;
  --brand-3: #c026d3;
  --gradient-brand: linear-gradient(120deg, #0b57d0 0%, #5b21b6 55%, #c026d3 100%);
  --gradient-brand-soft: linear-gradient(120deg, rgba(11, 87, 208, 0.12), rgba(192, 38, 211, 0.12));

  /* Neutres */
  --ink: #16181d;
  --ink-soft: #52555e;
  --ink-faint: #83868f;
  --surface: #ffffff;
  --surface-muted: #f6f7f9;
  --surface-sunken: #eef0f4;
  --border: #e6e8ec;
  --border-strong: #d5d8de;

  --color-link: #0b57d0;
  --color-link-hover: #0842a0;

  --shadow-xs: 0 1px 2px rgba(16, 18, 28, 0.06);
  --shadow-sm: 0 2px 10px rgba(16, 18, 28, 0.06);
  --shadow-md: 0 10px 34px rgba(16, 18, 28, 0.1);
  --shadow-lg: 0 26px 60px -18px rgba(16, 18, 28, 0.28);

  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --space-3xl: clamp(3rem, 6vw, 5.5rem);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --max-width: 58rem;
  --max-width-wide: 75rem;
  --header-height: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

#accueil,
#mission,
#services,
#contact,
#galerie {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hover);
}

:focus-visible {
  outline: 2px solid var(--brand-1);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Eyebrow — petit label au-dessus des titres */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
}

.section-title--center .eyebrow,
.eyebrow--center {
  justify-content: center;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

/* Boutons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s var(--ease-out),
    color 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.15s var(--ease-out);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--gradient-brand);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(91, 33, 182, 0.55);
}

.btn-primary:hover {
  color: #fff;
  background-position: 100% 50%;
  box-shadow: 0 16px 30px -8px rgba(91, 33, 182, 0.6);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--ink-faint);
  background: var(--surface-muted);
  color: var(--ink);
  transform: translateY(-1px);
}

/* En-tête « verre » collant */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: var(--header-height);
  max-width: var(--max-width-wide);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: var(--space-xl);
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.site-header__brand:hover {
  color: inherit;
}

.site-header__logo {
  width: auto;
  height: 2.4rem;
  object-fit: contain;
}

@media (min-width: 480px) {
  .site-header__logo {
    height: 2.75rem;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-header__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.35rem;
  transition: color 0.18s var(--ease-out);
}

.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}

.site-header__link:hover {
  color: var(--ink);
}

.site-header__link:hover::after {
  transform: scaleX(1);
}

.site-header__link--cta {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--gradient-brand);
  font-variant-numeric: tabular-nums;
  box-shadow: 0 8px 20px -8px rgba(91, 33, 182, 0.55);
}

.site-header__link--cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-header__link--cta::after {
  display: none;
}

/* Zone mobile (téléphone rapide + hamburger) */
.site-header__mobile {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.site-header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 8px 20px -8px rgba(91, 33, 182, 0.55);
}

.site-header__call svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease-out),
    opacity 0.2s var(--ease-out);
}

.site-header[data-nav-open] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-nav-open] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header[data-nav-open] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Barre latérale mobile */
@media (max-width: 899px) {
  .site-header__mobile {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: var(--space-md);
    right: var(--space-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: var(--space-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s var(--ease-out),
      transform 0.2s var(--ease-out),
      visibility 0.2s var(--ease-out);
    pointer-events: none;
  }

  .site-header[data-nav-open] .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-header__link {
    padding: 0.75rem var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .site-header__link::after {
    display: none;
  }

  .site-header__link:hover {
    background: var(--surface-muted);
  }

  .site-header__link--cta {
    justify-content: center;
    margin-top: 0.25rem;
    padding-block: 0.75rem;
  }
}

/* Sections */
.page-section {
  padding-block: 0;
}

.page-section--muted {
  background: var(--surface-muted);
  border-block: 1px solid var(--border);
}

.container--narrow {
  max-width: 42rem;
}

.section-title {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title--center {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.prose {
  margin-bottom: var(--space-xl);
}

.prose p {
  margin: 0 0 var(--space-md);
  max-width: 65ch;
  color: var(--ink-soft);
}

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

.prose--lead p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink);
}

/* Énoncé de mission */
.mission-statement {
  position: relative;
  margin: var(--space-xl) 0 0;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  background: var(--gradient-brand-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mission-statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-brand);
}

.mission-statement__label {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.mission-statement__text {
  margin: 0;
  max-width: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

#mission .container,
#services .container,
#contact .container {
  padding-block: var(--space-3xl);
}

/* Bandeau photo pleine largeur + intro superposée */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--surface-sunken);
}

.hero-banner__img {
  width: 100%;
  height: clamp(240px, 46vh, 520px);
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-banner__img {
    animation: hero-zoom 18s var(--ease-out) both;
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Voile dégradé en bas pour fondre vers la carte intro */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 28, 0.12) 0%, transparent 22%, transparent 60%, rgba(255, 255, 255, 0.85) 100%);
  pointer-events: none;
}

.intro {
  position: relative;
  z-index: 2;
  margin-top: clamp(-5rem, -8vw, -3rem);
  padding-block: 0 var(--space-3xl);
  background: transparent;
}

.intro__mesh {
  position: absolute;
  inset: -10% -20% 20%;
  background:
    radial-gradient(ellipse 45% 40% at 12% 20%, rgba(11, 87, 208, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 45% at 88% 10%, rgba(192, 38, 211, 0.09), transparent 50%);
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

.intro__inner {
  position: relative;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.intro__brand {
  margin: 0 0 var(--space-lg);
  line-height: 0;
}

.intro__logo {
  width: auto;
  max-width: min(100%, 32rem);
  height: auto;
  margin-inline: auto;
}

.intro__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 var(--space-lg);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand-soft);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.intro__promise {
  margin: 0 auto var(--space-sm);
  max-width: 20ch;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.intro__promise-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .intro__promise-accent {
    color: var(--brand-2);
    -webkit-text-fill-color: currentColor;
  }
}

.intro__subpromise {
  margin: 0 auto var(--space-xl);
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.intro__phone {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.intro__phone-link {
  color: var(--ink);
  text-decoration: none;
}

.intro__phone-link:hover {
  color: var(--brand-1);
}

.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.intro__actions .btn {
  text-decoration: none;
}

.intro__secondary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.35rem;
  margin: var(--space-lg) 0 0;
  font-size: 0.9375rem;
  color: var(--ink-faint);
}

.intro__secondary-nav a {
  font-weight: 600;
  text-decoration: none;
}

.intro__secondary-nav a:hover {
  text-decoration: underline;
}

.intro__secondary-nav-sep {
  margin-inline: 0.35rem;
  user-select: none;
}

/* Cartes de services */
.service-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.service-cards__item {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.service-cards__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-cards__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.service-cards__item:hover::before {
  transform: scaleX(1);
}

.service-cards__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  color: var(--brand-2);
}

.service-cards__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-cards__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.service-cards__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Contact */
.contact-address {
  margin: 0 0 var(--space-lg);
  font-style: normal;
}

.contact-address__lines {
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  line-height: 1.5;
}

.contact-address__map {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phone {
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-phone__link {
  color: var(--ink);
  text-decoration: none;
}

.contact-phone__link:hover {
  color: var(--brand-1);
}

.contact-email {
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-email__link {
  color: var(--ink);
  text-decoration: none;
}

.contact-email__link:hover {
  color: var(--brand-1);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: 0;
}

.contact-actions .btn {
  text-decoration: none;
}

/* Galerie */
.gallery {
  padding-block: var(--space-3xl);
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
}

.gallery .container,
#services > .container,
.site-footer .container {
  max-width: var(--max-width-wide);
}

.gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

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

/* Tablette : une réalisation seule en fin de grille occupe toute la largeur */
@media (min-width: 560px) and (max-width: 959.98px) {
  .gallery__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.gallery__item {
  position: relative;
  display: flex;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.gallery__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gallery__figure {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.gallery__caption {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  margin: 0;
  padding: var(--space-md) var(--space-md) calc(var(--space-md) + 1px);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .gallery__item:hover .gallery__img {
    transform: scale(1.05);
  }
}

/* Pied de page */
.site-footer {
  padding-block: var(--space-2xl);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  max-width: var(--max-width-wide);
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.site-footer__brand {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.site-footer__address {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.site-footer__phone:hover {
  color: #fff;
  text-decoration: underline;
}

/* Apparition au défilement — amélioration progressive, sûre si non supportée */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .service-cards__item,
    .gallery__item,
    .intro__inner,
    #mission .prose,
    #services .prose--lead,
    #contact .contact-address {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Très grands écrans (haute résolution / 4K) */
@media (min-width: 1600px) {
  :root {
    font-size: 18px;
    --max-width: 62rem;
    --max-width-wide: 82rem;
  }
}

@media (min-width: 2200px) {
  :root {
    font-size: 20px;
  }
}
