:root {
  --ink: #18211f;
  --ink-soft: #3d4743;
  --muted: #66706c;
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --surface-soft: #ebe6dc;
  --charcoal: #101514;
  --charcoal-2: #171d1b;
  --charcoal-3: #222927;
  --brand: #f15a29;
  --brand-dark: #b9411d;
  --gold: #c39a55;
  --sage: #486159;
  --white: #ffffff;
  --line: rgba(24, 33, 31, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 42px rgba(16, 21, 20, 0.18);
  --radius: 8px;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.anchor-target {
  position: relative;
  top: -92px;
  display: block;
  width: 1px;
  height: 1px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: rgba(16, 21, 20, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(195, 154, 85, 0.5);
  border-radius: var(--radius);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 700;
  text-align: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  outline: none;
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  color: var(--white);
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 30px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 21, 20, 0.96) 0%, rgba(16, 21, 20, 0.88) 52%, rgba(16, 21, 20, 0.7) 100%),
    url("img/imagemc.jpg") center / cover no-repeat,
    var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--brand));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-dark);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 58px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.service-guidance .section-label,
.on-call .section-label,
.service-hero .section-label {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.12;
}

.hero h1,
.hero h2,
.service-guidance h2,
.on-call h2,
.service-hero h1,
.site-footer strong {
  color: var(--white);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.5rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.55rem;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-actions,
.service-actions,
.section-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 12px 24px rgba(185, 65, 29, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-secondary,
.btn-service {
  color: var(--brand-dark);
  background: rgba(241, 90, 41, 0.08);
  border-color: rgba(185, 65, 29, 0.24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-service:hover,
.btn-service:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.hero .btn-secondary,
.service-hero .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible,
.service-hero .btn-secondary:hover,
.service-hero .btn-secondary:focus-visible {
  color: var(--white);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-ghost,
.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-panel .btn-ghost,
.services .btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-light:hover,
.btn-light:focus-visible,
.contact-panel .btn-ghost:hover,
.contact-panel .btn-ghost:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 780px;
  margin: 28px 0 0;
}

.hero-info div {
  min-width: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left-color: var(--gold);
  border-radius: var(--radius);
}

.hero-info dt {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-info dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.3;
}

.hero-directory {
  padding: 26px;
  color: var(--white);
  background: rgba(16, 21, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.directory-header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.directory-header img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(195, 154, 85, 0.48);
  border-radius: var(--radius);
}

.directory-header strong,
.directory-header span {
  display: block;
}

.directory-header span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.directory-header strong {
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.22;
}

.hero-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-facts div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  line-height: 1.35;
}

.hero-shortcuts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-shortcuts a {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  color: var(--white);
  background: rgba(16, 21, 20, 0.82);
}

.hero-shortcuts a:hover,
.hero-shortcuts a:focus-visible {
  background: rgba(72, 97, 89, 0.9);
  outline: none;
}

.hero-shortcuts span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-shortcuts strong {
  color: var(--white);
  line-height: 1.2;
}

.hero-shortcuts small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  padding: 84px 0;
}

.section-text,
.section-heading > p:last-child,
.crc-grid p,
.contact-intro,
.privacy-content p,
.service-lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-text {
  max-width: 720px;
}

.section-text:last-child,
.contact-intro,
.service-card p,
.accordion p,
.site-footer p,
.service-summary p,
.service-detail p,
.privacy-content p,
.contact-actions-panel p {
  margin-bottom: 0;
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 54px;
  align-items: start;
}

.about-panel,
.crc-panel,
.service-summary,
.privacy-content article,
.contact-actions-panel {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-panel strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.about-panel ul,
.crc-panel ul,
.service-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.quick-strip {
  color: var(--white);
  background: var(--charcoal);
  border-block: 1px solid var(--line-dark);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-inline: 1px solid var(--line-dark);
}

.quick-strip-grid div {
  min-height: 134px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px;
  background: var(--charcoal-2);
}

.quick-strip-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-strip-grid strong {
  color: var(--white);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.quick-strip-grid small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.services,
.faq,
.service-detail,
.privacy-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 322px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-dark);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(16, 21, 20, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(185, 65, 29, 0.32);
  box-shadow: 0 18px 34px rgba(16, 21, 20, 0.14);
}

.service-card p {
  flex: 1;
  color: var(--muted);
}

.btn-service {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
}

.icon,
.mini-icon {
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  background: rgba(241, 90, 41, 0.09);
  border: 1px solid rgba(185, 65, 29, 0.2);
  border-radius: var(--radius);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.icon svg,
.mini-icon svg,
.social svg,
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-guidance {
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 21, 20, 0.94), rgba(72, 97, 89, 0.9)),
    var(--charcoal);
  border-block: 1px solid var(--line-dark);
}

.service-guidance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-guidance p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.crc-section,
.contact,
.service-hero {
  background: var(--paper);
}

.crc-grid,
.contact-grid,
.faq-grid,
.footer-grid,
.service-hero-grid,
.service-detail-grid {
  display: grid;
  gap: 48px;
}

.crc-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: center;
}

.crc-grid .section-actions {
  margin-top: 22px;
}

.crc-panel strong,
.service-summary strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.22rem;
}

.on-call {
  padding: 54px 0;
  color: var(--white);
  background: var(--charcoal-2);
  border-block: 1px solid var(--line-dark);
}

.on-call-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.on-call p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-intro {
  max-width: 560px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.mini-icon {
  width: 38px;
  height: 38px;
}

.mini-icon svg {
  width: 20px;
  height: 20px;
}

.contact-list p {
  margin: 0;
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a,
.privacy-content a,
.footer-contact a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.map-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-actions-panel h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.contact-actions-panel p {
  color: var(--muted);
}

.contact-buttons {
  margin-top: 20px;
}

.contact-buttons .btn {
  flex: 1 1 220px;
}

.faq-grid {
  grid-template-columns: 0.76fr 1.24fr;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 21, 20, 0.06);
}

.accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.accordion summary:focus-visible {
  outline: 3px solid rgba(195, 154, 85, 0.5);
  outline-offset: -3px;
}

.accordion p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.7fr 0.7fr;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.footer-notice {
  max-width: 700px;
  margin-top: 14px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rights {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.creator-credit {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(195, 154, 85, 0.42);
  border-radius: var(--radius);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1f8f54;
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(20, 92, 53, 0.3);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(31, 143, 84, 0.28);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.6;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  padding: 74px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 21, 20, 0.96), rgba(16, 21, 20, 0.84)),
    url("img/imagemc.jpg") center / cover no-repeat,
    var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
}

.service-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: center;
}

.service-hero h1 {
  font-size: 3.15rem;
}

.service-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.service-summary {
  color: var(--ink);
  box-shadow: none;
}

.service-detail-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-detail article {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 21, 20, 0.08);
}

