/* ============================================================
   Taxi Richard — Bordeaux nocturne
   Palette : noir vin · or champagne · blanc chaud
   ============================================================ */

:root {
  --bg:        #060606;
  --bg-2:      #0c0c0c;
  --bg-card:   #101010;
  --wine:      #7b1e2b;
  --wine-deep: #2a0d11;
  --gold:      #d9bd86;
  --gold-soft: #c8a86b;
  --ink:       #f4f1ec;
  --muted:     #a6a09a;
  --line:      rgba(217, 189, 134, 0.16);
  --line-soft: rgba(244, 241, 236, 0.09);

  --serif: "Outfit", system-ui, sans-serif;
  --sans:  "Outfit", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  position: relative;
}

/* Atmosphère : grain léger */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Accessibilité : focus clavier visible */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.wa-float:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
em { font-style: normal; color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}
.eyebrow--center { text-align: center; }

.section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 11vw, 9rem) clamp(1.4rem, 5vw, 4rem);
  max-width: var(--maxw);
  margin-inline: auto;
}
.section__head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section__intro { color: var(--muted); margin-top: 1.1rem; font-size: 1.05rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 1.05rem 1.9rem;
  min-height: 50px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn svg { flex: none; }
.btn--gold {
  background: #f4f1ec;
  color: #15110d;
  box-shadow: 0 12px 34px -14px rgba(0, 0, 0, 0.7);
}
.btn--gold:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.8); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.4rem, 5vw, 4rem);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(14, 11, 12, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--line-soft);
}

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand__mark { color: var(--gold); transition: transform 0.6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(90deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.brand__sub {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--muted); position: relative; transition: color 0.3s var(--ease);
}
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav a:not(.nav__cta):hover { color: var(--ink); }
.nav a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--line); color: var(--ink) !important;
  padding: 0.55rem 1.3rem; border-radius: 2px; letter-spacing: 0.12em;
  text-transform: uppercase; font-size: 0.72rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.nav__cta:hover { border-color: var(--gold); background: var(--gold); color: #1a1410 !important; }

/* Sélecteur de langue FR / EN */
.lang { display: inline-flex; align-items: center; gap: 0.45rem; }
.lang__btn {
  background: none; border: 0; cursor: pointer; padding: 2px 1px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; color: var(--muted);
  transition: color 0.3s var(--ease);
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.active { color: var(--gold); }
.lang__sep { color: var(--line); font-size: 0.7rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 1.5px; background: var(--ink); transition: 0.4s var(--ease); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem clamp(1.4rem, 5vw, 4rem) 5rem;
  max-width: var(--maxw);
  margin-inline: auto;
  overflow: visible;
}
.hero__photo {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 100%; max-width: none;
  z-index: -2;
  background-image: url("images/bordeaux-bourse.jpg");
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  filter: saturate(1.06) contrast(1.06) brightness(1.04);
}
/* Voile léger : sombre à gauche (sous le texte), photo bien visible à droite,
   et fondu vers le bas pour raccorder aux arches dorées. */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 6, 6, 0.58) 0%,
      rgba(6, 6, 6, 0.34) 34%,
      rgba(6, 6, 6, 0.44) 64%,
      rgba(6, 6, 6, 0.86) 92%,
      var(--bg) 100%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 110vw; height: 80vh;
  background: radial-gradient(ellipse at center top,
              rgba(123, 30, 43, 0.10), transparent 58%),
              radial-gradient(ellipse at 50% 30%,
              rgba(217, 189, 134, 0.07), transparent 55%);
  z-index: -1;
  pointer-events: none;
}
.hero__arches {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 130%; max-width: none; height: auto;
  z-index: -1; opacity: 0.9;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
}
.hero__inner {
  max-width: 820px; position: relative; z-index: 2;
  isolation: isolate;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
/* Voile centré ancré au bloc texte : garantit le contraste quel que soit
   l'endroit où tombe la partie claire de la photo (iOS, barre Safari mouvante). */
.hero__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2rem -2.6rem -2.2rem -2.6rem;
  border-radius: 10px;
  background:
    radial-gradient(ellipse 78% 82% at 50% 50%,
      rgba(6, 6, 6, 0.80) 0%,
      rgba(6, 6, 6, 0.66) 44%,
      rgba(6, 6, 6, 0.32) 72%,
      rgba(6, 6, 6, 0.00) 100%);
  pointer-events: none;
}
.hero__title {
  font-size: clamp(2.8rem, 8.5vw, 6rem);
  font-weight: 300;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(244, 241, 236, 0.84);
  max-width: 560px;
  margin: 0 auto 2.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; justify-content: center; }
