
:root {
  --bg: #0a0a0a;
  --bg-elevated: #101010;
  --bg-soft: #121212;
  --text: #f5f5f5;
  --text-dark: #111111;
  --muted: #a7a7a7;
  --muted-dark: #5f5f5f;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(17, 17, 17, 0.08);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --card-light: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 3rem));
  --nav-height: 82px;
  --ease: 300ms ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

/* ---------- SEO / Accessibility helpers ---------- */
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-180%);
  transition: transform var(--ease);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- Shared ---------- */
.site-shell {
  position: relative;
}

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

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform var(--ease),
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

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

.btn--solid {
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 100%);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.btn--full {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.site-header {
  position: relative;
  min-height: 100vh;
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  width: 100%;
  padding: 1rem 0;
  transition:
    padding var(--ease),
    transform 340ms ease,
    opacity 240ms ease;
  will-change: transform, opacity;
}

.nav-wrap.nav-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 1.5rem));
}

body.menu-open .nav-wrap {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 0 1.1rem;
  border-radius: 999px;
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    backdrop-filter var(--ease);
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 170px;
}

.brand-logo {
  width: 100%;
  transition: opacity var(--ease), transform var(--ease);
}

.brand-logo--scrolled {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.45rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--ease), opacity var(--ease);
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-cta {
  display: none;
  flex: 0 0 auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: #ffffff;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-wrap.scrolled {
  padding: 0.75rem 0;
}

.nav-wrap.scrolled .navbar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.nav-wrap.scrolled .nav-menu a {
  color: rgba(17, 17, 17, 0.78);
}

.nav-wrap.scrolled .nav-menu a:hover {
  color: #111111;
}

.nav-wrap.scrolled .brand-logo--top {
  opacity: 0;
}

.nav-wrap.scrolled .brand-logo--scrolled {
  opacity: 1;
}

.nav-wrap.scrolled .nav-toggle {
  background: rgba(17, 17, 17, 0.03);
  border-color: rgba(17, 17, 17, 0.08);
}

.nav-wrap.scrolled .nav-toggle span {
  background: #111111;
}
.nav-wrap.scrolled .nav-cta {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.nav-wrap.scrolled .nav-cta:hover {
  color: #ffffff;
  background: #1a1a1a;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(10px);
  transition: opacity var(--ease);
}

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

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: min(92vw, 380px);
  height: 100%;
  margin-left: auto;
  padding: 1.2rem;
  background: #ffffff;
  color: var(--text-dark);
  transform: translateX(100%);
  transition: transform 360ms ease;
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu__logo {
  max-width: 150px;
}

.mobile-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.05);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-menu__links a {
  padding: 0.95rem 0.4rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-weight: 500;
}

.mobile-menu__cta {
  margin-top: auto;
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.mobile-menu__cta:hover {
  color: #ffffff;
  background: #1a1a1a;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.hero-swiper,
.hero-slide,
.hero-media {
  height: 100vh;
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.72) 32%, rgba(6, 6, 6, 0.22) 58%, rgba(6, 6, 6, 0.05) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.18) 0%, rgba(6, 6, 6, 0.35) 100%);
}

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

.hero__content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: end;
  padding-top: calc(var(--nav-height) + 5.4rem);
  padding-bottom: 3rem;
}

.hero__content {
  max-width: 720px;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.9rem, 5.4vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__text {
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__pagination {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.hero__pagination .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.32);
}

.hero__pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  overflow: clip;
  background: linear-gradient(180deg, #0e0e0e 0%, #101010 100%);
}

.about .container {
  position: relative;
}

.about__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.92) 14%,
    rgba(0, 0, 0, 0.92) 86%,
    transparent 100%
  );
}

