/* =============================================================
   Aux Mille et un poils - Salon de toilettage canin
   Palette verrouillée : rose / magenta (marque + accent unique)
   + crème os (fond) + prune (zones sombres).
   Rayons : boutons = pill, cartes/images = 20px, petits = 12px.
   ============================================================= */

/* ----------------------------- Tokens ----------------------------- */
:root {
  color-scheme: light;        /* site verrouillé en mode clair (pas d'adaptation sombre) */
  --bg:            #F8F0E7;   /* crème os chaud, fond principal */
  --bg-soft:       #F3E6E1;   /* crème rosé léger, sections alternées */
  --surface:       #FFFFFF;   /* surface des cartes (blanc, comme les flyers) */
  --ink:           #34232B;   /* texte principal, prune-brun profond */
  --ink-soft:      #6E5660;   /* texte secondaire mauve (AA sur crème) */

  --rose:          #C9577F;   /* rose moyen, couleur de marque (structure) */
  --plum:          #5C1F3D;   /* prune / framboise profond, zones sombres */
  --rose-soft:     #F7DEEA;   /* rose pâle, fonds d'icônes / puces */

  --magenta:       #BC2A68;   /* accent magenta profond (texte blanc AA, CTA + texte accent) */
  --magenta-light: #DE3E8A;   /* magenta vif (décor / icônes / étoiles) */
  --on-magenta:    #FFF5F8;   /* texte sur boutons magenta */
  --on-dark:       #FBEFF4;   /* texte/icônes crème sur surfaces prune (identique en mode sombre) */

  --border:        #ECD9D2;   /* filets sur crème rosé */
  --shadow:        0 22px 48px -28px rgba(92, 31, 61, 0.45);
  --shadow-sm:     0 10px 26px -18px rgba(92, 31, 61, 0.4);

  --radius:      20px;
  --radius-sm:   12px;
  --maxw:        1180px;

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

  --font-display:'Bricolage Grotesque', 'Figtree', system-ui, sans-serif;
  --font-body:   'Figtree', system-ui, -apple-system, sans-serif;
}

/* Mode clair verrouillé : la version crème s'affiche pour tous les visiteurs,
   quel que soit le réglage clair/sombre de leur appareil. */

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--magenta-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--plum); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--magenta);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--rose); }

.section__head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section__intro { margin-top: 1.1rem; color: var(--ink-soft); max-width: 38rem; }

/* ----------------------------- Boutons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
}
.btn i { font-size: 1.2em; }
.btn--sm { padding: .6rem 1.05rem; font-size: .92rem; }

.btn--primary { background: var(--magenta); color: var(--on-magenta); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #8c3c22; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--rose); background: var(--rose-soft); transform: translateY(-2px); }

.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn:active { transform: translateY(0) scale(.98); }

/* ----------------------------- Marque ----------------------------- */
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); }
.brand__mark {
  width: 2.3rem; height: 2.3rem; flex: none;
  display: grid; place-items: center;
  background: var(--plum); color: var(--on-dark);
  border-radius: 11px; font-size: 1.25rem;
}
.brand__name { font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
.brand__amp { color: var(--magenta); margin: 0 .12em; }

/* ----------------------------- Navigation ----------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-color: var(--border); box-shadow: 0 8px 30px -24px rgba(44,59,48,.6); }

.nav__inner {
  height: 72px; max-width: var(--maxw); margin: 0 auto;
  padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-weight: 500; color: var(--ink-soft); font-size: .98rem;
  position: relative; padding: .3rem 0; transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--magenta-light); border-radius: 2px; transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__toggle {
  display: none; background: transparent; border: 1.5px solid var(--border);
  color: var(--ink); width: 2.6rem; height: 2.6rem; border-radius: 11px;
  font-size: 1.4rem; place-items: center;
}

.mobile-menu {
  display: none; flex-direction: column; gap: .4rem;
  padding: .5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu a:not(.btn) { padding: .85rem .25rem; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: .8rem; justify-content: center; }

/* ----------------------------- Hero ----------------------------- */
.hero { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.hero__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; min-height: min(82vh, 720px);
}
.hero__content { max-width: 37rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.25rem; text-wrap: balance;
}
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 30rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__media { position: relative; }
.hero__img {
  width: 100%; aspect-ratio: 9 / 11; object-fit: cover;
  border-radius: var(--radius); background: var(--rose-soft);
  box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute; left: -1.2rem; bottom: 1.6rem;
  display: flex; align-items: center; gap: .85rem;
  background: var(--surface); color: var(--ink);
  padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.hero__badge-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem;
  line-height: 1; color: var(--rose);
}
.hero__badge-num span { color: var(--magenta-light); }
.hero__badge-txt { font-size: .8rem; line-height: 1.3; color: var(--ink-soft); }

/* ----------------------------- Services ----------------------------- */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.service-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.7rem;
  display: flex; flex-direction: column; gap: .55rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__icon {
  width: 3rem; height: 3rem; display: grid; place-items: center;
  background: var(--rose-soft); color: var(--plum); border-radius: 14px;
  font-size: 1.5rem; margin-bottom: .4rem;
}
.service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.01em; }
.service-card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.service-card__price {
  font-family: var(--font-display); font-weight: 700; color: var(--magenta);
  font-size: 1.05rem; margin-top: .5rem;
}

