/* ============================================================
   MVMTLab — Motion Design and Animation Studio
   LIGHT theme: storyboard-bright #F7F7F2 / film-ink #26262B
   Accent: frame-orange #E8622C | Film-navy #2C3A50
   ============================================================ */

:root {
  --storyboard: #F7F7F2;
  --stub-bright: #FFFFFF;
  --film-ink: #26262B;
  --film-soft: #4A4E58;
  --frame-orange: #E8622C;
  --film-navy: #2C3A50;
  --peg-grey: #9AA0A8;
  --cel-sky: #8FC7DE;
  --ruler-blue: #B9C6D8;
  --hairline: #E2E2D8;
  --deep-navy: #202A3C;
  --stub-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  background-color: var(--storyboard);
  color: var(--film-ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Trebuchet MS", "Segoe UI", Verdana, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--film-ink);
}

a { color: var(--frame-orange); text-decoration: none; cursor: pointer; }

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

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVIGATION — PEG-BAR NAV
   ============================================================ */

.pegbar-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background-color: var(--stub-bright);
  box-shadow: 0 2px 0 var(--hairline);
}

.pegbar-nav .peg-strip {
  position: relative;
  width: 100%;
  height: 14px;
  background-color: var(--peg-grey);
  overflow: hidden;
}

.peg-strip .peg-hole {
  position: absolute;
  top: 1px;
  width: 11px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--storyboard);
}

.peg-strip .peg-hole.one { left: 12.5%; }
.peg-strip .peg-hole.two { left: 50%; transform: translateX(-50%); }
.peg-strip .peg-hole.three { right: 12.5%; }

.pegbar-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-row .brand {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 21px;
  text-transform: uppercase;
  color: var(--film-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-row .brand .mvmt { color: var(--frame-orange); }

.nav-row .brand .ball-glyph {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 18px;
}

.nav-row .brand .ball-glyph .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--frame-orange);
}

.nav-row .brand .ball-glyph .arc {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--film-navy);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--film-ink);
}

.nav-links a {
  color: var(--film-ink);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  display: block;
  position: relative;
  margin-top: 3px;
  height: 2px;
  width: 0;
  background-color: var(--frame-orange);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--frame-orange); }
.nav-links a:hover::after { width: 100%; }

.nav-links .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--cel-sky);
  display: inline-block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1px solid var(--film-ink);
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--film-ink);
}

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 10px;
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links .dot { display: none; }
}

/* ============================================================
   HERO — BOUNCING-BALL HERO
   ============================================================ */

.ballhero {
  width: 100%;
  background-color: var(--storyboard);
  padding: 78px 0 88px;
  position: relative;
}

.ballhero .hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-text { flex: 0 0 55%; max-width: 55%; }

.hero-eyebrow {
  display: inline-block;
  background-color: var(--frame-orange);
  color: var(--storyboard);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: 46px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: var(--film-ink);
}

.hero-text h1 .accent { color: var(--frame-orange); }

.hero-sub {
  color: var(--film-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: var(--frame-orange);
  color: var(--stub-white);
}

.btn-primary:hover { background-color: #D45522; }

.btn-outline {
  background-color: transparent;
  color: var(--film-navy);
  border: 1px solid var(--film-navy);
}

.btn-outline:hover { background-color: var(--film-navy); color: var(--stub-white); }

/* Animator desk */
.hero-desk { flex: 0 0 45%; max-width: 45%; }

.desk-stage {
  position: relative;
  background-color: var(--stub-bright);
  border: 1px solid var(--hairline);
  padding: 26px 22px 18px;
  border-radius: 3px;
  box-shadow: 0 12px 30px rgba(44, 58, 80, 0.10);
  overflow: hidden;
}

.lightbox {
  position: relative;
  background-color: #EDF3F6;
  border: 6px solid var(--film-navy);
  border-radius: 3px;
  padding: 16px;
  transform: rotate(-1.2deg);
  box-shadow: 0 0 0 1px var(--ruler-blue);
}

.lightbox::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background-color: var(--cel-sky);
  filter: saturate(0.32);
}

.storyboard-sheet {
  background-color: #FFFFFF;
  border: 1px solid var(--hairline);
  padding: 12px;
  position: relative;
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peg-grey);
  border-bottom: 1px dashed var(--ruler-blue);
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.sheet-panels {
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.sheet-panel {
  flex: 1;
  height: 78px;
  border: 1px solid var(--peg-grey);
  background-color: var(--storyboard);
  position: relative;
}

.stick-jump {
  position: absolute;
  top: 8px;
  left: 14px;
  width: 22px;
  height: 34px;
  border-bottom: 2px solid var(--film-navy);
}

.stick-jump::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  height: 10px;
  width: 10px;
  border: 2px solid var(--frame-orange);
  border-radius: 50%;
}

.stick-jump::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  height: 22px;
  width: 2px;
  background-color: var(--film-navy);
}

