/* =========================================================
   MazaWeb — style.css
   Palette : #F5F5F4 (fond)  ·  #0A0A0A (noir)  ·  #2B4EFF (accent)
   Type    : Inter / Neue Montreal fallback — 400 / 500 / 700
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F5F5F4;
  --ink:       #0A0A0A;
  --ink-soft:  #4a4a48;
  --accent:    #2B4EFF;
  --line:      rgba(10,10,10,.12);
  --white:     #F5F5F4;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 14vw, 11rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Inter", "Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .95em 1.7em;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease);
}
.btn--lg { padding: 1.1em 2.2em; font-size: 1.05rem; }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { transform: scale(1.04); background: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: scale(1.04); border-color: var(--ink); }

.btn--ghost-light { color: var(--white); border-color: rgba(245,245,244,.3); }
.btn--ghost-light:hover { border-color: var(--white); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(245,245,244,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.nav__logo span { font-weight: 400; }
.nav__logo em { color: var(--accent); font-style: normal; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}
.nav__links a {
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: opacity .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { opacity: .55; }
.nav__cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: .7em 1.3em;
  border-radius: 999px;
  transition: background-color .35s var(--ease);
}
.nav__cta:hover { background: var(--accent); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* =========================================================
   Shared section heads
   ========================================================= */