.about__head {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.about__eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.about__story {
  max-width: 1180px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: pretty;
}

.about-char {
  color: #4a4a4a;
  will-change: color;
}

.about-word-group {
  display: inline-block;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.info-card--refined {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 1.35rem 1.3rem;
  border-radius: 28px;
  background: #f4f4f2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  color: #111111;
  text-align: center;
}

.info-card--refined .info-card__icon {
  width: 100%;
  max-width: 110px;
  margin-bottom: 1.15rem;
}

.info-card--refined .info-card__icon img {
  width: 100%;
  max-width: 110px;
  object-fit: contain;
}

.info-card--refined h3 {
  margin-bottom: 0.7rem;
  color: #161616;
  font-family: "Montserrat", sans-serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.info-card--refined p {
  color: #5e5e5e;
  font-size: 0.98rem;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .about__story {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

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

@media (max-width: 767px) {
  .about__story {
    font-size: clamp(1.7rem, 8.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }
}

/* =========================================
   SIGNATURE
   ========================================= */
.signature {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 28%), #090909;
}

.signature__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.signature__content h2 {
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.signature__content p:not(.section-eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.signature__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.4rem 0;
}

.signature__meta div {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.signature__meta span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.signature__meta strong {
  font-size: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #e6e6e6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #bdbdbd 100%);
}

.signature-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.signature-card__shine {
  position: absolute;
  top: -15%;
  right: -20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
}

.signature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.signature-card__top span {
  color: #d1d1d1;
  font-size: 0.9rem;
}

.signature-card__top strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}

.signature-card__body {
  display: grid;
  gap: 1rem;
}

.signature-card__body p {
  color: var(--muted);
  line-height: 1.7;
}

.signature-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111111;
}

.signature-placeholder__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background: #101010;
}

.services__head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.services-stack {
  position: relative;
  display: grid;
  gap: 0;
  padding-bottom: 20vh;
}

.service-stack-card {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  z-index: var(--card-index);
  transition: top var(--ease);
}

body.nav-hidden-services .service-stack-card {
  top: 1rem;
}

.service-stack-card + .service-stack-card {
  margin-top: 14px;
}

.service-stack-card__inner {
  min-height: clamp(480px, 78vh, 620px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%), #0c0c0d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.service-stack-card__media {
  position: relative;
  min-height: 100%;
  background: #111111;
}

.service-stack-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.18) 100%),
    linear-gradient(90deg, rgba(6, 6, 6, 0) 70%, rgba(6, 6, 6, 0.18) 100%);
  pointer-events: none;
}

.service-stack-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-stack-card__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 2rem 1.9rem;
  background: #0c0c0d;
}

.service-stack-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.service-stack-card__top > div {
  flex: 1 1 auto;
}

