/* Izomix — Visual-first design */

:root {
  --red: #dd3333;
  --gold: #dd9933;
  --ink: #04043d;
  --white: #fff;
  --gray: #6b6d7e;
  --light: #f4f5f7;
  --font: 'Jost', system-ui, sans-serif;
  --display: 'Bebas Neue', Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 17px; color: var(--ink); background: var(--white); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(1200px, 100% - 2rem); margin-inline: auto; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(4,4,61,0.1);
  box-shadow: 0 2px 20px rgba(4,4,61,0.06);
}

.nav--home {
  background: rgba(4, 4, 61, 0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.nav__inner {
  width: min(1240px, 100% - 1.5rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.4rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav__logo-img { height: 58px; width: auto; }

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  border-left: 2px solid var(--red);
  padding-left: 0.85rem;
}

.nav__brand-text strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.nav__brand-text em {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.nav--home .nav__brand-text strong { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.72;
  border-radius: 4px;
  transition: opacity 0.2s, color 0.2s, background 0.2s;
}

.nav--home .nav__links a { color: var(--white); }

.nav__links a:hover,
.nav__links a.is-active {
  opacity: 1;
  color: var(--red);
  background: rgba(221,51,51,0.08);
}

.nav--home .nav__links a:hover,
.nav--home .nav__links a.is-active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

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

.nav__phone {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0.85;
}

.nav--home .nav__phone { color: var(--white); }

.nav__phone:hover { opacity: 1; color: var(--red); }
.nav--home .nav__phone:hover { color: var(--gold); }

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  border-radius: 4px;
  opacity: 1 !important;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.15s;
}

.nav__cta:hover { filter: brightness(1.1); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  color: var(--ink);
}

.nav--home .nav__burger { color: var(--white); }

.nav__menu {
  display: none;
  position: fixed;
  top: 79px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light);
  padding: 1rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  box-shadow: 0 12px 32px rgba(4,4,61,0.12);
  z-index: 199;
}

.nav--home .nav__menu {
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav__menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.nav--home .nav__menu a { color: var(--white); }

.nav__menu.is-open { display: flex; }

@media (max-width: 900px) {
  .nav__brand-text { display: none; }
  .nav__links, .nav__actions { display: none; }
  .nav__burger {
    display: block;
    grid-column: 3;
    justify-self: end;
  }
  .nav__logo-img { height: 50px; }
  .nav__inner { min-height: 64px; }
  .nav__brand { margin-right: 0; }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .nav__phone { display: none; }
  .nav__brand { margin-right: 1rem; }
  .nav__links a { padding: 0.5rem 0.6rem; font-size: 0.85rem; }
}

/* ─── Floating pill nav (homepage) ─── */
body[data-page="home"] .nav--float {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 1.5rem));
  z-index: 200;
  background: var(--white);
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 48px rgba(4, 4, 61, 0.14);
}

body[data-page="home"] .nav--float .nav__inner {
  min-height: 68px;
  padding: 0 0.5rem 0 1rem;
}

body[data-page="home"] .nav--float .nav__links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  padding: 0.5rem 0.75rem;
}

body[data-page="home"] .nav--float .nav__links a:hover,
body[data-page="home"] .nav--float .nav__links a.is-active {
  opacity: 1;
  color: var(--red);
  background: transparent;
}

body[data-page="home"] .nav--float .nav__cta {
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}