.hero__tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 1.8rem; justify-content: center;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.hero__tags li { display: flex; align-items: center; gap: 0.6rem; }
.hero__tags li + li::before { content: ""; }
.hero__tags li::before {
  content: ""; width: 5px; height: 5px; border: 1px solid var(--gold);
  transform: rotate(45deg); display: inline-block;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid var(--line); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 2;
}
.hero__scroll span {
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}

/* ============ SERVICES ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-5px); background: #131313; }
.card__icon {
  display: inline-flex; color: var(--gold); margin-bottom: 1.5rem;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__icon { transform: translateY(-2px) scale(1.06); }
.card h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.9rem; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card--cta {
  background: linear-gradient(160deg, rgba(123, 30, 43, 0.16), var(--bg-card));
  border-color: rgba(217, 189, 134, 0.18);
}
.card--cta:hover { background: linear-gradient(160deg, rgba(123, 30, 43, 0.26), var(--bg-card)); }
.card__link {
  display: inline-block; margin-top: 1.2rem; color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.card--cta:hover .card__link { transform: translateX(4px); }

/* ============ ATOUTS ============ */
.atouts { max-width: var(--maxw); }
.atouts__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.atouts__photo { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-soft); }
.atouts__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; transition: transform 0.9s var(--ease); }
.atouts__photo:hover img { transform: scale(1.05); }
.atouts__intro { margin-bottom: 2rem; }
.atouts__intro h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 1.2rem; }
.atouts__intro p { color: var(--muted); }

/* ============ BANDEAUX IMAGE PLEINE LARGEUR ============ */
.band {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,0.72), rgba(6,6,6,0.32) 50%, rgba(6,6,6,0.72)),
    linear-gradient(to bottom, rgba(6,6,6,0.5), rgba(6,6,6,0.38) 50%, rgba(6,6,6,0.78));
}
.band__content { position: relative; z-index: 2; text-align: center; max-width: 780px; padding: 2rem 1.6rem; }
.band__quote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); color: #fff; line-height: 1.3;
  letter-spacing: -0.01em; text-shadow: 0 2px 22px rgba(0,0,0,0.5);
}

