@font-face {
  font-family: "Headley Sans";
  src: url("../assets/fonts/Headley Sans.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sink";
  src: url("../assets/fonts/Sink.otf") format("opentype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #0b0d0f;
  --panel: #111416;
  --panel-2: #171a1c;
  --line: rgba(255, 255, 255, 0.16);
  --muted: #aeb9c2;
  --text: #FFFFFF;
  --blue: #9FD6F4;
  --blue-deep: #9FD6F4;
  --orange: #F6A740;
  --red: #EF453D;
  --radius: 8px;
  --container: 1180px;
  --heading: "Sink", "Archivo Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --card-heading: "Acumin Variable Concept", "Acumin Pro Condensed", "Acumin Pro", "Arial Narrow", "Archivo Black", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 69, 61, 0.12), transparent 18rem),
    radial-gradient(circle at 90% 50%, rgba(159, 214, 244, 0.11), transparent 20rem),
    #050505;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("../assets/rebuild/png/background-dark-subtle-splatter.png");
  background-size: cover;
  background-position: center top;
}

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

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.header-wrapper {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-wrapper.scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.announcement-bar {
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-wrapper.scrolled .announcement-bar {
  background: #050505;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.announcement-marquee {
  min-height: 30px;
  display: flex;
  align-items: center;
  width: 100%;
}

.announcement-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  padding-inline: 24px;
  color: #dfe7ec;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  animation: announcement-marquee 34s linear infinite;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.announcement-item i,
.announcement-item a {
  color: var(--blue);
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.main-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header-wrapper.scrolled .main-header {
  background: rgba(5, 5, 5, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.main-header .container {
  min-height: 68px;
  display: grid;
  grid-template-columns: 108px 178px 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right {
  justify-content: flex-end;
}

.header-icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  cursor: pointer;
}

.header-icon-btn:hover {
  color: var(--blue);
  border-color: rgba(159, 214, 244, 0.65);
}

.logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo-lockup {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.navbar-mascot {
  width: auto;
  height: 54px;
  flex: 0 0 auto;
}

.logo-img {
  width: 154px;
  height: auto;
}

.desktop-mini-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: #e9eef2;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.desktop-mini-nav a:hover {
  color: var(--blue);
}

.header-phone {
  color: var(--blue);
  font-size: 13px;
  font-weight: 1000;
  white-space: nowrap;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: min(-100%, -390px);
  z-index: 1002;
  width: min(390px, 88vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(8, 10, 12, 0.98)),
    url("../assets/rebuild/png/background-dark-woven-pattern.png");
  background-size: cover;
  border-right: 1px solid rgba(159, 214, 244, 0.3);
  transition: left 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-header .logo-img {
  width: 150px;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.drawer-nav {
  flex: 1;
  padding: 22px;
}

.drawer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
}

.drawer-nav a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  font-size: 11px;
}

.drawer-footer {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-footer .btn {
  width: 100%;
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.drawer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

body.drawer-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.91);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 162px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #dfe5e8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover,
.phone-link:hover,
.social-links a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.phone-link {
  display: grid;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
  text-align: right;
}

.phone-link small {
  color: #d8e6ed;
  font-size: 10px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.section-dark,
.section-pattern,
.process-section,
.methods-section,
.work-section,
.reviews-section,
.quote-section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 685px;
  padding: 142px clamp(18px, 5vw, 72px) 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.92) 33%, rgba(5, 5, 5, 0.35) 74%, #050505 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), #050505 94%),
    url("../Artesanos Sanchez Website/BW Chicago Background For Website.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 660px) 1fr;
  align-items: center;
}

.hero-copy {
  padding-top: 8px;
}

.hero-showcase {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  width: min(40vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(159, 214, 244, 0.2), transparent 58%),
    radial-gradient(circle at 70% 30%, rgba(246, 167, 64, 0.14), transparent 42%);
  filter: blur(2px);
  opacity: 0.8;
  z-index: -1;
}

.hero-shirt-slider {
  width: min(42vw, 560px);
  max-width: 100%;
}

.hero-shirt-slider .splide__track {
  overflow: hidden;
}

.hero-shirt-slider .splide__slide {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shirt-slider .splide__slide img {
  width: min(100%, 560px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.68));
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease, filter 0.7s ease;
}

.hero-shirt-slider .splide__slide.is-active img {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: drop-shadow(0 40px 38px rgba(0, 0, 0, 0.72));
}

.hero-shirt-slider .splide__pagination {
  bottom: -14px;
  gap: 8px;
}

.hero-shirt-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-shirt-slider .splide__pagination__page.is-active {
  width: 24px;
  background: var(--orange);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38vw);
    gap: 16px;
  }

  .hero-shirt-slider {
    width: min(38vw, 420px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .hero-showcase {
    position: absolute;
    inset: auto -88px 108px auto;
    width: 250px;
    height: 210px;
    opacity: 0.42;
  }

  .hero-showcase::before,
  .hero-shirt-slider .splide__pagination {
    display: none;
  }

  .hero-shirt-slider {
    width: 250px;
  }

  .hero-shirt-slider .splide__slide {
    min-height: 210px;
  }

  .hero-shirt-slider .splide__slide img {
    max-height: 210px;
  }
}

.hero-locale {
  margin: 0 0 8px;
  color: #e7ecef;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
}

.hero-locale::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background: var(--red);
  clip-path: polygon(50% 0, 60% 38%, 100% 24%, 70% 52%, 100% 76%, 60% 62%, 50% 100%, 40% 62%, 0 76%, 30% 52%, 0 24%, 40% 38%);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 850px;
  font-family: var(--heading);
  font-size: clamp(52px, 9.5vw, 126px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #FFFFFF;
}

h1 span {
  display: block;
  color: var(--blue);
}

.hero-hook {
  margin: 22px 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 900;
}

.star-mark,
.section-heading span,
.quote-copy span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
  background: var(--red);
  clip-path: polygon(50% 0, 60% 38%, 100% 24%, 70% 52%, 100% 76%, 60% 62%, 50% 100%, 40% 62%, 0 76%, 30% 52%, 0 24%, 40% 38%);
}

.hero-text {
  max-width: 520px;
  margin: 0;
  color: #d5dce1;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 5px;
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.32);
}

.btn-primary,
.instagram-btn,
.call-box {
  background: var(--orange);
  color: #090909;
  border-color: #ff9a47;
}

.btn-secondary {
  color: var(--blue);
  border-color: var(--blue-deep);
  background: rgba(10, 18, 22, 0.85);
}

.service-rail {
  max-width: var(--container);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.68);
}

.service-rail article {
  min-height: 98px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.service-rail article:last-child {
  border-right: 0;
}

.service-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-deep);
  color: var(--blue);
  font-size: 11px;
  font-weight: 1000;
}

.service-rail h3 {
  color: #f7fbfd;
  font-size: 14px;
  text-transform: uppercase;
}

.service-rail p {
  margin: 2px 0 0;
  color: #b8c4ca;
  font-size: 12px;
  font-weight: 700;
}

.section-pattern {
  padding: 56px clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.7), #070707 90%),
    url("../assets/rebuild/png/background-dark-woven-pattern.png");
  background-size: cover;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading > p:first-child,
.quote-copy > p:first-child {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #dce3e8;
  font-size: 15px;
  font-weight: 1000;
  text-transform: uppercase;
}

.section-heading h2,
.quote-copy h2 {
  font-family: var(--heading);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.96;
  text-transform: uppercase;
  color: #FFFFFF;
}

.section-heading h2 strong,
.quote-copy h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.section-intro {
  max-width: 760px;
  margin: 12px auto 0;
  color: #c9d3d8;
  font-weight: 800;
}

.audience-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 158px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(159, 214, 244, 0.38);
  border-radius: var(--radius);
  background: rgba(11, 13, 15, 0.88);
  box-shadow: inset 0 0 0 1px rgba(246, 167, 64, 0.1);
}

.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 5px;
}

.audience-card h3 {
  color: #ffffff;
  font-family: var(--heading);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.audience-card p {
  margin: 6px 0;
  color: #d6dde0;
  font-size: 12px;
  font-weight: 700;
}

.audience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 0;
  margin: 0 0 8px;
  list-style: none;
}

.audience-card li {
  color: var(--blue);
  font-size: 11px;
  font-weight: 1000;
}

.audience-card a {
  color: var(--orange);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.help-line {
  max-width: 960px;
  margin: 26px auto 0;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.help-line a {
  color: var(--orange);
}

.process-section,
.methods-section,
.work-section,
.reviews-section {
  padding: 74px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #050505 0%, #07090a 100%);
}

.process-section::before,
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: url("../assets/rebuild/png/background-dark-grunge-splash.png");
  background-size: cover;
  background-position: center;
}

.compact {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
}

.compact h2 {
  font-size: clamp(42px, 7vw, 78px);
}

.mascot {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
}

.mascot-needle {
  right: clamp(-70px, 2vw, 50px);
  top: 70px;
  width: clamp(150px, 22vw, 260px);
}

.timeline {
  position: relative;
  z-index: 1;
  max-width: 980px;
  min-height: 470px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 18px;
}

.timeline::before {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 4;
  justify-self: center;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--orange), var(--blue), transparent);
  box-shadow: 0 0 24px rgba(246, 167, 64, 0.75);
}

.step-card {
  align-self: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(246, 167, 64, 0.5);
  border-radius: var(--radius);
  background: rgba(10, 13, 15, 0.92);
}

.step-left {
  grid-column: 1;
}

.step-right {
  grid-column: 3;
}

.step-card span {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 23px;
}

.step-card h3 {
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
  text-transform: uppercase;
}

.step-card p {
  margin: 8px 0 0;
  color: #c9d3d8;
  font-size: 14px;
  font-weight: 700;
}

.center-cta {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px;
  border: 1px solid rgba(246, 167, 64, 0.35);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.8);
}

.center-cta span {
  color: var(--blue);
  font-weight: 1000;
}

.methods-section {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), #070707),
    url("../assets/rebuild/png/background-dark-ornamental-border.png");
  background-size: cover;
}

.method-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.method-grid article {
  padding: 14px;
  border: 1px solid rgba(246, 167, 64, 0.45);
  border-radius: var(--radius);
  background: rgba(10, 12, 13, 0.9);
}

.method-image {
  height: 150px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 5px;
  background: #111;
}

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

.method-grid h3 {
  font-family: var(--heading);
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.method-grid p {
  min-height: 66px;
  margin: 8px 0;
  color: #d4dde2;
  font-size: 14px;
  font-weight: 700;
}

.method-grid small {
  display: block;
  color: var(--blue);
  font-weight: 1000;
}

.info-strip {
  max-width: var(--container);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.8fr 1fr;
  border: 1px solid rgba(246, 167, 64, 0.45);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(8, 9, 10, 0.95);
}

.info-strip article,
.call-box {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.info-strip article:last-child {
  border-right: 0;
}

.info-strip h3 {
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase;
}

.info-strip p {
  margin: 4px 0 0;
  color: #cbd4d8;
  font-size: 13px;
  font-weight: 700;
}

.call-box {
  place-items: center;
  font-family: var(--heading);
  font-size: 22px;
  text-transform: uppercase;
}

.work-section {
  background:
    linear-gradient(180deg, #050505, rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 12% 80%, rgba(159, 214, 244, 0.28), transparent 18rem),
    radial-gradient(circle at 90% 80%, rgba(239, 69, 61, 0.24), transparent 18rem);
}

.work-splide {
  max-width: var(--container);
  margin: 0 auto;
}

.work-splide .splide__track {
  padding: 0 2px;
  background: transparent;
  overflow: visible;
}

.work-splide .splide__slide {
  overflow: hidden;
  border: 2px solid #050505;
  border-radius: 4px;
  background: #050505;
}

.work-splide .splide__slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.work-splide .splide__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-deep);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.86);
  color: var(--orange);
  cursor: pointer;
}

.work-splide .splide__arrows {
  position: absolute;
  inset: 50% -58px auto -58px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.work-splide .splide__arrow {
  pointer-events: auto;
}

.work-splide .splide__pagination {
  bottom: -30px;
}

.work-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: 0;
  background: var(--red);
  clip-path: polygon(50% 0, 60% 38%, 100% 24%, 70% 52%, 100% 76%, 60% 62%, 50% 100%, 40% 62%, 0 76%, 30% 52%, 0 24%, 40% 38%);
  opacity: 0.45;
}

.work-splide .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1.25);
}

.instagram-btn {
  width: fit-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 0 28px;
  border-radius: 5px;
  border: 2px solid #ff9a47;
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
}

.fresh-line {
  margin: 10px 0 0;
  text-align: center;
  color: #aab6bd;
  font-size: 13px;
  font-weight: 800;
}

.mascot-waving {
  left: -38px;
  bottom: 10px;
  width: clamp(130px, 18vw, 230px);
  opacity: 0.75;
}

.review-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.review-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(159, 214, 244, 0.26);
  border-radius: var(--radius);
  background: rgba(10, 12, 14, 0.92);
}

.review-card.featured {
  border-color: rgba(246, 167, 64, 0.8);
  box-shadow: 0 0 0 1px rgba(246, 167, 64, 0.28), 0 20px 45px rgba(0, 0, 0, 0.4);
}

.review-top strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.review-top span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.stars {
  margin: 14px 0 8px;
  color: var(--orange);
  font-weight: 1000;
}

.review-card p:last-child {
  margin: 0;
  color: #d3dbe0;
  font-size: 14px;
  font-weight: 700;
}

.review-cta {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.review-cta p {
  margin: 0;
  color: #d8e2e7;
  font-weight: 800;
}

.quote-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(360px, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.98)),
    url("../assets/rebuild/png/background-dark-subtle-splatter.png");
  background-size: cover;
}

.quote-art {
  position: relative;
  min-height: 360px;
}

.mascot-hardhat {
  position: absolute;
  left: -25px;
  bottom: 24px;
  width: min(230px, 54vw);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
}

.product-one,
.product-two {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

.product-one {
  right: 28px;
  bottom: 48px;
  width: 146px;
  height: 146px;
}

.product-two {
  right: 0;
  bottom: 0;
  width: 116px;
  height: 116px;
}

.quote-copy > p:first-child {
  justify-content: flex-start;
  color: var(--blue);
}

.quote-copy h2 {
  font-size: clamp(48px, 7vw, 92px);
}

.quote-copy > p:not(:first-child) {
  max-width: 460px;
  margin: 16px 0 0;
  color: #d7e0e5;
  font-size: 18px;
  font-weight: 800;
}

.map-card {
  position: relative;
  min-height: 355px;
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: #111417;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotate(-7deg) scale(1.2);
}

.map-pin {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #111417;
}

.map-card h3,
.map-card p,
.map-card span {
  position: relative;
  z-index: 1;
}

.map-card h3 {
  color: #ffffff;
  font-family: var(--heading);
  font-size: 24px;
}

.map-card p {
  margin: 2px 0 42px;
  color: var(--blue);
  font-weight: 900;
}

.map-card span {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--heading);
  font-size: 18px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .announcement-track {
    animation-duration: 28s;
  }

  .main-header .container {
    grid-template-columns: 90px 170px 1fr;
  }

  .desktop-mini-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 160px 1fr;
  }

  .header-actions {
    display: none;
  }

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

  .service-rail article:nth-child(2n) {
    border-right: 0;
  }

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

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-art {
    display: none;
  }
}