.arrow-path {
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  height: 30px;
  background:
    linear-gradient(90deg, transparent 0 88%, var(--cel-sky) 88% 92%, transparent 92% 100%);
  position: relative;
}

.arrow-path::before {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--frame-orange);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.arrow-path::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 88%;
  height: 2px;
  border-radius: 50%;
  border-bottom: 2px dashed var(--film-navy);
}

.product-box {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--film-navy);
}

.product-box::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 10px;
  width: 5px;
  height: 15px;
  background-color: var(--film-navy);
  transform: rotate(24deg);
}

.product-box::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--frame-orange);
  border-radius: 2px;
}

.action-arrow {
  display: block;
  text-align: center;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  color: var(--frame-orange);
  letter-spacing: 0.12em;
  margin: 10px 0 4px;
}

.scene-note {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peg-grey);
}

.timing-chart {
  margin-top: 14px;
  background-color: #FFFFFF;
  border: 1px solid var(--hairline);
  padding: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.chart-line {
  position: relative;
  width: 120px;
  height: 68px;
  border-bottom: 2px solid var(--film-navy);
  border-left: 2px solid var(--film-navy);
}

.chart-line .dotted-arc {
  position: absolute;
  left: 6px;
  top: 54px;
  width: 108px;
  height: 60px;
  border: 2px dashed var(--peg-grey);
  border-left: none;
  border-bottom: none;
  border-radius: 60% 60% 0 0;
}

.ball-pos {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--frame-orange);
}

.ball-pos.b1 { top: 6px; left: 8px; }
.ball-pos.b2 { top: 20px; left: 30px; }
.ball-pos.b3 { top: 34px; left: 52px; }
.ball-pos.b4 { top: 47px; left: 72px; }
.ball-pos.squash {
  top: 57px;
  left: 92px;
  height: 8px;
  width: 22px;
  border-radius: 50%;
}

.chart-tags {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  color: var(--film-navy);
  line-height: 1.9;
  padding-top: 4px;
}

.chart-tags .g1 { color: var(--frame-orange); font-weight: 700; }
.chart-tags .g2 { letter-spacing: 0.2em; }

.pencil-box {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pencil {
  position: relative;
  width: 130px;
  height: 12px;
  background: linear-gradient(90deg, #E8622C 0 70%, #26262B 70% 82%, #8FC7DE 82% 100%);
  transform: rotate(-8deg);
  border-radius: 2px;
  flex-shrink: 0;
}

.pencil::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 0;
  height: 0;
  border-right: 6px solid var(--peg-grey);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.pencil::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 2px;
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: 2px;
}

.mileage-strip {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--peg-grey);
}

.mileage-strip .strokes {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}

.mileage-strip .strokes span {
  display: block;
  width: 7px;
  height: 2px;
  background-color: var(--frame-orange);
  transform: rotate(-45deg);
}

.timecode {
  margin-top: 16px;
  display: inline-block;
  background-color: var(--deep-navy);
  color: var(--cel-sky);
  font-family: "Courier New", Courier, monospace;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 2px;
}

.desk-peg {
  margin-top: 18px;
  height: 14px;
  position: relative;
  background-color: var(--peg-grey);
  border-radius: 2px;
  overflow: hidden;
}

.desk-peg .dp-hole {
  position: absolute;
  top: 1px;
  width: 11px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--stub-bright);
}

.desk-peg .dp-hole.one { left: 20%; }
.desk-peg .dp-hole.two { left: 50%; transform: translateX(-50%); }
.desk-peg .dp-hole.three { right: 20%; }

/* ============================================================
   EXPOSURE-SHEET ROWS
   ============================================================ */

.xsheet-rows {
  width: 100%;
  background-color: var(--storyboard);
  padding: 70px 0 74px;
}

.xsheet-rows .section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
  color: var(--frame-orange);
  margin-bottom: 10px;
}

