/* Ampwise — hand-authored static stylesheet.
   Design tokens ported 1:1 from the former Tailwind v4 `@theme` in app/globals.css. */

:root {
  --color-navy-950: #07070a;
  --color-navy-900: #0b0c11;
  --color-navy-800: #131419;
  --color-navy-700: #1c1e26;
  --color-navy-600: #2a2d38;

  --color-amber-400: #f0a52a;
  --color-amber-300: #f5c168;
  --color-amber-500: #d38a1e;

  --color-cyan-300: #7fe3ef;
  --color-cyan-400: #3fd9e8;
  --color-cyan-500: #1fb8c9;

  --color-ink-50: #ffffff;
  --color-ink-200: #cbd2e1;
  --color-ink-400: #8791ab;

  --background: var(--color-navy-950);
  --foreground: var(--color-ink-50);

  --font-display: "Segoe UI Semibold", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

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

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

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

.font-display {
  font-family: var(--font-display);
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: 72rem; /* 6xl */
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 2rem;
  }
}

.container--md {
  max-width: 56rem; /* 4xl */
}

.container--lg {
  max-width: 64rem; /* 5xl */
}

.container--narrow {
  max-width: 42rem; /* 2xl */
}

.section {
  padding-block: 6rem;
}

.section--tight {
  padding-block: 2.5rem;
}

.section--border-t {
  border-top: 1px solid rgb(203 210 225 / 0.1);
}

.section--border-b {
  border-bottom: 1px solid rgb(203 210 225 / 0.1);
}

.section--alt {
  background: var(--color-navy-900);
}

.scroll-anchor {
  scroll-margin-top: 6rem;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-amber-400);
  color: var(--color-navy-950);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 0 0 0.5rem 0;
}

.skip-link:focus {
  left: 0;
}

/* Shared focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-amber-300);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background-color 150ms, border-color 150ms, color 150ms;
}

.btn--primary {
  background: var(--color-amber-400);
  color: var(--color-navy-950);
}

.btn--primary:hover {
  background: var(--color-amber-300);
}

.btn--secondary {
  background: transparent;
  border: 1px solid rgb(203 210 225 / 0.3);
  color: var(--color-ink-50);
}

.btn--secondary:hover {
  border-color: var(--color-ink-50);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink-50);
}

.btn--ghost:hover {
  color: var(--color-amber-300);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(203 210 225 / 0.1);
  background: rgb(7 7 10 / 0.9);
  backdrop-filter: blur(8px);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  border-radius: 0.25rem;
}

.logo__image {
  height: 100%;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
}

.footer .logo {
  height: 2.75rem;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
  }
}

.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-200);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 150ms;
}

.primary-nav a:hover {
  color: var(--color-ink-50);
}

.primary-nav a[aria-current="page"] {
  color: var(--color-amber-300);
}

.call-btn {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 9999px;
  background: var(--color-amber-400);
  color: var(--color-navy-950);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 150ms;
}

.call-btn:hover {
  background: var(--color-amber-300);
}

@media (min-width: 1024px) {
  .call-btn {
    display: inline-flex;
  }
}

.nav-toggle {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgb(203 210 225 / 0.2);
  background: transparent;
  color: var(--color-ink-50);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  pointer-events: none;
}

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

.mobile-nav {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid transparent;
  background: var(--color-navy-950);
  transition: max-height 200ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.is-open {
  max-height: 28rem;
  opacity: 1;
  border-top-color: rgb(203 210 225 / 0.1);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
}

.mobile-nav a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-200);
}

.mobile-nav a:hover {
  background: var(--color-navy-800);
  color: var(--color-ink-50);
}

.mobile-nav__call {
  padding-top: 0.5rem;
}

.mobile-nav__call a {
  border-radius: 9999px;
  background: var(--color-amber-400);
  color: var(--color-navy-950);
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgb(203 210 225 / 0.1);
  background: var(--color-navy-950);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

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

.footer__blurb {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-400);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgb(203 210 225 / 0.15);
  color: var(--color-ink-400);
  transition: color 150ms, border-color 150ms;
}

.footer__social a:hover {
  color: var(--color-amber-300);
  border-color: rgb(240 165 42 / 0.4);
}

.footer__heading {
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ink-400);
  font-size: 0.875rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer__list a {
  color: var(--color-ink-200);
}

.footer__list a:hover {
  color: var(--color-amber-300);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-ink-200);
}

.footer__contact a:hover {
  color: var(--color-amber-300);
}

.footer__branch-name {
  display: block;
  color: var(--color-ink-400);
}

.footer__bottom {
  border-top: 1px solid rgb(203 210 225 / 0.1);
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-ink-400);
}

.footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: var(--color-amber-300);
}

/* ---------- Preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-950);
  animation: preloader-out 0.4s ease 1.6s forwards;
}

.preloader__video {
  display: block;
  width: min(90vw, 480px);
  height: auto;
}

@keyframes preloader-out {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* The global reduced-motion rule above collapses animation *durations*
   to near-zero but not *delays*, so without this override the loader
   would still sit through its full ~2s delay before snapping to hidden.
   Zero the delay too so reduced-motion users get an effectively instant,
   non-blocking page load — the video keeps playing behind the hidden
   overlay (no reliable no-JS way to stop it), but nothing is visible
   or blocks interaction. */