@media (max-width: 760px) {
  .announcement-marquee {
    min-height: 28px;
  }

  .announcement-track {
    gap: 28px;
    font-size: 10px;
    animation-duration: 24s;
  }

  .main-header .container {
    min-height: 62px;
    grid-template-columns: 72px 1fr 72px;
    gap: 8px;
  }

  .header-left .header-icon-btn:not(.mobile-menu-toggle),
  .header-phone,
  .header-right .header-icon-btn {
    display: none;
  }

  .header-right {
    min-width: 72px;
  }

  .logo-img {
    width: 134px;
  }

  .site-header {
    height: auto;
    min-height: 72px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand img {
    width: 145px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 10px;
  }

  .hero {
    min-height: 640px;
    padding-top: 132px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 76px);
  }

  .service-rail,
  .audience-grid,
  .method-grid,
  .info-strip,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-rail article,
  .info-strip article,
  .call-box {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .timeline::before {
    display: none;
  }

  .step-left,
  .step-right {
    grid-column: 1;
  }

  .center-cta,
  .review-cta {
    flex-direction: column;
    text-align: center;
  }

  .work-splide .splide__arrows {
    inset: auto 0 -58px;
  }

  .work-splide .splide__slide img {
    height: 230px;
  }

  .audience-card {
    grid-template-columns: 100px 1fr;
  }

  .quote-section {
    padding-bottom: 44px;
  }
}

/* Reference fidelity pass */
.main-header .container {
  min-height: 58px;
  grid-template-columns: 174px 1fr auto;
  gap: 26px;
}

.header-left {
  display: none;
}

.logo-center {
  justify-content: flex-start;
}

.logo-img {
  width: 148px;
}

.desktop-mini-nav {
  justify-content: flex-start;
  gap: 30px;
}

.header-right {
  gap: 8px;
}

.header-phone {
  display: grid;
  margin-right: 8px;
  color: var(--blue);
  line-height: 1.05;
}

.header-phone::after {
  content: "Se Habla Español";
  color: #FFFFFF;
  font-size: 10px;
}

.hero {
  min-height: 610px;
  padding-top: 104px;
}

.hero-bg {
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 35%, rgba(5, 5, 5, 0.28) 75%, #050505 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05), #050505 96%),
    url("../Artesanos Sanchez Website/BW Chicago Background For Website.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-grid {
  grid-template-columns: minmax(0, 760px) 1fr;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.7vw, 104px);
  line-height: 0.94;
}

h1 .hero-title-line {
  display: block;
  white-space: nowrap;
  color: #FFFFFF;
}

h1 span:not(.hero-title-line) {
  color: var(--blue);
}

.hero-locale {
  margin-bottom: 4px;
  font-size: clamp(14px, 1.7vw, 18px);
}

.hero-hook {
  margin-top: 18px;
  font-size: clamp(16px, 1.9vw, 21px);
}

.hero-text {
  max-width: 470px;
  font-size: 14px;
}

.btn {
  min-height: 46px;
  padding-inline: 22px;
}

.service-rail {
  margin-top: 48px;
}

.service-rail article {
  min-height: 80px;
  padding: 13px 14px;
}

.section-pattern {
  padding-top: 42px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(34px, 5.1vw, 58px);
}

.audience-grid {
  max-width: 990px;
  gap: 14px;
}

.audience-card {
  position: relative;
  min-height: 136px;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px;
  border-color: rgba(159, 214, 244, 0.55);
  background: rgba(7, 9, 10, 0.9);
}

.audience-card::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
}

.audience-card img {
  min-height: 116px;
  background: var(--blue);
  border: 7px solid var(--blue);
  object-fit: cover;
  filter: saturate(0.75) contrast(0.85);
}

.audience-card h3 {
  padding-right: 22px;
  font-size: 15px;
}

.audience-card p {
  margin: 5px 0;
  font-size: 11px;
}

.audience-card li {
  font-size: 10px;
}

.help-line {
  margin-top: 18px;
  font-size: 18px;
}

.process-section,
.methods-section,
.work-section,
.reviews-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.compact {
  margin-bottom: 26px;
}

.compact h2 {
  font-size: clamp(40px, 6vw, 66px);
}

.timeline {
  max-width: 890px;
  min-height: 385px;
  grid-template-columns: 1fr 74px 1fr;
  gap: 12px;
}

.timeline::before {
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--orange), #ffffff, var(--orange), transparent);
  box-shadow: 0 0 34px rgba(246, 167, 64, 0.9);
}

.step-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr 112px;
  column-gap: 12px;
  align-items: center;
  padding: 16px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.step-left::after {
  right: -44px;
}

.step-right::after {
  left: -44px;
}

.step-card span,
.step-card h3,
.step-card p {
  grid-column: 1;
}

.step-card img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 112px;
  height: 86px;
  border-radius: 5px;
  object-fit: cover;
}

.step-card h3 {
  font-size: 14px;
}

.step-card p {
  font-size: 12px;
}

.method-grid {
  max-width: 1120px;
}

.method-grid article {
  padding: 12px;
}

.method-image {
  height: 125px;
}

.method-grid h3 {
  font-size: 16px;
}

.method-grid p {
  min-height: 54px;
  font-size: 12px;
}

.info-strip {
  margin-top: 16px;
}

.work-section {
  padding-bottom: 70px;
}

.reviews-splide {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.reviews-splide .splide__track {
  overflow: visible;
}

.reviews-splide .splide__slide {
  height: auto;
}

.review-card {
  min-height: 210px;
  height: 100%;
  padding: 18px;
}

.review-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 1px solid rgba(159, 214, 244, 0.45);
  background:
    radial-gradient(circle, rgba(159, 214, 244, 0.18), transparent 60%),
    #101417;
}

.reviews-splide .splide__arrow {
  width: 40px;
  height: 40px;
  border: 2px solid var(--blue-deep);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.9);
  color: var(--blue);
}

.reviews-splide .splide__pagination__page {
  width: 9px;
  height: 9px;
  margin: 0 5px;
  border: 0;
  background: var(--red);
  opacity: 0.4;
}

.reviews-splide .splide__pagination__page.is-active {
  opacity: 1;
}

.quote-section {
  min-height: 500px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1fr) minmax(330px, 0.9fr);
  padding-top: 56px;
  padding-bottom: 56px;
}

.quote-section::before {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 52px;
  width: 260px;
  height: 130px;
  opacity: 0.12;
  background: url("../assets/images/artesanos-logo-white.png") center / contain no-repeat;
  transform: rotate(-14deg);
}

.quote-copy h2 {
  font-size: clamp(48px, 6vw, 76px);
}

.map-card {
  min-height: 330px;
}

@media (max-width: 1080px) {
  .main-header .container {
    grid-template-columns: 160px 1fr auto;
  }

  .desktop-mini-nav {
    display: flex;
    gap: 18px;
  }

  .header-phone {
    display: none;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-art {
    display: none;
  }
}

@media (max-width: 760px) {
  .main-header .container {
    grid-template-columns: 56px 1fr 56px;
  }

  .header-left {
    display: flex;
  }

  .header-left .header-icon-btn:not(.mobile-menu-toggle) {
    display: none;
  }

  .desktop-mini-nav,
  .header-right {
    display: none;
  }

  .logo-center {
    justify-content: center;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  h1 .hero-title-line {
    white-space: normal;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .timeline::before {
    display: none;
  }

  .step-left,
  .step-right {
    grid-column: 1;
  }

  .step-card img,
  .step-card span,
  .step-card h3,
  .step-card p {
    grid-column: 1;
  }

  .step-card img {
    grid-row: auto;
    width: 100%;
    height: 120px;
    margin-top: 10px;
  }

  .step-card::after {
    display: none;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .map-card {
    width: 100%;
  }
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  flex: 1;
  width: min(100%, 1080px);
  max-width: 1080px;
  align-items: center;
  grid-template-columns: minmax(0, 680px) 1fr;
}

.service-rail {
  width: min(100%, 1080px);
  margin-top: auto;
  margin-bottom: 44px;
}

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

h1 {
  max-width: 680px;
  font-size: clamp(54px, 6.5vw, 90px);
}

@media (max-width: 760px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .service-rail {
    margin-top: 32px;
    margin-bottom: 34px;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }
}

.section-heading,
.audience-grid,
.help-line,
.timeline,
.center-cta,
.method-grid,
.info-strip,
.work-splide,
.instagram-btn,
.fresh-line,
.reviews-splide,
.review-cta,
.quote-art,
.quote-copy,
.map-card {
  position: relative;
  z-index: 1;
}

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.decor-star {
  width: clamp(42px, 6vw, 88px);
  opacity: 0.58;
  filter: drop-shadow(0 0 18px rgba(239, 69, 61, 0.45));
}

.brand-stamp {
  width: clamp(130px, 14vw, 205px);
  opacity: 0.14;
  filter: grayscale(1);
}

.audience-star-left {
  top: 22px;
  left: clamp(18px, 7vw, 110px);
  transform: rotate(-12deg);
}

.audience-star-right {
  top: 20px;
  right: clamp(18px, 8vw, 140px);
  width: clamp(36px, 4.5vw, 64px);
  transform: rotate(12deg);
}

.process-star-left {
  top: 76px;
  left: clamp(18px, 10vw, 160px);
  opacity: 0.2;
  transform: rotate(-18deg);
}

.methods-stamp {
  top: 76px;
  right: clamp(18px, 8vw, 120px);
  transform: rotate(13deg);
}

.methods-star-right {
  right: clamp(24px, 12vw, 180px);
  bottom: 44px;
  transform: rotate(-9deg);
}

.work-star-left {
  left: clamp(16px, 6vw, 90px);
  bottom: 118px;
  width: clamp(58px, 8vw, 112px);
  opacity: 0.42;
  transform: rotate(11deg);
}

.work-star-right {
  right: clamp(18px, 6vw, 96px);
  bottom: 92px;
  width: clamp(44px, 5vw, 76px);
  opacity: 0.46;
  transform: rotate(-13deg);
}

.reviews-stamp {
  top: 66px;
  left: clamp(16px, 4vw, 60px);
  transform: rotate(-16deg);
}

.quote-star-right {
  top: 72px;
  right: clamp(24px, 7vw, 110px);
  transform: rotate(16deg);
}

.service-icon {
  border-radius: 3px;
  background: rgba(159, 214, 244, 0.06);
  font-size: 18px;
  line-height: 1;
}

.review-card::before {
  content: attr(data-initials);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(159, 214, 244, 0.2), transparent 44%),
    rgba(12, 17, 20, 0.92);
}

.stars {
  color: var(--orange);
  font-size: 14px;
}

.map-label {
  position: absolute;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.map-logan {
  left: 30px;
  top: 44px;
}

.map-humboldt {
  left: 46%;
  top: 82px;
}

.map-west {
  right: 34px;
  top: 132px;
}

@media (max-width: 760px) {
  .decor-star,
  .brand-stamp {
    opacity: 0.28;
  }

  .reviews-stamp,
  .methods-stamp {
    display: none;
  }
}

.announcement-marquee {
  min-height: 34px;
}

.announcement-track {
  font-family: "Inter", Arial, sans-serif;
  align-items: center;
  min-height: 34px;
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 1.2;
}

@media (max-width: 760px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 20px 0;
    overflow: hidden;
  }

  .hero-grid {
    flex: 1 1 auto;
    min-height: 0;
    align-items: center;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-locale {
    font-size: 13px;
  }

  .hero-hook {
    margin-top: 18px;
  }

  .hero-text {
    max-width: 340px;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-buttons .btn {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .service-rail {
    width: 100%;
    max-width: none;
    min-height: 94px;
    display: flex;
    grid-template-columns: none;
    gap: 0;
    margin: 16px 0 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-rail::-webkit-scrollbar {
    display: none;
  }

  .service-rail article {
    flex: 0 0 min(76vw, 260px);
    min-height: 92px;
    grid-template-columns: 42px 1fr;
    padding: 14px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .service-rail h3 {
    font-size: 12px;
  }

  .service-rail p {
    font-size: 11px;
  }
}

/* Audience and process fidelity pass */
.audience-section {
  padding-top: 44px;
  padding-bottom: 38px;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.84), rgba(4, 5, 6, 0.96)),
    url("../assets/rebuild/png/background-dark-woven-pattern.png");
  background-size: cover;
}

.audience-section .section-heading {
  margin-bottom: 18px;
}

.audience-section .section-intro {
  max-width: 820px;
  margin-top: 6px;
  color: #d9e2e7;
  font-size: 14px;
  line-height: 1.25;
}

.audience-grid {
  max-width: 1088px;
  gap: 10px 14px;
}

.audience-card {
  height: 150px;
  min-height: 126px;
  grid-template-columns: 126px 1fr;
  gap: 10px;
  padding: 7px;
  border-color: rgba(159, 214, 244, 0.68);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(18, 22, 24, 0.95), rgba(4, 5, 6, 0.92)),
    rgba(5, 5, 5, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.audience-card img {
  height: 100%;
  min-height: 112px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: inset 0 0 0 7px var(--blue);
  filter: grayscale(0.15) saturate(0.72) contrast(0.88);
  opacity: 0.78;
}

.audience-card::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  bottom: 7px;
  width: 126px;
  z-index: 1;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(159, 214, 244, 0.7), rgba(159, 214, 244, 0.35)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.audience-card > div {
  position: relative;
  z-index: 2;
  align-self: center;
}

.audience-card::after {
  content: "\f2e7";
  z-index: 3;
  left: 140px;
  right: auto;
  top: 11px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
}

.audience-card:nth-child(2)::after {
  content: "\f807";
}

.audience-card:nth-child(3)::after {
  content: "\f1ad";
}

.audience-card:nth-child(4)::after {
  content: "\f19d";
}

.audience-card:nth-child(5)::after {
  content: "\f54e";
}

.audience-card:nth-child(6)::after {
  content: "\f073";
}

.audience-card h3 {
  padding-left: 36px;
  padding-right: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 0.92;
}

.audience-card p {
  margin: 6px 0 5px;
  color: #f1f5f7;
  font-size: 10.5px;
  line-height: 1.22;
}

.audience-card ul {
  gap: 2px 7px;
  margin-bottom: 4px;
}

.audience-card li {
  position: relative;
  color: var(--blue);
  font-size: 10px;
  line-height: 1.05;
}

.audience-card li::before {
  content: "*";
  margin-right: 3px;
  color: var(--red);
}

.audience-card a {
  display: block;
  color: #ffb15c;
  font-size: 10px;
  line-height: 1;
  text-align: right;
}

.help-line {
  max-width: 990px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.2;
}

.process-section {
  padding-top: 64px;
  padding-bottom: 58px;
  background:
    linear-gradient(180deg, rgba(4, 5, 6, 0.98), rgba(4, 5, 6, 0.94)),
    radial-gradient(circle at 50% 48%, rgba(246, 167, 64, 0.16), transparent 18rem);
}

.process-section::before {
  opacity: 0.2;
}

.process-section .section-intro {
  max-width: 720px;
  font-size: 13px;
}

.mascot-needle {
  right: clamp(-130px, -5vw, -28px);
  top: 92px;
  width: clamp(170px, 19vw, 250px);
  opacity: 0.58;
}

.timeline {
  max-width: 910px;
  min-height: 392px;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  gap: 10px 16px;
}

.timeline::before {
  width: 3px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff 0 3px, transparent 4px) center 12% / 28px 28px no-repeat,
    radial-gradient(circle, #fff 0 3px, transparent 4px) center 38% / 28px 28px no-repeat,
    radial-gradient(circle, #fff 0 3px, transparent 4px) center 64% / 28px 28px no-repeat,
    radial-gradient(circle, #fff 0 3px, transparent 4px) center 90% / 28px 28px no-repeat,
    linear-gradient(180deg, transparent, var(--orange) 20%, #ffffff 50%, var(--orange) 80%, transparent);
  box-shadow:
    0 0 18px rgba(246, 167, 64, 0.9),
    0 0 38px rgba(246, 167, 64, 0.48);
}

.step-card {
  min-height: 126px;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 8px 14px;
  padding: 14px;
  border-color: rgba(246, 167, 64, 0.68);
  background:
    linear-gradient(135deg, rgba(12, 15, 17, 0.96), rgba(5, 6, 7, 0.92)),
    rgba(6, 8, 9, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(159, 214, 244, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.38);
}

.step-left {
  border-color: rgba(159, 214, 244, 0.64);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.step-card span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.step-card h3 {
  margin-top: 0;
  font-size: 13px;
  line-height: 1;
}

.step-card p {
  margin-top: 4px;
  color: #d8e1e6;
  font-size: 11.5px;
  line-height: 1.3;
}

.step-card img {
  width: 128px;
  height: 90px;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.step-card::after {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: var(--orange);
  box-shadow:
    0 0 0 6px rgba(246, 167, 64, 0.14),
    0 0 20px var(--orange);
}

.step-left::after {
  right: -34px;
}

.step-right::after {
  left: -34px;
}

.center-cta {
  max-width: 790px;
  margin-top: 22px;
  padding: 13px 16px;
  border-color: rgba(246, 167, 64, 0.55);
}

@media (max-width: 1080px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .audience-section {
    padding: 38px 18px 34px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .audience-card {
    height: auto;
    grid-template-columns: 104px 1fr;
    min-height: 122px;
  }

  .audience-card::before {
    width: 104px;
  }

  .audience-card::after {
    left: 118px;
  }

  .audience-card h3 {
    font-size: 15px;
  }

  .process-section {
    padding: 48px 18px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .step-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px;
  }

  .step-card img {
    grid-column: 1;
    width: 100%;
    height: 134px;
  }

  .step-card::after {
    display: none;
  }
}

/* Methods and work gallery fidelity pass */
.methods-section {
  padding-top: 62px;
  padding-bottom: 48px;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.94), rgba(5, 6, 7, 0.98)),
    radial-gradient(circle at 9% 18%, rgba(159, 214, 244, 0.13), transparent 16rem),
    radial-gradient(circle at 90% 76%, rgba(246, 167, 64, 0.1), transparent 18rem),
    url("../assets/rebuild/png/background-dark-ornamental-border.png");
  background-size: cover;
}

.methods-section .section-intro {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.35;
}

.method-grid {
  max-width: 1160px;
  gap: 10px;
}

.method-grid article {
  position: relative;
  display: grid;
  grid-template-rows: 128px auto 1fr auto;
  min-height: 316px;
  padding: 10px;
  border-color: rgba(246, 167, 64, 0.7);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(14, 17, 18, 0.96), rgba(5, 6, 7, 0.94)),
    rgba(8, 10, 11, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(159, 214, 244, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.method-grid article::after {
  content: "";
  position: absolute;
  inset: auto -28px -30px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 167, 64, 0.14), transparent 62%);
  pointer-events: none;
}

.method-image {
  height: 128px;
  margin-bottom: 12px;
  border: 1px solid rgba(159, 214, 244, 0.22);
  border-radius: 5px;
}

.method-image img {
  filter: saturate(0.86) contrast(1.05);
}

.method-grid h3 {
  min-height: 42px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
}

.method-grid h3 i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 167, 64, 0.85);
  border-radius: 50%;
  color: var(--orange);
  font-size: 14px;
  background: rgba(246, 167, 64, 0.06);
}

.method-grid article:nth-child(even) {
  border-color: rgba(159, 214, 244, 0.68);
}

.method-grid article:nth-child(even) h3 i {
  border-color: rgba(159, 214, 244, 0.85);
  color: var(--blue);
  background: rgba(159, 214, 244, 0.08);
}

.method-grid p {
  min-height: 48px;
  margin: 8px 0 10px;
  color: #e4ebef;
  font-size: 12px;
  line-height: 1.28;
}

.method-grid small {
  position: relative;
  padding-left: 16px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.2;
}

.method-grid small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 9px;
  height: 9px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.info-strip {
  max-width: 1160px;
  margin-top: 14px;
  border-color: rgba(246, 167, 64, 0.62);
  background:
    linear-gradient(90deg, rgba(7, 9, 10, 0.98), rgba(14, 12, 10, 0.96)),
    rgba(8, 9, 10, 0.95);
}

.info-strip article,
.call-box {
  min-height: 84px;
  padding: 14px 18px;
}

.info-strip h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1;
}

.info-strip h3 i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 167, 64, 0.72);
  border-radius: 50%;
  color: var(--orange);
}

.info-strip p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.25;
}

.call-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #090909;
  font-size: 20px;
}

.call-box i {
  font-size: 18px;
}

.work-section {
  padding-top: 66px;
  padding-bottom: 86px;
  background:
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.92) 62%, #050505 100%),
    radial-gradient(circle at 10% 82%, rgba(159, 214, 244, 0.36), transparent 19rem),
    radial-gradient(circle at 88% 78%, rgba(239, 69, 61, 0.3), transparent 18rem),
    url("../assets/rebuild/png/background-dark-subtle-splatter.png");
  background-size: cover;
}

.work-section .section-intro {
  max-width: 780px;
  font-size: 13px;
  line-height: 1.35;
}

.work-splide {
  max-width: 1160px;
  margin-top: 6px;
}

.work-splide .splide__track {
  padding: 4px 2px 8px;
}

.work-splide .splide__slide {
  position: relative;
  border: 1px solid rgba(159, 214, 244, 0.5);
  border-radius: 4px;
  background: rgba(159, 214, 244, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.45),
    0 18px 34px rgba(0, 0, 0, 0.32);
}

.work-splide .splide__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 5, 5, 0.34));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.work-splide .splide__slide img {
  height: 230px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.work-splide .splide__arrow {
  width: 42px;
  height: 42px;
  border-color: var(--blue-deep);
  color: var(--orange);
  background: rgba(4, 5, 6, 0.92);
  box-shadow: 0 0 18px rgba(159, 214, 244, 0.22);
}

.work-splide .splide__arrows {
  inset: 50% -48px auto -48px;
}

.work-splide .splide__pagination {
  bottom: -28px;
}

.work-splide .splide__pagination__page {
  width: 9px;
  height: 9px;
}

.instagram-btn {
  min-height: 46px;
  margin-top: 34px;
  padding: 0 30px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.instagram-btn::before {
  content: "\f16d";
  margin-right: 10px;
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fresh-line {
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .info-strip article,
  .call-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 760px) {
  .methods-section,
  .work-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .method-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    grid-template-rows: 150px auto 1fr auto;
    min-height: 0;
  }

  .method-image {
    height: 150px;
  }

  .info-strip article,
  .call-box {
    border-right: 0;
  }

  .work-splide .splide__arrows {
    inset: auto 8px -58px 8px;
  }

  .work-splide .splide__slide img {
    height: 250px;
  }
}

/* Reviews and final CTA fidelity pass */
.reviews-section {
  padding-top: 68px;
  padding-bottom: 62px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.92) 56%, rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at 10% 70%, rgba(239, 69, 61, 0.2), transparent 16rem),
    radial-gradient(circle at 88% 64%, rgba(159, 214, 244, 0.18), transparent 18rem),
    url("../assets/rebuild/png/background-dark-grunge-splash.png");
  background-size: cover;
}

.reviews-section::before {
  opacity: 0.2;
}

.reviews-section .section-intro {
  max-width: 760px;
  color: #cfd9de;
  font-size: 13px;
  line-height: 1.35;
}

.reviews-section .section-intro em {
  font-style: italic;
  color: var(--blue);
}

.reviews-feedback-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 4px;
  padding: 0 20px;
  color: #c0c8cc;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.reviews-section .section-heading.compact {
  margin-bottom: 38px;
}

.reviews-feedback-line i {
  color: var(--blue);
  font-size: 16px;
}

.reviews-stamp {
  top: 78px;
  left: clamp(12px, 5vw, 72px);
  width: clamp(200px, 22vw, 360px);
  opacity: 0.35;
  filter: grayscale(1) brightness(0.6);
  mix-blend-mode: screen;
}

.mascot-waving {
  left: auto;
  right: clamp(-130px, -5vw, -34px);
  bottom: 34px;
  width: clamp(155px, 17vw, 230px);
  opacity: 0.42;
}

.reviews-splide {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 50px;
}

.reviews-splide .splide__track {
  padding: 4px 2px 10px;
}

.reviews-splide .splide__slide {
  height: auto;
}

.review-card {
  position: relative;
  min-height: 244px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 16px;
  border: 1px solid rgba(159, 214, 244, 0.34);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(13, 16, 18, 0.97), rgba(5, 6, 7, 0.95)),
    rgba(8, 10, 12, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.review-card::before {
  content: attr(data-initials);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(159, 214, 244, 0.72);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 14px;
  line-height: 1;
  background:
    radial-gradient(circle at 36% 28%, rgba(159, 214, 244, 0.24), transparent 42%),
    #101417;
}

.review-card.featured {
  border-color: rgba(246, 167, 64, 0.92);
  box-shadow:
    0 0 0 1px rgba(246, 167, 64, 0.28),
    0 20px 42px rgba(0, 0, 0, 0.42);
}

.review-card.featured::before {
  border-color: rgba(246, 167, 64, 0.86);
  color: var(--orange);
}

.review-card.featured::after {
  content: "Local Favorite";
  display: none;
  position: absolute;
  right: -34px;
  top: 18px;
  width: 128px;
  padding: 5px 0;
  color: #080808;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(42deg);
}

.review-top strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.16;
}

.review-top span {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 11px;
}

.stars {
  margin: 12px 0 8px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
}

.review-card p:last-child {
  color: #d8e1e6;
  font-size: 12px;
  line-height: 1.34;
}

.reviews-splide .splide__arrow {
  width: 38px;
  height: 38px;
  border-color: var(--blue-deep);
  color: var(--blue);
  background: rgba(4, 5, 6, 0.92);
  box-shadow: 0 0 18px rgba(159, 214, 244, 0.2);
}

.reviews-splide .splide__arrows {
  position: absolute;
  inset: 50% 6px auto 6px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.reviews-splide .splide__arrow {
  pointer-events: auto;
}

.reviews-splide .splide__pagination {
  bottom: -30px;
}

.reviews-splide .splide__pagination__page {
  clip-path: polygon(50% 0, 60% 38%, 100% 24%, 70% 52%, 100% 76%, 60% 62%, 50% 100%, 40% 62%, 0 76%, 30% 52%, 0 24%, 40% 38%);
}

.review-cta {
  max-width: 780px;
  margin-top: 36px;
  padding: 0;
}

.review-cta .btn {
  min-height: 48px;
}

.review-cta p {
  max-width: 330px;
  color: #d5e0e5;
  font-size: 13px;
  line-height: 1.3;
}

.quote-section {
  min-height: 540px;
  grid-template-columns: minmax(210px, 0.78fr) minmax(360px, 1fr) minmax(330px, 0.95fr);
  gap: 32px;
  padding-top: 60px;
  padding-bottom: 64px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.98)),
    radial-gradient(circle at 8% 60%, rgba(239, 69, 61, 0.2), transparent 16rem),
    radial-gradient(circle at 88% 26%, rgba(159, 214, 244, 0.18), transparent 18rem),
    url("../assets/rebuild/png/background-dark-subtle-splatter.png");
  background-size: cover;
}