.service-stack-card__kicker {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-stack-card__top h3 {
  margin-bottom: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.service-stack-card__top strong {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.service-stack-card__intro {
  max-width: 36ch;
  color: var(--muted);
  line-height: 1.75;
}

.service-stack-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.service-stack-card__meta div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.service-stack-card__meta span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-stack-card__meta strong {
  font-size: 1rem;
}

.service-stack-card__list {
  display: grid;
  gap: 0.78rem;
  margin-bottom: 1.4rem;
}

.service-stack-card__list li {
  position: relative;
  padding-left: 1rem;
  color: #ebebeb;
  line-height: 1.65;
}

.service-stack-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.service-stack-card__content .btn {
  margin-top: auto;
  width: 100%;
}

.service-stack-card--featured .service-stack-card__inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%), #0c0c0d;
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1023px) {
  .services-stack {
    padding-bottom: 14vh;
  }

  .service-stack-card {
    top: calc(var(--nav-height) + 0.8rem);
  }

  .service-stack-card__inner {
    min-height: clamp(620px, 84svh, 760px);
    grid-template-columns: 1fr;
  }

  .service-stack-card__media {
    min-height: 42%;
  }

  .service-stack-card__content {
    padding: 1.45rem 1.25rem 1.3rem;
  }

  .service-stack-card__top {
    flex-direction: column;
    gap: 0.7rem;
  }

  .service-stack-card__top strong {
    white-space: normal;
  }

  .service-stack-card__intro {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .services-stack {
    padding-bottom: 9vh;
  }

  .service-stack-card {
    top: calc(var(--nav-height) + 0.25rem);
  }

  body.nav-hidden-services .service-stack-card {
    top: 0.75rem;
  }

  .service-stack-card + .service-stack-card {
    margin-top: 10px;
  }

  .service-stack-card__inner {
    min-height: auto;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

.service-stack-card__media {
  min-height: 265px;
  max-height: 265px;
}

  .service-stack-card__content {
    padding: 0.78rem 0.86rem 0.82rem;
  }

  .service-stack-card__top {
    gap: 0.35rem;
    margin-bottom: 0.56rem;
  }

  .service-stack-card__kicker {
    margin-bottom: 0.32rem;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .service-stack-card__top h3 {
    font-size: 1.12rem;
    margin-bottom: 0.32rem;
    line-height: 1.05;
  }

  .service-stack-card__top strong {
    font-size: 0.98rem;
  }

  .service-stack-card__intro {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .service-stack-card__meta {
    gap: 0.5rem;
    margin-bottom: 0.58rem;
  }

  .service-stack-card__meta div {
    padding: 0.52rem 0.68rem;
    border-radius: 14px;
  }

  .service-stack-card__meta span {
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
  }

  .service-stack-card__meta strong {
    font-size: 0.84rem;
  }

  .service-stack-card__list {
    gap: 0.3rem;
    margin-bottom: 0.58rem;
  }

  .service-stack-card__list li {
    padding-left: 0.82rem;
    font-size: 0.79rem;
    line-height: 1.28;
    text-align: left;
  }

  .service-stack-card__list li::before {
    top: 0.47rem;
    width: 5px;
    height: 5px;
  }

  .service-stack-card__content .btn {
    width: 100%;
    min-height: 40px;
    margin-top: 0;
    padding: 0.62rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  body.nav-hidden-services .service-stack-card {
    top: 0.55rem;
  }

.service-stack-card__media {
  min-height: 230px;
  max-height: 230px;
}

  .service-stack-card__content {
    padding: 0.64rem 0.74rem 0.7rem;
  }

  .service-stack-card__intro {
    font-size: 0.82rem;
  }

  .service-stack-card__list li {
    font-size: 0.75rem;
    line-height: 1.24;
  }
}
/* =========================================
   PROCESS
   ========================================= */
.process {
  background: #0c0c0c;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2.2rem;
  justify-content: center;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.step-card__icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.step-card__icon i,
.step-card__icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.step-card p {
  max-width: 26ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* =========================================
   RESULTS / EXHAUST COMPARISON
   ========================================= */
.results {
  background: linear-gradient(180deg, #101010 0%, #090909 100%);
}

.results__head {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.exhaust-stack {
  position: relative;
  display: grid;
  gap: 0;
  padding-bottom: 18vh;
}

.exhaust-stack-card {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  z-index: var(--card-index);
}

.exhaust-stack-card + .exhaust-stack-card {
  margin-top: 18px;
}

.exhaust-stack-card__inner {
  overflow: hidden;
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%), #0c0c0d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateX(var(--card-shift)) rotate(var(--card-rotate));
  transform-origin: center bottom;
  isolation: isolate;
}

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

.exhaust-video-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111111;
}

.exhaust-video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.06) 0%, rgba(6, 6, 6, 0.18) 100%);
  pointer-events: none;
}

.exhaust-video-tile__label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.exhaust-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  background: #111111;
}

.exhaust-stack-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 0.15rem;
}

.exhaust-stack-card__caption span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exhaust-stack-card__caption p {
  max-width: 42ch;
  margin-left: auto;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 1023px) {
  .exhaust-stack {
    padding-bottom: 14vh;
  }

  .exhaust-stack-card {
    top: calc(var(--nav-height) + 0.8rem);
  }

  .exhaust-stack-card__inner {
    border-radius: 24px;
  }

  .exhaust-stack-card__pair {
    gap: 0.7rem;
  }

  .exhaust-video-tile {
    border-radius: 20px;
  }

  .exhaust-stack-card__caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .exhaust-stack-card__caption p {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .exhaust-stack-card + .exhaust-stack-card {
    margin-top: 14px;
  }

  .exhaust-stack-card__inner {
    padding: 0.8rem;
  }

  .exhaust-stack-card__pair {
    gap: 0.55rem;
  }

  .exhaust-video-tile__label {
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.38rem 0.62rem;
    font-size: 0.74rem;
  }
}
/* =========================================
   GALLERY
   ========================================= */
.gallery {
  background: #0d0d0d;
}

.gallery .section-head {
  margin-bottom: 1.2rem;
}

.gallery__grid--scrambled {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(82px, 8vw, 180px);
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 10px;
  background: #111111;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-card--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-card--tall {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-card--small {
  grid-column: span 1;
  grid-row: span 1;
}

/* keep the same composition on mobile */
@media (max-width: 767px) {
  .gallery__grid--scrambled {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(72px, 20vw, 110px);
    gap: 0.5rem;
  }

  .gallery-card {
    border-radius: 8px;
  }
}
/* =========================================
   REELS
   ========================================= */
.reels {
  overflow: hidden;
  background: #0a0a0a;
}

.reels .section-head {
  margin-bottom: 1.4rem;
}

.reels .section-head h2 {
  max-width: 10ch;
}

.reels-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.reels-marquee::-webkit-scrollbar {
  display: none;
}

.reels-marquee.is-dragging {
  cursor: grabbing;
}

.reels-track {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  width: max-content;
  padding-right: 0.85rem;
}

.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: 360px;
  height: 640px;
  overflow: hidden;
  border-radius: 10px;
  background: #111111;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  background: #111111;
}

/* =========================================
   LOYALTY
   ========================================= */
.loyalty {
  background: #efefec;
}

.loyalty__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.loyalty__content {
  width: 100%;
  max-width: none;
  margin: 0;
}

.loyalty__content .section-eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  color: #6a6a6a;
  text-align: left;
}

.loyalty__content h2 {
  max-width: 860px;
  margin: 0 auto 1rem;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-align: center;
}

.loyalty__content p {
  max-width: 720px;
  margin: 0 auto;
  color: #5f5f5f;
  line-height: 1.8;
  text-align: center;
}
.loyalty__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}

.loyalty__card-image {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
  transition: transform 260ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.loyalty__card-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.loyalty__card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

/* lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.78);
  transition: opacity 220ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__inner {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
}

.image-lightbox.is-open .image-lightbox__inner {
  transform: translateY(0) scale(1);
}

.image-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
/* =========================================
   CARE KIT
   ========================================= */
.carekit {
  background: #efefec;
  padding-top: 2rem;
  padding-bottom: 5.5rem;
}

.carekit__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  grid-template-areas:
    "media intro"
    "media details";
  column-gap: 2.4rem;
  row-gap: 1rem;
  align-items: center;
}

.carekit__intro {
  grid-area: intro;
}

.carekit__media {
  grid-area: media;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carekit__details {
  grid-area: details;
}

.carekit__image-wrap {
  position: relative;
  width: min(100%, 360px);
  transition: transform 260ms ease;
  will-change: transform;
  touch-action: manipulation;
}

.carekit__image-wrap:hover,
.carekit__image-wrap.is-active {
  transform: translateY(-10px) rotate(-1.2deg) scale(1.03);
  animation: carekitShake 420ms ease-in-out;
}

.carekit__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.16));
}