.section-head .head-note {
  color: var(--film-soft);
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.xsheet-row {
  display: flex;
  align-items: stretch;
  background-color: var(--stub-bright);
  border: 1px solid var(--hairline);
  margin-bottom: 12px;
}

.xsheet-frame {
  flex: 0 0 64px;
  background-color: var(--film-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
}

.xsheet-frame .frame-num {
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  color: var(--cel-sky);
  letter-spacing: 0.05em;
}

.xsheet-frame .frame-num.hot {
  color: var(--frame-orange);
  font-weight: 700;
}

.xsheet-body {
  flex: 1;
  padding: 22px 20px;
}

.xsheet-body h3 {
  font-size: 21px;
  color: var(--film-ink);
  margin-bottom: 8px;
}

.xsheet-body p {
  color: var(--film-soft);
  font-size: 15.5px;
}

.xsheet-side {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  border-left: 1px dashed var(--ruler-blue);
}

.lip-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.lip-chip .mouth {
  width: 30px;
  height: 7px;
  border: 2px solid var(--peg-grey);
  border-radius: 50%;
}

.lip-chip .mouth.small { height: 5px; width: 26px; }
.lip-chip .mouth.open { height: 9px; border-color: var(--frame-orange); }

.level-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 100%;
}

.level-bars .bar {
  height: 4px;
  background-color: var(--peg-grey);
}

.level-bars .bar.w2 { width: 40px; }
.level-bars .bar.w3 { width: 60px; }
.level-bars .bar.w1 { width: 28px; background-color: var(--frame-orange); }

/* ============================================================
   FRAME-COUNTER METRIC BAND
   ============================================================ */

.metric-band {
  width: 100%;
  background-color: var(--film-navy);
  padding: 58px 0;
}

.metric-band .metric-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.metric-item {
  flex: 1 1 200px;
  text-align: center;
}

.metric-item .num-frame {
  display: inline-block;
  background-color: var(--film-navy);
  border: 1px solid var(--stub-white);
  position: relative;
  padding: 4px 18px;
  color: var(--frame-orange);
  font-family: "Courier New", Courier, monospace;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.num-frame::before,
.num-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 12px;
  background-color: var(--cel-sky);
  transform: translateY(-50%);
}

.num-frame::before { left: 6px; }
.num-frame::after { right: 6px; }

.metric-item .metric-label {
  display: block;
  color: var(--stub-white);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */

.statement-band {
  width: 100%;
  background-color: var(--stub-bright);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 64px 0;
}

.statement-band .statement {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  padding-left: 24px;
  border-left: 4px solid var(--cel-sky);
}

.statement-band .statement p {
  font-size: 24px;
  line-height: 1.5;
  color: var(--film-ink);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.statement-band .statement .attrib {
  display: block;
  color: var(--film-soft);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  width: 100%;
  background-color: var(--storyboard);
  padding: 70px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 32px;
  color: var(--frame-orange);
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--film-soft);
  max-width: 560px;
  margin: 0 auto 26px;
}

/* ============================================================
   SPROCKET FOOTER
   ============================================================ */

.sprocket-footer {
  width: 100%;
  background-color: var(--deep-navy);
  position: relative;
  color: var(--stub-white);
}

.sprocket-footer .film-strip {
  width: 100%;
  height: 16px;
  background:
    repeating-linear-gradient(90deg, var(--deep-navy) 0 26px, var(--peg-grey) 26px 0),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(154,160,168,0.25) 6px 10px, transparent 10px 26px);
  filter: saturate(0.92);
  position: relative;
  border-bottom: 1px solid var(--stub-white);
  height: 17px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 24px 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--stub-white);
  margin-bottom: 24px;
}

.footer-brand .mvmt { color: var(--frame-orange); }

.footer-brand .ball-glyph { width: 16px; height: 22px; position: relative; display: inline-block; }
.footer-brand .ball-glyph .dot {
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-color: var(--frame-orange);
}
.footer-brand .ball-glyph .arc {
  position: absolute;
  bottom: 0; left: 0;
  width: 16px; height: 7px;
  border-bottom: 2px solid var(--cel-sky);
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a { color: var(--stub-white); }
.footer-links a:hover { color: var(--frame-orange); }
.footer-links .sep { color: var(--peg-grey); }

.lightbox-divider {
  width: 88px;
  height: 16px;
  margin: 0 auto 26px;
  border: 1px solid var(--cel-sky);
  border-radius: 3px;
  position: relative;
  background-color: #E4F1F6;
}

.lightbox-divider .peg-trio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 8px;
}