.quote-section::before {
  left: -34px;
  bottom: 42px;
  width: 290px;
  height: 150px;
  opacity: 0.11;
}

.quote-star-right {
  top: 58px;
  right: clamp(18px, 5vw, 90px);
  width: clamp(56px, 7vw, 92px);
  opacity: 0.48;
}

.quote-art {
  min-height: 385px;
}

.quote-art::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 52px;
  width: 210px;
  height: 160px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 20%, rgba(159, 214, 244, 0.16), transparent 46%),
    rgba(8, 10, 12, 0.28);
  transform: rotate(-8deg);
}

.mascot-hardhat {
  left: -30px;
  bottom: 44px;
  width: min(225px, 50vw);
  opacity: 0.96;
}

.product-one,
.product-two {
  border-radius: 8px;
  border: 1px solid rgba(159, 214, 244, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.product-one {
  right: 12px;
  bottom: 92px;
  width: 148px;
  height: 148px;
  transform: rotate(8deg);
}

.product-two {
  right: 58px;
  bottom: 18px;
  width: 118px;
  height: 118px;
  transform: rotate(-9deg);
}

.quote-copy > p:first-child {
  justify-content: flex-start;
  color: var(--blue);
}

.quote-copy h2 {
  max-width: 540px;
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: 0.94;
}

.quote-copy > p:not(:first-child) {
  max-width: 430px;
  margin-top: 12px;
  color: #d8e1e6;
  font-size: 15px;
  line-height: 1.4;
}

.quote-copy .hero-buttons {
  margin-top: 24px;
}

.quote-copy .btn i {
  font-size: 14px;
}

.map-card {
  min-height: 350px;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 19, 22, 0.86), rgba(7, 8, 10, 0.92)),
    #111417;
  box-shadow:
    inset 0 0 0 1px rgba(159, 214, 244, 0.08),
    0 22px 46px rgba(0, 0, 0, 0.36);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(159, 214, 244, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.map-grid {
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.045) 49%, transparent 51%);
}

.map-pin {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(239, 69, 61, 0.45);
}

.map-card h3 {
  font-size: 25px;
}

.map-card p {
  margin-bottom: 46px;
  color: var(--blue);
}

.map-card > span:not(.map-label) {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 16px;
  line-height: 1.15;
}

.map-label {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.03em;
}

@media (max-width: 1080px) {
  .reviews-splide .splide__arrows {
    inset-inline: -34px;
  }

  .quote-section {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.9fr);
  }

  .quote-art {
    display: none;
  }
}

@media (max-width: 760px) {
  .reviews-section {
    padding: 56px 18px 58px;
  }

  .mascot-waving {
    display: none;
  }

  .reviews-splide .splide__arrows {
    display: none;
  }

  .review-card {
    min-height: 226px;
  }

  .review-cta {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .quote-section {
    grid-template-columns: 1fr;
    padding: 52px 18px;
  }

  .quote-copy h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .quote-copy .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .map-card {
    min-height: 330px;
  }

  .map-card > span:not(.map-label) {
    left: 28px;
    right: 28px;
    bottom: 28px;
    font-size: 13px;
  }

  .map-logan {
    left: 64px;
    top: 114px;
  }

  .map-humboldt {
    left: auto;
    right: 38px;
    top: 174px;
  }

  .map-west {
    left: 28px;
    right: auto;
    top: auto;
    bottom: 92px;
  }
}

.map-label {
  z-index: 0;
  opacity: 0.48;
}

.map-card h3,
.map-card p,
.map-card > span:not(.map-label),
.map-pin {
  z-index: 2;
}

.map-card > span:not(.map-label) {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 14px;
}

@media (max-width: 760px) {
  .map-card > span:not(.map-label) {
    max-width: 180px;
    font-size: 12px;
  }

  .map-label {
    opacity: 0.38;
  }
}

/* Generated mockup asset icons */
.btn-icon,
.service-icon,
.audience-icon,
.method-icon,
.info-icon,
.call-icon,
.support-inline-icon,
.map-pin {
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
}

.btn-icon {
  width: 25px;
  height: 25px;
}

.btn-primary .btn-icon {
  filter: brightness(0) saturate(100%);
}

.btn-secondary .btn-icon {
  width: 30px;
  height: 30px;
}

.service-rail article {
  grid-template-columns: 54px 1fr;
}

.service-icon {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
}

.audience-card::after {
  display: none;
}

.audience-card .audience-icon {
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 4;
  width: 30px;
  height: 30px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.method-image {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(159, 214, 244, 0.1), transparent 54%),
    rgba(3, 5, 6, 0.48);
  overflow: hidden;
}

.method-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.04);
}

.method-icon {
  width: 42px;
  height: 42px;
}

.method-grid h3 {
  grid-template-columns: 44px 1fr;
}

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

.call-icon {
  width: 42px;
  height: 42px;
  filter: brightness(0) saturate(100%);
}

.call-box {
  gap: 8px;
}

.instagram-btn {
  gap: 10px;
}

.instagram-btn .btn-icon {
  width: 29px;
  height: 29px;
}

.instagram-btn::before {
  content: none;
}

.review-cta p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-inline-icon {
  width: 48px;
  height: 48px;
}

.work-splide .splide__arrow svg,
.reviews-splide .splide__arrow svg {
  display: none;
}

.work-splide .splide__arrow,
.reviews-splide .splide__arrow {
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
  opacity: 1;
}

.work-splide .splide__arrow {
  width: 58px;
  height: 58px;
  background-size: 48px 48px;
}

.work-splide .splide__arrow--prev {
  background-image: url("../assets/icons/generated/work-arrow-left-orange.png");
}

.work-splide .splide__arrow--next {
  background-image: url("../assets/icons/generated/work-arrow-right-orange.png");
}

.reviews-splide .splide__arrow {
  width: 48px;
  height: 48px;
  background-size: 42px 42px;
}

.reviews-splide .splide__arrow--prev {
  background-image: url("../assets/icons/generated/review-arrow-left-blue.png");
}