body[data-page="home"] .nav--float .nav__menu {
  top: calc(1rem + 72px);
  border-radius: 12px;
  width: min(1180px, calc(100% - 1.5rem));
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

@media (max-width: 900px) {
  body[data-page="home"] .nav--float {
    top: 0.75rem;
    width: calc(100% - 1.25rem);
  }

  body[data-page="home"] .nav--float .nav__inner {
    min-height: 60px;
  }
}

/* ─── Hero (floating card over full-bleed photo) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--white) 0%,
    rgba(255, 255, 255, 0.85) 18%,
    rgba(255, 255, 255, 0.35) 42%,
    transparent 100%
  );
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(4, 4, 61, 0.55) 0%,
    rgba(4, 4, 61, 0.2) 45%,
    rgba(4, 4, 61, 0.35) 100%
  );
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  overflow: hidden;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100dvh;
  padding: 5.5rem 1.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  body[data-page="home"] .hero__inner.wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 5rem 2rem 5rem;
  }

  body[data-page="home"] .hero__card {
    transform: translateY(-3vh);
  }
}

.hero__card {
  position: relative;
  max-width: min(720px, 100%);
  background: var(--white);
  border-radius: clamp(1.25rem, 3vw, 2.25rem);
  padding: 2rem 2.5rem 2.25rem;
  box-shadow: 0 24px 64px rgba(4, 4, 61, 0.2);
  color: var(--ink);
  overflow: hidden;
}

@media (min-width: 900px) {
  body[data-page="home"] .hero__card {
    width: min(720px, calc(100vw - 4rem));
    padding: 2.25rem 3rem 2.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(221, 153, 51, 0.15);
  border-radius: 999px;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 20ch;
}

.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.btn--hero {
  position: relative;
  background: var(--red);
  color: var(--white);
  padding: 0.95rem 1.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
  transition: filter 0.2s, transform 0.15s;
}

.btn--hero:hover {
  filter: brightness(1.08);
}

.btn--hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--ink);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.hero__secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}

.hero__secondary:hover {
  color: var(--red);
}

.hero__watermark {
  position: absolute;
  bottom: -0.5rem;
  right: -0.25rem;
  width: 120px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
}

@media (max-width: 899px) {
  .hero__inner {
    padding: 5.5rem 1.25rem 2.5rem;
  }

  .hero__card {
    max-width: min(680px, 100%);
    width: 100%;
    padding: 1.75rem 1.5rem 2rem;
  }

  .hero__title {
    max-width: none;
  }

  .hero__watermark {
    width: 90px;
  }
}

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

.btn--ink:hover { filter: brightness(1.15); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 1.75rem; font-weight: 700; font-size: 0.95rem;
  border: none; border-radius: 4px; cursor: pointer; transition: transform 0.15s, filter 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { filter: brightness(1.08); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--white); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--wa { background: #25d366; color: var(--white); }
.btn--block { width: 100%; }

/* ─── Section headings ─── */
.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-sub {
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ─── About + stats grid ─── */
.about-band {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  padding: 5rem 0 4.5rem;
  background: var(--white);
}

.about-band__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

.stats-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: 1.1fr 1fr;
    min-height: 380px;
  }
}

.stats-grid__photo {
  overflow: hidden;
  min-height: 240px;
}

.stats-grid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  gap: 0.35rem;
}

.stat-box strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.stat-box span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-box--ink {
  background: var(--ink);
  color: var(--white);
}

.stat-box--ink span { color: rgba(255, 255, 255, 0.55); }

.stat-box--white {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--light);
}

.stat-box--white span { color: var(--gray); }

.stat-box--red {
  background: var(--red);
  color: var(--white);
}

.stat-box--red span { color: rgba(255, 255, 255, 0.75); }

.stat-box--img {
  padding: 0;
  overflow: hidden;
}

.stat-box--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Product cards band ─── */
.products-band {
  padding: 4rem 0 5rem;
  background: var(--light);
}

.products-band__sub {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2rem 0 1.25rem;
}

.products-band__sub--spaced {
  margin-top: 2.75rem;
}

.product-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

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

  /* 3 finish products — one row, no empty cell */
  #product-cards.product-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  #adhesive-cards.product-cards { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4, 4, 61, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(4, 4, 61, 0.1);
}

.product-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
}

.product-card__bag {
  position: absolute;
  top: -2.5rem;
  right: 1rem;
  height: 72px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(4, 4, 61, 0.15));
}

.product-card__body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  padding-right: 4rem;
}

.product-card__body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.product-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

/* ─── Featured projects grid (homepage) ─── */
.projects-band {
  padding: 5rem 0;
  background: var(--white);
}

.projects-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.projects-band__lead {
  margin-top: 0.65rem;
  max-width: 34rem;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.projects-band__all {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}

.projects-band__all:hover { color: var(--ink); }

/* Bento-style grid: 1 large tile + 3 smaller */
.home-projects-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .home-projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(240px, 1fr));
    gap: 1.25rem;
  }

  .project-tile--featured {
    grid-row: span 2;
  }

  .project-tile:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (min-width: 1024px) {
  .home-projects-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 1.25rem;
  }

  .project-tile--featured {
    grid-row: 1 / -1;
    grid-column: 1;
  }

  .project-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
  .project-tile:nth-child(3) { grid-column: 3; grid-row: 1; }
  .project-tile:nth-child(4) { grid-column: 2 / -1; grid-row: 2; }
}

.project-tile {
  display: block;
  position: relative;
  min-height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
}

@media (min-width: 700px) {
  .project-tile { min-height: 0; height: 100%; }
}

.project-tile__media {
  position: absolute;
  inset: 0;
}

.project-tile__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.project-tile:hover .project-tile__media > img {
  transform: scale(1.06);
}

.project-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 4, 61, 0.92) 0%,
    rgba(4, 4, 61, 0.45) 38%,
    rgba(4, 4, 61, 0.08) 100%
  );
  transition: background 0.35s;
}

.project-tile:hover .project-tile__shade {
  background: linear-gradient(
    to top,
    rgba(4, 4, 61, 0.96) 0%,
    rgba(4, 4, 61, 0.55) 45%,
    rgba(4, 4, 61, 0.15) 100%
  );
}

