/* Jard Barbearia — Design System */
:root {
  --navy-900: #0a0f1a;
  --navy-800: #0d1624;
  --navy-700: #152238;
  --navy-600: #1e3050;
  --copper-400: #d4956a;
  --copper-500: #b8734a;
  --copper-600: #9a5f3c;
  --grey-100: #f5f3f0;
  --grey-200: #e8e4df;
  --grey-300: #c9c4bc;
  --grey-400: #8a8580;
  --grey-500: #5c5854;
  --white: #ffffff;
  --text: #e8e4df;
  --text-muted: #a8a39c;
  --text-dark: #1a1a1a;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --rail-width: 72px;
  --header-h: 64px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
  --max-w: 1200px;
  --bottom-bar-h: 64px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
  padding-bottom: var(--bottom-bar-h);
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
    display: grid;
    grid-template-columns: var(--rail-width) 1fr;
  }
}

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

a {
  color: var(--copper-400);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--copper-500); }

:focus-visible {
  outline: 2px solid var(--copper-400);
  outline-offset: 3px;
}

/* Brand Rail (desktop) */
.brand-rail {
  display: none;
}

@media (min-width: 1024px) {
  .brand-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100dvh;
    background: var(--navy-800);
    border-right: 2px solid var(--copper-500);
    padding: 1.5rem 0;
    z-index: 200;
  }

  .brand-rail__logo {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
  }

  .brand-rail__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--copper-400);
    text-transform: uppercase;
    flex: 1;
  }

  .brand-rail__accent {
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, var(--copper-500), transparent);
    margin-top: auto;
  }
}

/* Site wrapper */
.site-wrapper {
  min-width: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--navy-800);
  border-bottom: 1px solid var(--navy-600);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.header-logo img { width: 36px; height: 36px; }

.header-logo span em {
  color: var(--copper-400);
  font-style: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn-call {
  display: none;
}

@media (min-width: 640px) {
  .header-actions .btn-call { display: inline-flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb855;
  color: var(--white);
}

.btn-copper {
  background: var(--copper-500);
  color: var(--white);
}

.btn-copper:hover {
  background: var(--copper-600);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--grey-400);
}

.btn-outline:hover {
  border-color: var(--copper-400);
  color: var(--copper-400);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.5rem;
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile nav — full-height opaque overlay (direct body child, no transformed ancestors) */
.mobile-nav,
.site-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 250;
  background: var(--navy-800);
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 1.5rem;
  overflow-y: auto;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.is-open,
body.mobile-menu-open .mobile-nav,
.site-nav.is-open,
body.mobile-menu-open .site-nav {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .mobile-nav,
  .mobile-nav.is-open,
  body.mobile-menu-open .mobile-nav,
  .site-nav,
  .site-nav.is-open,
  body.mobile-menu-open .site-nav {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

body.mobile-menu-open .site-header {
  z-index: 300;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  min-height: 48px;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--navy-700);
  color: var(--copper-400);
}

/* Desktop nav */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
  }

  .desktop-nav a {
    padding: 0.5rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--copper-400);
    background: var(--navy-700);
  }
}

/* Main content */
main { min-height: 50vh; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--navy-800);
}

.section__kicker {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-400);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 65ch;
  margin-bottom: 2rem;
}

.section__answer {
  font-size: 1rem;
  color: var(--grey-300);
  max-width: 70ch;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--copper-500);
}

/* Hero */
.hero {
  padding: 2.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper-400);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__promise {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 50ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--navy-600);
  aspect-ratio: 16/10;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-700);
  border-top: 1px solid var(--navy-600);
  border-bottom: 1px solid var(--navy-600);
  padding: 1.5rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.trust-item {
  text-align: center;
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper-400);
  display: block;
}

.trust-item__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

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

.card {
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--copper-500);
  box-shadow: var(--shadow-sm);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--copper-400);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Service cards with image */
.service-card {
  background: var(--navy-700);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-600);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.25rem;
}

/* Testimonials */
.testimonial {
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.testimonial__stars {
  color: var(--copper-400);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.9375rem;
  color: var(--grey-200);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial__author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--copper-400);
}

.rating-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--copper-500);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--copper-400);
  line-height: 1;
}

.rating-banner__meta {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

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

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--navy-600);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* Location */
.location-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.location-info address {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--navy-600);
}

.hours-table td:first-child {
  color: var(--text-muted);
  padding-right: 1rem;
}

.hours-table td:last-child {
  color: var(--white);
  font-weight: 500;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-600);
  aspect-ratio: 4/3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
}

.faq-item {
  background: var(--navy-700);
  border: 1px solid var(--navy-600);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 48px;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--copper-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--copper-600), var(--copper-500));
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-whatsapp {
  background: var(--navy-800);
}

.cta-band .btn-whatsapp:hover {
  background: var(--navy-700);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-600);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--navy-600);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-700);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Sticky bottom bar (mobile) */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  background: var(--navy-800);
  border-top: 1px solid var(--navy-600);
  height: var(--bottom-bar-h);
}

@media (min-width: 1024px) {
  .bottom-bar {
    left: var(--rail-width);
  }
}

.bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  min-height: 48px;
  color: var(--white);
}

.bottom-bar a:first-child {
  background: #25d366;
}

.bottom-bar a:last-child {
  background: var(--navy-700);
  border-left: 1px solid var(--navy-600);
}

@media (min-width: 1024px) {
  .bottom-bar { display: none; }
}

/* Page header (inner pages) */
.page-hero {
  padding: 2.5rem 0 2rem;
  background: var(--navy-800);
  border-bottom: 1px solid var(--navy-600);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 60ch;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--copper-400); }

/* Team */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.team-card {
  text-align: center;
  background: var(--navy-700);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--navy-600);
}

.team-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body { padding: 1.25rem; }

.team-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Booking page */
.booking-options {
  display: grid;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.booking-card {
  background: var(--navy-700);
  border: 2px solid var(--navy-600);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.booking-card--primary {
  border-color: var(--copper-500);
}

.booking-card h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* Privacy */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Differentials list */
.diff-list {
  display: grid;
  gap: 1rem;
}

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

.diff-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--navy-700);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--copper-500);
}

.diff-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper-400);
  line-height: 1;
}

.diff-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.diff-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .service-card:hover .service-card__img img,
  .gallery-item:hover img {
    transform: none;
  }
}