/* ============ AVIS / REVIEWS ============ */
.reviews__badge {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem;
  padding: 0.55rem 1.2rem; border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.86rem; letter-spacing: 0.02em; color: var(--ink);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.reviews__badge:hover { border-color: var(--gold); background: rgba(217, 189, 134, 0.07); transform: translateY(-2px); }
.reviews__stars, .review__stars { color: var(--gold); letter-spacing: 0.12em; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem;
}
.review {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 2.2rem 2rem; text-align: left;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.review::after {
  content: "↗"; position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--gold); font-size: 1rem; opacity: 0.3;
  transition: opacity 0.4s var(--ease);
}
.review:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.review:hover::after { opacity: 0.9; }
.review__stars { font-size: 1.02rem; }
.review__text { color: var(--ink); font-size: 0.98rem; line-height: 1.62; flex: 1; }
.review__author { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.03em; }
.review__author span { opacity: 0.6; }
.atouts__list { list-style: none; display: grid; gap: 0; }
.atouts__list li { padding: 1.6rem 0; border-top: 1px solid var(--line-soft); }
.atouts__list li:last-child { border-bottom: 1px solid var(--line-soft); }
.atouts__list span {
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
  display: block; margin-bottom: 0.35rem;
}
.atouts__list p { color: var(--muted); font-size: 0.96rem; }

/* ============ ZONES ============ */
.zones__list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.8rem; max-width: 820px; margin: 0 auto;
}
.zones__list li {
  border: 1px solid var(--line); border-radius: 100px;
  padding: 0.6rem 1.4rem; font-size: 0.9rem; letter-spacing: 0.03em; color: var(--muted);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.zones__list li:hover { border-color: var(--gold); color: var(--ink); background: rgba(217,189,134,0.06); }

/* ============ CONTACT ============ */
.contact { text-align: center; }
.contact__inner {
  max-width: 680px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,189,134,0.07), transparent 70%),
    var(--bg-2);
  position: relative;
}
.contact__inner h2 { font-size: clamp(2rem, 5vw, 3rem); }
.contact__lead { color: var(--muted); max-width: 480px; margin: 1.1rem auto 2.4rem; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.contact__mail { margin-top: 1.6rem; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.03em; }
.contact__mail a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.contact__mail a:hover { border-color: var(--gold); }

/* ============ FOOTER ============ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-soft);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.4rem, 5vw, 4rem) 2.5rem;
  max-width: var(--maxw); margin-inline: auto;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.4rem; padding-bottom: 2rem;
}
.footer__brand { display: flex; flex-direction: column; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.footer__phone { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); transition: color 0.3s; }
.footer__phone:hover { color: var(--ink); }
.footer__mail { font-size: 0.92rem; color: var(--muted); letter-spacing: 0.02em; transition: color 0.3s; }
.footer__mail:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  border-top: 1px solid var(--line-soft); padding-top: 1.6rem;
  font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em;
}
.footer__credit {
  margin-top: 1.2rem; font-size: 0.68rem; color: rgba(154,144,137,0.6); letter-spacing: 0.02em;
}
.footer__credit a { color: rgba(154,144,137,0.85); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease); }
.footer__credit a:hover { border-bottom-color: currentColor; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #17824a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(23,130,74,0.55);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 34px -8px rgba(31,143,78,0.75); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid #1f8f4e; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .atouts__grid { grid-template-columns: 1fr; }
  .atouts__photo img { aspect-ratio: 16 / 10; }
}
@media (max-width: 860px) {
  /* Sur mobile, le backdrop-filter du header piège le menu fixed à l'intérieur
     de la barre quand on a scrollé. On le retire et on met un fond opaque. */
  .header.scrolled {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: rgba(14, 11, 12, 0.96);
  }
  /* Hero mobile : la photo est cadrée plus haut et protégée verticalement
     (le texte tombe sur des zones variables de l'image). */
  .hero__photo { background-position: center top; }
  .hero__photo::before {
    background:
      linear-gradient(to bottom,
        rgba(14, 11, 12, 0.40) 0%,
        rgba(14, 11, 12, 0.60) 34%,
        rgba(14, 11, 12, 0.78) 72%,
        var(--bg) 100%);
  }
  /* Sur mobile le texte couvre toute la largeur : voile ancré plus large et plus dense. */
  .hero__inner::before {
    inset: -1.4rem -1.2rem -2rem -1.2rem;
    border-radius: 4px;
    background:
      radial-gradient(ellipse at 34% 40%,
        rgba(14, 11, 12, 0.88) 0%,
        rgba(14, 11, 12, 0.82) 48%,
        rgba(14, 11, 12, 0.64) 74%,
        rgba(14, 11, 12, 0.12) 100%),
      linear-gradient(to bottom,
        rgba(14, 11, 12, 0.74) 0%,
        rgba(14, 11, 12, 0.66) 66%,
        rgba(14, 11, 12, 0.20) 100%);
  }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 1.8rem; padding: 2rem 2.4rem;
    background: rgba(14, 11, 12, 0.97); backdrop-filter: blur(16px);
    border-left: 1px solid var(--line-soft);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.1rem; }
  .nav .lang { margin-top: 0.6rem; gap: 0.8rem; }
  .nav .lang__btn { font-size: 1rem; padding: 4px 2px; }
  .burger { display: flex; z-index: 101; }
  .burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero__cta, .contact__cta { width: 100%; }
  .hero__cta .btn, .contact__cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
