/* Instrument Sans is self-hosted through fonts.css, which BaseLayout links ahead
   of this file and the vendor stylesheets. Do not reintroduce an @import here: it
   would sit behind those stylesheets and add another render-blocking hop. */

:root {
  --blue: #2f319f;
  --blue-dark: #21236f;
  --blue-soft: #f3f4ff;
  --ink: #16171d;
  --muted: #6f7280;
  --line: #e7e8ee;
  --soft: #f8f9fc;
  --white: #fff;
  /* Text and surface steps. Fase 4 folded the four near-identical navigation
     greys into one, the two placeholder greys into one, and the three
     secondary borders into one. */
  --text-2: #656772;
  --text-3: #85868e;
  --placeholder: #eceef5;
  --line-2: #dfe0e5;
  --line-blue: #cfd1ec;
  --line-blue-hover: #c5c7e8;
  --blue-tint: #aeb0db;
  --footer-bg: #151518;
  --footer-text: #a7a8ae;
  /* Validation error. Fase 5 added it with the novalidate + manual-report
     booking flow; the booking form is the only consumer. */
  --danger: #c0392b;
  --container: 1240px;
  --nav-h: 78px;
  /* Typography scale. Fase 3 collapsed the previous 11 ad-hoc sizes into two
     body steps and three tracking steps, so every page shares one scale. */
  --text-body: 1.03rem;
  --text-lead: 1.15rem;
  --tracking-display: -0.07em;
  --tracking-base: -0.045em;
  --tracking-sub: -0.03em;
  --tracking-eyebrow: 0.12em;
  --stagger: 0.07s;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family:
    "Instrument Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  letter-spacing: var(--tracking-base);
  font-weight: 600;
}
/* Bootstrap gives h1 a 0.5rem bottom margin. Only .hero h1 was overriding it,
   so every .page-hero h1 carried an arbitrary gap before its paragraph. Reset it
   here and let the paragraph own the spacing instead. */
h1 {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition:
    opacity 0.45s ease,
    visibility 0.45s;
}
.preloader-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: preloaderPulse 1.1s ease-in-out infinite;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}
/* Ring sits on the preloader box, not the <img>: a replaced element cannot carry
   ::after, and .preloader is already position:fixed so the ring can be centred
   absolutely. 132px keeps clearance around the 96px logo even at pulse scale 1.07
   (102.7px), so the two never touch. */
.preloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  margin: -66px 0 0 -66px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--blue);
  border-right-color: var(--blue-tint);
  animation: preloaderSpin 0.72s linear infinite;
}
/* Both keyframes must name a transform explicitly. With a `to`-only keyframe the
   implicit `from` is `transform: none`, and none -> rotate(360deg) is interpolated
   as a matrix: both are identity matrices, so every frame is identical and the
   ring sits still. Naming `from: rotate(0deg)` makes the browser interpolate the
   angle instead, which actually spins. */
@keyframes preloaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.text-blue {
  color: var(--blue) !important;
}
.bg-soft {
  background: var(--soft);
}
.eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  font-weight: 700;
  color: var(--blue);
}
.section {
  padding: 108px 0;
  position: relative;
}
.section + .section:not(.section-flush) {
  border-top: 1px solid var(--line);
}
.section-flush {
  padding-top: 0;
}
/* Two title steps only. The full display scale belongs to a section that spans
   the container; a title inside a Bootstrap column gets .section-title-sm via
   the col-lg-* overrides further down. */
.section-title {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: var(--tracking-display);
  max-width: 900px;
}
.section-title-sm {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-display);
  max-width: 820px;
}
.section-copy {
  font-size: var(--text-body);
  color: var(--muted);
  max-width: 620px;
}
/* A display-scale title inside a half-width column drops to roughly ten
   characters per line at 1440px, so narrow columns step down one level.
   Scoped to >=992px on purpose: below that Bootstrap stacks the columns to full
   width, and the responsive .section-title overrides further down the file must
   win there. Unscoped, this higher specificity would cap the mobile title at
   3.3rem and beat the 2.8rem mobile rule. */
@media (min-width: 992px) {
  .col-lg-5 .section-title,
  .col-lg-5 .section-title-sm,
  .col-lg-6 .section-title {
    font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  }
}

/* Navbar */
.navbar {
  min-height: var(--nav-h);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.navbar.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(24, 25, 34, 0.04);
}
.navbar-brand {
  font-weight: 650;
  letter-spacing: var(--tracking-sub);
  color: var(--ink);
}
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.navbar .nav-link {
  color: var(--text-2);
  font-size: 0.91rem;
  font-weight: 550;
  padding: 0.65rem 0.78rem !important;
  position: relative;
}
/* Underline sweep on hover/active. Excludes .dropdown-toggle because Bootstrap
   already uses that element's ::after for the caret, and this selector would
   otherwise win and erase it. */