.carekit__content .section-eyebrow,
.carekit__intro .section-eyebrow {
  color: #6a6a6a;
}

.carekit__intro h2 {
  margin-bottom: 1rem;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.carekit__lead {
  max-width: 58ch;
  color: #5f5f5f;
  line-height: 1.8;
}

.carekit__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.carekit__meta div {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.carekit__meta span {
  display: block;
  margin-bottom: 0.3rem;
  color: #6a6a6a;
  font-size: 0.84rem;
}

.carekit__meta strong {
  color: #111111;
  font-size: 1rem;
}

.carekit__list {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 1.1rem;
}

.carekit__list li {
  position: relative;
  padding-left: 1rem;
  color: #4f4f4f;
  line-height: 1.7;
}

.carekit__list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.55);
}

.carekit__note {
  margin-bottom: 1.3rem;
  color: #6a6a6a;
  line-height: 1.7;
}
.carekit__details .btn.btn--solid {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.carekit__details .btn.btn--solid:hover {
  color: #ffffff;
  background: #1a1a1a;
}
@keyframes carekitShake {
  0% { transform: translateY(-10px) rotate(-1.2deg) scale(1.03); }
  20% { transform: translateY(-11px) rotate(0.8deg) scale(1.035); }
  40% { transform: translateY(-10px) rotate(-0.9deg) scale(1.03); }
  60% { transform: translateY(-11px) rotate(0.6deg) scale(1.035); }
  80% { transform: translateY(-10px) rotate(-0.4deg) scale(1.03); }
  100% { transform: translateY(-10px) rotate(-1.2deg) scale(1.03); }
}

@media (max-width: 767px) {
  .carekit {
    padding-top: 1.2rem;
  }

  .carekit__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "details";
    gap: 1rem;
  }

  .carekit__intro {
    text-align: center;
  }

  .carekit__details {
    text-align: left;
  }

  .carekit__intro h2 {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
    text-align: center;
  }

  .carekit__lead {
    text-align: center;
    max-width: 100%;
  }

  .carekit__note {
    text-align: left;
    max-width: 100%;
  }

  .carekit__media {
    justify-content: center;
  }

  .carekit__image-wrap {
    width: min(72vw, 250px);
  }

  .carekit__meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .carekit__list {
    justify-items: stretch;
  }

  .carekit__list li {
    max-width: 100%;
    padding-left: 1rem;
    text-align: left;
  }

  .carekit__list li::before {
    display: block;
  }

  .carekit__details .btn {
    width: 100%;
  }

  .carekit__image-wrap:hover,
  .carekit__image-wrap.is-active {
    transform: translateY(-6px) rotate(-1deg) scale(1.02);
  }
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
  background: #efefec;
}

.reviews .section-eyebrow {
  color: #6f6a66;
}

.reviews .section-head h2 {
  color: #111111;
}

.reviews .section-head p {
  color: #5f5f5f;
}

.reviews__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.reviews__intro {
  margin-bottom: 0;
}

