/* ============================================================================
   MOVEEN MARKETING SITE — styles.css
   Mobile-first (390px baseline), scales up via min-width media queries.
   ============================================================================ */

:root {
  --orange: #F47B20;
  --ink: #0E0E0E;
  --paper: #F4F5F3;
  --stone: #6B7A72;
  --white: #FFFFFF;

  /* Brand --stone on --paper is only ~4.1:1 contrast, which fails WCAG AA for
     normal-size text (needs 4.5:1). --stone stays available for large text /
     decorative use; --stone-text is a darker derivative used for any actual
     body-sized copy so we stay AA-compliant everywhere. */
  --stone-text: #4E5C55;

  --border: rgba(14, 14, 14, 0.14);
  --orange-tint: rgba(244, 123, 32, 0.10);

  --font-display: 'Archivo Narrow', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

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

h1, h2, h3 { font-family: var(--font-display); }

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

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 700;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================================
   SHARED COMPONENTS
   ============================================================================ */

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 26px;
  background: var(--orange);
  /* Ink text on this orange is ~7.4:1 contrast (AA pass); the brand pack's
     literal "white bold text" spec is only ~2.7:1 on this orange (AA fail),
     so ink text is used here to meet the non-negotiable AA requirement. */
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.1;
}
.btn-pill:hover, .btn-pill:focus-visible { background: #d96a15; }
.btn-pill-lg { padding: 17px 30px; font-size: 17px; }
.btn-pill-sm { padding: 8px 16px; font-size: 13px; }

.section { padding: 56px 20px; max-width: 1000px; margin: 0 auto; }
.section h2 {
  font-size: clamp(24px, 6vw, 32px);
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
  font-weight: 700;
}

.road-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14px;
  background: var(--ink);
  background-image: repeating-linear-gradient(to right, transparent 0 18px, var(--white) 18px 34px);
  background-position: center;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}

/* ============================================================================
   1. STICKY HEADER
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: var(--ink);
  border-bottom: 3px solid var(--orange);
}

.header-logo img { height: 32px; width: 32px; }
.logo-fallback { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 16px; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-quote-pill { display: none; }
.site-header.is-scrolled .header-quote-pill { display: inline-flex; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 2px;
}
.header-phone:hover, .header-phone:focus-visible { color: var(--orange); }

/* ============================================================================
   2. HERO
   ============================================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 40px 20px 0;
  text-align: center;
}

.speed-streaks { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.streak {
  position: absolute;
  left: -30%;
  width: 160%;
  background: linear-gradient(to right, transparent 0%, var(--orange) 100%);
  transform: skewY(-2deg);
  animation: streakDrift 10s ease-in-out infinite alternate;
}
.streak-1 { top: 10%;  height: 34px; opacity: 0.14; animation-duration: 11s; }
.streak-2 { top: 34%;  height: 50px; opacity: 0.18; animation-duration: 14s; animation-delay: -3s; }
.streak-3 { top: 60%;  height: 28px; opacity: 0.10; animation-duration: 9s;  animation-delay: -1s; }
.streak-4 { top: 80%;  height: 42px; opacity: 0.14; animation-duration: 12s; animation-delay: -6s; }

@keyframes streakDrift {
  from { transform: translateX(-6%) skewY(-2deg); }
  to   { transform: translateX(6%) skewY(-2deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 56px;
}

.hero-logo { max-width: 280px; height: auto; margin-bottom: 4px; }
.hero-logo-fallback { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 4px; }
.hero-logo-fallback strong { font-family: var(--font-display); font-size: 34px; color: var(--ink); }
.hero-logo-fallback span { color: var(--orange); font-weight: 700; font-size: 14px; }

.hero h1 {
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
}

.hero-sub {
  font-size: 16px;
  color: var(--stone-text);
  max-width: 520px;
  margin: 0;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-top: 4px;
}

.hero-call-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
}

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
}
.trust-chips li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================================
   3. SERVICES
   ============================================================================ */

.services-row-image { display: none; width: 100%; height: auto; border-radius: 10px; margin-bottom: 28px; }
@media (min-width: 768px) { .services-row-image { display: block; } }

.services-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
}
.service-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.service-card h3 { font-size: 16px; margin: 0 0 6px; color: var(--ink); font-weight: 700; }
.service-card p { font-size: 13.5px; color: var(--stone-text); margin: 0; line-height: 1.45; }

/* ============================================================================
   4. PRICING
   ============================================================================ */

.pricing-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .pricing-steps { grid-template-columns: repeat(3, 1fr); } }

.pricing-steps li { text-align: center; padding: 0 12px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-steps h3 { font-size: 17px; margin: 0 0 6px; color: var(--ink); }
.pricing-steps p { font-size: 14px; color: var(--stone-text); line-height: 1.5; margin: 0; }

.pricing-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--stone-text);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================================
   5. QUOTE FORM
   ============================================================================ */

