@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --sst-ink: #18233b;
  --sst-olive: #4d6658;
  --sst-sand: #f6f1e8;
  --sst-warm: #d2a35d;
  --sst-gold: #b8892f;
  --sst-sage: #7b9274;
  --sst-muted: #66717c;
  --sst-line: rgba(22, 49, 38, 0.12);
  --sst-shadow: 0 18px 45px rgba(18, 36, 29, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--sst-ink);
  background:
    radial-gradient(circle at top left, rgba(200, 157, 99, 0.11), transparent 28%),
    radial-gradient(circle at right center, rgba(123, 146, 116, 0.10), transparent 26%),
    #ffffff;
}

h1,
h2,
h3,
h4,
.brand-heading {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: 0.2px;
}

a {
  color: var(--sst-olive);
}

a:hover {
  color: var(--sst-gold);
}

.text-muted-sst {
  color: var(--sst-muted) !important;
}

.bg-sst-sand {
  background: linear-gradient(180deg, #fff, var(--sst-sand));
}

.section-gap {
  padding: 5rem 0;
}

.section-title {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sst-gold);
}

.btn-sst-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--sst-ink);
  --bs-btn-border-color: var(--sst-ink);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #10281f;
  --bs-btn-hover-border-color: #10281f;
  --bs-btn-focus-shadow-rgb: 22, 49, 38;
}

.btn-sst-outline {
  --bs-btn-color: var(--sst-ink);
  --bs-btn-border-color: rgba(22, 49, 38, 0.22);
  --bs-btn-hover-bg: var(--sst-olive);
  --bs-btn-hover-border-color: var(--sst-olive);
  --bs-btn-hover-color: #fff;
}

.btn-whatsapp {
  --bs-btn-color: #fff;
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1faa55;
  --bs-btn-hover-border-color: #1faa55;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.site-header {
  backdrop-filter: blur(12px);
}

.navbar {
  border-bottom: 1px solid var(--sst-line);
}

.navbar-brand img,
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(20, 30, 25, 0.15);
}

.navbar-brand .brand-copy,
.footer-brand .brand-copy {
  line-height: 1.05;
}

.navbar-brand .brand-copy small,
.footer-brand .brand-copy small {
  display: block;
  color: var(--sst-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav-link {
  font-weight: 600;
  color: var(--sst-ink);
}

.nav-link.active,
.nav-link:hover {
  color: var(--sst-gold) !important;
}

.hero-banner {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 18, 14, 0.74), rgba(7, 18, 14, 0.28)),
    url("../../floor-tiles.jpg") center/cover no-repeat;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.16), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(200, 157, 99, 0.22), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.86);
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--sst-shadow);
  backdrop-filter: blur(10px);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.showcase-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--sst-shadow);
}

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

.section-panel {
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.56), rgba(255, 255, 255, 0.96));
  border-top: 1px solid var(--sst-line);
  border-bottom: 1px solid var(--sst-line);
}

.category-card,
.product-card,
.info-card,
.timeline-card {
  border: 1px solid var(--sst-line);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(21, 38, 30, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  background: #fff;
}

.category-card:hover,
.product-card:hover,
.info-card:hover,
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(21, 38, 30, 0.14);
  border-color: rgba(184, 138, 72, 0.22);
}

.category-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.category-image img,
.product-image img,
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.category-card:hover .category-image img,
.product-card:hover .product-image img,
.gallery-image:hover img {
  transform: scale(1.06);
}

.category-body,
.product-body,
.timeline-card .card-body,
.info-card .card-body {
  padding: 1.25rem;
}

.icon-chip {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 102, 77, 0.16), rgba(200, 157, 99, 0.16));
  color: var(--sst-ink);
  font-size: 1.15rem;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(79, 102, 77, 0.08);
  color: var(--sst-olive);
  font-size: 0.85rem;
  font-weight: 600;
}

.gradient-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 102, 77, 0.12), rgba(200, 157, 99, 0.14));
  color: var(--sst-ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.search-panel {
  background: #fff;
  border: 1px solid var(--sst-line);
  border-radius: 1.2rem;
  box-shadow: var(--sst-shadow);
}

.product-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #eef3ed;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 18, 14, 0.18));
  pointer-events: none;
}

.product-card .btn {
  border-radius: 999px;
}

.timeline-rail {
  position: relative;
}

.timeline-rail::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(79, 102, 77, 0.24), rgba(200, 157, 99, 0.28));
}