.reviews-splide .splide__arrow--next {
  background-image: url("../assets/icons/generated/review-arrow-right-blue.png");
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 86px;
  margin-bottom: 4px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.map-pin::after {
  content: none;
}

@media (max-width: 760px) {
  .service-rail article {
    grid-template-columns: 48px minmax(118px, 1fr);
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .audience-card .audience-icon {
    width: 28px;
    height: 28px;
  }

  .audience-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .audience-card > div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 8px;
    align-content: center;
  }

  .audience-card .audience-icon {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .audience-card h3 {
    grid-column: 2;
    align-self: center;
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
  }

  .audience-card p,
  .audience-card ul,
  .audience-card a {
    grid-column: 1 / -1;
  }

  .audience-card p {
    margin-top: 7px;
  }

  .audience-card ul {
    gap: 3px 7px;
  }

  .method-icon,
  .info-icon {
    width: 36px;
    height: 36px;
  }

  .info-strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-color: rgba(246, 167, 64, 0.72);
    border-radius: 7px;
    background:
      linear-gradient(145deg, rgba(13, 16, 18, 0.97), rgba(5, 6, 7, 0.95)),
      rgba(8, 10, 12, 0.96);
    overflow: visible;
  }

  .info-strip article,
  .call-box {
    min-height: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .info-strip article {
    padding: 14px 8px;
    border-radius: 5px;
    background: rgba(4, 5, 6, 0.34);
  }

  .info-strip article:nth-of-type(1) {
    order: 1;
  }

  .info-strip article:nth-of-type(3) {
    order: 2;
  }

  .info-strip article:nth-of-type(2) {
    order: 3;
    margin: 0 8px;
    padding: 14px 18px 13px;
    border: 1px solid rgba(246, 167, 64, 0.34);
    border-radius: 5px;
    background:
      linear-gradient(145deg, rgba(12, 15, 17, 0.92), rgba(4, 5, 6, 0.9)),
      rgba(4, 5, 6, 0.42);
  }

  .info-strip h3 {
    gap: 9px;
    font-size: 13px;
    line-height: 1.08;
  }

  .info-strip p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.28;
  }

  .call-box {
    order: 4;
    min-height: 56px;
    margin: 0 8px;
    padding: 0 18px;
    border-radius: 5px;
    border: 2px solid #ff9a47;
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.34);
    font-size: 18px;
  }

  .call-icon {
    width: 29px;
    height: 29px;
    filter: brightness(0) saturate(100%);
  }

  .support-inline-icon {
    width: 42px;
    height: 42px;
  }

  .work-splide,
  .reviews-splide {
    width: calc(100vw - 36px);
    overflow: visible;
  }

  .work-splide .splide__track,
  .reviews-splide .splide__track {
    overflow: hidden;
  }

  .work-splide .splide__slide {
    width: calc(100vw - 58px) !important;
  }

  .reviews-splide .splide__slide {
    width: calc(100vw - 58px) !important;
  }

  .work-splide .splide__arrows {
    inset: auto 4px -58px 4px;
  }
}

/* Navbar logo lockup */
.main-header .container {
  grid-template-columns: 214px minmax(0, 1fr) auto;
}

.navbar-logo-lockup {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-lockup .navbar-logo-img {
  width: 178px;
  height: auto;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .main-header .container {
    grid-template-columns: 198px minmax(0, 1fr) auto;
  }

  .navbar-logo-lockup .navbar-logo-img {
    width: 166px;
  }
}

@media (max-width: 760px) {
  .main-header .container {
    grid-template-columns: 48px minmax(0, 1fr) 116px;
    grid-template-areas: "left logo right";
    gap: 8px;
  }

  .header-left {
    grid-area: left;
    justify-content: flex-start;
  }

  .header-right {
    grid-area: right;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .header-phone {
    display: none;
  }

  .header-right .header-icon-btn {
    display: grid;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .header-left,
  .header-right {
    position: relative;
    z-index: 2;
  }

  .logo-center {
    grid-area: logo;
    grid-column: auto;
    grid-row: 1;
    min-width: 0;
    pointer-events: none;
  }

  .navbar-logo-lockup {
    justify-content: center;
    margin-inline: auto;
    pointer-events: auto;
  }

  .navbar-logo-lockup .navbar-logo-img {
    width: 152px;
  }
}

@media (max-width: 430px) {
  .navbar-logo-lockup .navbar-logo-img {
    width: 134px;
  }
}

@media (max-width: 380px) {
  .main-header .container {
    grid-template-columns: 42px minmax(0, 1fr) 92px;
    grid-template-areas: "left logo right";
    gap: 6px;
  }

  .header-right {
    gap: 4px;
  }

  .header-right .header-icon-btn {
    display: grid;
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .navbar-logo-lockup .navbar-logo-img {
    width: 122px;
  }
}

.mobile-call-cta {
  display: none;
}

@media (max-width: 1080px) {
  .mobile-call-cta {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    left: auto;
    z-index: 940;
    width: min(276px, calc(100vw - 40px));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(159, 214, 244, 0.48);
    border-radius: 7px;
    background:
      linear-gradient(135deg, rgba(7, 13, 17, 0.9), rgba(5, 5, 5, 0.94)),
      url("../assets/rebuild/png/background-dark-woven-pattern.png"),
      rgba(5, 5, 5, 0.96);
    background-position: center;
    background-size: auto, 420px auto, auto;
    color: var(--blue);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(16px);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
    transition: transform 0.32s ease, opacity 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  }

  .header-wrapper.scrolled + .mobile-call-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.drawer-open .mobile-call-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px));
  }

  .mobile-call-cta__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(159, 214, 244, 0.62);
    border-radius: 50%;
    background: rgba(159, 214, 244, 0.08);
    color: var(--blue);
    font-size: 14px;
  }

  .mobile-call-cta__copy {
    display: grid;
    gap: 2px;
    text-align: left;
    line-height: 1;
  }

  .mobile-call-cta__copy strong {
    font-family: var(--heading);
    color: var(--blue);
    font-size: 18px;
    letter-spacing: 0;
  }

  .mobile-call-cta__copy small {
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media (max-width: 760px) {
  .mobile-call-cta {
    right: max(18px, env(safe-area-inset-right));
    left: max(18px, env(safe-area-inset-left));
    width: auto;
    min-height: 56px;
    justify-content: center;
    padding: 9px 16px;
  }
}

@media (max-width: 380px) {
  .mobile-call-cta {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 54px;
    padding-inline: 14px;
  }

  .mobile-call-cta__icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .mobile-call-cta__copy strong {
    font-size: 17px;
  }
}

/* Hero reference refinements */
.hero-locale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
  font-family: "Headley Sans", var(--heading);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-locale::after {
  content: none;
}

.hero-locale-accent {
  color: var(--blue);
}

h1 .hero-title-made {
  width: max-content;
  max-width: 100%;
  color: var(--blue);
  font-size: 1.52em;
  line-height: 0.74;
}

.hero-hook {
  width: max-content;
  max-width: 100%;
  align-items: center;
}

.hero-hook span:not(.star-mark) {
  min-width: 0;
}

.hero-hook-text {
  display: inline-block;
}

.hero-hook .star-mark {
  width: 24px;
  height: 24px;
}

@media (min-width: 1081px) {
  h1 {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .hero-locale {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.08;
  }

  h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(40px, 13.05vw, 86px);
    line-height: 0.9;
  }

  h1 .hero-title-line,
  h1 .hero-title-made {
    white-space: nowrap;
  }

  h1 .hero-title-made {
    font-size: 1.52em;
    line-height: 0.74;
  }

  .hero-hook {
    width: fit-content;
    max-width: 100%;
    gap: 8px;
    font-size: clamp(15px, 4.5vw, 19px);
    line-height: 1.12;
  }

  .hero-hook-text {
    max-width: min(21.5em, calc(100vw - 88px));
  }

  .hero-hook .star-mark {
    width: 18px;
    height: 18px;
  }

  .hero-hook .star-mark:last-child {
    display: none;
  }

  .hero-hook-text::after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-left: 7px;
    vertical-align: -0.16em;
    background: var(--red);
    clip-path: polygon(50% 0, 60% 38%, 100% 24%, 70% 52%, 100% 76%, 60% 62%, 50% 100%, 40% 62%, 0 76%, 30% 52%, 0 24%, 40% 38%);
  }
}

@media (max-width: 430px) {
  .hero-hook {
    gap: 6px;
  }

  .hero-hook-text {
    max-width: calc(100vw - 78px);
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(40px, 13.05vw, 56px);
  }

  h1 .hero-title-made {
    font-size: 1.52em;
    line-height: 0.74;
  }
}

/* Service rail reference pass */
.service-rail {
  max-width: var(--container);
  min-height: 86px;
  margin: 72px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.88), rgba(5, 5, 5, 0.9)),
    rgba(5, 5, 5, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-rail article {
  min-height: 86px;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 10px;
  padding: 14px 14px;
  border-right: 0;
  position: relative;
  background: transparent;
}

.service-rail article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--orange);
  opacity: 0.95;
}

.service-icon {
  width: 44px;
  height: 44px;
  align-self: center;
  filter: none;
}

.service-rail h3 {
  align-self: end;
  color: #FFFFFF;
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.service-rail p {
  align-self: start;
  margin-top: 4px;
  color: #FFFFFF;
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .service-rail {
    margin-top: 48px;
  }

  .service-rail article {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 8px;
    padding-inline: 12px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 760px) {
  .service-rail {
    min-height: 88px;
    margin: 18px 0 18px;
    background: rgba(5, 5, 5, 0.72);
  }

  .service-rail article {
    flex-basis: min(72vw, 272px);
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 88px;
    padding: 14px 16px;
  }

  .service-rail article:not(:last-child)::after {
    top: 16px;
    height: calc(100% - 32px);
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-rail h3 {
    font-size: 13px;
  }

  .service-rail p {
    font-size: 12px;
  }
}

/* Audience section fidelity pass */
.audience-section {
  position: relative;
  scroll-margin-top: 104px;
  padding: clamp(112px, 10vw, 132px) clamp(18px, 5vw, 72px) 38px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.12) 48%, rgba(5, 5, 5, 0.34)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.82)),
    url("../assets/rebuild/png/background-embroidery-type-pattern.png");
  background-position: center, center, center;
  background-size: auto, auto, cover;
  background-blend-mode: normal, normal, normal;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-section > .section-heading,
.audience-section > .audience-grid,
.audience-section > .help-line {
  position: relative;
  z-index: 2;
}

.audience-section .decor {
  z-index: 1;
}

.audience-section .section-heading {
  margin-bottom: 14px;
}

.audience-section .section-heading > p:first-child {
  margin-bottom: 12px;
  color: #FFFFFF;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1;
}

.audience-section .section-heading > p:first-child span {
  width: 24px;
  height: 24px;
}

.audience-section .section-heading h2 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.92;
}

.audience-section .section-intro {
  max-width: 870px;
  margin-top: 10px;
  color: #FFFFFF;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.08;
  font-weight: 1000;
}

.audience-section .section-intro span,
.help-line span {
  width: auto;
  height: auto;
  display: inline;
  flex: initial;
  background: transparent;
  clip-path: none;
  color: var(--blue);
}

.audience-section .section-intro span {
  display: block;
}

.audience-star-left,
.audience-star-right {
  display: none;
}

.audience-star-left {
  left: clamp(24px, 7vw, 92px);
  top: 92px;
}

.audience-star-right {
  right: clamp(24px, 7vw, 92px);
  top: 92px;
}

.audience-grid {
  max-width: 1090px;
  gap: 12px 14px;
}

.audience-card {
  height: 154px;
  min-height: 0;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(11, 12, 13, 0.9), rgba(3, 4, 5, 0.92)),
    rgba(5, 5, 5, 0.9);
  box-shadow: none;
}

.audience-card > img {
  min-height: 0;
  height: 100%;
  border-radius: 5px;
  background: var(--blue);
  filter: grayscale(1) contrast(1.05) brightness(1.05);
  opacity: 0.24;
}

.audience-card::before {
  left: 7px;
  top: 7px;
  bottom: 7px;
  width: 104px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(159, 214, 244, 0.92), rgba(159, 214, 244, 0.88)),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.22), transparent 46%);
  mix-blend-mode: normal;
  opacity: 0.96;
}

.audience-card > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr;
  column-gap: 5px;
  align-content: stretch;
  align-items: start;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  padding: 3px 6px 2px 0;
}

.audience-card .audience-icon {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 28px;
  height: 28px;
}

.audience-card h3 {
  grid-column: 2;
  grid-row: 1;
  min-height: 32px;
  display: grid;
  align-content: center;
  align-self: center;
  padding-left: 0;
  color: #FFFFFF;
  font-family: var(--card-heading);
  font-size: 19.5px;
  line-height: 0.9;
  font-weight: 1000;
  font-stretch: 82%;
  font-variation-settings: "wght" 900, "wdth" 82;
  letter-spacing: 0;
}

.audience-card p,
.audience-card ul,
.audience-card a {
  grid-column: 1 / -1;
}

.audience-card p {
  margin: 5px 0 4px;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
}

.audience-card ul {
  gap: 2px 8px;
  margin-bottom: 2px;
}

.audience-card li {
  color: var(--blue);
  font-size: 10.8px;
  line-height: 1.08;
}

.audience-card li::before {
  content: "\2736";
  margin-right: 4px;
  color: var(--red);
  font-size: 1.1em;
  line-height: 0;
}

.audience-card a {
  align-self: end;
  color: var(--orange);
  font-size: 11.5px;
  line-height: 1;
  text-align: right;
}

.audience-card a::after {
  content: " ->";
}

.help-line {
  max-width: 980px;
  margin-top: 18px;
  color: #FFFFFF;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
}

.help-line strong {
  font-weight: 1000;
}

.help-line a {
  display: block;
  margin-top: 2px;
  color: var(--orange);
  font-weight: 500;
}

@media (max-width: 1080px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .audience-card::before {
    width: 112px;
  }
}

@media (max-width: 760px) {
  .audience-section {
    padding: 96px 18px 36px;
    background-size: auto, auto, auto 100%;
  }

  .audience-section .section-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

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

  .audience-card {
    height: auto;
    min-height: 126px;
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 8px;
  }

  .audience-card::before {
    width: 104px;
  }

  .audience-card > div {
    padding-right: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
  }

  .audience-card .audience-icon {
    width: 30px;
    height: 30px;
  }

  .audience-card h3 {
    min-height: 30px;
    font-size: 16px;
    line-height: 1;
  }

  .audience-card p {
    font-size: 11.5px;
  }

  .audience-card li {
    font-size: 10.5px;
  }

  .audience-card a {
    font-size: 10.5px;
  }

  .audience-star-left,
  .audience-star-right {
    width: 64px;
    top: 76px;
    opacity: 0.38;
  }
}

/* Process section reference pass */
.process-section {
  isolation: isolate;
  padding: 70px clamp(18px, 5vw, 72px) 54px;
  color: #FFFFFF;
  background-color: #020202;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.96), rgba(3, 3, 3, 0.98) 48%, #020202 100%),
    radial-gradient(circle at 50% 52%, rgba(246, 167, 64, 0.06), transparent 17rem);
}

.process-section::before {
  z-index: 0;
  opacity: 0.12;
  background-image: url("../assets/rebuild/png/background-dark-grunge-splash.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.25);
}

.process-section > .section-heading,
.process-section > .timeline,
.process-section > .center-cta {
  position: relative;
  z-index: 2;
}

.process-deco {
  position: absolute;
  z-index: 1;
  max-width: none;
  height: auto;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: normal;
}

.process-deco-left {
  width: clamp(480px, 42vw, 660px);
  left: clamp(-235px, -13vw, -104px);
  top: clamp(16px, 3vw, 44px);
}

.process-deco-right {
  width: clamp(620px, 50vw, 790px);
  right: clamp(-280px, -12vw, -120px);
  top: clamp(4px, 2.3vw, 30px);
}

.process-section .section-heading {
  margin-bottom: 30px;
}

.process-section .section-heading > p:first-child {
  color: var(--blue);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1;
}

.process-section .section-heading h2 {
  color: #FFFFFF;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.9;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.08);
}

.process-section .section-heading h2 strong {
  color: #F6A740;
}

.process-section .section-intro {
  max-width: 760px;
  color: #FFFFFF;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.25;
  font-weight: 700;
}

.process-section .timeline {
  max-width: 990px;
  min-height: 398px;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  gap: 14px 24px;
}

.process-section .timeline::before {
  z-index: 0;
  width: 2px;
  box-shadow:
    0 0 22px rgba(246, 167, 64, 0.92),
    0 0 44px rgba(246, 167, 64, 0.34);
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.28) 7%, #FFFFFF 18%, #FFFFFF 82%, rgba(255, 255, 255, 0.28) 93%, transparent 100%);
}

.process-section .step-card {
  z-index: 2;
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 38%);
  gap: 8px 18px;
  padding: 16px 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(0, 0, 0, 0.95)),
    rgba(3, 3, 3, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  overflow: visible;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 40px rgba(0, 0, 0, 0.58);
}

.process-section .step-left {
  border-left-color: rgba(159, 214, 244, 0.9);
  box-shadow:
    inset 1px 0 0 rgba(159, 214, 244, 0.56),
    -4px 0 14px -10px rgba(159, 214, 244, 0.95),
    0 18px 40px rgba(0, 0, 0, 0.58);
}

.process-section .step-right {
  border-right-color: rgba(246, 167, 64, 0.9);
  box-shadow:
    inset -1px 0 0 rgba(246, 167, 64, 0.52),
    4px 0 16px -10px rgba(246, 167, 64, 0.98),
    0 18px 40px rgba(0, 0, 0, 0.58);
}