@media (prefers-reduced-motion: reduce) {
  .preloader {
    animation-delay: 0s !important;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-950);
}

.hero__stage {
  position: absolute;
  inset: 0;
}

.hero__stage canvas {
  position: absolute;
  inset: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--color-navy-950) 0%,
    rgb(7 7 10 / 0.4) 60%,
    rgb(7 7 10 / 0.1) 100%
  );
}

.hero-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-fallback__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgb(246 185 59 / 0.16), transparent 60%);
}

.hero-fallback__grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: linear-gradient(rgb(63 217 232 / 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgb(63 217 232 / 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.12);
  }
}

.hero-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 420px;
  width: 420px;
  border-radius: 9999px;
  background: rgb(240 165 42 / 0.1);
  filter: blur(64px);
  animation: hero-pulse 4s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  max-width: 48rem;
  padding: 6rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero__content {
    padding-inline: 2rem;
  }
}

.hero__eyebrow {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-amber-400);
}

.hero__headline {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-ink-50);
}

@media (min-width: 640px) {
  .hero__headline {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero__headline {
    font-size: 3.75rem;
  }
}

.hero__subhead {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

/* ---------- Hero photo reveal ---------- */

.hero__photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  pointer-events: none;
}

.hero__photo {
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.hero__photo--left {
  object-position: 50% 50%;
}

.hero__photo--right {
  object-position: 50% 45%;
}

.hero--peek-left .hero__photo--left,
.hero--peek-right .hero__photo--right {
  opacity: 1;
}

/* .hero__gradient alone (tuned for the dark particle field) isn't enough
   contrast against these bright warehouse photos — this scrim adds extra
   flat darkening only while a photo is revealed, so the headline/CTA stay
   legible without changing the gradient's normal look at rest. */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgb(7 7 10 / 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero--peek-left .hero__scrim,
.hero--peek-right .hero__scrim {
  opacity: 1;
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ---------- Section heading ---------- */

.section-heading {
  max-width: 42rem;
}

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

.section-heading__eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-amber-400);
}

.section-heading__eyebrow--cyan {
  color: var(--color-cyan-400);
}

.section-heading__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ink-50);
}

@media (min-width: 640px) {
  .section-heading__title {
    font-size: 2.25rem;
  }
}

.section-heading__body {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}

.breadcrumbs__list li {
  display: flex;
  align-items: center;
  color: var(--color-ink-400);
}

.breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: var(--color-ink-400);
}

.breadcrumbs__list a {
  color: var(--color-ink-200);
  text-decoration: none;
}

.breadcrumbs__list a:hover {
  color: var(--color-ink-50);
}

.breadcrumbs__list [aria-current="page"] {
  color: var(--color-ink-200);
}

.page-hero {
  text-align: center;
}

.page-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-ink-50);
}

@media (min-width: 640px) {
  .page-hero__title {
    font-size: 3rem;
  }
}

.page-hero__subhead {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--color-ink-200);
}

.lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

/* ---------- Grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

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

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

.grid--tight {
  gap: 1.25rem;
}

/* ---------- Cards ---------- */

.card {
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: rgb(19 20 25 / 0.6);
  padding: 1.75rem;
}

.card--lg {
  padding: 2rem;
}

.card--sm {
  padding: 1.5rem;
}

.card--amber-outline {
  border-color: rgb(240 165 42 / 0.25);
}

.card--cyan-outline {
  border-color: rgb(63 217 232 / 0.25);
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

.card__title--amber {
  color: var(--color-amber-300);
}

.card__title--cyan {
  font-size: 1rem;
  color: var(--color-cyan-300);
}

.card__body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

/* Service card */

.service-card {
  display: block;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: rgb(19 20 25 / 0.6);
  padding: 2rem;
  transition: border-color 150ms;
}

.service-card:hover {
  border-color: rgb(240 165 42 / 0.6);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

.service-card:hover .service-card__title {
  color: var(--color-amber-300);
}

.service-card__body {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

.service-card__link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-amber-300);
}

.service-card__link span {
  transition: transform 150ms;
}

.service-card:hover .service-card__link span {
  transform: translateX(4px);
}

/* Feature list */

.feature-list {
  display: grid;
  gap: 1.25rem;
}

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

.feature-item {
  display: flex;
  gap: 0.75rem;
}

.feature-item__check {
  margin-top: 0.25rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgb(240 165 42 / 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-amber-300);
}

.feature-item__title {
  font-weight: 600;
  color: var(--color-ink-50);
}

.feature-item__body {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

/* Highlight banner */

.highlight-banner {
  background: var(--color-amber-400);
}

.highlight-banner__inner {
  margin-inline: auto;
  max-width: 56rem;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .highlight-banner__inner {
    padding-inline: 2rem;
  }
}

.highlight-banner__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgb(7 7 10 / 0.7);
}

.highlight-banner__heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-navy-950);
}