.project-tile__product {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 56px;
  height: 56px;
  padding: 6px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.project-tile:hover .project-tile__product {
  transform: translateY(-2px);
}

.project-tile__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-tile__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.35rem 1.35rem;
  color: var(--white);
}

.project-tile--featured .project-tile__copy {
  padding: 1.75rem 1.75rem 1.85rem;
}

.project-tile__loc {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.project-tile__name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.project-tile--featured .project-tile__name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.project-tile__desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-tile--featured .project-tile__desc {
  font-size: 0.95rem;
  -webkit-line-clamp: 3;
  max-width: 28rem;
}

.project-tile__plus {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.project-tile:hover .project-tile__plus {
  opacity: 1;
  transform: translateY(0);
}

.project-tile__plus:hover {
  background: var(--gold);
  color: var(--ink);
}

@media (hover: none) {
  .project-tile__plus {
    opacity: 1;
    transform: none;
  }
}

/* ─── CTA bar ─── */
.cta-bar {
  background: var(--red);
  color: var(--white);
  padding: 2.25rem 0;
}

.cta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-bar h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Before / After slider ─── */
.ba-wrap { width: 100%; }

.visual-split {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

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

.visual-product {
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  position: relative;
}

.visual-product-img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(4,4,61,0.12));
}

.visual-product-tag {
  margin-top: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink);
}

.ba-slider.is-dragging { cursor: grabbing; }

.ba-img--after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--white);
  box-shadow: 4px 0 28px rgba(0,0,0,0.4);
  z-index: 2;
}

.ba-img--before {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.ba-after {
  display: none;
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
}

.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.ba-handle-grip {
  width: 44px; height: 44px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.ba-captions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.ba-captions strong { color: var(--ink); font-weight: 700; }

.ba-project {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Product showcase sections ─── */
.showcase {
  padding: 5rem 0;
}

.showcase:nth-child(even) { background: var(--light); }

.showcase__header {
  margin-bottom: 2.5rem;
}

.showcase__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.showcase__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.showcase__line {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 28rem;
}

.showcase__body {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .showcase__body { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .showcase--flip .showcase__body { direction: rtl; }
  .showcase--flip .showcase__body > * { direction: ltr; }
}

.showcase__info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.showcase__info p { color: var(--gray); margin-bottom: 1.25rem; line-height: 1.6; }

.showcase__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.25rem;
}

/* ─── Projects visual ─── */
.project-visual {
  display: grid;
  gap: 1px;
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 700px) {
  .project-visual { grid-template-columns: 1fr 140px; }
}

.project-visual__site { aspect-ratio: 16/10; overflow: hidden; }
.project-visual__site img { width: 100%; height: 100%; object-fit: cover; }

.project-visual__product {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
  gap: 0.75rem;
}

.project-visual__product img { max-height: 100px; object-fit: contain; }
.project-visual__product span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.4;
}

/* ─── Projects page ─── */
.proj-intro {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .proj-intro {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.proj-intro__copy p:last-child {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--gray);
  line-height: 1.65;
}

.proj-intro__copy a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.proj-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-width: min(100%, 320px);
}

.proj-stat {
  background: var(--light);
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 4px;
}

.proj-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.proj-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.proj-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 2rem;
}

.proj-filter {
  padding: 0.55rem 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(4, 4, 61, 0.12);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.proj-filter:hover,
.proj-filter.is-active {
  border-color: var(--red);
  color: var(--red);
}

.proj-filter.is-active {
  background: rgba(221, 51, 51, 0.06);
}

.proj-page-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .proj-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.proj-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4, 4, 61, 0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.proj-card:hover {
  box-shadow: 0 12px 36px rgba(4, 4, 61, 0.11);
  transform: translateY(-3px);
}

.proj-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.proj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.proj-card:hover .proj-card__media img {
  transform: scale(1.04);
}

.proj-card__type {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
}

.proj-card__bag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 5px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.proj-card__bag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none !important;
}

.proj-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.5rem;
}

.proj-card__loc {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.proj-card__title {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.proj-card__headline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.proj-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.proj-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.proj-card__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: var(--light);
  color: var(--ink);
  border-radius: 3px;
}

/* Legacy project visual (unused on projects page) */

/* ─── Products page (grid cards) ─── */
.products-page {
  padding: 3rem 0 4rem;
}

.products-page__intro {
  margin-bottom: 3rem;
}

.products-page__lead {
  margin-top: 0.5rem;
  max-width: 36rem;
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
}

.products-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.products-nav__link {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--light);
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.products-nav__link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}

.products-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 6rem;
}

.products-section:last-child {
  margin-bottom: 0;
}

.products-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--red);
}