.timeline-step {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 1.25rem;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--sst-gold);
  box-shadow: 0 0 0 6px rgba(184, 138, 72, 0.14);
}

.gallery-image {
  border-radius: 1rem;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 16px 28px rgba(22, 49, 38, 0.1);
}

.contact-shell {
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.65), #fff);
}

.contact-box {
  border-radius: 1.3rem;
  border: 1px solid var(--sst-line);
  background: #fff;
  box-shadow: var(--sst-shadow);
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(200, 157, 99, 0.16), transparent 28%),
    #13251d;
  color: rgba(255, 255, 255, 0.88);
}

.footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .muted {
  color: rgba(255, 255, 255, 0.68);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #26d366, #19b857);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.32);
  animation: pulse-sst 2.2s infinite;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

@keyframes pulse-sst {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.46);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1060;
}

.loading-overlay.show {
  display: flex;
}

.spinner-shell {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--sst-line);
  box-shadow: var(--sst-shadow);
}

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

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

@media (max-width: 991.98px) {
  .hero-banner {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .timeline-rail::before {
    left: 1rem;
  }

  .timeline-step {
    padding-left: 3rem;
  }

  .timeline-step::before {
    left: 0.65rem;
  }
}

.hero-banner.hero-marble {
  min-height: 100vh;
  color: var(--sst-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.18)),
    url("../images/home-marble-bg.png") center top / cover no-repeat;
}

.hero-banner.hero-marble::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(219, 190, 124, 0.08), transparent 21%),
    radial-gradient(circle at 84% 20%, rgba(183, 137, 47, 0.06), transparent 17%),
    radial-gradient(circle at 25% 78%, rgba(123, 146, 116, 0.06), transparent 20%);
}

.hero-home {
  overflow: hidden;
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-home-shell {
  position: relative;
  display: grid;
  gap: 1.9rem;
  align-items: center;
  padding: 3rem 0 2rem;
  min-height: 76vh;
}

.hero-home-copy {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-branding {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.hero-brand-mark {
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(183, 137, 47, 0.12);
  box-shadow: 0 18px 42px rgba(20, 30, 25, 0.14);
}

.hero-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(144, 92, 18, 0.18));
}

.hero-brand-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.2vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
}

.hero-brand-name .brand-ink {
  color: var(--sst-ink);
}

.hero-brand-name .brand-gold {
  color: var(--sst-gold);
}

.hero-brand-name span {
  display: inline-block;
  margin: 0 0.12rem;
}

.hero-home-copy h1 {
  font-size: clamp(2rem, 3.15vw, 3.4rem);
  line-height: 0.98;
  margin-bottom: 1rem;
  max-width: 1150px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(184, 137, 47, 0.18);
  color: var(--sst-gold);
  box-shadow: 0 8px 22px rgba(20, 30, 25, 0.05);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-home-copy .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(24, 35, 59, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.hero-home .hero-home-copy {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2rem;
  padding: 2rem 1.5rem 2.25rem;
  box-shadow: 0 18px 42px rgba(20, 30, 25, 0.08);
  backdrop-filter: blur(8px);
}

.btn-hero-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--sst-ink);
  --bs-btn-border-color: var(--sst-ink);
  --bs-btn-hover-bg: #0f1728;
  --bs-btn-hover-border-color: #0f1728;
  box-shadow: 0 18px 32px rgba(20, 30, 54, 0.2);
}

.btn-hero-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--sst-gold);
  --bs-btn-border-color: var(--sst-gold);
  --bs-btn-hover-bg: #a5771d;
  --bs-btn-hover-border-color: #a5771d;
  box-shadow: 0 18px 32px rgba(184, 137, 47, 0.18);
}

.hero-chip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.56rem;
  margin: 0.85rem auto 0;
  max-width: 1100px;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 35, 59, 0.08);
  border-radius: 1rem;
  padding: 0.54rem 0.5rem;
  text-align: center;
  box-shadow: 0 10px 22px rgba(20, 30, 25, 0.06);
}

.hero-chip .icon-chip {
  margin-bottom: 0.32rem;
}

.hero-chip strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.2rem;
}

.hero-chip span {
  color: var(--sst-muted);
  font-size: 0.78rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28rem;
  margin-top: 1.5rem;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(74vw, 920px);
  height: min(74vw, 920px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.16) 54%, transparent 70%);
  filter: blur(6px);
}

.hero-stack {
  position: relative;
  width: min(88vw, 940px);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1rem;
  margin: 0 auto;
  align-items: stretch;
}