.process-section .step-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 78px;
  height: 44px;
  border: 0;
  opacity: 0.9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 7px currentColor);
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
}

.process-section .step-left::before {
  right: -72px;
  color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86 44'%3E%3Cpath d='M82 21 C58 20 52 34 31 31 C19 29 13 22 8 22' fill='none' stroke='%239FD6F4' stroke-width='2.2' stroke-linecap='round' stroke-dasharray='6 5'/%3E%3Cpath d='M3 22 L12 16 L12 28 Z' fill='%239FD6F4'/%3E%3C/svg%3E");
}

.process-section .step-right::before {
  left: -72px;
  color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86 44'%3E%3Cpath d='M4 22 C28 20 34 34 55 31 C67 29 73 22 78 22' fill='none' stroke='%23F6A740' stroke-width='2.2' stroke-linecap='round' stroke-dasharray='6 5'/%3E%3Cpath d='M83 22 L74 16 L74 28 Z' fill='%23F6A740'/%3E%3C/svg%3E");
}

.process-section .step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: #F6A740;
  box-shadow:
    inset 0 0 0 4px #EF453D,
    0 0 0 5px rgba(246, 167, 64, 0.18),
    0 0 22px #F6A740;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}

.process-section .step-left::after {
  right: -73px;
}

.process-section .step-right::after {
  left: -73px;
}

@media (min-width: 761px) {
  .process-section .timeline {
    display: block;
    min-height: 390px;
  }

  .process-section .timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    height: auto;
    transform: translateX(-50%);
  }

  .process-section .step-card {
    position: absolute;
    width: calc((100% - 126px) / 2);
  }

  .process-section .step-card:nth-of-type(1) {
    top: 0;
    left: 0;
  }

  .process-section .step-card:nth-of-type(2) {
    top: 52px;
    right: 0;
  }

  .process-section .step-card:nth-of-type(3) {
    top: 176px;
    left: 0;
  }

  .process-section .step-card:nth-of-type(4) {
    top: 228px;
    right: 0;
  }
}

.process-section .step-card span {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0;
  color: var(--blue);
  font-size: 22px;
}

.process-section .step-right span {
  color: var(--orange);
}

.process-section .step-card span::after {
  content: "\2736";
  width: 52px;
  height: auto;
  color: var(--red);
  background: linear-gradient(90deg, rgba(159, 214, 244, 0.34), rgba(159, 214, 244, 0)) right center / 34px 1px no-repeat;
  font-family: var(--body);
  font-size: 13px;
  line-height: 1;
}

.process-section .step-card h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 10px 0 0;
  color: #FFFFFF;
  font-family: var(--card-heading);
  font-size: 15px;
  line-height: 1.02;
}

.process-section .step-card p {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  margin: 8px 0 0;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 700;
}

.process-section .step-card img {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  width: 100%;
  height: 116px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: saturate(1.03) contrast(1.05);
}

.process-section .step-card img.step-image-contain {
  object-fit: contain;
  background: #050608;
}

.process-section .center-cta {
  max-width: 820px;
  min-height: 60px;
  margin-top: 26px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 28px;
  background: rgba(4, 4, 4, 0.9);
  border-color: rgba(246, 167, 64, 0.46);
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.process-section .center-cta::before,
.process-section .center-cta::after {
  content: "\2736";
  align-self: center;
  width: clamp(88px, 14vw, 176px);
  min-width: 74px;
  color: var(--red);
  flex: 1 1 0;
  font-size: 16px;
  line-height: 1;
}

.process-section .center-cta::before {
  padding-right: 18px;
  text-align: right;
  background: linear-gradient(90deg, rgba(159, 214, 244, 0), rgba(159, 214, 244, 0.28)) left center / calc(100% - 38px) 1px no-repeat;
}

.process-section .center-cta::after {
  padding-left: 18px;
  text-align: left;
  background: linear-gradient(90deg, rgba(159, 214, 244, 0.28), rgba(159, 214, 244, 0)) right center / calc(100% - 38px) 1px no-repeat;
}

.process-section .center-cta span {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 16px;
}

.process-section .center-cta .btn {
  min-height: 42px;
  min-width: 230px;
  padding-inline: 34px;
  box-shadow: none;
  border-radius: 4px;
  white-space: nowrap;
}

.process-section .center-cta .btn::after {
  content: " ->";
}

@media (min-width: 761px) and (max-width: 980px) {
  .process-section .timeline {
    max-width: 860px;
    min-height: 610px;
  }

  .process-section .step-card {
    width: calc((100% - 126px) / 2);
    min-height: 210px;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 36%);
    grid-template-rows: auto auto auto;
    align-content: center;
    align-items: center;
    gap: 8px 12px;
    padding: 14px 16px;
  }

  .process-section .step-card:nth-of-type(1) {
    top: 0;
  }

  .process-section .step-card:nth-of-type(2) {
    top: 90px;
  }

  .process-section .step-card:nth-of-type(3) {
    top: 286px;
  }

  .process-section .step-card:nth-of-type(4) {
    top: 376px;
  }

  .process-section .step-card h3 {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.04;
  }

  .process-section .step-card p {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.25;
  }

  .process-section .step-card img {
    height: 118px;
  }

  .process-section .center-cta {
    max-width: min(820px, calc(100% - 40px));
  }
}

@media (max-width: 760px) {
  .process-section {
    padding: 58px 18px 46px;
  }

  .process-deco {
    opacity: 0.36;
  }

  .process-deco-left {
    width: 430px;
    left: -220px;
    top: 42px;
  }

  .process-deco-right {
    width: 500px;
    right: -250px;
    top: 76px;
  }

  .process-section .section-heading {
    margin-bottom: 24px;
  }

  .process-section .section-heading h2 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .process-section .section-intro {
    max-width: 34em;
    font-size: 13px;
    line-height: 1.3;
  }

  .process-section .timeline {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px 10px;
    min-height: auto;
    max-width: 460px;
  }

  .process-section .timeline::before {
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 17px;
    width: 2px;
    height: auto;
    grid-column: auto;
    grid-row: auto;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6) 12%, #FFFFFF 50%, rgba(255, 255, 255, 0.6) 88%, transparent);
    box-shadow:
      0 0 16px rgba(246, 167, 64, 0.82),
      0 0 30px rgba(246, 167, 64, 0.28);
    transform: none;
  }

  .process-section .step-card::before,
  .process-section .step-card::after {
    display: block;
  }

  .process-section .step-card::before {
    top: 46px;
    left: -25px;
    right: auto;
    width: 26px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 20'%3E%3Cpath d='M2 10 C10 7 16 13 25 10' fill='none' stroke='%239FD6F4' stroke-width='2' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3Cpath d='M30 10 L22 5 L22 15 Z' fill='%239FD6F4'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 6px currentColor);
    transform: translateY(-50%);
  }

  .process-section .step-right::before {
    left: -25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 20'%3E%3Cpath d='M2 10 C10 7 16 13 25 10' fill='none' stroke='%23F6A740' stroke-width='2' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3Cpath d='M30 10 L22 5 L22 15 Z' fill='%23F6A740'/%3E%3C/svg%3E");
  }

  .process-section .step-card::after {
    top: 46px;
    left: -36px;
    right: auto;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
  }

  .process-section .step-right::after {
    left: -36px;
  }

  .process-section .step-card:nth-of-type(1)::before,
  .process-section .step-card:nth-of-type(1)::after {
    top: 54px;
  }

  .process-section .step-card:nth-of-type(1)::after {
    top: 54px;
  }

  .process-section .step-card:nth-of-type(2)::before,
  .process-section .step-card:nth-of-type(2)::after {
    top: 54px;
  }

  .process-section .step-card:nth-of-type(3)::before,
  .process-section .step-card:nth-of-type(3)::after,
  .process-section .step-card:nth-of-type(4)::before,
  .process-section .step-card:nth-of-type(4)::after {
    top: 54px;
  }

  .process-section .step-card::after {
    box-shadow:
      inset 0 0 0 4px #EF453D,
      0 0 0 4px rgba(246, 167, 64, 0.18),
      0 0 18px #F6A740;
  }

  .process-section .timeline > .step-card {
    grid-column: 2;
  }

  .process-section .step-card {
    grid-column: 2;
  }

  .process-section .timeline::after {
    display: none;
  }

  .process-section .step-card {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 10px;
    min-height: 0;
    padding: 12px;
    overflow: visible;
  }

  .process-section .step-card img {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: clamp(142px, 42vw, 178px);
    margin-bottom: 12px;
  }

  .process-section .step-card span {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    min-width: 40px;
    font-size: 21px;
    line-height: 1;
  }

  .process-section .step-card span::after {
    width: 16px;
    background: none;
  }

  .process-section .step-card h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin: 0;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 0.96;
  }

  .process-section .step-card p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 9px 0 0;
    font-size: 13px;
    line-height: 1.33;
  }

  .process-section .center-cta {
    max-width: 460px;
    margin-top: 18px;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    text-align: center;
  }

  .process-section .center-cta::before,
  .process-section .center-cta::after {
    display: none;
  }

  .process-section .center-cta span {
    justify-self: center;
  }
}

/* Hero short-viewport floor */
.hero {
  min-height: max(100dvh, 760px);
}

@media (min-width: 1081px) {
  .hero {
    min-height: max(100dvh, 820px);
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: max(100dvh, 760px);
    overflow: hidden;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: max(100dvh, 735px);
  }
}

/* Print methods cleaner layout pass */
.methods-section {
  isolation: isolate;
  position: relative;
  padding: clamp(72px, 7vw, 92px) clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.96), rgba(5, 5, 5, 0.98) 48%, #050505),
    radial-gradient(circle at 50% 40%, rgba(246, 167, 64, 0.06), transparent 22rem),
    #050505;
}

.methods-section::before,
.methods-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.methods-section::before {
  left: clamp(-72px, -3vw, -20px);
  top: clamp(42px, 6vw, 86px);
  width: clamp(430px, 45vw, 720px);
  height: clamp(250px, 30vw, 430px);
  opacity: 0.055;
  background-image: url("../artesanos sanchez website/dog pics/chatgpt Image Jun 16, 2026, 10_55_56 PM (7).png");
  background-position: left top;
  filter: grayscale(1) contrast(1.1);
}

.methods-section::after {
  right: clamp(-74px, -3vw, -18px);
  top: clamp(38px, 5vw, 74px);
  width: clamp(440px, 45vw, 700px);
  height: clamp(250px, 31vw, 430px);
  opacity: 0.44;
  background-image: url("../Artesanos Sanchez Website/Chicago Skyline Artesanos Sanchez Website.png");
  background-position: right top;
}

.methods-section > .section-heading,
.methods-section > .method-grid,
.methods-section > .info-strip,
.methods-section > .methods-cta {
  position: relative;
  z-index: 2;
}

.methods-stamp,
.methods-star-right {
  display: none;
}

.methods-section .section-heading {
  margin-bottom: 22px;
}

.methods-section .section-heading > p:first-child {
  color: var(--blue);
  font-size: clamp(15px, 1.45vw, 19px);
}

.methods-section .section-heading h2 {
  color: #FFFFFF;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.92;
}

.methods-section .section-heading h2 strong {
  color: var(--orange);
}

.methods-section .section-intro {
  max-width: 720px;
  color: #FFFFFF;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.28;
}

.method-grid {
  max-width: 1100px;
  gap: 12px;
}

.methods-section .method-grid article {
  min-height: 286px;
  grid-template-rows: auto auto 1fr auto;
  padding: 10px;
  border: 1px solid rgba(246, 167, 64, 0.5);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(6, 7, 8, 0.94), rgba(2, 2, 2, 0.96)),
    rgba(4, 4, 4, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 40px rgba(0, 0, 0, 0.46);
}

.methods-section .method-grid article:nth-child(even) {
  border-color: rgba(159, 214, 244, 0.42);
}

.methods-section .method-grid article::after {
  inset: auto -34px -38px auto;
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(246, 167, 64, 0.12), transparent 66%);
}

.methods-section .method-image {
  aspect-ratio: 1 / 1;
  height: auto;
  margin-bottom: 12px;
  border-color: rgba(159, 214, 244, 0.2);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 50%, rgba(159, 214, 244, 0.12), transparent 58%),
    rgba(8, 10, 11, 0.54);
}

.methods-section .method-image img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.methods-section .method-grid h3 {
  min-height: 40px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  color: #FFFFFF;
  font-family: var(--card-heading);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 0.98;
}

.methods-section .method-icon {
  width: 34px;
  height: 34px;
}

.methods-section .method-grid p {
  min-height: 0;
  margin: 9px 0 12px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.32;
}

.methods-section .method-grid small {
  color: var(--blue);
  font-size: 11px;
  line-height: 1.2;
}

.methods-section .info-strip {
  max-width: 1100px;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(246, 167, 64, 0.52);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(6, 6, 6, 0.98)),
    rgba(5, 5, 5, 0.96);
  overflow: hidden;
}

.methods-section .info-strip article,
.methods-section .call-box {
  min-height: 76px;
  padding: 13px 18px;
}

.methods-section .info-strip article:last-child {
  border-right: 0;
}

.methods-section .info-strip h3 {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.05;
}

.methods-section .info-strip p {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.26;
}

.methods-section .call-box {
  min-width: 190px;
  color: #070707;
  font-size: 19px;
  background: var(--orange);
}

.methods-section .call-icon {
  width: 34px;
  height: 34px;
}

.methods-section .methods-cta {
  max-width: 820px;
  min-height: 68px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 11px 14px 11px 24px;
  border: 1px solid rgba(246, 167, 64, 0.46);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(8, 7, 6, 0.97)),
    rgba(5, 5, 5, 0.96);
}

