/* ============================================================
   Bend Moving Co. — landing page styles
   Navy-dominant, orange accent (~70/30). Bricolage + Hanken.
   ============================================================ */

:root {
  --navy:        #122C4F;
  --navy-900:    #0D2038;
  --navy-800:    #0a1c33;
  --orange:      #F26722;
  --orange-600:  #d9551a;
  --gray:        #F2F2F2;
  --gray-200:    #e4e7ec;
  --white:       #FFFFFF;
  --charcoal:    #3A3A3A;
  --muted:       #6b7280;

  --maxw: 1140px;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(18,44,79,.06), 0 4px 12px rgba(18,44,79,.06);
  --shadow-md: 0 12px 40px rgba(10,28,51,.18);
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.hidden { position: absolute; left: -9999px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 12px 22px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(242,103,34,.28); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(242,103,34,.34); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost-navy { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn--lg { padding: 15px 28px; font-size: 17px; }
.btn--block { width: 100%; margin-top: 4px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: #fff;
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.is-stuck { box-shadow: 0 6px 24px rgba(10,28,51,.28); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand__mark { display: inline-flex; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -0.02em; }
.brand__co { color: var(--orange); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links > a { color: rgba(255,255,255,.82); font-weight: 500; font-size: 15px; }
.nav__links > a:hover { color: #fff; text-decoration: none; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; }
.nav__phone svg { color: var(--orange); }
.nav__cta { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; padding: 64px 0 80px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__mountains { position: absolute; bottom: 0; left: 0; width: 100%; height: 320px; opacity: .9; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 18px; }
.hero__copy h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; margin-bottom: 20px; }
.hero__sub { color: rgba(255,255,255,.82); font-size: 1.16rem; max-width: 30em; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__trust { color: rgba(255,255,255,.7); font-size: 14.5px; }
.hero__trust span { color: var(--orange); letter-spacing: 2px; margin-right: 6px; }

/* ---------- Quote card ---------- */
.quote-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 26px; color: var(--charcoal); }
.quote-card__head h2 { font-size: 1.5rem; margin-bottom: 6px; }
.quote-card__head p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }

.quote-form .field { margin-bottom: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.field .req { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--charcoal);
  padding: 11px 13px; border: 1.5px solid var(--gray-200); border-radius: 9px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,103,34,.14);
}
.field textarea { resize: vertical; }
.quote-form__alt { font-size: 13.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }

.quote-success { text-align: center; padding: 24px 8px; }
.quote-success__check { width: 58px; height: 58px; border-radius: 50%; background: rgba(242,103,34,.12); color: var(--orange); display: grid; place-items: center; margin: 0 auto 14px; }
.quote-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.quote-success p { color: var(--muted); font-size: 15px; }

/* ---------- Section basics ---------- */
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; text-align: center; margin-bottom: 40px; }
.section-title--left { text-align: left; }

/* ---------- Steps ---------- */
.steps { background: var(--gray); padding: 72px 0; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 16px; }
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--charcoal); font-size: 15.5px; }

/* ---------- Services ---------- */
.services { padding: 84px 0; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; background: #fff; }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gray); color: var(--orange); display: grid; place-items: center; margin-bottom: 16px; }
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.28rem; margin-bottom: 9px; }
.svc p { color: var(--charcoal); font-size: 15.5px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--gray); padding: 80px 0; }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.tcard { background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.tcard .stars { color: var(--orange); letter-spacing: 3px; font-size: 16px; line-height: 1; }
.tcard blockquote { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.16rem; line-height: 1.4; letter-spacing: -0.01em; }
.tcard figcaption { font-size: 13.5px; color: var(--muted); font-weight: 500; margin-top: auto; }

/* ---------- Why ---------- */
.why { background: var(--navy); color: #fff; padding: 84px 0; }
.why .section-title { color: #fff; }
.why__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 34px 44px; max-width: 860px; margin: 0 auto; }
.why__list h3 { color: #fff; font-size: 1.14rem; margin-bottom: 7px; }
.why__list h3::before { content: ""; display: block; width: 30px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 12px; }
.why__list p { color: rgba(255,255,255,.75); font-size: 15px; }
.why__list strong { color: #fff; font-weight: 600; }

/* ---------- Service area ---------- */
.area { padding: 80px 0; text-align: center; }
.area__intro { color: var(--muted); margin-bottom: 22px; }
.area__towns { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 620px; margin: 0 auto 26px; }
.area__towns li { background: var(--gray); color: var(--navy); font-weight: 600; padding: 9px 18px; border-radius: 999px; font-size: 15px; border: 1.5px solid transparent; transition: border-color .2s, background .2s; }
.area__towns li:hover { background: #fff; border-color: var(--orange); }
.area__note { max-width: 42em; margin: 0 auto; color: var(--charcoal); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); color: #fff; padding: 56px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.92); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--primary { background: var(--navy); box-shadow: 0 6px 16px rgba(10,28,51,.3); }
.cta-band .btn--primary:hover { background: var(--navy-900); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.6); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 56px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand .brand__name { display: inline-block; margin-bottom: 10px; }
.footer__brand p { font-size: 14.5px; max-width: 24em; }
.footer__col { display: flex; flex-direction: column; gap: 7px; }
.footer__col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.footer__col a, .footer__col span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.footer__col a:hover { color: var(--orange); text-decoration: none; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--gray-200); padding: 10px 14px; gap: 10px; box-shadow: 0 -4px 20px rgba(10,28,51,.1); }
.mobile-bar .btn { flex: 1; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal .6s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--d, 0s); }
@keyframes reveal { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .why__inner { grid-template-columns: 1fr; gap: 34px; }
  .why__list { gap: 26px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links > a:not(.nav__cta) { display: none; }
  .nav__phone { display: none !important; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 40px 0 60px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .steps__grid, .services__grid, .why__list, .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; } /* room for sticky bar */
  .field-row { grid-template-columns: 1fr; }
}
