/* Product Movement - productmovementco.com
   Tokens inherited from ~/Claude Projects/STYLE_GUIDE.md section 2.1.
   Deviation on file: marketing type scale (17px body, display headings)
   rather than the 14px dashboard base. */

:root {
  --orange:       #FF9900;
  --orange-hover: #E68A00;
  --orange-soft:  #FFF4E0;
  --orange-ink:   #8A5200;

  --gray-50:  #FAFAF9;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-300: #D6D3D1;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-700: #44403C;
  --gray-900: #1C1917;

  --ink:      var(--gray-900);
  --ink-mid:  #57534E;
  --ink-soft: var(--gray-500);

  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --measure: 62ch;
  --nav-h: 68px;
  --radius: 10px;
  --radius-sm: 6px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: 820px; }

/* ---------------- navigation ---------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.nav.stuck {
  border-bottom-color: var(--gray-200);
  background: rgba(250, 250, 249, .94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

/* over the dark hero */
.nav .wordmark { color: #fff; }
.nav .nav-links a { color: rgba(255, 255, 255, .74); }
.nav .nav-links a:hover { color: #fff; }
.nav .nav-links .nav-cta { color: #fff; border-color: rgba(255, 255, 255, .3); }
.nav .nav-links .nav-cta:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* once scrolled onto the light body */
.nav.stuck .wordmark { color: var(--ink); }
.nav.stuck .nav-links a { color: var(--ink-mid); }
.nav.stuck .nav-links a:hover { color: var(--ink); }
.nav.stuck .nav-links .nav-cta { color: var(--ink); border-color: var(--gray-300); }
.nav.stuck .nav-links .nav-cta:hover { background: #fff; border-color: var(--ink); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .mark {
  width: 11px;
  height: 11px;
  background: var(--orange);
  border-radius: 2px;
  flex: none;
}
.wordmark.small { font-size: 15px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 7px 15px;
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
}
.nav-links .nav-cta:hover { border-color: var(--ink); background: #fff; }

/* ---------------- shared type ---------------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

h1 {
  font-weight: 800;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.035em;
  max-width: 15ch;
}

h2 {
  font-weight: 700;
  font-size: clamp(29px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  max-width: 20ch;
  margin-bottom: 26px;
}

h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.014em;
  margin-bottom: 10px;
}

p { margin: 0 0 18px; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(18px, 1.9vw, 21px);
  line-height: 1.52;
  color: var(--ink-mid);
  max-width: 46ch;
  margin-bottom: 34px;
}

.section-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 56ch;
  margin-bottom: 46px;
}

/* ---------------- buttons ---------------- */

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; }

.btn {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #241300;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background 150ms var(--ease), transform 150ms var(--ease);
}
.btn:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-quiet {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2px;
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
}
.btn-quiet:hover { color: var(--ink); border-color: var(--ink); }

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #121010;
  padding: calc(var(--nav-h) + clamp(64px, 9vw, 116px)) 0 clamp(74px, 10vw, 124px);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* keeps the type readable over the motion */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(110% 85% at 12% 42%, rgba(18, 16, 16, .95) 0%, rgba(18, 16, 16, .72) 46%, rgba(18, 16, 16, .3) 100%),
    linear-gradient(to bottom, rgba(18, 16, 16, .55) 0%, rgba(18, 16, 16, 0) 26%, rgba(18, 16, 16, .82) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.hero h1 { margin-bottom: 28px; color: #fff; }
.hero .lead { color: #B9B2AC; }
.hero .eyebrow { color: #A29A94; }
.hero .btn-quiet { color: #C9C2BC; border-color: rgba(255, 255, 255, .28); }
.hero .btn-quiet:hover { color: #fff; border-color: #fff; }

.spec {
  border-top: 2px solid rgba(255, 255, 255, .82);
  padding-top: 18px;
  margin-top: 10px;
}
.spec dl { margin: 0; display: flex; flex-direction: column; }
.spec dl > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.spec dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9A928C;
}
.spec dd {
  margin: 0;
  font-size: 15.5px;
  font-weight: 500;
  color: #F0ECE9;
}

/* ---------------- bands ---------------- */

.band { padding: clamp(72px, 9.5vw, 132px) 0; }
.band.alt { background: #fff; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px 60px;
}
.two-col p { max-width: 46ch; }

/* ---------------- steps ---------------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
}
.steps li {
  padding: 30px 34px 34px 0;
  border-bottom: 1px solid var(--gray-200);
}
.steps li + li { border-left: 1px solid var(--gray-200); padding-left: 34px; }
.step-n {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange-ink);
  margin-bottom: 18px;
}
.steps p { color: var(--ink-mid); max-width: 42ch; font-size: 16px; }

/* ---------------- capability cards ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.card {
  background: var(--gray-50);
  padding: 34px 32px 36px;
  transition: background 180ms var(--ease);
}
.card:hover { background: #fff; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-mid); font-size: 15.5px; max-width: 40ch; }

/* ---------------- dark operation band ---------------- */

.band.dark {
  background: var(--gray-900);
  color: var(--gray-100);
}
.band.dark h2 { color: #fff; }
.band.dark .eyebrow { color: var(--gray-400); }
.band.dark .section-lead { color: #C4BEB8; }

/* ---------------- photography ---------------- */

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 0 0 56px;
}
.shot {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1F1B1A;
  position: relative;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.shot:hover img { transform: scale(1.03); }

/* small caption sits over the image, bottom left */
.shot::before {
  content: attr(data-shot);
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}
.shot.empty::before { content: none; }

/* shown only while the real photograph is missing */
.shot.empty img { display: none; }
.shot.empty {
  border: 1px dashed #4A4340;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 10px, transparent 10px 20px),
    #1A1716;
}
.shot.empty::after {
  content: attr(data-shot);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #7E756F;
}

.specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 56px;
  border-top: 1px solid #3B3532;
}
.specs li {
  padding: 15px 0;
  border-bottom: 1px solid #3B3532;
  font-size: 15.5px;
  color: #E3DEDA;
  display: flex;
  align-items: baseline;
  gap: 14px;
  max-width: none;
}
.specs li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 1px;
  flex: none;
}

/* ---------------- reasons ---------------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px 52px;
}
.reasons h3 { margin-bottom: 12px; }
.reasons p { color: var(--ink-mid); font-size: 16px; max-width: 40ch; }

/* ---------------- faq ---------------- */

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 31px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 35px; }
.faq-body { padding: 0 0 24px; }
.faq-body p { color: var(--ink-mid); max-width: 60ch; }

/* ---------------- contact ---------------- */

.band.contact { background: #fff; border-top: 1px solid var(--gray-200); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px 48px;
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.ck {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.cv { font-size: 18px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.5; }
.cv a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--orange); padding-bottom: 1px; }
.cv a:hover { color: var(--orange-ink); }

/* ---------------- footer ---------------- */

.foot { background: var(--gray-900); color: var(--gray-400); padding: 34px 0; }
.foot .wordmark { color: #fff; }
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 30px;
}
.foot-meta { font-size: 13px; color: #8A827C; }

/* ---------------- reveal ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .spec { max-width: 460px; }
  .steps li + li { border-left: none; padding-left: 0; }
  .steps li { padding-right: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .nav-inner { padding: 0 22px; }
  .card { padding: 28px 24px 30px; }
  .specs { gap: 0; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