.service-detail h2,
.privacy-content h2 {
  font-size: 1.35rem;
}

.service-detail p {
  color: var(--muted);
}

.service-list {
  margin-top: 0;
}

.privacy-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 3px;
  }

  .site-nav a {
    padding: 9px 8px;
    font-size: 0.88rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-layout,
  .about-grid,
  .crc-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid,
  .service-hero-grid,
  .service-detail-grid,
  .on-call-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-shortcuts,
  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-guidance-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .on-call-inner .btn {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    background: var(--charcoal-2);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 12px;
  }

  .hero {
    padding: 54px 0 24px;
    background:
      linear-gradient(180deg, rgba(16, 21, 20, 0.95), rgba(16, 21, 20, 0.88)),
      url("img/imagemc.jpg") center / cover no-repeat,
      var(--charcoal);
  }

  .hero-layout {
    gap: 34px;
  }

  h1 {
    font-size: 2.66rem;
  }

  .service-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hero-actions,
  .service-actions,
  .section-actions,
  .contact-buttons,
  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .hero-shortcuts,
  .quick-strip-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-shortcuts {
    margin-top: 36px;
  }

  .hero-shortcuts a,
  .quick-strip-grid div {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .contact-actions-panel,
  .about-panel,
  .crc-panel,
  .service-detail article,
  .privacy-content article,
  .service-summary,
  .hero-directory {
    padding: 22px;
  }

  .map-card iframe {
    height: 280px;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    gap: 10px;
  }

  h1 {
    font-size: 2.24rem;
  }

  .service-hero h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .service-card h3 {
    font-size: 1.04rem;
  }

  .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