/* Bandeau mis en avant (prune profond), pleine largeur */
.service-card--feature {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--plum); border-color: transparent; color: var(--on-dark);
  padding: 1.5rem 2rem;
}
.feature__main { display: flex; align-items: center; gap: 1.3rem; }
.feature__text { display: flex; flex-direction: column; gap: .3rem; }
.service-card--feature h3 { font-size: 1.5rem; color: var(--on-dark); }
.service-card--feature p { font-size: .98rem; flex: none; margin: 0; color: color-mix(in srgb, var(--on-dark) 80%, transparent); }
.service-card--feature .service-card__icon { background: rgba(255,255,255,.12); color: var(--on-dark); margin-bottom: 0; flex: none; }
.service-card--feature .service-card__price { color: #F6B9D2; margin-top: 0; font-size: 1.5rem; white-space: nowrap; }
.service-card--feature:hover { transform: translateY(-4px); }
.service-card__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--magenta); background: var(--on-magenta);
  padding: .28rem .6rem; border-radius: 999px;
}

.services__note { margin-top: 1.6rem; color: var(--ink-soft); font-size: .92rem; }

/* ----------------------------- Galerie : avant / après ----------------------------- */
.ba { margin-bottom: 1.1rem; }
.ba__frame {
  --pos: 50%;
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 10; background: var(--rose-soft); box-shadow: var(--shadow);
  user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__top { position: absolute; inset: 0; }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 2.9rem; height: 2.9rem; border-radius: 999px;
  background: var(--bg); color: var(--plum);
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.3); pointer-events: none; z-index: 2;
}
.ba__handle::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); width: 3px; height: 200vh;
  background: var(--bg); z-index: -1;
}
.ba__label {
  position: absolute; bottom: 1rem; font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: rgba(20,32,26,.65); padding: .35rem .7rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; margin: 0; pointer-events: none;
}
.ba__range-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Grille photos */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 1.1rem;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; background: var(--rose-soft); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ----------------------------- À propos ----------------------------- */
.about {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media img {
  width: 100%; aspect-ratio: 5 / 6; object-fit: cover;
  border-radius: var(--radius); background: var(--rose-soft); box-shadow: var(--shadow);
}
.about__content p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 34rem; }
.about__points { display: grid; gap: .85rem; margin-top: 1.8rem; }
.about__points li { display: flex; align-items: center; gap: .8rem; font-weight: 500; }
.about__points span {
  width: 2.4rem; height: 2.4rem; flex: none; display: grid; place-items: center;
  background: var(--rose-soft); color: var(--plum); border-radius: 999px; font-size: 1.2rem;
}