@media (min-width: 640px) {
  .highlight-banner__heading {
    font-size: 2.25rem;
  }
}

.highlight-banner__body {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: rgb(7 7 10 / 0.8);
}

/* Stat badge */

.stat-badge {
  border-radius: 0.75rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: rgb(11 12 17 / 0.6);
  padding: 1rem 1.25rem;
}

.stat-badge__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ink-400);
}

.stat-badge__value {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

/* Team card */

.team-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: rgb(19 20 25 / 0.6);
  padding: 1.75rem;
  text-align: center;
}

.team-card__avatar {
  height: 6rem;
  width: 6rem;
  flex: none;
  border-radius: 9999px;
  border: 1px solid rgb(240 165 42 / 0.3);
  background: var(--color-navy-900);
  object-fit: cover;
}

.team-card__name {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

.team-card__title {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-amber-300);
}

.team-card__bio {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

/* Placeholder image */

.placeholder-image {
  position: relative;
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-navy-700));
}

.placeholder-image--video {
  aspect-ratio: 16 / 9;
}

.placeholder-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    45deg,
    rgb(246 185 59 / 0.08) 0,
    rgb(246 185 59 / 0.08) 2px,
    transparent 2px,
    transparent 14px
  );
}

.placeholder-image__label {
  position: relative;
  padding-inline: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-400);
}

/* Carousel */

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__viewport::-webkit-scrollbar {
  display: none;
}

.carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.carousel__slide .placeholder-image {
  border-radius: 0;
}

.carousel__frame {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy-800), var(--color-navy-700));
}

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

.carousel__frame--contain img {
  object-fit: contain;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgb(203 210 225 / 0.2);
  background: rgb(11 12 17 / 0.65);
  color: var(--color-ink-50);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.carousel__btn:hover,
.carousel__btn:focus-visible {
  background: rgb(11 12 17 / 0.9);
  border-color: var(--color-amber-400);
}

.carousel__btn--prev {
  left: 0.5rem;
}

.carousel__btn--next {
  right: 0.5rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgb(203 210 225 / 0.25);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--color-amber-400);
}

.project-photo {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  object-fit: cover;
}

.project-photo--video {
  aspect-ratio: 16 / 9;
}

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

.supplier-badge__logo {
  height: 2.5rem;
  width: auto;
  flex: none;
  border-radius: 0.375rem;
}

.supplier-badge__text {
  font-size: 0.875rem;
  color: var(--color-ink-200);
}

.map-cta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: var(--color-navy-900);
  transition: border-color 150ms;
}

.map-cta:hover {
  border-color: rgb(240 165 42 / 0.5);
}

.map-cta__icon {
  flex: none;
  color: var(--color-amber-400);
}

.map-cta__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

.map-cta__arrow {
  margin-left: auto;
  color: var(--color-ink-400);
  transition: transform 150ms, color 150ms;
}

.map-cta:hover .map-cta__arrow {
  transform: translateX(2px);
  color: var(--color-amber-300);
}

/* Industry / list items */

.tag-list-item {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgb(203 210 225 / 0.15);
  background: rgb(19 20 25 / 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-ink-200);
}

.plus-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.625rem;
}

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

.plus-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-200);
}

.plus-list li span {
  color: var(--color-amber-400);
}

/* CTA band */

.cta-section {
  border-top: 1px solid rgb(203 210 225 / 0.1);
  background: var(--color-navy-900);
}

.cta-section__inner {
  margin-inline: auto;
  display: flex;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 5rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-section__inner {
    padding-inline: 2rem;
  }
}

.cta-section__heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-ink-50);
}

@media (min-width: 640px) {
  .cta-section__heading {
    font-size: 1.875rem;
  }
}

.cta-section__body {
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--color-ink-200);
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-section__actions {
    flex-direction: row;
  }
}

/* ---------- Contact form ---------- */

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

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.form-field label {
  margin-bottom: 0.375rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink-200);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgb(203 210 225 / 0.2);
  background: var(--color-navy-900);
  padding: 0.75rem 1rem;
  color: var(--color-ink-50);
  font-family: inherit;
  font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-amber-400);
}

.form-error {
  font-size: 0.875rem;
  color: #f87171;
}

.form-success {
  border-radius: 1rem;
  border: 1px solid rgb(240 165 42 / 0.4);
  background: rgb(19 20 25 / 0.6);
  padding: 2rem;
  text-align: center;
}

.form-success__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-amber-300);
}

.form-success__body {
  margin-top: 0.5rem;
  color: var(--color-ink-200);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-ink-400);
}

.contact-card + .contact-card {
  margin-top: 1.5rem;
}

.contact-columns {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-columns {
    grid-template-columns: 1.3fr 1fr;
  }
}

[hidden] {
  display: none !important;
}