.navbar .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link.active:not(.dropdown-toggle)::after {
  transform: scaleX(1);
}
/* The Divisi toggle is a real <button> (Fase 5), so it needs the anchor
   defaults undone or Bootstrap's button styling shows through. */
.navbar .nav-link.dropdown-toggle {
  background: none;
  border: 0;
  cursor: pointer;
}
/* The .active variant was removed in Fase 4 and reintroduced in Fase 5 together
   with real aria-current="page" markup. Keep the two in step. */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--blue);
}
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 18px 50px rgba(23, 24, 32, 0.08);
}
.dropdown-item {
  border-radius: 5px;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
}
.dropdown-item:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.btn {
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.91rem;
  padding: 0.78rem 1.1rem;
  transition:
    color 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn .bi-arrow-up-right {
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover:not(:focus-visible) .bi-arrow-up-right {
  transform: translate(3px, -3px);
}
.btn:hover:not(:focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 31, 45, 0.12);
}
/* Bootstrap menaruh focus ring di box-shadow. Kalau box-shadow ikut di-transition,
   ring fokus mundur ~0.22s sebelum terlihat — untuk keyboard itu terlalu lambat. */
.btn:focus-visible {
  transition-property: color, background-color, border-color, transform;
}
.btn:active:not(:focus-visible) {
  transform: none;
  box-shadow: none;
  transition-duration: 0.1s;
}
.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue-dark);
  --bs-btn-hover-border-color: var(--blue-dark);
}
.btn-outline-primary {
  --bs-btn-color: var(--blue);
  --bs-btn-border-color: var(--line-blue);
  --bs-btn-hover-bg: var(--blue-soft);
  --bs-btn-hover-color: var(--blue);
  --bs-btn-hover-border-color: var(--line-blue-hover);
}
/* Keyboard focus for everything Bootstrap does not style with a ring: inline
   copy links, the footer links, the anchor-nav, the filter buttons, and the
   form controls. Bootstrap's own .btn ring is handled above. */
a:focus-visible,
button:focus-visible,
.anchor-nav a:focus-visible,
.filter-btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.footer-link:focus-visible,
.logo-chip:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 8px;
}
/* Skip link: parked off-canvas until it takes focus, then it drops to the top
   left above the fixed navbar. Without this the first Tab stop is invisible. */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2100;
  padding: 12px 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom-right-radius: 8px;
  transform: translateY(-120%);
  transition: transform 0.18s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: -4px;
}