.lightbox-divider .peg-trio span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--frame-orange);
}

.footer-legal {
  font-size: 14px;
  line-height: 1.8;
  color: var(--peg-grey);
}

.footer-legal a { color: var(--cel-sky); }

.watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: #EAEAE2;
  line-height: 1;
  visibility: hidden;
  z-index: 0;
}

/* ============================================================
   Shared secondary-page styles
   ============================================================ */

.page-hero {
  width: 100%;
  background-color: var(--storyboard);
  padding: 70px 0 60px;
}

.page-hero .page-eyebrow {
  display: inline-block;
  background-color: var(--frame-orange);
  color: var(--storyboard);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 14px;
}

.page-hero .page-lede {
  color: var(--film-soft);
  max-width: 720px;
}

/* Services page */
.service-section {
  width: 100%;
  background-color: var(--storyboard);
  padding: 46px 0;
}

.service-block {
  background-color: var(--stub-bright);
  border: 1px solid var(--hairline);
  padding: 28px;
  margin-bottom: 16px;
  border-left: 5px solid var(--frame-orange);
}

.service-block h2 {
  font-size: 24px;
  color: var(--film-navy);
  margin-bottom: 12px;
}

.service-block p {
  color: var(--film-soft);
  margin-bottom: 10px;
}

.process-band {
  width: 100%;
  background-color: var(--film-navy);
  padding: 60px 0;
  color: var(--stub-white);
}

.process-band h2 { color: var(--stub-white); margin-bottom: 26px; }

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 170px;
  border: 1px solid var(--cel-sky);
  padding: 18px;
}

.process-step .step-num {
  font-family: "Courier New", Courier, monospace;
  color: var(--frame-orange);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 15px;
  color: var(--stub-white);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 14px;
  color: var(--peg-grey);
}

/* Contact page */
.contact-wrap {
  width: 100%;
  background-color: var(--storyboard);
  padding: 40px 0 70px;
}

.contact-grid {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 520px;
  background-color: var(--stub-bright);
  border: 1px solid var(--hairline);
  padding: 30px;
}

.contact-form h2 { font-size: 24px; color: var(--film-navy); margin-bottom: 6px; }
.contact-form .form-note { color: var(--film-soft); margin-bottom: 20px; }

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--film-ink);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--peg-grey);
  background-color: var(--storyboard);
  color: var(--film-ink);
  padding: 11px 12px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 2px;
}

.form-field textarea { min-height: 140px; resize: vertical; }

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

.form-status {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 14px;
  margin-top: 14px;
  display: none;
}

.form-status.show { display: block; }
.form-status.ok { color: var(--film-navy); }
.form-status.err { color: #AA2F1E; }

.contact-notes {
  flex: 0 1 360px;
}

.contact-card {
  background-color: var(--stub-bright);
  border: 1px solid var(--hairline);
  padding: 24px;
  margin-bottom: 24px;
}

.contact-card h3 {
  font-size: 16px;
  color: var(--frame-orange);
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.contact-card p { color: var(--film-soft); margin-bottom: 6px; }
.contact-card a { color: var(--film-navy); }
.contact-card a:hover { color: var(--frame-orange); }

.business-hours { font-size: 15px; }

.faq-block { background-color: var(--stub-bright); border: 1px solid var(--hairline); margin-bottom: 10px; }

.faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--film-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q .mark { color: var(--frame-orange); font-family: Georgia, serif; }

.faq-a {
  padding: 0 20px 18px;
  color: var(--film-soft);
  display: none;
}

.faq-block.open .faq-a { display: block; }
.faq-block.open .mark { transform: rotate(45deg); }

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero-wrap { flex-direction: column; }
  .hero-text { flex: 0 0 100%; max-width: 100%; }
  .hero-desk { flex: 0 0 100%; max-width: 100%; }
  .hero-text h1 { font-size: 38px; }
  .xsheet-row { flex-wrap: wrap; }
  .xsheet-side { flex: 0 0 100%; flex-direction: row; border-left: none; border-top: 1px dashed var(--ruler-blue); }
  .xsheet-frame { flex: 0 0 50px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-row { padding: 14px 18px; }
  .metric-row { flex-direction: column; }
  .process-steps { flex-direction: column; }
}