.methods-section .methods-cta h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--card-heading);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.methods-section .methods-cta p {
  margin: 5px 0 0;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.methods-section .methods-cta .call-box {
  min-width: 220px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
}

@media (max-width: 1080px) {
  .methods-section .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .methods-section .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .methods-section .call-box {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .methods-section {
    padding: 64px 18px 44px;
  }

  .methods-section::before {
    left: -130px;
    top: 52px;
    width: 470px;
    opacity: 0.32;
  }

  .methods-section::after {
    right: -150px;
    top: 56px;
    width: 520px;
    opacity: 0.28;
  }

  .methods-section .section-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .methods-section .method-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .methods-section .method-grid article {
    min-height: 0;
    grid-template-rows: auto auto auto auto;
  }

  .methods-section .method-image {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .methods-section .info-strip {
    max-width: 460px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 7px;
    overflow: visible;
  }

  .methods-section .info-strip article,
  .methods-section .call-box {
    min-height: 0;
    padding: 14px;
    border-radius: 5px;
  }

  .methods-section .call-box {
    min-height: 56px;
  }

  .methods-section .methods-cta {
    max-width: 460px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .methods-section .methods-cta .call-box {
    width: 100%;
    min-width: 0;
  }
}

/* Tablet-mobile cleanup for process and methods sections */
@media (min-width: 481px) and (max-width: 760px) {
  .process-section {
    padding-right: clamp(18px, 4vw, 28px);
    padding-left: clamp(18px, 4vw, 28px);
  }

  .process-section .timeline {
    max-width: 620px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px 10px;
  }

  .process-section .timeline::before {
    left: 16px;
  }

  .process-section .step-card {
    min-height: 144px;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 32%);
    grid-template-rows: auto auto 1fr;
    align-items: center;
    gap: 6px 12px;
    padding: 12px;
  }

  .process-section .step-card::before,
  .process-section .step-card::after,
  .process-section .step-card:nth-of-type(1)::before,
  .process-section .step-card:nth-of-type(1)::after,
  .process-section .step-card:nth-of-type(2)::before,
  .process-section .step-card:nth-of-type(2)::after,
  .process-section .step-card:nth-of-type(3)::before,
  .process-section .step-card:nth-of-type(3)::after,
  .process-section .step-card:nth-of-type(4)::before,
  .process-section .step-card:nth-of-type(4)::after {
    top: 50%;
  }

  .process-section .step-card img {
    grid-column: 2;
    grid-row: 1 / span 3;
    height: clamp(104px, 22vw, 116px);
    margin-bottom: 0;
  }

  .process-section .step-card span,
  .process-section .step-card h3,
  .process-section .step-card p {
    grid-column: 1;
  }

  .process-section .step-card span {
    grid-row: 1;
    align-self: end;
    min-width: 0;
    font-size: 20px;
  }

  .process-section .step-card h3 {
    grid-row: 2;
    align-self: start;
    font-size: clamp(16px, 3.8vw, 18px);
  }

  .process-section .step-card p {
    grid-row: 3;
    margin-top: 5px;
    font-size: clamp(11.2px, 2.55vw, 12px);
    line-height: 1.25;
  }

  .process-section .center-cta {
    max-width: 620px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 13px 18px;
  }

  .methods-section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .methods-section .method-grid {
    max-width: 640px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .methods-section .method-grid article {
    grid-template-rows: auto auto 1fr auto;
  }

  .methods-section .info-strip {
    max-width: 640px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .methods-section .info-strip article {
    padding: 14px 16px;
  }

  .methods-section .methods-cta {
    max-width: 640px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 14px 16px 14px 20px;
    text-align: left;
  }

  .methods-section .methods-cta .call-box {
    width: auto;
    min-width: 210px;
  }
}

@media (max-width: 480px) {
  .process-section .timeline {
    max-width: 430px;
  }
}

/* Mobile methods support cards cleanup */
@media (max-width: 760px) {
  .methods-section .info-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 460px;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .methods-section .info-strip article {
    order: initial;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(159, 214, 244, 0.36);
    border-radius: 6px;
    background:
      linear-gradient(145deg, rgba(8, 10, 11, 0.94), rgba(3, 4, 5, 0.96)),
      rgba(5, 5, 5, 0.94);
  }

  .methods-section .info-strip article:last-child {
    border-right: 1px solid rgba(159, 214, 244, 0.36);
  }

  .methods-section .info-strip h3 {
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.08;
  }

  .methods-section .info-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .methods-section .info-strip p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.28;
  }

  .methods-section .methods-cta {
    max-width: 460px;
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .methods-section .info-strip {
    grid-template-columns: 1fr;
  }

  .methods-section .info-strip h3 {
    font-size: 13px;
  }

  .methods-section .info-strip p {
    font-size: 12px;
  }
}

/* Keep the methods footer rows aligned with the two-column grid at tablet widths */
@media (min-width: 481px) and (max-width: 760px) {
  .methods-section .info-strip,
  .methods-section .methods-cta {
    width: 100%;
    max-width: 640px;
  }

  .methods-section .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .methods-section .info-strip article {
    padding: 14px 16px;
  }

  .methods-section .methods-cta {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.9fr);
    gap: 16px;
    padding: 14px 16px 14px 20px;
    text-align: left;
  }

  .methods-section .methods-cta .call-box {
    width: 100%;
    min-width: 0;
  }
}

/* Portfolio conveyor port from the earlier mockup */
.work-section {
  overflow: hidden;
}

.work-section .section-heading {
  position: relative;
  z-index: 2;
}

.portfolio-conveyor-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
  transform: translateX(-50%);
}

.portfolio-splide {
  width: 100%;
}

.portfolio-splide .splide__track {
  overflow: visible;
}

.portfolio-splide .splide__slide {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(159, 214, 244, 0.32);
  border-radius: 3px;
  background: #050505;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.portfolio-splide .splide__slide img,
.portfolio-splide .splide__slide video {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
}

.portfolio-splide .splide__slide::after {
  content: "\f16d";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: #FFFFFF;
  font-family: "Font Awesome 6 Brands";
  font-size: 18px;
  line-height: 1;
  opacity: 0.72;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.portfolio-splide .splide__arrow,
.portfolio-splide .splide__pagination {
  display: none;
}

.work-socials {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.work-social-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid rgba(159, 214, 244, 0.78);
  border-radius: 4px;
  color: var(--blue);
  background: rgba(5, 5, 5, 0.78);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  text-decoration: none;
}

.work-social-btn-primary {
  min-width: min(300px, 100%);
  border-color: var(--orange);
  color: #050505;
  background: var(--orange);
}

.work-social-btn i {
  font-size: 18px;
}

@media (max-width: 760px) {
  .portfolio-conveyor-wrapper {
    gap: 10px;
    margin-top: 26px;
  }

  .portfolio-splide .splide__slide {
    border-width: 1px;
  }

  .work-socials {
    gap: 8px;
    padding: 0 18px;
  }

  .work-social-btn {
    min-height: 44px;
  }

  .work-social-btn-primary {
    flex-basis: min(100%, 300px);
  }
}

/* Real testimonial logos */
.review-card::before {
  display: none;
}

.review-card {
  min-height: 270px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  padding: 24px 20px;
}

.review-logo {
  width: 96px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.review-card--brand .review-logo {
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}

.review-google-badge {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.review-google-badge i {
  color: var(--orange);
  font-size: 14px;
}

.review-card .review-top strong {
  font-size: 15px;
}

.review-card .review-top span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.review-body {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: -2px;
  margin-top: 15px;
}

.review-body .stars {
  margin: 0;
}

.review-card .review-body p:last-child {
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .reviews-splide {
    padding: 0;
  }

  .review-body {
    display: contents;
  }

  .review-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto;
    padding: 16px;
  }

  .review-logo {
    width: 74px;
    height: 52px;
    margin-bottom: 14px;
  }

  .review-card .stars {
    margin: 16px 0 18px;
  }

  .review-card p:last-child {
    align-self: start;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .reviews-splide .splide__track {
    padding-inline: 10px;
  }

  .reviews-splide .splide__slide {
    width: calc(100vw - 58px) !important;
  }

  .review-card {
    padding: 16px;
  }
}

/* Review card responsive composition */
@media (min-width: 521px) and (max-width: 760px) {
  .review-card {
    min-height: 0;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 18px;
    padding: 18px;
  }

  .review-logo,
  .review-google-badge {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .review-logo {
    width: 96px;
    height: 96px;
    object-position: center;
  }

  .review-card--brand .review-logo {
    padding: 0;
  }

  .review-google-badge {
    width: 96px;
    min-height: 72px;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .review-top,
  .review-card .stars,
  .review-card p:last-child {
    grid-column: 2;
  }

  .review-top {
    grid-row: 1;
    padding-top: 2px;
  }

  .review-card .stars {
    grid-row: 2;
    margin: 4px 0 4px;
  }

  .review-card p:last-child {
    grid-row: 3;
    align-self: start;
  }
}

@media (max-width: 520px) {
  .review-card {
    grid-template-columns: 74px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 12px;
  }

  .review-logo,
  .review-google-badge {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
  }

  .review-logo {
    width: 64px;
    height: 64px;
    object-position: center;
  }

  .review-card--brand .review-logo {
    padding: 0;
  }

  .review-google-badge {
    width: 64px;
    min-height: 64px;
    justify-content: center;
    padding: 6px;
    text-align: center;
    white-space: normal;
  }

  .review-top {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .review-card .stars {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 8px 0 0;
  }

  .review-card p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 16px;
  }
}

@media (max-width: 520px) {
  .reviews-splide .splide__slide {
    width: min(82vw, 330px) !important;
  }

  .review-card {
    aspect-ratio: 1 / 1;
    min-height: auto;
    align-content: center;
    row-gap: 0;
  }
}

/* Keep the featured review ribbon above the card stroke */
.review-card.featured {
  overflow: visible;
  isolation: isolate;
}

.review-card.featured::after {
  z-index: 5;
  top: 12px;
  right: -38px;
  width: 138px;
  padding: 6px 0;
  border: 1px solid rgba(5, 5, 5, 0.55);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

/* Reviews background texture pass */
.reviews-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(159, 214, 244, 0.055), transparent 27rem),
    linear-gradient(180deg, #050505 0%, #030303 52%, #050505 100%);
}

.reviews-section::before {
  display: none;
}

.reviews-texture,
.reviews-buildings {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.reviews-texture {
  max-width: none;
  mix-blend-mode: screen;
}

.reviews-texture-left {
  left: clamp(-220px, -12vw, -86px);
  bottom: clamp(-160px, -9vw, -70px);
  width: clamp(520px, 58vw, 880px);
  opacity: 0.78;
}

.reviews-texture-right {
  right: clamp(-360px, -20vw, -150px);
  top: clamp(28px, 6vw, 78px);
  width: clamp(660px, 72vw, 1040px);
  opacity: 0.78;
}

.reviews-stamp {
  display: block;
  top: clamp(52px, 7vw, 86px);
  left: clamp(10px, 5vw, 76px);
  z-index: 0;
  width: clamp(220px, 24vw, 400px);
  opacity: 0.35;
  transform: rotate(-14deg);
  filter: grayscale(1) brightness(0.6);
  mix-blend-mode: screen;
}

.reviews-buildings {
  top: clamp(42px, 6vw, 84px);
  bottom: auto;
  right: clamp(-160px, -8vw, -58px);
  width: clamp(700px, 66vw, 1120px);
  opacity: 0.9;
  mix-blend-mode: screen;
  filter: saturate(1.1) contrast(1.08) drop-shadow(0 0 18px rgba(0, 174, 239, 0.22));
}

.reviews-section .section-heading,
.reviews-section .reviews-splide,
.reviews-section .review-cta {
  z-index: 2;
}

@media (max-width: 760px) {
  .reviews-texture-left {
    left: -230px;
    bottom: -110px;
    width: 620px;
    opacity: 0.58;
  }

  .reviews-texture-right {
    right: -365px;
    top: 66px;
    width: 780px;
    opacity: 0.6;
  }

  .reviews-stamp {
    display: block;
    left: -38px;
    top: 76px;
    width: 200px;
    opacity: 0.25;
    filter: grayscale(1) brightness(0.6);
    mix-blend-mode: screen;
  }

  .reviews-buildings {
    top: 78px;
    bottom: auto;
    right: -230px;
    width: 620px;
    opacity: 0.42;
  }
}

/* Reviews to quote transition cleanup */
.reviews-section {
  padding-bottom: clamp(34px, 5vw, 54px);
}

.reviews-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(95px, 12vw, 150px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), #050505 68%),
    radial-gradient(ellipse at 50% 100%, rgba(159, 214, 244, 0.08), transparent 62%);
}

.reviews-section .review-cta {
  width: min(100%, 820px);
  margin-top: clamp(28px, 4vw, 46px);
  padding: 0 clamp(12px, 2vw, 22px);
  justify-content: center;
}

.quote-section {
  margin-top: -1px;
  min-height: 510px;
  padding-top: clamp(44px, 5.2vw, 58px);
  background:
    linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.96) 18%, rgba(5, 5, 5, 0.98) 100%),
    radial-gradient(circle at 8% 58%, rgba(239, 69, 61, 0.16), transparent 15rem),
    radial-gradient(circle at 88% 24%, rgba(159, 214, 244, 0.14), transparent 17rem),
    url("../assets/rebuild/png/background-dark-subtle-splatter.png");
  background-size: cover;
}

.quote-section::before {
  left: clamp(-115px, -5vw, -42px);
  bottom: clamp(12px, 4vw, 42px);
  opacity: 0.055;
  transform: rotate(-13deg);
}

@media (min-width: 761px) {
  .reviews-section .review-cta {
    transform: translateY(4px);
  }

  .quote-section {
    padding-top: 46px;
  }
}

@media (max-width: 760px) {
  .reviews-section {
    padding-bottom: 42px;
  }

  .reviews-section .review-cta {
    gap: 12px;
    margin-top: 30px;
  }

  .quote-section {
    padding-top: 46px;
  }
}

/* Review CTA divider and texture framing */
.reviews-section .review-cta {
  position: relative;
  min-height: 76px;
}

.reviews-section .review-cta::before,
.reviews-section .review-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: lighten;
  filter: brightness(1.12) contrast(1.2);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 38%, rgba(0, 0, 0, 0.7) 54%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 0 38%, rgba(0, 0, 0, 0.7) 54%, transparent 78%);
}

.reviews-section .review-cta::before {
  left: clamp(-230px, -19vw, -110px);
  top: -86px;
  width: clamp(250px, 29vw, 420px);
  height: clamp(150px, 18vw, 260px);
  opacity: 0.46;
  background-image: url("../assets/rebuild/png/reviews-splatter-left.png");
  background-position: left center;
}

.reviews-section .review-cta::after {
  right: clamp(-260px, -21vw, -118px);
  top: -86px;
  width: clamp(260px, 30vw, 450px);
  height: clamp(150px, 18vw, 270px);
  opacity: 0.38;
  background-image: url("../assets/rebuild/png/reviews-splatter-right.png");
  background-position: right center;
}

.reviews-section .review-cta > * {
  position: relative;
  z-index: 1;
}

.reviews-section .review-cta > p {
  position: relative;
  max-width: 390px;
  padding-left: clamp(42px, 4vw, 58px);
}

.reviews-section .review-cta > p::before {
  content: "";
  position: absolute;
  left: clamp(17px, 1.8vw, 25px);
  top: 50%;
  width: 1px;
  height: 48px;
  background-image: linear-gradient(to bottom, rgba(246, 167, 64, 0), rgba(246, 167, 64, 0.46) 20%, rgba(246, 167, 64, 0.46) 80%, rgba(246, 167, 64, 0));
  background-size: 1px 8px;
  transform: translateY(-50%);
}

.reviews-section .review-cta > p span {
  color: var(--blue);
}

.reviews-section .review-cta > p .review-cta-copy {
  display: inline;
  color: #d5e0e5;
}

.reviews-section .review-cta > p .review-cta-copy span {
  display: inline-block;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .reviews-section .review-cta {
    min-height: 0;
  }

  .reviews-section .review-cta::before {
    left: -232px;
    top: -78px;
    width: 320px;
    opacity: 0.2;
  }

  .reviews-section .review-cta::after {
    right: -272px;
    top: -78px;
    width: 350px;
    opacity: 0.28;
  }

  .reviews-section .review-cta > p {
    padding-left: 0;
  }

  .reviews-section .review-cta > p::before {
    left: 50%;
    top: -10px;
    width: 120px;
    height: 1px;
    background-image: linear-gradient(to right, rgba(246, 167, 64, 0), rgba(246, 167, 64, 0.42) 18%, rgba(246, 167, 64, 0.42) 82%, rgba(246, 167, 64, 0));
    background-size: 8px 1px;
    transform: translateX(-50%);
  }
}

/* Quote section product-art pass */
.quote-section {
  min-height: 500px;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 0.95fr) minmax(330px, 0.95fr);
  gap: clamp(18px, 2.4vw, 34px);
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: clamp(54px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.9) 34%, #050505 100%),
    linear-gradient(180deg, #050505 0%, #030303 100%);
}

.quote-section::before {
  display: none;
  left: clamp(-90px, -3vw, -34px);
  bottom: clamp(20px, 4vw, 46px);
  width: clamp(240px, 24vw, 390px);
  height: clamp(120px, 13vw, 190px);
  opacity: 0.08;
  transform: rotate(-13deg);
}

.quote-star-right {
  top: clamp(40px, 5vw, 66px);
  right: clamp(24px, 6vw, 104px);
  opacity: 0.55;
}

.quote-art {
  display: block;
  min-height: clamp(320px, 34vw, 430px);
  overflow: visible;
}

.quote-art::before {
  content: none;
}

.mascot-hardhat,
.product-one,
.product-two {
  display: none;
}

.quote-product-main,
.quote-product-secondary {
  position: absolute;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.62));
}

.quote-product-main {
  left: clamp(-116px, -8vw, -58px);
  bottom: clamp(-20px, -1vw, 6px);
  width: clamp(250px, 28vw, 420px);
  opacity: 0.96;
}

.quote-product-secondary {
  right: clamp(8px, 3vw, 52px);
  bottom: clamp(6px, 3vw, 34px);
  width: clamp(148px, 16vw, 250px);
  opacity: 0.92;
  transform: rotate(-5deg);
}

.quote-copy {
  align-self: center;
  position: relative;
  z-index: 2;
  margin-left: clamp(-112px, -7vw, -56px);
}

.quote-copy > p:first-child {
  justify-content: flex-start;
  gap: 10px;
}

.quote-copy h2 {
  max-width: 500px;
  color: #ffffff;
  font-size: clamp(52px, 5.6vw, 76px);
}

.quote-copy h2 strong {
  color: var(--orange);
}

.quote-copy > p:not(:first-child) {
  max-width: 390px;
}

.map-card {
  min-height: clamp(330px, 30vw, 400px);
  align-self: center;
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.76), rgba(5, 6, 7, 0.9)),
    #090a0b;
}

.map-card:has(.google-map-frame) {
  display: block;
  padding: 10px;
  background: rgba(5, 6, 7, 0.92);
  overflow: visible;
}

.map-card:has(.google-map-frame)::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: clamp(-22px, -1.6vw, -12px);
  right: clamp(-20px, -1.5vw, -10px);
  width: clamp(54px, 6vw, 84px);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("../assets/rebuild/svg/chicago-star-speckled-heavy.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 14px rgba(239, 69, 61, 0.36));
  transform: rotate(10deg);
}

.map-card:has(.google-map-frame)::after {
  inset: 10px;
  z-index: 2;
  border-color: rgba(159, 214, 244, 0.2);
}

.google-map-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(310px, 28vw, 380px);
  display: block;
  border: 0;
  border-radius: 5px;
  filter: grayscale(1) invert(0.92) contrast(0.92) brightness(0.72) sepia(0.18) hue-rotate(165deg) saturate(1.6);
}