.hero-card {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--sst-shadow);
  border: 1px solid rgba(22, 35, 59, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  position: relative;
  min-height: 28rem;
}

.hero-card-main img,
.hero-card-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main .hero-card-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
}

.hero-card-caption small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--sst-gold);
}

.hero-card-feature {
  min-height: calc(28rem - 0.5rem);
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.hero-card-stack {
  display: grid;
  gap: 1rem;
}

.hero-card-stack .hero-card {
  min-height: 13.5rem;
}

.stats-strip {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 36px rgba(19, 26, 47, 0.12);
  border: 1px solid rgba(22, 35, 59, 0.08);
}

.stats-strip .stats-item {
  color: var(--sst-ink);
  text-align: center;
  padding: 0.6rem 0;
}

.stats-strip .stats-item:not(:last-child) {
  border-right: 1px solid rgba(22, 35, 59, 0.1);
}

.stats-strip .stats-item strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.stats-strip .stats-item span {
  display: block;
  font-size: 0.86rem;
  color: var(--sst-muted);
}

.stats-strip .icon-chip {
  background: rgba(183, 137, 47, 0.12);
  color: var(--sst-gold);
}

.section-intro {
  max-width: 740px;
  margin: 0 auto 2rem;
  text-align: center;
}

.collection-grid {
  display: grid;
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  min-height: 16.8rem;
  box-shadow: 0 16px 32px rgba(21, 38, 30, 0.1);
  border: 1px solid rgba(22, 35, 59, 0.08);
  background: #fff;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

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

.collection-card .collection-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 25, 0.82));
  color: #fff;
}

.collection-card .collection-caption strong {
  display: block;
  font-size: 1.1rem;
}

.collection-card .collection-caption span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 15rem;
  box-shadow: 0 16px 32px rgba(21, 38, 30, 0.1);
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.mosaic-card.wide {
  grid-column: span 7;
}

.mosaic-card.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: calc(30rem + 1rem);
}

.mosaic-card.small {
  grid-column: span 3;
}

.mosaic-card.medium {
  grid-column: span 4;
}

.category-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-section-title {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

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

.home-category-card .category-image {
  height: 154px;
}

.home-category-card .category-body {
  padding: 0.95rem 0.9rem 1rem;
}

.category-wall .collection-card {
  min-height: 16rem;
}

.category-wall .collection-caption {
  padding: 0.85rem 0.85rem 0.95rem;
}

.category-wall .collection-caption strong {
  font-size: 1rem;
}

.category-wall .collection-caption span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--sst-gold);
}

.collection-link i {
  transition: transform 160ms ease;
}

.category-link:hover .collection-link i {
  transform: translateX(2px);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--sst-line);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: 0 14px 32px rgba(21, 38, 30, 0.08);
}

.testimonial-card p {
  color: var(--sst-muted);
}

.cta-banner {
  border-radius: 1.8rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(24, 35, 59, 0.98), rgba(38, 53, 88, 0.98)),
    radial-gradient(circle at top right, rgba(184, 137, 47, 0.2), transparent 32%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(20, 30, 54, 0.22);
}

.cta-banner .text-muted-sst {
  color: rgba(255, 255, 255, 0.8) !important;
}

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

.btn-call {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1f355c;
  --bs-btn-border-color: #1f355c;
  --bs-btn-hover-bg: #152744;
  --bs-btn-hover-border-color: #152744;
  box-shadow: 0 12px 24px rgba(31, 53, 92, 0.18);
}

.hero-marble .icon-chip,
.cta-banner .icon-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-marble .icon-chip {
  color: var(--sst-ink);
}

.hero-marble .hero-chip .icon-chip {
  color: var(--sst-ink);
}

.hero-marble .hero-chip {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-marble .hero-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(20, 30, 25, 0.08);
}

@media (max-width: 1199.98px) {
  .hero-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px) {
  .hero-home-copy h1 {
    font-size: clamp(2rem, 7.6vw, 3rem);
  }

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

  .hero-card-feature {
    min-height: auto;
    grid-template-rows: 1fr;
  }

  .hero-card-main {
    min-height: 22rem;
  }

  .category-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-strip .stats-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mosaic-card.wide,
  .mosaic-card.tall,
  .mosaic-card.small,
  .mosaic-card.medium {
    grid-column: span 12;
    grid-row: auto;
    min-height: 14rem;
  }
}

@media (max-width: 575.98px) {
  .section-gap {
    padding: 4rem 0;
  }

  .hero-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-wall {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-banner {
    padding: 1.5rem;
  }
}
