:root {
  --carbon: #111214;
  --carbon-2: #191b1f;
  --steel: #5d656d;
  --steel-2: #9aa0a6;
  --smoke: #f4f2ee;
  --white: #ffffff;
  --sand: #d7a451;
  --burnt: #c76328;
  --line: rgba(255, 255, 255, 0.14);
  --ink-line: rgba(17, 18, 20, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--carbon);
  color: var(--smoke);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 1000;
  background: var(--sand);
  color: var(--carbon);
  padding: 10px 14px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1240px);
  min-height: 76px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  color: var(--white);
  background: rgba(17, 18, 20, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 18, 20, 0.86);
  border-color: rgba(215, 164, 81, 0.34);
}

.brand {
  display: inline-grid;
  grid-template-columns: 48px auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.brand small {
  color: rgba(244, 242, 238, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(244, 242, 238, 0.8);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 0 16px;
  background: var(--sand);
  color: var(--carbon);
}

.header-cta svg,
.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.site-header.is-open .menu-icon {
  background: transparent;
}

.site-header.is-open .menu-icon::before {
  transform: translateY(2px) rotate(45deg);
}

.site-header.is-open .menu-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 142px 0 74px;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  transform: translateY(var(--hero-shift, 0));
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.94) 0%, rgba(17, 18, 20, 0.74) 39%, rgba(17, 18, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 18, 20, 0.72) 0%, rgba(17, 18, 20, 0.08) 42%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
  content: "";
}

.hero-content,
.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero-content {
  max-width: 780px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.75rem;
  line-height: 0.94;
  font-weight: 900;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: 2.85rem;
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(244, 242, 238, 0.84);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 20px;
  min-width: 190px;
}

.button-primary {
  background: var(--sand);
  color: var(--carbon);
  box-shadow: 0 18px 40px rgba(215, 164, 81, 0.24);
}

.button-primary:hover {
  background: #e4b466;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: var(--line);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-metrics span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 15px;
  background: rgba(17, 18, 20, 0.42);
  color: rgba(244, 242, 238, 0.76);
  font-size: 0.86rem;
}

.hero-metrics strong {
  color: var(--white);
  font-size: 1.15rem;
}

.trust-strip {
  background: var(--sand);
  color: var(--carbon);
}

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

.trust-grid span {
  min-height: 68px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--smoke);
  color: var(--carbon);
}

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

.section-heading p:last-child,
.benefits-copy p,
.about-copy p,
.contact-copy p {
  color: rgba(17, 18, 20, 0.68);
  font-size: 1.05rem;
}

.section-heading-invert p:last-child {
  color: rgba(244, 242, 238, 0.72);
}

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

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--carbon);
  isolation: isolate;
  box-shadow: 0 18px 55px rgba(17, 18, 20, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--service-image) center / cover;
  filter: saturate(0.86);
  transform: scale(1.02);
  transition: transform 500ms ease;
  content: "";
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(17, 18, 20, 0.93) 0%, rgba(17, 18, 20, 0.64) 48%, rgba(17, 18, 20, 0.2) 100%);
  content: "";
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 18, 20, 0.26);
}

.service-card:hover::before {
  transform: scale(1.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(215, 164, 81, 0.56);
  border-radius: var(--radius);
  background: rgba(215, 164, 81, 0.14);
  color: var(--sand);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card p {
  color: rgba(244, 242, 238, 0.76);
}

.service-card a {
  width: max-content;
  margin-top: 10px;
  color: var(--sand);
  font-weight: 800;
}

.benefits-section {
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.98), rgba(17, 18, 20, 0.92)),
    url("assets/TRIANGULOS_Y_TOROIDES/TRIANGULOS_Y_TOROIDES.7.jpeg") center / cover;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.benefits-copy p {
  color: rgba(244, 242, 238, 0.76);
}

.benefits-copy h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefit-list div {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.benefit-list span {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sand);
}

.benefit-list span::before {
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--carbon);
  border-bottom: 2px solid var(--carbon);
  transform: rotate(-45deg) translateY(-1px);
  content: "";
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: var(--white);
  color: var(--carbon);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}

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