/* ----------------------------- Équipe ----------------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.2rem); }
.team__member { display: flex; flex-direction: column; gap: .9rem; }
.team__photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: var(--rose-soft);
  border: 2px dashed color-mix(in srgb, var(--magenta) 32%, transparent);
  display: grid; place-items: center;
}
.team__photo i { font-size: 2.6rem; color: color-mix(in srgb, var(--magenta) 55%, transparent); }
.team__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.team__role { display: block; color: var(--ink-soft); font-size: .95rem; margin-top: .15rem; }

/* ----------------------------- Avis ----------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: var(--magenta-light); font-size: 1rem; display: flex; gap: .15rem; }
.review blockquote {
  font-family: var(--font-display); font-weight: 500; font-size: 1.16rem;
  line-height: 1.4; letter-spacing: -0.01em; color: var(--ink);
}
.review figcaption { display: flex; flex-direction: column; margin-top: auto; }
.review figcaption strong { font-weight: 600; }
.review figcaption span { color: var(--ink-soft); font-size: .9rem; }

/* ----------------------------- Zones sombres (prune profond) ----------------------------- */
.section--dark {
  --ink: #FBEFF4;
  --ink-soft: #DCBECB;
  --surface: #7A3358;
  --border: rgba(255,255,255,.16);
  background: var(--plum);
  color: var(--ink);
}
/* Eyebrow lisible sur fond prune (rose clair, même famille d'accent) */
.section--dark .eyebrow { color: #F6B9D2; }

.cta-band { padding: clamp(4rem, 8vw, 6rem) 0; text-align: center; }
.cta-band__inner { max-width: 46rem; }
.cta-band__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.06; letter-spacing: -0.02em;
}
.cta-band__lead { color: var(--ink-soft); margin: 1.1rem auto 2rem; max-width: 34rem; font-size: 1.1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ----------------------------- Contact ----------------------------- */
.contact { padding-top: 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__intro { color: var(--ink-soft); margin: 1.1rem 0 2rem; max-width: 28rem; }
.contact__list { display: grid; gap: 1.4rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic {
  width: 2.8rem; height: 2.8rem; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: var(--on-dark); border-radius: 12px; font-size: 1.35rem;
}
.contact__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: .15rem; }
.contact__list a:hover { color: var(--magenta-light); text-decoration: underline; }
.contact__map { display: flex; flex-direction: column; gap: .9rem; }
.map-frame {
  position: relative; min-height: 320px; border-radius: var(--radius);
  overflow: hidden; background: var(--surface); border: 1px solid var(--border);
}
.map-frame__fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  color: var(--ink-soft);
}
.map-frame__fallback i { font-size: 2.4rem; color: var(--magenta-light); }
.map-frame__fallback span { font-weight: 600; letter-spacing: .04em; }
.map-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  border: 0; filter: saturate(.92);
}
.map-link {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.2rem; border-radius: 999px;
  border: 1.5px solid var(--border); color: var(--ink); font-weight: 600; font-size: .95rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.map-link i { color: var(--magenta-light); font-size: 1.2rem; }
.map-link:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ----------------------------- Footer ----------------------------- */
.footer { padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.brand--footer .brand__mark { background: rgba(255,255,255,.12); color: var(--on-dark); }
.brand--footer .brand__name { color: var(--ink); }
.footer__brand p { color: var(--ink-soft); margin-top: 1rem; max-width: 22rem; font-size: .95rem; }
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__title { font-weight: 600; margin-bottom: .3rem; font-family: var(--font-display); }
.footer__col a, .footer__col span { color: var(--ink-soft); font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--magenta-light); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem 1.4rem;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  color: var(--ink-soft); font-size: .85rem;
}
.footer__bottom a { color: var(--ink-soft); transition: color .2s var(--ease); }
.footer__bottom a:hover { color: var(--magenta-light); text-decoration: underline; text-underline-offset: 2px; }

/* ----------------------------- Page légale ----------------------------- */
.legal { padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.legal__inner { max-width: 760px; }
.legal h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.07; letter-spacing: -0.02em; color: var(--ink);
}
.legal__updated { color: var(--ink-soft); margin-top: .8rem; font-size: .92rem; }
.legal h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  letter-spacing: -0.01em; color: var(--ink); margin-top: 2.6rem;
}
.legal p { color: var(--ink-soft); margin-top: .9rem; max-width: 68ch; }
.legal__list { margin-top: 1rem; display: grid; gap: .6rem; }
.legal__list li { color: var(--ink-soft); position: relative; padding-left: 1.2rem; max-width: 68ch; }
.legal__list li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 6px; height: 6px; border-radius: 999px; background: var(--magenta-light);
}
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--plum); }

/* ----------------------------- Animations d'apparition ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-reveal-delay="1"] { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .service-card, .gallery__item img, .nav__links a::after { transition: none !important; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; }
  .hero__media { order: -1; max-width: 26rem; }
  .hero__img { aspect-ratio: 5 / 4; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card--feature h3 { font-size: 1.35rem; }
  .reviews { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 24rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; }
  .nav .btn--sm span { display: none; }
  .nav .btn--sm { padding: .6rem .75rem; }
  .nav.is-open .mobile-menu { display: flex; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

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

  .hero__badge { left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .container, .nav__inner, .hero__grid { padding-left: 1.1rem; padding-right: 1.1rem; }
  .services { grid-template-columns: 1fr; }
  .service-card--feature { grid-column: span 1; }
  .team { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .service-card--feature { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .brand__name { font-size: .96rem; }
  .brand__mark { width: 2rem; height: 2rem; font-size: 1.1rem; }
}
