/* Chandler Moving and Storage — static site */
:root {
  --ink: #0c1222;
  --ink-muted: #3d4a63;
  --brand: #152a4a;
  --brand-light: #1e3a62;
  --accent: #d4a853;
  --accent-hover: #e8bc5c;
  --surface: #f6f4ef;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(12, 18, 34, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}

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

a {
  color: var(--brand-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 42, 74, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
}

.logo:hover {
  color: var(--brand-light);
}

.logo small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--brand);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid rgba(21, 42, 74, 0.2);
}

.btn--ghost:hover {
  border-color: var(--brand);
  background: rgba(21, 42, 74, 0.04);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 18, 34, 0.88) 0%,
    rgba(12, 18, 34, 0.55) 45%,
    rgba(12, 18, 34, 0.35) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  max-width: 38ch;
  opacity: 0.95;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__ctas .btn--primary {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero__ctas .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__ctas .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent);
}

.hero__stat span {
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Trust strip */
.trust {
  background: var(--white);
  padding: 2.25rem 0;
  box-shadow: var(--shadow);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust__item h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--brand);
}

.trust__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Services */
.section {
  padding: 4.5rem 0;
}

.section__title {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.section__title h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--brand);
}

.section__title p {
  margin: 0;
  color: var(--ink-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--brand);
}

.card__body p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

/* Quote */
.quote-section {
  background: linear-gradient(160deg, var(--brand) 0%, #0f1f36 100%);
  color: var(--white);
  padding: 4rem 0;
}

.quote-section .section__title h2 {
  color: var(--white);
}

.quote-section .section__title p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.quote-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
}

.quote-form textarea {
  min-height: 100px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.quote-form__msg {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.5rem;
}

.quote-form__msg--ok {
  color: #8fe3a8;
}

.quote-form__msg--err {
  color: #ffb4a8;
}

.quote-aside p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
}

.quote-aside .btn--primary {
  margin-top: 0.5rem;
}

/* Contact bar */
.contact-bar {
  background: var(--white);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(21, 42, 74, 0.08);
}

.contact-bar h2 {
  margin: 0 0 0.5rem;
  color: var(--brand);
}

.contact-bar p {
  margin: 0.35rem 0;
  color: var(--ink-muted);
}

.contact-bar a[data-tel] {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand);
  text-decoration: none;
}

.contact-bar a[data-tel]:hover {
  color: var(--accent-hover);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0 2rem;
  font-size: 0.875rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.inline-accent {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.inline-accent:hover {
  text-decoration: underline;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 4.5rem 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav__links a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .nav-actions .btn--primary {
    display: none;
  }

  .nav .btn--primary {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Sticky mobile call */
.sticky-call {
  display: none;
}

@media (max-width: 768px) {
  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(21, 42, 74, 0.1);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  }

  .sticky-call .btn {
    flex: 1;
    padding: 0.85rem;
  }

  body {
    padding-bottom: 4.5rem;
  }
}