.catalog-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: 0 20px 50px rgba(17, 18, 20, 0.12);
  transition: opacity 180ms ease, transform 220ms ease;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card:hover {
  transform: translateY(-5px);
}

.catalog-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 500ms ease;
}

.catalog-card:hover img {
  transform: scale(1.06);
}

.catalog-card div {
  position: absolute;
  inset: auto 14px 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.76);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.catalog-card span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 4px 0 0;
}

.projects-section {
  background: var(--carbon);
  color: var(--smoke);
}

.project-slider {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--carbon-2);
  box-shadow: var(--shadow);
}

.project-track {
  position: relative;
  min-height: 560px;
}

.project-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

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

.project-info {
  display: grid;
  align-content: end;
  padding: 34px;
  background: linear-gradient(180deg, #202329, #111214);
}

.project-info span {
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 12px 0;
  font-size: 2rem;
}

.project-info p {
  color: rgba(244, 242, 238, 0.74);
}

.slider-controls {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 32px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.slider-dots button.is-active {
  background: var(--sand);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(17, 18, 20, 0.16);
}

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

.about-features {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-features div {
  padding: 18px;
  border-left: 4px solid var(--sand);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 18, 20, 0.08);
}

.about-features strong,
.about-features span {
  display: block;
}

.about-features strong {
  margin-bottom: 4px;
}

.about-features span {
  color: rgba(17, 18, 20, 0.64);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.96), rgba(17, 18, 20, 0.9)),
    url("assets/DOMO_4_POSTES/DOMO_4_POSTES.3.jpeg") center / cover;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(244, 242, 238, 0.76);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-highlights span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.quote-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 242, 238, 0.96);
  color: var(--carbon);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: rgba(17, 18, 20, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 18, 20, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--carbon);
  padding: 12px 13px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(215, 164, 81, 0.18);
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 34px 0 92px;
  background: #0b0c0e;
  color: rgba(244, 242, 238, 0.72);
}

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

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  margin: 0;
}

.footer-whatsapp {
  color: var(--sand);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 98;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #23d366;
  color: #0b2d18;
  box-shadow: 0 16px 44px rgba(35, 211, 102, 0.34);
  animation: pulse 2200ms infinite;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(215, 164, 81, 0.72);
  outline-offset: 3px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35, 211, 102, 0.42), 0 16px 44px rgba(35, 211, 102, 0.34);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(35, 211, 102, 0), 0 16px 44px rgba(35, 211, 102, 0.34);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(35, 211, 102, 0), 0 16px 44px rgba(35, 211, 102, 0.34);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 18, 20, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-content {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
  }

  .hero-metrics,
  .service-grid,
  .catalog-grid,
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout,
  .about-layout,
  .contact-layout,
  .project-slide {
    grid-template-columns: 1fr;
  }

  .project-track {
    min-height: 760px;
  }

  .project-slide img {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 68px;
    margin-top: 10px;
    gap: 8px;
  }

  .brand {
    grid-template-columns: 42px auto;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 0 44px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(17, 18, 20, 0.94), rgba(17, 18, 20, 0.76)),
      linear-gradient(0deg, rgba(17, 18, 20, 0.64), rgba(17, 18, 20, 0.08));
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.88rem;
    line-height: 1.08;
  }

  .hero-copy,
  .section-heading p:last-child,
  .benefits-copy p,
  .about-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

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

  .hero-metrics,
  .service-grid,
  .catalog-grid,
  .trust-grid,
  .benefit-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 30px;
  }

  .hero-metrics span {
    min-height: 66px;
  }

  .section {
    padding: 74px 0;
  }

  .service-card,
  .catalog-card,
  .catalog-card img {
    min-height: 300px;
  }

  .project-track {
    min-height: 690px;
  }

  .project-slide img {
    min-height: 330px;
  }

  .project-info {
    padding: 24px;
  }

  .project-info h3 {
    font-size: 1.55rem;
  }

  .quote-form {
    padding: 18px;
  }

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

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 99;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 18, 20, 0.92);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: var(--sand);
    color: var(--carbon);
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.28rem;
  }

  .filter-button {
    flex: 1 1 auto;
  }
}