@media (max-width: 1080px) {
  .quote-section {
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1fr);
  }

  .quote-art {
    display: block;
    grid-column: 1;
    overflow: hidden;
  }

  .quote-product-main {
    left: 50%;
    bottom: 6px;
    width: min(92%, 360px);
    transform: translateX(-50%);
  }

  .quote-product-secondary {
    right: max(8px, 4%);
    bottom: 10px;
    width: min(40%, 170px);
  }

  .quote-copy {
    grid-column: 2;
    margin-left: clamp(-70px, -5vw, -28px);
  }

  .map-card {
    grid-column: 1 / -1;
    width: min(100%, 620px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .quote-section {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.95), #050505),
      #050505;
  }

  .quote-art {
    min-height: 0;
    grid-column: auto;
    order: -1;
    width: min(100%, 430px);
    justify-self: center;
    overflow: visible;
  }

  .quote-product-main {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(92vw, 430px);
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transform: none;
  }

  .quote-product-secondary {
    right: max(8px, 4%);
    bottom: 8px;
    width: min(34vw, 145px);
    max-width: 38%;
  }

  .quote-copy {
    grid-column: auto;
    margin-left: 0;
  }
}

/* Site footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), #050505 48%, #020202 100%);
  border-top: 1px solid rgba(159, 214, 244, 0.24);
  color: var(--text);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
}

.site-footer::before {
  width: 260px;
  height: 260px;
  left: -72px;
  bottom: -96px;
  background: url("../assets/rebuild/svg/chicago-star-speckled-heavy.svg") center / contain no-repeat;
  filter: saturate(1.2);
  transform: rotate(-12deg);
}

.site-footer::after {
  inset: 0;
  background:
    radial-gradient(circle at 16% 76%, rgba(239, 69, 61, 0.12), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(159, 214, 244, 0.1), transparent 20rem);
}

.site-footer__inner,
.site-footer__bottom {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(42px, 5vw, 68px) 0 clamp(30px, 4vw, 46px);
}

.site-footer__logo {
  display: inline-flex;
  width: min(260px, 80vw);
  margin-bottom: 18px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer__brand p,
.site-footer__contact span,
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  line-height: 1.45;
}

.site-footer__brand p {
  max-width: 420px;
}

.site-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.site-footer__socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(159, 214, 244, 0.42);
  border-radius: 999px;
  background: rgba(159, 214, 244, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--blue);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__nav a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.site-footer__phone {
  color: var(--blue);
  font-family: var(--heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1;
}

.site-footer__quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 12px;
  padding: 0 18px;
  color: #050505;
  background: var(--orange);
  border: 1px solid rgba(246, 167, 64, 0.9);
  border-radius: 6px;
  font-family: var(--heading);
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(246, 167, 64, 0.14);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom a {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .site-footer {
    padding-bottom: 78px;
  }

  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 420px);
    gap: 28px;
  }

  .site-footer__brand,
  .site-footer__nav,
  .site-footer__contact {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__brand p {
    margin: 0;
  }

  .site-footer__bottom {
    width: min(100% - 32px, 420px);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Model Roofing motion port */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}

.btn:hover::after {
  animation: shimmerSlide 0.6s ease forwards;
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(7px);
  transition:
    opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.52s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0s);
  will-change: opacity, transform, filter;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.fade-in.fade-in--left {
  transform: translateX(-28px);
}

.fade-in.fade-in--left.visible {
  transform: translateX(0);
}

.fade-in.fade-in--right {
  transform: translateX(28px);
}

.fade-in.fade-in--right.visible {
  transform: translateX(0);
}

.hero .fade-in {
  transform: translateY(14px);
}

.hero .hero-locale.fade-in.visible {
  transition-delay: 0.05s;
}

.hero .hero-copy h1.fade-in.visible {
  transition-delay: 0.14s;
}

.hero .hero-hook.fade-in.visible {
  transition-delay: 0.22s;
}

.hero .hero-text.fade-in.visible {
  transition-delay: 0.3s;
}

.hero .hero-buttons.fade-in.visible {
  transition-delay: 0.38s;
}

.section-heading.fade-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.section-heading.fade-in > p,
.section-heading.fade-in > h2,
.section-heading.fade-in .section-intro,
.section-heading.fade-in .reviews-feedback-line {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition:
    opacity 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-heading.fade-in.visible > p:first-child {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0s;
}

.section-heading.fade-in.visible > h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.07s;
}

.section-heading.fade-in.visible .section-intro {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.14s;
}

.section-heading.fade-in.visible .reviews-feedback-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.2s;
}

@media (max-width: 768px) {
  .fade-in.fade-in--left,
  .fade-in.fade-in--right {
    transform: translateY(25px);
  }

  .fade-in.fade-in--left.visible,
  .fade-in.fade-in--right.visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover::after {
    animation: none;
  }

  .fade-in,
  .fade-in.fade-in--left,
  .fade-in.fade-in--right,
  .section-heading.fade-in > p,
  .section-heading.fade-in > h2,
  .section-heading.fade-in .section-intro,
  .section-heading.fade-in .reviews-feedback-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition-duration: 0.01s !important;
    transition-delay: 0s !important;
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

/* Client-requested process star markers and contained method art */
.process-section .step-card::after,
.process-section .step-right::after,
.process-section .step-left::after {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: url("../assets/rebuild/svg/chicago-star-speckled-heavy.svg") center / contain no-repeat;
  box-shadow: none;
  filter:
    drop-shadow(0 0 5px rgba(239, 69, 61, 0.95))
    drop-shadow(0 0 14px rgba(239, 69, 61, 0.42));
}

.process-section .step-left::after {
  right: -80px;
}

.process-section .step-right::after {
  left: -80px;
}

.process-section .step-left::before,
.process-section .step-right::before {
  color: var(--red);
}

.process-section .step-left::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86 44'%3E%3Cpath d='M82 21 C58 20 52 34 31 31 C19 29 13 22 8 22' fill='none' stroke='%23EF453D' stroke-width='2.2' stroke-linecap='round' stroke-dasharray='6 5'/%3E%3Cpath d='M3 22 L12 16 L12 28 Z' fill='%23EF453D'/%3E%3C/svg%3E");
}

.process-section .step-right::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 86 44'%3E%3Cpath d='M4 22 C28 20 34 34 55 31 C67 29 73 22 78 22' fill='none' stroke='%23EF453D' stroke-width='2.2' stroke-linecap='round' stroke-dasharray='6 5'/%3E%3Cpath d='M83 22 L74 16 L74 28 Z' fill='%23EF453D'/%3E%3C/svg%3E");
}

.methods-section .method-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 16px);
}

.methods-section .method-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .process-section .step-card::after,
  .process-section .step-right::after,
  .process-section .step-left::after {
    width: 28px;
    height: 28px;
    left: -41px;
    right: auto;
  }

  .process-section .step-card::before,
  .process-section .step-right::before,
  .process-section .step-left::before {
    left: -30px;
    right: auto;
    width: 28px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 20'%3E%3Cpath d='M2 10 C10 7 16 13 25 10' fill='none' stroke='%23EF453D' stroke-width='2' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3Cpath d='M30 10 L22 5 L22 15 Z' fill='%23EF453D'/%3E%3C/svg%3E");
  }
}

/* Hero shirt slider responsive pass */
@media (max-width: 1180px) and (min-width: 761px) {
  .hero {
    padding-inline: clamp(34px, 5vw, 58px);
  }

  .hero-grid {
    width: 100%;
    max-width: 1060px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 42vw);
    gap: clamp(16px, 3vw, 34px);
  }

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

  h1 {
    max-width: 610px;
    font-size: clamp(52px, 7.3vw, 82px);
  }

  .hero-showcase {
    min-height: clamp(330px, 46vw, 440px);
  }

  .hero-shirt-slider {
    width: min(100%, 460px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: clamp(300px, 42vw, 410px);
  }

  .hero-shirt-slider .splide__slide img {
    width: min(100%, 460px);
    max-height: clamp(290px, 40vw, 400px);
  }
}

@media (max-width: 860px) and (min-width: 761px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38vw);
    gap: 14px;
  }

  h1 {
    font-size: clamp(48px, 7vw, 64px);
  }

  .hero-hook {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 100dvh;
    padding: 112px 20px 0;
    overflow: hidden;
  }

  .hero-grid {
    flex: 0 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .hero-copy {
    order: 1;
    max-width: 100%;
  }

  .hero-showcase {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 230px;
    margin: 0 auto;
    opacity: 1;
  }

  .hero-showcase::before {
    display: block;
    width: min(82vw, 340px);
    opacity: 0.7;
  }

  .hero-shirt-slider {
    width: min(100%, 350px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: 230px;
  }

  .hero-shirt-slider .splide__slide img {
    width: min(100%, 350px);
    max-height: 230px;
    transform: translateY(8px) scale(0.96);
    opacity: 0;
  }

  .hero-shirt-slider .splide__slide.is-active img {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .hero-shirt-slider .splide__pagination {
    display: flex;
    bottom: -6px;
  }

  .service-rail {
    margin-top: 18px;
  }
}

@media (max-width: 430px) {
  .hero-showcase {
    min-height: 210px;
  }

  .hero-shirt-slider {
    width: min(100%, 310px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: 210px;
  }

  .hero-shirt-slider .splide__slide img {
    max-height: 210px;
  }
}

/* Audience carousel and industry gallery */
.audience-section > .audience-splide {
  position: relative;
  z-index: 2;
}

.audience-splide {
  width: min(100%, 1110px);
  margin: 0 auto;
  padding: 8px 42px 48px;
}

.audience-splide .audience-grid {
  max-width: none;
  display: flex;
  gap: 0;
  margin: 0;
}

.audience-splide .audience-card {
  height: 294px;
  min-height: 294px;
  display: grid;
  grid-template-columns: minmax(220px, 46%) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(159, 214, 244, 0.5);
  border-radius: 7px;
  background: rgba(5, 7, 8, 0.94);
  opacity: 0.42;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.audience-splide .audience-card.is-visible,
.audience-splide .audience-card.is-active,
.audience-splide .audience-card.is-next {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.audience-splide .audience-card:hover {
  border-color: rgba(246, 167, 64, 0.8);
}

.audience-splide .audience-card::before,
.audience-splide .audience-card::after {
  display: none;
}

.audience-card-media {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(159, 214, 244, 0.24);
  border-radius: 0;
  background:
    radial-gradient(circle at 48% 42%, rgba(159, 214, 244, 0.2), transparent 58%),
    #030405;
  color: #ffffff;
  cursor: zoom-in;
}

.audience-splide .audience-card .audience-card-media > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.audience-card-media:hover > img,
.audience-card-media:focus-visible > img {
  transform: scale(1.045) translateY(-3px);
}

.audience-card-media > span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.audience-splide .audience-card > div {
  min-width: 0;
  padding: 22px 20px 18px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr;
  column-gap: 9px;
  align-content: center;
  align-self: stretch;
}

.audience-splide .audience-card .audience-icon {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

.audience-splide .audience-card h3 {
  grid-column: 2;
  grid-row: 1;
  min-height: 34px;
  padding: 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 0.94;
}

.audience-splide .audience-card p,
.audience-splide .audience-card ul,
.audience-splide .audience-card a {
  grid-column: 1 / -1;
}

.audience-splide .audience-card p {
  margin: 13px 0 10px;
  font-size: 13px;
  line-height: 1.35;
}

.audience-splide .audience-card ul {
  gap: 5px 12px;
  margin-bottom: 14px;
}

.audience-splide .audience-card li {
  font-size: 11px;
}

.audience-splide .audience-card a {
  align-self: end;
  font-size: 11px;
}

.audience-splide .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-splide .splide__arrow {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(159, 214, 244, 0.58);
  border-radius: 50%;
  background: rgba(5, 7, 8, 0.94);
  color: var(--blue);
  pointer-events: auto;
  cursor: pointer;
}

.audience-splide .splide__arrow--prev {
  left: 0;
}

.audience-splide .splide__arrow--next {
  right: 0;
}

.audience-splide .splide__arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.audience-splide .splide__arrow--prev svg {
  transform: rotate(180deg);
}

.audience-splide .splide__arrow--next svg {
  transform: none;
}

.audience-splide .splide__pagination {
  bottom: 10px;
  gap: 8px;
}

.audience-splide .splide__pagination__page {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.audience-splide .splide__pagination__page.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--orange);
}

body.audience-lightbox-open {
  overflow: hidden;
}

.audience-lightbox[hidden] {
  display: none;
}

.audience-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 52px 0 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(14px);
}

/* main area: prev | figure | next */
.audience-lightbox-main {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 0 0 12px;
}

.audience-lightbox figure {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.audience-lightbox-image {
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.72));
  transition: opacity 0.18s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.audience-lightbox-image.lb-fade {
  opacity: 0;
}

.audience-lightbox figcaption {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}

.audience-lightbox figcaption strong {
  font-family: var(--heading);
  font-size: clamp(16px, 2vw, 24px);
  text-transform: uppercase;
}

.audience-lightbox-count {
  color: var(--blue);
  font-weight: 900;
}

.audience-lightbox-close,
.audience-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 10, 11, 0.88);
  color: #ffffff;
  cursor: pointer;
  touch-action: manipulation; /* prevents double-tap zoom */
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.audience-lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
}

.audience-lightbox-nav {
  width: 48px;
  height: 48px;
  justify-self: center;
}

.audience-lightbox-close:hover,
.audience-lightbox-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Thumbnail strip */
.audience-lightbox-thumbs {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lb-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: #0a0b0c;
}

.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.lb-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.lb-thumb.is-active {
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-3px);
}


@media (max-width: 1050px) {
  .audience-splide .audience-card {
    grid-template-columns: minmax(200px, 44%) minmax(0, 1fr);
  }

  .audience-splide .audience-card > div {
    padding: 18px 16px 16px;
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 7px;
  }

  .audience-splide .audience-card .audience-icon {
    width: 28px;
    height: 28px;
  }

  .audience-splide .audience-card h3 {
    font-size: clamp(15px, 1.75vw, 20px);
    min-height: 28px;
  }

  .audience-splide .audience-card p {
    margin: 10px 0 8px;
    font-size: clamp(11px, 1.25vw, 13px);
    line-height: 1.35;
  }

  .audience-splide .audience-card ul {
    gap: 4px 10px;
    margin-bottom: 12px;
  }

  .audience-splide .audience-card li {
    font-size: clamp(10px, 1.1vw, 12px);
  }

  .audience-splide .audience-card a {
    font-size: clamp(10px, 1.1vw, 12px);
  }
}

@media (max-width: 900px) {
  .audience-splide {
    padding-inline: 38px;
  }

  .audience-splide .audience-card {
    grid-template-columns: minmax(180px, 43%) minmax(0, 1fr);
  }

  .audience-splide .audience-card > div {
    padding: 18px 16px 16px;
  }
}

@media (max-width: 760px) {
  .audience-splide {
    width: 100%;
    padding: 6px 30px 44px;
  }

  .audience-splide .audience-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .audience-card-media {
    border-right: 0;
    border-bottom: 1px solid rgba(159, 214, 244, 0.24);
  }

  .audience-splide .audience-card > div {
    padding: 20px 20px 22px;
    align-content: space-between;
  }

  .audience-splide .audience-card h3 {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1;
  }

  .audience-splide .audience-card p {
    font-size: clamp(13px, 3.5vw, 16px);
    line-height: 1.4;
    margin: 14px 0 12px;
  }

  .audience-splide .audience-card ul {
    gap: 6px 14px;
    margin-bottom: 16px;
  }

  .audience-splide .audience-card li {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .audience-splide .audience-card a {
    font-size: clamp(12px, 3.2vw, 14px);
  }

  .audience-splide .splide__arrow {
    width: 34px;
    height: 34px;
  }

  .audience-lightbox {
    padding-top: 52px;
  }

  .audience-lightbox-main {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .audience-lightbox-nav {
    width: 38px;
    height: 38px;
  }

  .audience-lightbox figcaption {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .lb-thumb {
    width: 54px;
    height: 54px;
  }
}

/* Continuous apparel brand rail */
.brand-rail-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 26px;
  border-top: 1px solid rgba(159, 214, 244, 0.2);
  border-bottom: 1px solid rgba(159, 214, 244, 0.12);
  background:
    linear-gradient(90deg, rgba(159, 214, 244, 0.045), transparent 22%, transparent 78%, rgba(246, 167, 64, 0.045)),
    #050505;
  color: #ffffff;
}

.brand-rail-heading {
  width: min(calc(100% - 36px), 1080px);
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  text-align: left;
}

.brand-rail-heading p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.brand-rail-heading h2 {
  color: #ffffff;
  font-family: var(--heading);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-logo-slider {
  width: 100%;
}

.brand-logo-slider .splide__track {
  overflow: hidden;
}

.brand-logo-slider .splide__slide {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}

.brand-logo-slider .splide__slide img {
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 54px;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: grayscale(1) invert(1) contrast(1.18) brightness(1.08);
  opacity: 0.72;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.brand-logo-slider .splide__slide:hover img {
  filter: grayscale(1) invert(1) contrast(1.38) brightness(1.18);
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 760px) {
  .brand-rail-section {
    padding: 24px 0 22px;
  }

  .brand-rail-heading {
    width: min(calc(100% - 36px), 520px);
    margin-bottom: 14px;
    text-align: left;
  }

  .brand-rail-heading p {
    margin-bottom: 0;
  }

  .brand-rail-heading h2 {
    font-size: 30px;
  }

  .brand-logo-slider .splide__slide {
    min-height: 64px;
    padding-inline: 12px;
  }

  .brand-logo-slider .splide__slide img {
    max-width: 116px;
    max-height: 44px;
  }
}

/* Annotated PDF background and lower CTA asset pass */
.process-dog-art {
  width: clamp(360px, 34vw, 520px);
  right: clamp(-118px, -5vw, -54px);
  top: clamp(36px, 5vw, 76px);
  opacity: 0.065;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.1);
}

.reviews-buildings {
  display: none;
}

.reviews-dog-art {
  position: absolute;
  z-index: 0;
  top: clamp(84px, 10vw, 150px);
  right: clamp(-110px, -5vw, -48px);
  width: clamp(320px, 30vw, 480px);
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.08);
}

.quote-art .quote-product-main {
  left: 50%;
  bottom: clamp(4px, 1.2vw, 18px);
  width: clamp(330px, 34vw, 520px);
  transform: translateX(-50%);
  opacity: 1;
}

@media (max-width: 1080px) {
  .quote-art .quote-product-main {
    left: 50%;
    width: min(112%, 430px);
    transform: translateX(-50%);
  }
}

/* Brand-logo fade preview for process step two */
.process-section .step-logo-fader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  width: 100%;
  height: 116px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background:
    radial-gradient(circle at 58% 45%, rgba(159, 214, 244, 0.16), transparent 54%),
    #080a0d;
  isolation: isolate;
}

.process-section .step-logo-fader .step-logo-animation {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (min-width: 761px) and (max-width: 980px) {
  .process-section .step-logo-fader {
    height: 118px;
  }
}

@media (min-width: 481px) and (max-width: 760px) {
  .process-section .step-logo-fader {
    grid-column: 2;
    grid-row: 1 / span 3;
    height: clamp(104px, 22vw, 116px);
  }
}

@media (max-width: 480px) {
  .process-section .step-logo-fader {
    grid-column: 1 / -1;
    grid-row: 1;
    height: clamp(142px, 42vw, 178px);
    margin-bottom: 12px;
  }
}

@media (max-width: 760px) {
  .process-dog-art {
    width: 310px;
    right: -108px;
    top: 88px;
    opacity: 0.05;
  }

  .methods-section::before {
    left: -116px;
    width: 390px;
    height: 360px;
    opacity: 0.045;
  }

  .reviews-dog-art {
    top: 104px;
    right: -126px;
    width: 330px;
    opacity: 0.04;
  }

  .quote-art .quote-product-main {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin: 0 auto;
    transform: none;
  }
}

/* Final PDF background alignment pass */
.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(-170px, -9vw, -72px);
  bottom: clamp(26px, 5vw, 70px);
  width: clamp(280px, 28vw, 440px);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("../artesanos sanchez website/dog pics/chatgpt Image Jun 16, 2026, 10_55_49 PM (5).png") center / contain no-repeat;
  opacity: 0.032;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.16);
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 34%, rgba(5, 5, 5, 0.42) 68%, rgba(5, 5, 5, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.08) 48%, #050505 100%),
    url("../Artesanos Sanchez Website/Chicago Skyline Artesanos Sanchez Website.png");
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  background-position: center, center, center center;
  background-attachment: scroll;
}

.hero-grid,
.hero .service-rail {
  position: relative;
  z-index: 2;
}

.methods-section::before {
  background-image: url("../artesanos sanchez website/dog pics/chatgpt Image Jun 16, 2026, 10_55_56 PM (7).png");
  opacity: 0.042;
}

.methods-section::after {
  right: clamp(-160px, -8vw, -54px);
  top: auto;
  bottom: clamp(18px, 4vw, 58px);
  width: clamp(520px, 56vw, 920px);
  height: clamp(260px, 32vw, 460px);
  opacity: 0.12;
  background-image: url("../Artesanos Sanchez Website/BW Chicago Background For Website.png");
  background-position: right center;
  filter: grayscale(1) contrast(1.08);
  mix-blend-mode: screen;
}

.audience-section::before,
.audience-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
}