.quote-section { background: var(--white); }
.quote-sub { text-align: center; color: var(--stone-text); margin: -18px 0 24px; }

.quote-form-shell {
  max-width: 480px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px 26px;
}

.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill { height: 100%; background: var(--orange); width: 0%; transition: width 0.3s ease; }
.progress-label {
  font-size: 12px;
  color: var(--stone-text);
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-step { display: none; border: none; padding: 0; margin: 0; }
.form-step.is-active { display: block; }

.form-step legend {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  padding: 0;
  margin: 0 0 4px;
}
.step-hint { font-size: 13px; color: var(--stone-text); margin: 0 0 12px; }

.option-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 22px 10px;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
}
.option-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option-card:has(input:checked),
.option-card.is-selected {
  border-color: var(--orange);
  background: var(--orange-tint);
}
.option-card:has(input:focus-visible) { outline: 3px solid var(--ink); outline-offset: 2px; }
.option-icon { font-size: 26px; }

.chip-select { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 22px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}
.chip input:checked + span, .chip.is-selected span { border-color: var(--orange); background: var(--orange-tint); }
.chip input:focus-visible + span { outline: 3px solid var(--ink); outline-offset: 2px; }

.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"] {
  padding: 13px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px; /* 16px avoids iOS auto-zoom on focus */
  background: var(--white);
  color: var(--ink);
}
.field input:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-color: var(--ink); }
.field input:disabled { background: var(--border); color: var(--stone-text); }
.field input.invalid { border-color: #B3261E; }

.checkbox-inline { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 14px; font-weight: 600; }
.checkbox-inline input { width: 18px; height: 18px; }

.field-hint { font-size: 12px; color: var(--stone-text); margin: -8px 0 16px; }
.optional-tag { font-weight: 400; color: var(--stone-text); }

.field-error {
  background: #FCE4E4;
  border: 1px solid #B3261E;
  color: #7a140f;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin: 0 0 12px;
}

.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; }
.btn-back {
  background: none;
  border: none;
  color: var(--stone-text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 4px;
}
.btn-continue {
  flex: 1;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.btn-continue:hover, .btn-continue:focus-visible { background: #000; outline: 3px solid var(--orange); outline-offset: 2px; }
.btn-continue:disabled { opacity: 0.5; cursor: not-allowed; }

#step-size .btn-back { margin-top: 4px; }

/* Confirmation step */
#step-confirm { text-align: center; }
.confirm-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
#step-confirm h3 { font-size: 22px; margin: 0 0 6px; color: var(--ink); }
.confirm-promise { color: var(--stone-text); margin: 0 0 20px; }
.confirm-recap {
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}
.confirm-recap dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 7px 12px; }
.confirm-recap dt { font-weight: 700; color: var(--ink); }
.confirm-recap dd { margin: 0; color: var(--stone-text); }
.confirm-photo-prompt {
  font-size: 14px;
  color: var(--ink);
  background: var(--orange-tint);
  border: 1px dashed var(--orange);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.confirm-photo-prompt a { color: var(--ink); font-weight: 700; }
.confirm-fallback {
  font-size: 13px;
  color: var(--stone-text);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin: -8px 0 20px;
}
.confirm-fallback a { color: var(--ink); font-weight: 700; }

/* ============================================================================
   6. WHERE WE WORK
   ============================================================================ */

.region-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 0; margin: 0 0 18px; }
.region-chips li {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.long-distance-note { text-align: center; color: var(--stone-text); font-size: 14px; margin: 0; }

/* ============================================================================
   7. BEFORE YOU BOOK ANY MOVER
   ============================================================================ */

.checklist-panel { background: var(--ink); color: var(--white); }
.checklist-panel h2 { color: var(--white); }
.checklist {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li { font-size: 15px; line-height: 1.55; color: #E8E9E6; }
.checklist li::marker { color: var(--orange); font-weight: 700; }

/* ============================================================================
   8. FOOTER
   ============================================================================ */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-logo { height: 44px; width: auto; }
.footer-logo-fallback { font-family: var(--font-display); font-size: 22px; color: var(--white); }
.footer-contact { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-contact a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.footer-regions { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 10px; padding: 0; margin: 0; font-size: 12.5px; color: #C3C8C4; }
.footer-regions li:not(:last-child)::after { content: '\00b7'; margin-left: 10px; color: var(--orange); font-weight: 700; }
.footer-copyright { font-size: 12px; color: #93998f; margin: 8px 0 0; }

/* ============================================================================
   DESKTOP / TABLET REFINEMENTS
   ============================================================================ */

@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; max-width: none; }
  .btn-pill-lg { flex: 1; }
}

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

@media (min-width: 900px) {
  .site-header { padding: 14px 32px; }
  .hero { padding-top: 64px; }
}