/* Hero */
.hero {
  padding: 155px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
  background-image: url("../img/bg/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: var(--nav-h) 0 auto;
  height: 430px;
  background-image:
    linear-gradient(to right, rgba(47, 49, 159, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 49, 159, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(3.68rem, 8.4vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: var(--tracking-display);
  max-width: 1120px;
  margin: 0;
}
.hero .lead {
  font-size: var(--text-lead);
  color: var(--muted);
  max-width: 690px;
  margin: 34px 0 0;
}
.hero-actions {
  margin-top: 34px;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.26em;
  margin-bottom: -0.26em;
}
.hero-line > span {
  display: inline-block;
  transform: translateY(145%);
  animation: heroRise 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-line:nth-child(2) > span {
  animation-delay: 0.08s;
}
.hero-line:nth-child(3) > span {
  animation-delay: 0.16s;
}
.hero .lead,
.hero-actions,
.hero .eyebrow {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.65s ease forwards;
}
.hero .eyebrow {
  animation-delay: 0.18s;
}
.hero .lead {
  animation-delay: 0.28s;
}
.hero-actions {
  animation-delay: 0.38s;
}
@keyframes heroRise {
  to {
    transform: none;
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-orbit {
  position: absolute;
  right: -170px;
  top: 120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(47, 49, 159, 0.14);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
  pointer-events: none;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(47, 49, 159, 0.1);
  border-radius: 50%;
}
.hero-orbit::before {
  inset: 58px;
}
.hero-orbit::after {
  inset: 128px;
}
@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-stage {
  scroll-margin-top: calc(var(--nav-h) + 18px);
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding-inline: max(38px, calc((100% - var(--container)) / 2 + 12px));
}
.hero-stage-item {
  min-height: 330px;
  padding: 34px 38px 38px;
  position: relative;
  color: var(--ink);
  overflow: hidden;
  transition: 0.3s ease;
}
.hero-stage-item + .hero-stage-item {
  border-left: 1px solid var(--line);
}
.hero-stage-item .num {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}
.hero-stage-item h2 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 0.94;
  max-width: 560px;
  margin-top: 92px;
  transition: 0.28s ease;
}
.hero-stage-item p {
  color: var(--muted);
  max-width: 520px;
  margin: 18px 0 0;
}
.hero-stage-item::after {
  content: "↗";
  position: absolute;
  right: 30px;
  top: 26px;
  color: var(--blue);
  font-size: 1.25rem;
  transition: 0.25s;
}
.hero-stage-item:hover {
  background: var(--blue-soft);
}
.hero-stage-item:hover h2 {
  transform: translateY(-4px);
}
.hero-stage-item:hover::after {
  transform: translate(4px, -4px);
}

.stat-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.stat-value {
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: var(--tracking-sub);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* media / showcase */
.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--placeholder);
  aspect-ratio: 16/11;
}
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, var(--py, 0px), 0) scale(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* .media-frame is a plain figure wrapper in most placements, so its hover is a
   decorative affordance. Gated on (hover: hover) so it cannot stick on touch. */
@media (hover: hover) {
  .media-frame:hover img {
    transform: translate3d(0, var(--py, 0px), 0) scale(1.075);
  }
  .media-frame:hover .media-label {
    transform: translateY(-4px);
  }
}
.media-frame .media-label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 18px 22px;
  max-width: min(340px, 100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* The "Satu studio" illustration is square and opaque now, so the frame matches
   its ratio and resets the shared scale so the whole artwork shows at rest; the
   hover zoom from the shared .media-frame rule still applies. */
.media-frame-illustration {
  aspect-ratio: 1 / 1;
}
.media-frame-illustration img {
  object-fit: cover;
  transform: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-box {
  position: relative;
  padding: 38px 36px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 270px;
  background: var(--white);
  transition: 0.25s ease;
}
@media (hover: hover) {
  .service-box:hover {
    background: var(--blue-soft);
  }
  .service-box:hover .icon {
    transform: translateY(-4px);
  }
}
.service-box .icon {
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 72px;
  transition: transform 0.25s ease;
}
.service-box h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}
.service-box p {
  color: var(--muted);
  max-width: 430px;
  margin: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.feature-band-1 {
  grid-template-columns: 1fr;
}
.feature-band-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-band-item {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.feature-band-item i {
  color: var(--blue);
  font-size: 1.2rem;
}
.feature-band-item h3 {
  font-size: 1.2rem;
  margin: 38px 0 0.6rem;
}
.feature-band-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}
.feature-band-item .value-illustration {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}
.feature-band-1 .step-illustration {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
}

/* 21 owner-confirmed client logos sit on a full 7-column desktop grid (7x3) and
   3 columns below 992px (3x7), so every row is full. minmax(0,1fr) lets the
   tracks shrink instead of overflowing the container, and the mesh is drawn with
   the wall's left/top border plus each chip's right/bottom border. */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.logo-chip {
  height: 108px;
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--text-3);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--white);
}
.logo-chip img {
  max-height: 58px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: 0.2s;
}
@media (hover: hover) {
  .logo-chip:hover img {
    filter: none;
    opacity: 1;
  }
}

.quote-strip {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-strip > div {
  padding: 38px 0;
}
.quote-strip > div + div {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}
.quote-strip blockquote {
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: var(--tracking-sub);
  margin: 0;
}
.quote-strip small {
  color: var(--muted);
}

/* cards and team */
.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.feature-list li:last-child {
  border-bottom: 0;
}
.feature-list i {
  color: var(--blue);
}
.team-card {
  border: 1px solid var(--line);
  background: var(--white);
  height: 100%;
  overflow: hidden;
  transition: 0.25s ease;
}
@media (hover: hover) {
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(30, 31, 45, 0.07);
  }
}
.team-photo {
  aspect-ratio: 4/4.65;
  background: var(--blue-soft);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s;
}
@media (hover: hover) {
  .team-card:hover .team-photo img {
    transform: scale(1.025);
  }
}
.team-body {
  padding: 24px;
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.team-body h3 {
  font-size: 1.35rem;
  margin: 0.55rem 0 0.55rem;
}
.team-body p {
  font-size: 0.91rem;
  color: var(--muted);
  margin: 0;
}

/* internal pages */
.page-hero {
  position: relative;
  padding: 166px 0 96px;
  background: var(--white);
  background-image: url("../img/bg/hero-bg-right.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: var(--nav-h) 0 0;
  background-image: linear-gradient(
    to right,
    rgba(47, 49, 159, 0.045) 1px,
    transparent 1px
  );
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(to right, #000, transparent 65%);
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(3.6rem, 7.5vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: var(--tracking-display);
  max-width: 1080px;
}
.page-hero p {
  font-size: var(--text-lead);
  color: var(--muted);
  max-width: 730px;
  /* All five page heroes already carry Bootstrap mt-4, which wins on !important
     and owns the real gap. This is the floor for any future .page-hero p that
     does not, now that h1 no longer contributes a bottom margin. */
  margin-top: 22px;
}
/* Bare error pages: no navbar/footer, everything centered on white. */
.error-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 64px 24px;
  background: var(--white);
  text-align: center;
}
.error-hero .container {
  max-width: 640px;
}
.error-code {
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.9;
  letter-spacing: var(--tracking-display);
  font-weight: 700;
  color: var(--blue);
}
.error-hero h1 {
  margin: 18px 0 0;
}
.error-hero .section-copy {
  margin: 14px auto 0;
}
.error-hero .btn {
  margin-top: 28px;
}
.anchor-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.anchor-nav .nav {
  overflow-x: auto;
  flex-wrap: nowrap;
}
.anchor-nav a {
  white-space: nowrap;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 550;
  padding: 16px 18px;
  display: block;
  border-right: 1px solid var(--line);
}
.anchor-nav a:first-child {
  border-left: 1px solid var(--line);
}
.anchor-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}
.content-block {
  scroll-margin-top: calc(var(--nav-h) + 67px);
}
.media-card {
  height: 100%;
}
.media-card .media {
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--placeholder);
}
.media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}
@media (hover: hover) {
  .media-card:hover .media img {
    transform: scale(1.025);
  }
}
.media-card .body {
  padding: 22px 0 4px;
}
.media-card .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--blue);
  font-weight: 650;
}
.media-card h2 {
  font-size: 1.45rem;
  margin: 0.55rem 0 0.4rem;
}
.media-card p {
  color: var(--muted);
  margin: 0;
}
.filter-bar {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 5px;
  padding: 0.58rem 0.86rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
/* Live result count. It is a real text node, not a label, so it needs to sit
   outside the button row without pulling a flex gap onto the group. */
.filter-count {
  flex-basis: 100%;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.equipment-card {
  border: 1px solid var(--line);
  padding: 22px;
  height: 100%;
  background: var(--white);
}
/* Replaces Bootstrap's .h5 utility that used to size these headings, so the
   equipment cards no longer put a utility class on a real <h3>. */
.equipment-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}
.equipment-card p {
  color: var(--muted);
}
.equipment-icon {
  height: 125px;
  background: var(--blue-soft);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 2.1rem;
  margin-bottom: 18px;
}
/* One availability CTA for the whole rental grid, in place of a link on every
   equipment card. Soft blue so it does not compete with the page's final .cta. */
.rental-cta {
  margin-top: 46px;
  padding: 32px 36px;
  background: var(--blue-soft);
  border: 1px solid var(--line-blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.rental-cta h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
}
.rental-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}
.form-control,
.form-select {
  padding: 0.88rem 0.95rem;
  border-radius: 5px;
  border: 1px solid var(--line-2);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--blue-tint);
  box-shadow: 0 0 0 0.18rem rgba(47, 49, 159, 0.08);
}
/* The form is novalidate so main.js can report every empty field in one sentence
   instead of the browser's per-field bubble. These two rules replace the native
   red outline that the disabled validation would have drawn. */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--danger);
  background-image: none;
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: var(--danger);
  box-shadow: 0 0 0 0.18rem rgba(192, 57, 43, 0.12);
}
/* Select2 replaces the native select with a container, so the invalid state is
   mirrored onto .select2-container by main.js. Override the theme's Bootstrap-red
   with the design token. */
.select2-container--bootstrap-5.is-invalid .select2-selection {
  border-color: var(--danger) !important;
}
.select2-container--bootstrap-5.is-invalid.select2-container--focus .select2-selection {
  box-shadow: 0 0 0 0.18rem rgba(192, 57, 43, 0.12) !important;
}
.booking-card .select2-container--bootstrap-5 .select2-selection {
  min-height: calc(1.5em + 1.76rem + 2px);
  padding: 0.88rem 0.95rem;
  border-radius: 5px;
  border-color: var(--line-2);
}
.booking-card .select2-container--bootstrap-5 .select2-selection--single {
  padding: 0.88rem 2.25rem 0.88rem 0.95rem;
}
.booking-card .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.booking-card .select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: var(--blue-tint);
  box-shadow: 0 0 0 0.18rem rgba(47, 49, 159, 0.08);
}
.form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-3);
}
.form-status.is-error {
  color: var(--danger);
  font-weight: 600;
}
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
}
.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
}
.cta {
  background: var(--blue);
  color: var(--white);
  padding: 68px 70px;
  position: relative;
  overflow: hidden;
}
.cta .btn:hover:not(:focus-visible) {
  transform: translateY(-1px);
}
.cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -95px;
  bottom: -195px;
}
.cta h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.91;
  letter-spacing: var(--tracking-display);
  max-width: 930px;
}
.cta p,
.cta a,
.cta .eyebrow {
  position: relative;
  z-index: 1;
}
.cta p {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 66px 0 26px;
}
.footer-blurb {
  max-width: 34ch;
  margin-bottom: 0;
}
.footer-link {
  display: block;
  color: var(--footer-text);
  margin: 8px 0;
  font-size: 0.9rem;
}
.footer-link:hover {
  color: var(--white);
}
.footer-kicker {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 46px;
  padding-top: 22px;
  color: var(--text-3);
  font-size: 0.85rem;
}