.section__head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section__index {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.section__index--light { color: var(--accent); }
.section__title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.03em;
}
.section__head--light .section__title { color: var(--white); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(7rem, 14vh, 10rem) var(--pad) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__watermark {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(7rem, 27vw, 24rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: .05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.03em;
}
.hero__title span { color: var(--accent); }
.hero__sub {
  margin-top: 1.8rem;
  max-width: 30ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero__visual {
  position: relative;
  margin-top: 1rem;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}
figure figcaption,
.hero__visual figcaption {
  position: absolute;
  bottom: .8rem; left: .8rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(4px);
  padding: .35em .7em;
  border-radius: 999px;
}

.hero__foot {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-soft);
}
.hero__scroll svg { animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
@media (prefers-reduced-motion: reduce){ .hero__scroll svg{animation:none} }

.hero__stats {
  display: flex;
  gap: clamp(1.4rem, 4vw, 3rem);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.03em; }
.hero__stats span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }

/* ---- Hero avec fond vidéo (traitement sombre) ---- */
.hero--video { overflow: hidden; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.55) 45%, rgba(10,10,10,.32) 100%),
    linear-gradient(0deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,0) 42%);
}
.hero--video .hero__watermark { color: #fff; opacity: .06; z-index: 2; }
.hero--video .hero__grid { z-index: 3; grid-template-columns: 1fr; }
.hero--video .hero__copy { max-width: 46rem; }
.hero--video .hero__foot { z-index: 3; }
.hero--video .hero__eyebrow { color: rgba(245,245,244,.7); }
.hero--video .hero__title { color: var(--white); }
.hero--video .hero__sub { color: rgba(245,245,244,.8); }
.hero--video .hero__scroll { color: rgba(245,245,244,.7); }
.hero--video .hero__stats strong { color: var(--white); }
.hero--video .hero__stats span { color: rgba(245,245,244,.6); }

/* Nav lisible par-dessus le hero vidéo sombre (avant le passage en solide) */
.nav:not(.is-solid) .nav__logo,
.nav:not(.is-solid) .nav__logo span { color: #fff; }
.nav:not(.is-solid) .nav__links a:not(.nav__cta) { color: #fff; }
.nav:not(.is-solid) .nav__cta { background: var(--accent); }
.nav:not(.is-solid) .nav__burger span { background: #fff; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: var(--section-y) 0; }
.about .section__title { margin-bottom: clamp(3rem, 7vw, 5rem); }
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__visual { position: relative; }
.about__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
}
/* editorial overlap on desktop */
@media (min-width: 861px){
  .about__visual { margin-top: 3.5rem; transform: translateX(-2rem); width: calc(100% + 2rem); }
}
.about__lead {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about__text p { color: var(--ink-soft); max-width: 44ch; }
.about__list { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.about__list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.about__list strong { font-weight: 700; }

/* =========================================================
   SERVICES (DARK)
   ========================================================= */
.services {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-y) 0;
}
.services .section__title { margin-bottom: clamp(3rem, 7vw, 5rem); }
.services__list {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid rgba(245,245,244,.14);
  transition: padding-left .4s var(--ease);
}
.services__list .service:last-child { border-bottom: 1px solid rgba(245,245,244,.14); }
.service:hover { padding-left: clamp(.5rem, 2vw, 1.4rem); }
.service__no {
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(245,245,244,.4);
  font-variant-numeric: tabular-nums;
}
.service__body h3 {
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.service__body p {
  margin-top: .6rem;
  color: rgba(245,245,244,.55);
  max-width: 42ch;
  font-size: .98rem;
}
.service__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(245,245,244,.45);
  border: 1px solid rgba(245,245,244,.16);
  padding: .35em .8em;
  border-radius: 999px;
}
.service__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
  white-space: nowrap;
  text-align: right;
}
.service__now {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}
.service__was {
  font-size: 1rem;
  color: rgba(245,245,244,.4);
  text-decoration: line-through;
}
.service__note {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
}
.service:hover .service__body h3 { color: var(--accent); }

/* ---- Offre de lancement ---- */
.services__launch {
  width: calc(100% - 2 * var(--pad));
  max-width: calc(var(--maxw) - 2 * var(--pad));
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  border: 1px solid rgba(43,78,255,.5);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: rgba(43,78,255,.06);
}
.services__launch-badge {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  background: var(--accent);
  padding: .5em .9em;
  border-radius: 999px;
}
.services__launch p {
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  color: rgba(245,245,244,.8);
  line-height: 1.45;
}
.services__launch strong { color: var(--white); font-weight: 700; }

.services__cta {
  max-width: var(--maxw);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.services__cta p {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* =========================================================
   WORK / GALLERY
   ========================================================= */
.work { padding: var(--section-y) 0; }
.work .section__title { margin-bottom: clamp(3rem, 7vw, 5rem); }
.work__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.work__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform .9s var(--ease);
}
.work__item--tall img { aspect-ratio: 3 / 4; }
.work__item--tall { grid-row: span 2; }
.work__item--wide { grid-column: 1 / -1; }
.work__item--wide img { aspect-ratio: 16 / 8; }
.work__item:hover img { transform: scale(1.05); }
.work__item figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  color: #fff;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(4px);
  padding: .6em .9em;
  border-radius: 8px;
}
.work__item figcaption span { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.work__item figcaption em {
  font-style: normal;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { padding: var(--section-y) 0; }
.reviews .section__title { margin-bottom: clamp(3rem, 7vw, 5rem); }
.reviews__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}
.review {
  border-top: 2px solid var(--ink);
  padding-top: 1.6rem;
}
.review p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.review footer {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
}
.review strong { font-weight: 700; }
.review span { font-size: .8rem; color: var(--ink-soft); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: var(--section-y) var(--pad);
  overflow: hidden;
}
.contact__watermark {
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: .05;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact__title {
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.contact__sub {
  max-width: 40ch;
  color: rgba(245,245,244,.6);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.contact__phone {
  display: inline-block;
  margin: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: color .35s var(--ease);
}
.contact__phone:hover { color: var(--accent); }
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
/* ---- Formulaire de contact ---- */
.contact__grid {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__intro .contact__phone { margin: clamp(1.5rem, 4vw, 2.5rem) 0 1.5rem; }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 0;
}
.field--fieldset { border: 0; padding: 0; margin: 0; }
.field label, .field legend {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245,245,244,.5);
  padding: 0;
}
.field label span, .field legend span {
  text-transform: none;
  letter-spacing: 0;
  color: rgba(245,245,244,.3);
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,245,244,.25);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  padding: .6rem 0;
  border-radius: 0;
  transition: border-color .3s var(--ease);
}
.contact__form input:focus,
.contact__form textarea:focus { outline: none; border-bottom-color: var(--accent); }
.contact__form textarea { resize: vertical; }
.choices { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .3rem; }
.choice { position: relative; }
.choice input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; margin: 0;
}
.choice span {
  display: inline-block;
  padding: .55em 1.05em;
  border: 1px solid rgba(245,245,244,.22);
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(245,245,244,.75);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.choice input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.contact__submit { align-self: flex-start; margin-top: .4rem; }
.contact__submit[disabled] { opacity: .6; cursor: default; }
.form-status { font-size: .92rem; min-height: 1.2em; margin: 0; }
.form-status.is-ok { color: #5ce6a4; }
.form-status.is-error { color: #ff7a7a; }

.contact__meta {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(245,245,244,.14);
  padding-top: 2rem;
}
.contact__meta dt {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245,245,244,.45);
  margin-bottom: .5rem;
}
.contact__meta dd { font-size: 1rem; font-weight: 500; }
.contact__meta a { transition: color .3s var(--ease); }
.contact__meta a:hover { color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 0 var(--pad) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid rgba(245,245,244,.14);
  text-align: center;
}
.footer__meta {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .78rem;
  color: rgba(245,245,244,.5);
}
.footer__brand {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(3.5rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: .8;
  text-align: center;
  color: var(--white);
  opacity: .06;
  user-select: none;
  white-space: nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__meta { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: var(--pad);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a { color: var(--white); font-size: .9rem; }
  .nav__cta { background: var(--accent); }
  .nav__burger { display: flex; z-index: 2; }
  .nav.is-open .nav__burger span { background: var(--white); }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { justify-self: start; max-width: 320px; margin-top: 2.5rem; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 2rem; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

  .work__grid { grid-template-columns: 1fr; }
  .work__item--tall { grid-row: auto; }
  .work__item--tall img { aspect-ratio: 3 / 2; }
  .work__item--wide img { aspect-ratio: 3 / 2; }

  .service { grid-template-columns: auto 1fr; }
  .service__price { grid-column: 2; text-align: left; margin-top: .4rem; }

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

@media (max-width: 480px) {
  .hero__stats { flex-wrap: wrap; }
  .field-row { grid-template-columns: 1fr; }
}