.reviews__summary {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.reviews__score {
  flex: 0 0 auto;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.reviews__summary-copy {
  display: grid;
  gap: 0.35rem;
}

.reviews__stars {
  color: #111111;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.reviews__summary-copy p {
  color: #5f5f5f;
  line-height: 1.6;
}

.reviews__summary-copy span {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.review-card--featured,
.review-card--quote {
  background: rgba(255, 255, 255, 0.8);
}

.review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.review-card__head h3 {
  margin-bottom: 0.28rem;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  line-height: 1.15;
}

.review-card__head p {
  color: #6a6a6a;
  font-size: 0.9rem;
  line-height: 1.4;
}

.review-card__rating {
  flex: 0 0 auto;
  color: #111111;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  line-height: 1;
}

.review-card__text {
  color: #4f4f4f;
  line-height: 1.78;
}

@media (max-width: 1023px) {
  .reviews__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .reviews__top {
    gap: 1rem;
  }

  .reviews__summary {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

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

  .review-card__head {
    flex-direction: column;
    gap: 0.5rem;
  }

  .review-card__rating {
    letter-spacing: 0.06em;
  }
}
/* =========================================
   FAQ
   ========================================= */
.faq {
  background: #efefec;
}

.faq .section-eyebrow {
  color: #6f6a66;
}

.faq .section-head h2 {
  color: #111111;
}

.faq .section-head p {
  color: #5f5f5f;
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.035);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.2rem;
  color: #111111;
  font-weight: 600;
  text-align: left;
}

.faq-question i,
.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #111111;
  stroke: #111111;
  transition: transform var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.faq-answer p {
  padding: 0 1.2rem 1.2rem;
  color: #5f5f5f;
  line-height: 1.75;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: #efefec;
}

.contact .section-eyebrow {
  color: #6f6a66;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.contact__content h2 {
  margin-bottom: 1rem;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact__content p {
  margin-bottom: 1.4rem;
  color: #5f5f5f;
  line-height: 1.8;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact .btn--solid {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.contact .btn--solid:hover {
  background: #1d1d1d;
}

.contact .btn--ghost {
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: transparent;
}

.contact .btn--ghost:hover {
  background: rgba(17, 17, 17, 0.04);
}

.contact__card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-row i,
.contact-row svg {
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  color: #111111;
  stroke: #111111;
}

.contact-row span {
  display: block;
  margin-bottom: 0.4rem;
  color: #6b6b6b;
  font-size: 0.82rem;
}

.contact-row a,
.contact-row p {
  color: #111111;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  padding: 1.8rem 0 2rem;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.footer__brand img {
  max-width: 170px;
  margin-bottom: 1rem;
}

.footer__brand p,
.footer__contact p,
.footer__bottom p {
  color: var(--muted);
  line-height: 1.7;
}

.footer__nav,
.footer__contact {
  display: grid;
  gap: 0.6rem;
}

.footer__bottom {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (min-width: 768px) {
  .section {
    padding: 6.25rem 0;
  }

  .signature__layout,
  .faq__layout,
  .contact__layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 145px;
  }

  .gallery-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-card--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-card--tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-card--small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: auto;
  }

  .loyalty__cards {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .loyalty__card-image {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .nav-menu,
  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-media img {
    object-position: right center;
  }

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

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

  .process__grid {
    gap: 1.6rem;
  }

  .step-card {
    padding: 2.2rem 1.7rem;
  }

  .step-card__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.35rem;
  }

  .step-card__icon i,
  .step-card__icon svg {
    width: 46px;
    height: 46px;
  }

  .step-card h3 {
    font-size: 1.38rem;
  }

  .step-card p {
    max-width: 28ch;
    font-size: 0.98rem;
  }

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

  .gallery__grid {
    grid-auto-rows: 180px;
    gap: 0.5rem;
  }

  .loyalty__layout {
    gap: 2.4rem;
  }

  .loyalty__content h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.98;
  }

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

  .footer__layout {
    grid-template-columns: 1.3fr 0.9fr 1fr;
    align-items: start;
  }
}

@media (max-width: 1023px) {
  :root {
    --nav-height: 74px;
  }

  .nav-wrap {
    padding: 0.75rem 0;
  }

  .navbar {
    position: relative;
    justify-content: center;
    min-height: var(--nav-height);
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.72);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .brand {
    max-width: 140px;
    margin: 0 auto;
  }

  .brand-logo {
    object-fit: contain;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0.85rem;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .nav-wrap.scrolled .navbar {
    background: rgba(255, 255, 255, 0.94);
  }
.nav-wrap.scrolled .nav-cta {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.nav-wrap.scrolled .nav-cta:hover {
  color: #ffffff;
  background: #1a1a1a;
}
  .mobile-menu__panel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 1.15rem 1rem 1.4rem;
  }

  .mobile-menu__header {
    position: relative;
    justify-content: center;
    padding-bottom: 0.35rem;
  }

  .mobile-menu__logo {
    max-width: 145px;
    margin: 0 auto;
  }

  .mobile-close {
    position: absolute;
    top: 0;
    right: 0;
  }

  .mobile-menu__links {
    gap: 0.2rem;
    margin-top: 0.4rem;
  }

  .mobile-menu__links a {
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 1rem;
  }

  .mobile-menu__cta {
    width: 100%;
    margin-top: 1rem;
  }

  .hero,
  .hero-swiper,
  .hero-slide,
  .hero-media {
    height: 100svh;
    min-height: 100svh;
  }

  .hero__content-wrap {
    align-items: end;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 1.4rem;
  }

  .hero__content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 0.98;
  }

  .hero__text {
    max-width: 100%;
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__pagination {
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-head {
    margin-inline: auto;
    text-align: center;
  }

  .section-eyebrow {
    justify-content: center;
  }

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

  .about__head h2 {
    max-width: 100%;
  }

  .reels .section-head h2 {
    max-width: 100%;
  }

  .reel-card {
    width: 290px;
    height: 520px;
    border-radius: 8px;
  }

  .reels-track {
    gap: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .navbar {
    padding: 0 0.85rem;
  }

  .brand {
    max-width: 124px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.34) 0%, rgba(6, 6, 6, 0.52) 34%, rgba(6, 6, 6, 0.88) 72%, rgba(6, 6, 6, 0.97) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.66) 0%, rgba(6, 6, 6, 0.18) 62%, rgba(6, 6, 6, 0.18) 100%);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .hero__text {
    font-size: 0.92rem;
  }

  .about__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .about__head h2 {
    gap: 0.08em;
  }

  .info-card--refined {
    padding: 1.2rem 1.1rem 1.15rem;
    border-radius: 24px;
  }

  .info-card--refined .info-card__icon,
  .info-card--refined .info-card__icon img {
    max-width: 88px;
  }

  .info-card--refined h3 {
    font-size: 1.12rem;
  }

  .info-card--refined p {
    font-size: 0.94rem;
  }

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

  .service-card__top {
    flex-direction: column;
  }

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

  .gallery-card {
    min-height: 125px;
    border-radius: 6px;
  }

  .gallery-card--large {
    grid-column: span 2;
    min-height: 210px;
  }

  .gallery-card--wide {
    grid-column: span 2;
    min-height: 135px;
  }

  .gallery-card--tall {
    min-height: 170px;
  }

  .gallery-card--small {
    min-height: 125px;
  }

  .reels {
    padding: 4rem 0;
  }

  .reels .section-head {
    margin-bottom: 1rem;
  }

  .reel-card {
    width: 220px;
    height: 390px;
    border-radius: 7px;
  }

  .reels-track {
    gap: 0.55rem;
    padding-right: 0.55rem;
  }

  .loyalty__card-image:hover {
    transform: none;
  }

  .image-lightbox {
    padding: 1rem;
  }

  .image-lightbox__img {
    border-radius: 14px;
  }

  .faq-item,
  .contact__card {
    border-radius: 20px;
  }
}

@media (min-width: 1024px) and (max-height: 850px) {
  .hero__content-wrap {
    padding-top: calc(var(--nav-height) + 5.8rem);
    padding-bottom: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  }

  .hero__text {
    max-width: 520px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* =========================================
   RESPONSIVE / MOBILE ALIGNMENT
   ========================================= */
@media (max-width: 767px) {
  .section-head,
  .hero__content,
  .about__head,
  .signature__content,
  .step-card,
  .reels .section-head,
  .loyalty__content,
  .reviews .section-head,
  .review-card,
  .faq .section-head,
  .contact__content,
  .contact__card,
  .footer__layout,
  .footer__brand,
  .footer__nav,
  .footer__contact,
  .footer__bottom {
    text-align: center;
  }

  .section-head {
    margin-left: auto;
    margin-right: auto;
  }

  .section-eyebrow,
  .about__eyebrow,
  .loyalty__content .section-eyebrow,
  .reviews .section-eyebrow,
  .faq .section-eyebrow,
  .contact .section-eyebrow {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero__actions,
  .contact__actions {
    justify-content: center;
  }

  .signature__meta,
  .process__grid,
  .faq__layout,
  .contact__layout,
  .footer__layout {
    text-align: center;
  }

  .service-card__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-card__top strong {
    white-space: normal;
  }

  .service-card ul,
  .feature-list {
    justify-items: center;
  }

  .service-card li,
  .feature-list li {
    padding-left: 0;
    text-align: center;
  }

  .service-card li::before,
  .feature-list li::before {
    display: none;
  }

  .faq-question {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-row i {
    margin-top: 0;
  }
}
/* =========================================
   RESULTS / EXHAUST MOBILE REFINEMENTS
   ========================================= */
.exhaust-stack-card__caption {
  display: none;
}

@media (max-width: 767px) {
  .exhaust-stack {
    overflow: visible;
  }

  .exhaust-stack-card__inner {
    width: 100%;
    transform: translateX(0) rotate(0deg);
    padding: 0.8rem;
  }

  .exhaust-stack-card:nth-child(1) .exhaust-stack-card__inner {
    transform: rotate(-1.15deg);
  }

  .exhaust-stack-card:nth-child(2) .exhaust-stack-card__inner {
    transform: rotate(0deg);
  }

  .exhaust-stack-card:nth-child(3) .exhaust-stack-card__inner {
    transform: rotate(1.15deg);
  }

  .exhaust-stack-card__pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .exhaust-video-tile {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .exhaust-video {
    object-fit: cover;
    object-position: center center;
  }
}
/* Gallery collage offsets */
.gallery__grid--scrambled {
  gap: 0.85rem;
}

.gallery__grid--scrambled .gallery-card {
  transform-origin: center center;
  transition: transform 300ms ease;
  will-change: transform;
}

/* Desktop and tablet collage offsets */
.gallery__grid--scrambled .gallery-card:nth-child(1)  { transform: rotate(-1.8deg) translateY(8px); }
.gallery__grid--scrambled .gallery-card:nth-child(2)  { transform: rotate(1.4deg) translateY(-6px); }
.gallery__grid--scrambled .gallery-card:nth-child(3)  { transform: rotate(-2.2deg) translateY(10px); }
.gallery__grid--scrambled .gallery-card:nth-child(4)  { transform: rotate(2deg) translateY(-10px); }
.gallery__grid--scrambled .gallery-card:nth-child(5)  { transform: rotate(-1deg) translateY(6px); }
.gallery__grid--scrambled .gallery-card:nth-child(6)  { transform: rotate(1.8deg) translateY(-4px); }
.gallery__grid--scrambled .gallery-card:nth-child(7)  { transform: rotate(-1.5deg) translateY(12px); }
.gallery__grid--scrambled .gallery-card:nth-child(8)  { transform: rotate(1.2deg) translateY(-8px); }
.gallery__grid--scrambled .gallery-card:nth-child(9)  { transform: rotate(-2deg) translateY(6px); }
.gallery__grid--scrambled .gallery-card:nth-child(10) { transform: rotate(1.6deg) translateY(-6px); }
.gallery__grid--scrambled .gallery-card:nth-child(11) { transform: rotate(-1.3deg) translateY(8px); }
.gallery__grid--scrambled .gallery-card:nth-child(12) { transform: rotate(1.9deg) translateY(-10px); }
.gallery__grid--scrambled .gallery-card:nth-child(13) { transform: rotate(-1.7deg) translateY(5px); }
.gallery__grid--scrambled .gallery-card:nth-child(14) { transform: rotate(1.1deg) translateY(-7px); }
.gallery__grid--scrambled .gallery-card:nth-child(15) { transform: rotate(-2.1deg) translateY(10px); }
.gallery__grid--scrambled .gallery-card:nth-child(16) { transform: rotate(1.5deg) translateY(-5px); }
.gallery__grid--scrambled .gallery-card:nth-child(17) { transform: rotate(-1.2deg) translateY(7px); }
.gallery__grid--scrambled .gallery-card:nth-child(18) { transform: rotate(2deg) translateY(-9px); }
.gallery__grid--scrambled .gallery-card:nth-child(19) { transform: rotate(-1.6deg) translateY(6px); }

/* Mobile gallery overlap fix */
@media (max-width: 767px) {
  .gallery__grid--scrambled {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(74px, 19vw, 108px);
    gap: 0.55rem;
  }

  .gallery__grid--scrambled .gallery-card {
    transform: none !important;
  }

  .gallery-card {
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .footer .brand,
  .footer__brand,
  .footer__logo,
  .footer__left .brand {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
  }

  .footer .brand img,
  .footer__brand img,
  .footer__logo img,
  .footer__left .brand img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .site-header {
    min-height: auto;
  }

  .hero,
  .hero-swiper,
  .hero-slide,
  .hero-media {
    height: 95svh;
    min-height: 750px;
  }

  .hero__content-wrap {
    align-items: end;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 7.5rem;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    transform: translateY(1.25rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
    max-width: 24ch;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-media picture,
  .hero-media img {
    width: 100%;
    height: 100%;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center 38%;
  }
  
}
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.82);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    visibility 260ms ease,
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.back-to-top:hover {
  background: rgba(22, 22, 22, 0.96);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

@media (max-width: 767px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   SCROLLBAR
   ========================================= */
html {
  scrollbar-color: #ffffff #000000;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 999px;
  border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

@media (max-width: 767px) {
  .nav-wrap:not(.scrolled) .navbar {
    min-height: auto;
    padding: 0.2rem 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-wrap:not(.scrolled) .brand {
    max-width: 150px;
    margin: 0 auto;
  }

  .nav-wrap:not(.scrolled) .nav-toggle {
    right: 0.15rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-wrap:not(.scrolled) .nav-toggle span {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
}
/* =========================================
   EYEBROW TITLES - TARGETED ALIGNMENT + LOOP SLIDE
   ========================================= */

/* Eyebrow title loop animation */
.section-eyebrow,
.about__eyebrow {
  will-change: transform, opacity;
  animation: eyebrowSlideLoop 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

/* About eyebrow alignment */
.about__eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1rem 0;
  text-align: left;
}

/* Care Kit eyebrow alignment */
.carekit__intro .section-eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1rem 0;
  text-align: left;
}

/* Eyebrow slide keyframes */
@keyframes eyebrowSlideLoop {
  0% {
    transform: translateX(28px);
    opacity: 0;
  }
  12% {
    transform: translateX(0);
    opacity: 1;
  }
  58% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-28px);
    opacity: 0;
  }
}

/* Mobile eyebrow alignment */
@media (max-width: 767px) {
  .about__eyebrow,
  .carekit__intro .section-eyebrow {
    width: fit-content !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .section-eyebrow,
  .about__eyebrow {
    animation: none;
  }
}
@media (max-width: 767px) {
  .hero__text {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .signature__layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .signature__content {
    display: contents;
  }

  .signature__content > .section-eyebrow {
    order: 1;
  }

  .signature__content > h2 {
    order: 2;
  }

  .signature__content > p:not(.section-eyebrow) {
    order: 3;
  }

  .signature__content > .signature__meta {
    order: 4;
  }

  .signature__content > .feature-list {
    order: 5;
  }

  .signature__visual {
    order: 6;
    width: 100%;
  }

  .signature__content > .btn {
    order: 7;
    align-self: center;
    margin-top: 0.2rem;
  }
}
@media (max-width: 767px) {
  .step-card p {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================================
   GALLERY LIGHTBOX - MOBILE
   ========================================= */
@media (max-width: 767px) {
  .gallery-card {
    cursor: pointer;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__inner {
  width: 100%;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__inner img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* =========================================
   MOBILE REVIEWS INFINITE SLIDER
   ========================================= */
@media (max-width: 767px) {
  .reviews {
    overflow: hidden;
  }

  .reviews .container {
    overflow: hidden;
  }

  .reviews__top {
    margin-bottom: 1.25rem;
  }

  .reviews__grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: max-content;
    max-width: none;
    overflow: visible;
    will-change: transform;
  }

  .reviews__grid.reviews__slider-track {
    cursor: grab;
  }

  .reviews__grid.reviews__slider-track.is-paused {
    cursor: grabbing;
  }

  .reviews__grid .review-card {
    flex: 0 0 min(82vw, 340px);
    width: min(82vw, 340px);
    height: 390px;
    min-height: 390px;
    max-height: 390px;
    margin-right: 0.9rem;
    padding: 1.15rem 1.05rem;
    gap: 0.85rem;
    overflow: hidden;
    text-align: left;
  }

  .reviews__grid .review-card__head {
    min-height: 48px;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .reviews__grid .review-card__head h3 {
    font-size: 0.98rem;
  }

  .reviews__grid .review-card__head p {
    font-size: 0.8rem;
  }

  .reviews__grid .review-card__rating {
    font-size: 0.72rem;
    letter-spacing: 0.045em;
    padding-top: 0.1rem;
  }

  .reviews__grid .review-card__text {
    display: -webkit-box;
    overflow: hidden;
    color: #4f4f4f;
    font-size: 0.84rem;
    line-height: 1.55;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 380px) {
  .reviews__grid .review-card {
    flex-basis: 84vw;
    width: 84vw;
    height: 365px;
    min-height: 365px;
    max-height: 365px;
    padding: 1rem 0.95rem;
  }

  .reviews__grid .review-card__text {
    font-size: 0.8rem;
    line-height: 1.48;
    -webkit-line-clamp: 12;
  }
}