/* professional motion */
/* No-JS guard: .reveal* start hidden and are only revealed by the .show class that
   assets/js/main.js adds. Without JS they would stay invisible forever, so the
   shared <noscript> block in the head force-shows all three. Keep that block in
   sync with this list if a new reveal variant is ever added. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.show {
  opacity: 1;
  transform: none;
}
/* Stagger step is a token, not a literal, so every grid on every page shares one
   rhythm. The classes stay delay-1..3 because that is what the markup uses. */
.reveal.delay-1 {
  transition-delay: calc(var(--stagger) * 1);
}
.reveal.delay-2 {
  transition-delay: calc(var(--stagger) * 2);
}
.reveal.delay-3 {
  transition-delay: calc(var(--stagger) * 3);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-left.show {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-right.show {
  opacity: 1;
  transform: none;
}
/* An element only earns a compositor layer while the scroll handler is actually
   moving it. syncParallax() in assets/js/main.js sets will-change inline while
   parallax is active and clears it when parallax is off, so no static rule
   belongs here. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1080;
  pointer-events: none;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.anchor-nav a {
  position: relative;
}
.anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.anchor-nav a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}
.anchor-nav a.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  :root {
    --nav-h: 72px;
  }
  /* Bootstrap .g-5 rows use a 24px half-gutter that outweighs the container's
     12px padding, so the row bleeds past the viewport. Match the container
     padding to the widest gutter (24px) on tablet/mobile: no bleed, and text
     gets a comfortable 24px inset. */
  .container {
    --bs-gutter-x: 3rem;
  }
  /* Horizontal reveal can shift content off-screen before .show; keep the
     motion vertical on tablet/mobile. */
  .reveal-left,
  .reveal-right {
    transform: translateY(18px);
  }
  .navbar-collapse {
    padding: 14px 0 20px;
  }
  .hero {
    padding-top: 132px;
  }
  .hero-stage {
    grid-template-columns: 1fr;
    padding-inline: 12px;
  }
  .hero-stage-item + .hero-stage-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .section:not(.section-flush) {
    padding: 86px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .feature-band,
  .feature-band-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quote-strip {
    grid-template-columns: 1fr;
  }
  .quote-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .page-hero {
    padding-top: 138px;
  }
  .cta {
    padding: 52px 38px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section:not(.section-flush) {
    padding: 96px 0;
  }
  .section-title {
    font-size: 3.2rem;
  }
  .section-title-sm {
    font-size: 2.6rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-band,
  .feature-band-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quote-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .hero {
    padding-top: 116px;
  }
  .hero-stage {
    margin-top: 58px;
  }
  .hero-stage-item {
    padding: 28px 24px;
    min-height: 235px;
  }
  .hero-stage-item h2 {
    margin-top: 52px;
    font-size: 2.4rem;
  }
  .section:not(.section-flush) {
    padding: 72px 0;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .section-title-sm {
    font-size: 2.3rem;
  }
  .media-label {
    padding: 14px 16px;
  }
  .service-box {
    padding: 30px 24px;
    min-height: 230px;
  }
  .service-box .icon {
    margin-bottom: 50px;
  }
  .logo-chip {
    height: 94px;
    padding: 12px;
  }
  .rental-cta {
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero {
    padding: 125px 0 65px;
  }
  .booking-card {
    padding: 24px;
  }
  .cta {
    padding: 40px 24px;
  }
  .cta h2 {
    font-size: 3rem;
  }
  .team-body {
    padding: 20px;
  }
}