.audience-section::before {
  inset: auto 0 0 0;
  height: min(44vw, 420px);
  opacity: 0.11;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0), #050505 92%),
    url("../Artesanos Sanchez Website/Chicago Skyline Artesanos Sanchez Website.png");
  background-size: auto, cover;
  background-position: center bottom;
  mix-blend-mode: screen;
}

.audience-section::after {
  left: clamp(-120px, -6vw, -50px);
  top: clamp(72px, 8vw, 120px);
  width: clamp(300px, 28vw, 460px);
  height: clamp(260px, 27vw, 420px);
  opacity: 0.034;
  background-image: url("../artesanos sanchez website/dog pics/chatgpt Image Jun 16, 2026, 10_55_50 PM (8).png");
  background-size: contain;
  background-position: left top;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.12);
}

@media (min-width: 1180px) {
  .hero-bg {
    background-size: auto, auto, cover;
    background-position: center, center, center center;
  }
}

@media (max-width: 760px) {
  .hero::before {
    right: -132px;
    bottom: 92px;
    width: 300px;
    opacity: 0.028;
  }

  .hero-bg {
    background-size: auto, auto, cover;
    background-position: center, center, center center;
  }

  .methods-section::after {
    right: -190px;
    bottom: 24px;
    width: 600px;
    height: 300px;
    opacity: 0.12;
  }

  .audience-section::before {
    height: 310px;
    opacity: 0.08;
  }

  .audience-section::after {
    left: -150px;
    top: 118px;
    width: 330px;
    opacity: 0.028;
  }
}

/* Client polish pass: larger mockups, cleaner rotations, tighter process cards */
.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.hero-showcase {
  min-height: clamp(440px, 47vw, 610px);
}

.hero-shirt-slider {
  width: min(50vw, 710px);
}

.hero-shirt-slider .splide__slide {
  min-height: clamp(430px, 46vw, 610px);
}

.hero-shirt-slider .splide__slide img {
  width: min(100%, 710px);
  max-height: clamp(430px, 45vw, 590px);
}

.audience-splide .splide__track,
.audience-splide .splide__list,
.audience-splide .audience-card,
.audience-splide .audience-card-media > img {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.audience-splide .audience-card {
  opacity: 0.28;
  filter: none !important;
  transform: translateZ(0);
  transition: opacity 0.28s ease, border-color 0.22s ease;
  will-change: opacity;
}

.audience-splide .audience-card.is-visible,
.audience-splide .audience-card.is-active,
.audience-splide .audience-card.is-next {
  opacity: 1;
  filter: none !important;
  transform: translateZ(0);
}

.audience-splide .audience-card.fade-in,
.audience-splide .audience-card.fade-in.visible,
.audience-splide .audience-card.fade-in--left,
.audience-splide .audience-card.fade-in--right {
  filter: none !important;
  transform: translateZ(0);
}

.audience-splide .audience-card .audience-card-media > img {
  transform: translateZ(0);
  transition: transform 0.22s ease;
  will-change: auto;
}

.audience-splide .splide__arrow--prev svg {
  transform: rotate(180deg) !important;
}

.audience-splide .splide__arrow--next svg {
  transform: none !important;
}

.process-section .timeline {
  max-width: 1060px;
}

@media (min-width: 761px) {
  .process-section .timeline {
    min-height: 540px;
  }

  .process-section .step-card {
    width: calc((100% - 118px) / 2);
    min-height: 196px;
    grid-template-columns: minmax(0, 0.9fr) minmax(190px, 46%);
    gap: 6px 18px;
    padding: 14px 16px;
  }

  .process-section .step-card:nth-of-type(1) {
    top: 0;
  }

  .process-section .step-card:nth-of-type(2) {
    top: 76px;
  }

  .process-section .step-card:nth-of-type(3) {
    top: 250px;
  }

  .process-section .step-card:nth-of-type(4) {
    top: 326px;
  }
}

.process-section .step-card span {
  font-size: 20px;
}

.process-section .step-card h3 {
  margin-top: 7px;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 0.98;
}

.process-section .step-card p {
  margin-top: 7px;
  font-size: 11.5px;
  line-height: 1.2;
}

.process-section .step-card img,
.process-section .step-logo-fader {
  height: clamp(142px, 14vw, 172px);
  transition: transform 0.25s ease, filter 0.25s ease;
  transform-origin: center;
}

.process-section .step-card:hover img,
.process-section .step-card:hover .step-logo-fader {
  transform: scale(1.055);
}

.process-section .step-logo-fader .step-logo-animation {
  height: 100%;
}

.methods-section::after {
  z-index: 1;
  left: 0;
  right: auto;
  top: 80px;
  bottom: auto;
  width: clamp(320px, 40vw, 620px);
  height: calc(100% - 140px);
  opacity: 0.28;
  background-size: cover;
  background-position: 38% center;
  filter: grayscale(1) contrast(1.18) brightness(1.22);
}

.quote-copy h2 {
  max-width: 560px;
}

.quote-copy > p:not(:first-child) {
  max-width: 470px;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 48vw);
  }

  .hero-showcase {
    min-height: clamp(390px, 49vw, 520px);
  }

  .hero-shirt-slider {
    width: min(100%, 560px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: clamp(370px, 47vw, 500px);
  }

  .hero-shirt-slider .splide__slide img {
    width: min(100%, 560px);
    max-height: clamp(360px, 46vw, 500px);
  }
}

@media (max-width: 760px) {
  .hero-showcase {
    min-height: clamp(300px, 74vw, 390px);
  }

  .hero-shirt-slider {
    width: min(100%, 430px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: clamp(292px, 70vw, 382px);
  }

  .hero-shirt-slider .splide__slide img {
    width: min(100%, 430px);
    max-height: clamp(286px, 68vw, 374px);
  }

  .process-section .step-card {
    min-height: 178px;
    grid-template-columns: minmax(0, 0.88fr) minmax(150px, 44%);
    padding: 14px;
  }

  .process-section .step-card img,
  .process-section .step-logo-fader {
    height: clamp(132px, 28vw, 160px);
  }

  .methods-section::after {
    left: 0;
    right: auto;
    top: 110px;
    bottom: auto;
    width: min(78vw, 360px);
    height: calc(100% - 180px);
    opacity: 0.24;
    background-size: cover;
    background-position: 40% center;
  }
}

@media (max-width: 480px) {
  .process-section .step-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-section .step-card img,
  .process-section .step-logo-fader {
    grid-column: 1 / -1;
    grid-row: 1;
    height: clamp(160px, 48vw, 210px);
    margin-bottom: 10px;
  }
}

/* Tablet/mobile correction pass for enlarged mockups */
@media (max-width: 900px) {
  .process-section .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, 720px);
    min-height: 0;
    padding-left: 44px;
  }

  .process-section .timeline::before {
    left: 18px;
    transform: none;
  }

  .process-section .timeline > .step-card,
  .process-section .step-card,
  .process-section .step-card:nth-of-type(1),
  .process-section .step-card:nth-of-type(2),
  .process-section .step-card:nth-of-type(3),
  .process-section .step-card:nth-of-type(4) {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 38%);
    gap: 8px 16px;
    padding: 16px;
  }

  .process-section .step-card::before,
  .process-section .step-right::before,
  .process-section .step-left::before {
    left: -34px;
    right: auto;
  }

  .process-section .step-card::after,
  .process-section .step-right::after,
  .process-section .step-left::after {
    left: -46px;
    right: auto;
  }

  .process-section .step-card h3 {
    font-size: clamp(18px, 2.7vw, 22px);
  }

  .process-section .step-card p {
    max-width: 30em;
    font-size: clamp(12px, 1.8vw, 14px);
    line-height: 1.24;
  }

  .process-section .step-card img,
  .process-section .step-logo-fader {
    height: clamp(150px, 21vw, 188px);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .process-section .timeline > .step-card,
  .process-section .step-card,
  .process-section .step-left,
  .process-section .step-right,
  .process-section .step-card:nth-of-type(1),
  .process-section .step-card:nth-of-type(2),
  .process-section .step-card:nth-of-type(3),
  .process-section .step-card:nth-of-type(4) {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 38%);
  }

  .process-section .step-left,
  .process-section .step-right {
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 560px);
    max-width: 100%;
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero-copy h1,
  .hero-copy .hero-title-line,
  .hero-copy .hero-title-made {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: 0.86;
  }

  .hero-locale,
  .hero-hook,
  .hero-text {
    margin-inline: 0 auto;
  }

  .hero-hook {
    max-width: 390px;
    justify-content: flex-start;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-showcase {
    width: 100%;
    min-height: clamp(260px, 60vw, 360px);
    align-self: center;
    order: 2;
  }

  .hero-shirt-slider {
    width: min(100%, 520px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: clamp(250px, 58vw, 350px);
  }

  .hero-shirt-slider .splide__slide img {
    width: min(100%, 520px);
    max-height: clamp(245px, 56vw, 340px);
  }

  .service-rail {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: clamp(46px, 10.6vw, 60px);
    letter-spacing: -0.035em;
  }

  .hero-title-line,
  .hero-title-made {
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-locale,
  .hero-hook,
  .hero-text,
  .hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  .hero-hook {
    max-width: 100%;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
    justify-content: center;
  }

  .process-section .timeline {
    width: min(100%, 420px);
    padding-left: 38px;
  }

  .process-section .timeline > .step-card,
  .process-section .step-card,
  .process-section .step-card:nth-of-type(1),
  .process-section .step-card:nth-of-type(2),
  .process-section .step-card:nth-of-type(3),
  .process-section .step-card:nth-of-type(4) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .process-section .step-card img,
  .process-section .step-logo-fader {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: clamp(170px, 48vw, 214px);
    margin: 0 0 8px;
  }

  .process-section .step-card span,
  .process-section .step-card h3,
  .process-section .step-card p {
    grid-column: 1 / -1;
  }

  .process-section .step-card span {
    grid-row: 2;
  }

  .process-section .step-card h3 {
    grid-row: 3;
    font-size: clamp(18px, 6vw, 22px);
  }

  .process-section .step-card p {
    grid-row: 4;
    max-width: none;
    font-size: 13px;
    line-height: 1.28;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: clamp(42px, 13.2vw, 56px);
    letter-spacing: -0.035em;
  }

  .hero-title-line,
  .hero-title-made {
    max-width: 100%;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .hero-locale,
  .hero-hook,
  .hero-text,
  .hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  .hero-hook {
    gap: 8px;
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.05;
  }

  .hero-text {
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.35;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: min(100%, 230px);
    justify-content: center;
  }

  .hero-showcase {
    min-height: clamp(230px, 62vw, 286px);
  }

  .hero-shirt-slider .splide__slide {
    min-height: clamp(226px, 60vw, 276px);
  }

  .hero-shirt-slider .splide__slide img {
    max-height: clamp(220px, 58vw, 268px);
  }
}

@media (max-width: 370px) {
  .hero-copy h1 {
    font-size: clamp(38px, 12.4vw, 48px);
  }

  .hero-hook {
    font-size: clamp(17px, 5vw, 19px);
  }
}
