/* =========================================================
   Big League Movers — Barrie
   Design system: brick red / black / cream, baseball-brand
   ========================================================= */

:root {
  --red: #b0342a;
  --red-dark: #8f2a22;
  --black: #151515;
  --cream: #f4f2ec;
  --cream-dim: #e9e6dd;
  --white: #ffffff;
  --gray: #5a564e;
  --gold: #e8b73b;

  --font-display: 'Bevan', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1140px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(21, 21, 21, 0.12);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: var(--red); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.3vw, 1.4rem); line-height: 1.25; }

p { margin: 0 0 16px; }

.eyebrow {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.section {
  padding: 72px 0;
}

.section--tight { padding: 44px 0; }

.section--black { background: var(--black); color: var(--cream); }
.section--red { background: var(--red); color: var(--white); }
.section--cream-dim { background: var(--cream-dim); }

.section--black h2, .section--red h2 { color: var(--white); }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn-light {
  background: var(--cream);
  color: var(--black);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--black);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 54px; height: 54px; }
.brand-name {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1rem;
  line-height: 1.15;
  word-spacing: 0.2em;
}
.brand-name span { display: block; font-size: 0.65rem; color: var(--black); letter-spacing: 1.5px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--red); color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ---------- Marquee ticker ---------- */
.marquee {
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.marquee__track {
  display: inline-flex;
  animation: marquee 26s linear infinite;
  padding: 12px 0;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee__track span::after { content: "\2605"; color: var(--red); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}
.hero h1 { word-spacing: 0.3em; }
.hero .btn { margin-top: 8px; }
.hero-sub {
  font-family: var(--font-display);
  color: var(--black);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  max-width: 780px;
  margin: 0 auto 30px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-badge {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge strong { color: var(--red); font-family: var(--font-display); font-size: 1.1rem; }

.hero-photo {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--black);
  position: relative;
  aspect-ratio: 16/9;
}
.hero-photo .placeholder {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, var(--black) 0%, #2c2a26 60%, var(--red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

/* ---------- Hero photo carousel ---------- */
.hero-photo .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-photo .slide.is-active {
  opacity: 1;
}
.hero-photo .slide-dots {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.hero-photo .slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(21,21,21,0.4);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-photo .slide-dot.is-active {
  background: var(--red);
  border-color: var(--white);
  transform: scale(1.2);
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .slide { transition: none; }
}

/* ---------- Service area ---------- */
.service-area {
  text-align: center;
}
.service-area p {
  max-width: 820px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- Trust banner ---------- */
.trust-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.trust-banner h2 { margin: 0; }
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; }

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--red); }
.card ul { margin: 0; padding-left: 18px; }
.card li { margin-bottom: 6px; }

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  margin: 0 0 18px;
  line-height: 1.5;
}
.testimonial cite {
  font-weight: 700;
  font-style: normal;
  color: var(--red);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
}
.cta-band h2 { color: var(--white); }

/* ---------- Team / about ---------- */
.operator {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}
.operator-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  background: linear-gradient(160deg, var(--red) 0%, var(--black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 3rem;
  box-shadow: var(--shadow);
}
.operator-card h3 { margin-bottom: 4px; }
.operator-title { color: var(--red); font-weight: 700; margin-bottom: 16px; display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.contact-info-card {
  background: var(--black);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card a { color: var(--cream); border-bottom: 1px solid var(--red); }
.contact-info-card .row { margin-bottom: 22px; }
.contact-info-card .row:last-child { margin-bottom: 0; }
.contact-info-card .label { color: var(--red); font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.contact-info-card .value { font-size: 1.15rem; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--cream-dim);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--red); }
.footer-brand img { width: 64px; height: 64px; margin-bottom: 14px; }
.footer-brand p { color: var(--cream-dim); font-size: 0.92rem; }

.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border: 2px solid var(--cream-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-row a:hover { border-color: var(--red); color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(244,242,236,0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #a8a49a;
}
.footer-bottom a:hover { color: var(--red); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--cream-dim); max-width: 700px; margin: 0 auto; }

/* ---------- Service detail sections ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(21,21,21,0.1);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse .service-block-media { order: -1; }
.service-block-media .placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  background: linear-gradient(150deg, var(--red), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--black);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 16px;
  }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .operator { grid-template-columns: 1fr; text-align: center; }
  .operator-photo { max-width: 260px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block--reverse .service-block-media { order: 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
