/* Mens Space Barbearia — monochrome + bold red accent, magazine grid */
:root {
  --color-black: #0a0a0a;
  --color-black-soft: #141414;
  --color-gray-dark: #1f1f1f;
  --color-gray: #3a3a3a;
  --color-gray-mid: #6b6b6b;
  --color-gray-light: #d4d4d4;
  --color-white: #fafafa;
  --color-white-pure: #ffffff;
  --color-red: #e31e24;
  --color-red-dark: #c4191f;
  --color-red-light: #ff3b42;
  --color-whatsapp: #25d366;
  --color-text: #f0f0f0;
  --color-text-muted: #a0a0a0;
  --color-text-dark: #0a0a0a;
  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --header-h: 68px;
  --bottom-bar-h: 60px;
  --max-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --transition: 0.25s ease;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
}

*, *::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(--color-black);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100dvh;
  padding-bottom: var(--bottom-bar-h);
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

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

a {
  color: var(--color-red-light);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--color-black);
  border-bottom: 2px solid var(--color-red);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.logo:hover { color: var(--color-white); }

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-black-soft);
  border: 2px solid var(--color-red);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  position: relative;
}

.logo__mark::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo__tag {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .header-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

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

.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: calc(100dvh - var(--header-h));
  z-index: 250;
  background: var(--color-black);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open,
body.nav-open .site-nav {
  display: block;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__link {
  display: block;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  min-height: 48px;
  border-left: 3px solid transparent;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: var(--color-gray-dark);
  color: var(--color-red);
  border-left-color: var(--color-red);
}

@media (min-width: 1024px) {
  .site-nav {
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: auto;
    width: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
  }

  .site-nav__list {
    flex-direction: row;
    gap: 0.125rem;
  }

  .site-nav__link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav__link:hover,
  .site-nav__link[aria-current="page"] {
    background: transparent;
    border-left: none;
    border-bottom-color: var(--color-red);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.02em;
}

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

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white-pure);
  border-color: var(--color-whatsapp);
}

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

.btn--red {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--red:hover {
  background: var(--color-red-dark);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-black);
}

.btn--outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Hero — asymmetric magazine */
.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1.1fr;
    min-height: 90vh;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 2;
  background: var(--color-black);
}

@media (min-width: 900px) {
  .hero__content {
    padding: var(--space-2xl) var(--space-xl);
    margin-right: -3rem;
  }
}

.hero__visual {
  position: relative;
  min-height: 50vh;
}

@media (min-width: 900px) {
  .hero__visual {
    min-height: auto;
    margin-top: 2rem;
    margin-left: -2rem;
  }
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 50vh;
}

@media (min-width: 900px) {
  .hero__visual img { min-height: 90vh; }
}

.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 40%;
  background: var(--color-red);
  z-index: 3;
}

.hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.hero__promise {
  font-size: 1.0625rem;
  color: var(--color-gray-light);
  margin-bottom: var(--space-lg);
  max-width: 36ch;
}

/* Trust bar */
.trust-bar {
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: var(--space-lg) 0;
  border-bottom: 4px solid var(--color-red);
}

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

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

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1.2;
}

.trust-item__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray);
  margin-top: 0.25rem;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background: var(--color-black-soft);
}

.section--light {
  background: var(--color-white);
  color: var(--color-text-dark);
}

.section--light a { color: var(--color-red); }
.section--light a:hover { color: var(--color-black); }

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

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

.section--light .section__lead { color: var(--color-gray); }

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

/* Magazine grid — asymmetric cards */
.card-grid {
  display: grid;
  gap: var(--space-lg);
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

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

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

.card {
  background: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section--light .card {
  background: var(--color-white-pure);
  border-color: var(--color-gray-light);
  box-shadow: var(--shadow-sm);
}

.card--offset:nth-child(even) {
  margin-top: 1.5rem;
}

@media (max-width: 1023px) {
  .card--offset:nth-child(even) { margin-top: 0; }
}

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

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

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.card p { color: var(--color-text-muted); flex: 1; }
.section--light .card p { color: var(--color-gray); }

/* Benefits / diferenciais */
.benefits-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

.benefit {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-red);
  background: var(--color-gray-dark);
}

.section--light .benefit {
  background: var(--color-white-pure);
  border-left-color: var(--color-red);
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

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

.section--light .benefit p { color: var(--color-gray); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

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

.testimonial {
  background: var(--color-gray-dark);
  padding: var(--space-lg);
  border-top: 3px solid var(--color-red);
}

.testimonial__stars {
  color: var(--color-red);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.testimonial blockquote {
  font-size: 0.9375rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--color-gray-light);
}

.testimonial cite {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--color-white);
}

.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-black-soft);
  border: 2px solid var(--color-red);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

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

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

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

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

.gallery-grid__item {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

@media (min-width: 768px) {
  .gallery-grid__item--tall { grid-row: span 2; aspect-ratio: auto; }
}

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

.gallery-grid__item:hover img { transform: scale(1.05); }

/* Location */
.location-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

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

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-red);
}

.location-info address {
  font-style: normal;
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
}

.hours-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: 0.9375rem;
}

.section--light .hours-list li { border-color: var(--color-gray-light); }

.map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border: 3px solid var(--color-red);
  min-height: 280px;
}

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

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray);
}

.section--light .faq-item { border-color: var(--color-gray-light); }

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

.section--light .faq-item__question { color: var(--color-text-dark); }

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

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

.faq-item__answer {
  display: none;
  padding-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.section--light .faq-item__answer { color: var(--color-gray); }

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

/* CTA band */
.cta-band {
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.cta-band p {
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
  opacity: 0.95;
}

.cta-band .btn--outline-light:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Footer */
.site-footer {
  background: var(--color-black-soft);
  border-top: 2px solid var(--color-red);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xl);
}

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

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

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-bottom: var(--space-md);
}

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

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

.footer-col a {
  color: var(--color-gray-light);
  font-size: 0.9375rem;
}

.footer-col a:hover { color: var(--color-white); }

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

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 290;
  display: flex;
  background: var(--color-black);
  border-top: 2px solid var(--color-red);
  height: var(--bottom-bar-h);
}

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

.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  min-height: 48px;
  color: var(--color-white);
}

.mobile-bar a:first-child {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.mobile-bar a:first-child:hover { color: var(--color-white); }

.mobile-bar a:last-child {
  border-left: 1px solid var(--color-gray);
}

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-black-soft);
  border-bottom: 4px solid var(--color-red);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.page-hero__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* Magazine split layout */
.magazine-split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

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

  .magazine-split--reverse .magazine-split__img { order: 2; }
  .magazine-split--reverse .magazine-split__text { order: 1; }
}

.magazine-split__img {
  position: relative;
}

.magazine-split__img img {
  width: 100%;
  object-fit: cover;
}

.magazine-split__img::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  border: 3px solid var(--color-red);
  z-index: -1;
}

.magazine-split__text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.team-card {
  text-align: center;
}

.team-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: var(--space-md);
  border: 3px solid var(--color-red);
}

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

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

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

/* Service list page */
.service-list {
  display: grid;
  gap: var(--space-md);
}

.service-row {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-gray-dark);
  border-left: 4px solid var(--color-red);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.service-row__price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-red);
  white-space: nowrap;
}

/* Privacy prose */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
}

.prose p, .prose li {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.prose ul {
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

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

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

/* Agende page */
.agende-steps {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-xl);
}

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

.agende-step {
  padding: var(--space-lg);
  background: var(--color-gray-dark);
  border-top: 3px solid var(--color-red);
  text-align: center;
}

.agende-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
}

/* 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;
  }

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