.products-section__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.products-section__count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

  #tile-adhesives .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(4, 4, 61, 0.08);
  box-shadow: 0 4px 20px rgba(4, 4, 61, 0.06);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  height: 100%;
}

.p-card:hover {
  border-color: rgba(221, 51, 51, 0.25);
  box-shadow: 0 12px 32px rgba(4, 4, 61, 0.1);
  transform: translateY(-3px);
}

.p-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  padding: 2rem 1.5rem;
  min-height: 200px;
  border-bottom: 1px solid var(--light);
}

.p-card__media img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(4, 4, 61, 0.12));
  transition: transform 0.35s ease;
}

.p-card:hover .p-card__media img {
  transform: scale(1.04);
}

.p-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.p-card__cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.p-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.p-card__title a {
  color: var(--ink);
  transition: color 0.2s;
}

.p-card__title a:hover {
  color: var(--red);
}

.p-card__benefit {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}

.p-card__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.p-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--light);
  margin-top: auto;
}

.p-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}

.p-card__link:hover {
  color: var(--ink);
}

.p-card__order {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 4px;
  transition: filter 0.2s;
}

.p-card__order:hover {
  filter: brightness(1.08);
}

/* ─── Page header ─── */
.page-head {
  padding: 8.5rem 0 3rem;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.page-head h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-head p { margin-top: 1rem; opacity: 0.65; font-size: 1.1rem; }

/* ─── Product grid page ─── */

/* ─── Detail page ─── */
.detail-grid {
  display: grid;
  gap: 3rem;
  padding: 6rem 0 5rem;
}

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

.detail-product-photo {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  min-height: 280px;
}

.detail-product-img {
  max-width: min(100%, 320px);
  max-height: 360px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(4, 4, 61, 0.14));
}

.detail-specs { }
.detail-specs h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.detail-specs .price { font-size: 1.25rem; font-weight: 700; color: var(--red); margin-bottom: 0.75rem; }

.product-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

.showcase__benefits {
  list-style: none;
  margin-bottom: 1.25rem;
}

.showcase__benefits li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.45;
}

.showcase__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.detail-specs ul { list-style: none; margin-bottom: 2rem; }
.detail-specs li { padding: 0.5rem 0; border-bottom: 1px solid var(--light); display: flex; gap: 0.5rem; }
.detail-specs li::before { content: '✓'; color: var(--red); font-weight: 700; }

/* ─── Guides ─── */
.guides-page {
  padding-bottom: 4rem;
}

.guides-section {
  padding: 3rem 0 1rem;
}

.guides-section--project {
  margin-top: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--light);
}

.guides-section__title {
  margin-bottom: 0.5rem;
}

.guides-section__lead {
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.guide-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light);
}

.guide-block:last-child {
  border-bottom: none;
}

.guide-block__head {
  margin-bottom: 1.5rem;
}

.guide-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.guide-block__summary {
  color: var(--gray);
  line-height: 1.6;
  max-width: 40rem;
}

.guide-project {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.guide-project a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.guide-product {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem 0.4rem 0.4rem;
  background: var(--light);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s;
}

.guide-product:hover {
  background: rgba(221, 51, 51, 0.08);
  color: var(--red);
}

.guide-product img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.guide-visual {
  margin: 1.5rem 0 2rem;
  max-width: 900px;
}

.guide-steps {
  margin-top: 0.5rem;
  display: grid;
  gap: 1rem;
}

.guide-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guide-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.guide-step__body strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.guide-step__body p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guide-step__product {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  border-radius: 3px;
}

/* ─── Footer (reference: banner + red band + dark strip) ─── */
.footer {
  margin-top: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.footer__banner {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.footer__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 61, 0.55);
}

.footer__main {
  background: var(--red);
  color: var(--white);
  padding: 3rem 0;
}

.footer__main-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__main-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 4rem;
  }
}

.footer__contact-big {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__phone-big,
.footer__email-big {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white) !important;
  transition: opacity 0.2s;
}

.footer__phone-big:hover,
.footer__email-big:hover { opacity: 0.85; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 2rem 3rem;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer__bottom {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  padding: 1.25rem 0 1rem;
  font-size: 0.8125rem;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__security {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  text-align: center;
}

.footer__security strong {
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 640px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ─── CTA band ─── */
.cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.25rem;
}

.cta h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 1.1rem; }

.cta__phone {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── WhatsApp float ─── */
.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 200;
  width: 56px; height: 56px;
  background: #25d366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ─── Why row ─── */
.why-row {
  display: grid;
  gap: 1.5rem;
  padding: 4rem 0;
  text-align: center;
}

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

.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.why-item p { font-size: 0.88rem; color: var(--gray); }

.section-intro {
  text-align: center;
  padding: 4rem 0 1rem;
}

.section-intro .section-heading {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hint-drag {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}
.hint-drag::before { content: '↔ '; }
