:root {
  color-scheme: light;
  --bg: #fffaf1;
  --bg-strong: #fff1d6;
  --surface: #ffffff;
  --surface-2: #fff5e4;
  --text: #1c1712;
  --muted: #695e51;
  --line: rgba(89, 61, 26, 0.14);
  --shadow: 0 18px 60px rgba(89, 61, 26, 0.14);
  --shadow-soft: 0 10px 34px rgba(89, 61, 26, 0.1);
  --teal: #ffb000;
  --teal-strong: #a94f00;
  --coral: #ff6a2a;
  --amber: #ffd25f;
  --blue: #244b7a;
  --green: #1f8d5a;
  --ink: #11100e;
  --radius: 8px;
  --container: 1180px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #11100e;
  --bg-strong: #1c1712;
  --surface: #1d1a16;
  --surface-2: #292218;
  --text: #fff8ed;
  --muted: #d8c7ae;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.28);
  --teal: #ffc247;
  --teal-strong: #ffd879;
  --coral: #ff7a3d;
  --amber: #ffe08a;
  --blue: #83b7ff;
  --green: #4bd08a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.18), transparent 28rem),
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(255, 176, 0, 0.3);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal), white 20%);
  outline-offset: 4px;
}

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

.skip-link:focus {
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading h2,
.catalog-head h2,
.about-card h2,
.contact-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.about-card p,
.contact-panel p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.86rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  white-space: normal;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  color: #1b1208;
  background: linear-gradient(135deg, #ff8a1f, var(--teal) 54%, var(--amber));
  box-shadow: 0 14px 34px rgba(255, 138, 31, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: color-mix(in srgb, var(--surface), transparent 2%);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--teal), var(--line) 42%);
}

.text-link,
.section-label a {
  color: var(--teal-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: color-mix(in srgb, var(--bg), transparent 15%);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: var(--radius);
  color: #201303;
  background:
    linear-gradient(135deg, #ff8a1f, var(--teal) 50%, var(--amber)),
    var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(255, 138, 31, 0.26);
}

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

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

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.nav-menu a {
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-menu a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-2), transparent 35%);
}

.theme-toggle,
.language-toggle,
.nav-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.theme-toggle:hover,
.language-toggle:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--teal), var(--line) 45%);
}

.language-toggle {
  display: inline-flex;
  width: auto;
  min-width: 4.35rem;
  padding-inline: 0.75rem;
  gap: 0.18rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-toggle {
  display: none;
}

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

.hero {
  position: relative;
  isolation: isolate;
  padding-top: 3rem;
  padding-bottom: 0.75rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 176, 0, 0.22), transparent 40%),
    linear-gradient(245deg, rgba(255, 106, 42, 0.16), transparent 38%),
    linear-gradient(180deg, transparent, var(--bg) 88%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: 4rem;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  color: var(--text);
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 1.55rem 0 0;
}

.trust-strip div {
  padding: 0.88rem;
  background: color-mix(in srgb, var(--surface), transparent 12%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-strip dt {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 850;
}

.trust-strip dd {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(1rem);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, rgba(255, 176, 0, 0.22), transparent 55%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  color: #ffffff;
  background: rgba(8, 13, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-media figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

.hero-media figcaption strong {
  font-size: 1rem;
  line-height: 1.25;
}

.service-intro {
  padding-top: 3.5rem;
}

.featured-wrap {
  margin-top: 3rem;
}

.section-label,
.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.section-label h3,
.catalog-head h2 {
  margin: 0;
}

.section-label h3 {
  font-size: 1.25rem;
}

.featured-services,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-catalog {
  margin-top: 5.5rem;
}

.catalog-head {
  align-items: start;
  margin-bottom: 1.5rem;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  max-width: 520px;
}

.filter-button {
  min-height: 2.35rem;
  padding: 0.45rem 0.76rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.filter-button:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.filter-button[aria-pressed="true"] {
  color: #201303;
  background: var(--teal);
  border-color: var(--teal);
}

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

.service-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  display: block;
  height: 3px;
  margin: 1rem -1.25rem -1.25rem;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--teal), transparent 25%), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--teal), var(--line) 42%);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.service-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  color: var(--teal-strong);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal), transparent 84%), transparent),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.service-category {
  min-width: 0;
  padding: 0.32rem 0.55rem;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.service-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-summary,
.service-detail {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.service-summary {
  font-size: 0.98rem;
}

.service-detail {
  font-size: 0.93rem;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 0.32rem 0.5rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface-2), transparent 16%);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 750;
}

.service-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.72rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mini-btn:hover {
  transform: translateY(-2px);
}

.mini-btn-whatsapp {
  color: #062014;
  background: linear-gradient(135deg, #31d981, #a9f6bf);
  border: 1px solid rgba(31, 141, 90, 0.3);
}

.mini-btn-email {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.compact-service {
  min-height: 250px;
}

.split-section,
.faq-section {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-strong), transparent 18%), transparent),
    var(--bg-strong);
  border-block: 1px solid var(--line);
}

.split-grid,
.about-grid,
.contact-panel {
  display: grid;
  gap: 3rem;
}

.split-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reason-grid article,
.process-grid article,
.availability-panel {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.reason-grid h3,
.process-grid h3,
.availability-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
}

.reason-grid p,
.process-grid p,
.availability-panel p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #ff8a1f, var(--teal), var(--amber));
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 2.2rem;
  color: var(--teal-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.about-section {
  padding-top: 6rem;
}

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

.about-card {
  padding: 2rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal), transparent 82%), transparent 46%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.check-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.56rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  background: linear-gradient(135deg, #ff8a1f, var(--amber));
  border-radius: 50%;
}

.availability-panel {
  display: grid;
  gap: 0.7rem;
}

.availability-panel h3 + p {
  margin-top: 0;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--text);
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--teal-strong);
}

.comments-section {
  padding-top: 4rem;
}

.comments-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.12fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--teal), transparent 84%), transparent 58%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.comments-panel h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.08;
}

.comments-panel p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.comments-box {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.comments-box .btn {
  width: fit-content;
}

.facebook-comments {
  min-width: 0;
}

.faq-list p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 138, 31, 0.95), rgba(17, 16, 14, 0.98) 52%, rgba(255, 195, 51, 0.9)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reveal {
  animation: reveal-up 650ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: grid;
  min-width: min(100%, 300px);
  gap: 0.75rem;
}

.contact-actions .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-actions .text-link {
  color: #ffffff;
  text-align: center;
}

.load-error {
  margin: 1rem 0 0;
  padding: 1rem;
  color: var(--text);
  background: color-mix(in srgb, var(--coral), transparent 84%);
  border: 1px solid color-mix(in srgb, var(--coral), var(--line) 55%);
  border-radius: var(--radius);
}

.site-footer {
  padding: 2rem 0;
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 800;
}

.footer-grid p {
  margin: 0;
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .hero-media {
    max-width: 700px;
    aspect-ratio: 16 / 10;
    transform: none;
  }

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

  .split-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: min(100%, 440px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }

  .footer-grid p {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 4.5rem 0;
  }

  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .trust-strip,
  .process-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .catalog-head,
  .section-label {
    align-items: start;
    flex-direction: column;
  }

  .service-filters {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .nav {
    gap: 0.55rem;
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .theme-toggle,
  .nav-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .section-heading h2,
  .catalog-head h2,
  .about-card h2,
  .contact-panel h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .trust-strip {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .featured-services,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-media figcaption,
  .contact-panel,
  .about-card {
    padding: 1rem;
  }

  .hero-media {
    aspect-ratio: 1 / 1;
  }
}
