/* ============================================================
   MOVING BOXES OTTAWA — Global Styles
   Palette: Near-black #1A1A1A, Yellow #F5C400, White #FFFFFF,
            Light grey #F4F4F2, Mid grey #6B6B6B
   Type: 'Barlow Condensed' display, 'Inter' body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=Inter:wght@400;500;600&display=swap');

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #1A1A1A;
  --yellow:  #F5C400;
  --white:   #FFFFFF;
  --grey-lt: #F4F4F2;
  --grey-md: #6B6B6B;
  --border:  #DEDEDE;
  --radius:  6px;
  --max-w:   1180px;
  --shadow:  0 2px 12px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* ---------- Typography helpers ---------- */
.display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}

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

/* ---------- NAV ---------- */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--yellow);
  /* needed so the mobile dropdown positions from the nav bar */
  isolation: isolate;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-dark {
  background: var(--black);
  color: var(--white);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--black);
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  padding: 40px 24px;
  text-align: center;
  border-top: 3px solid var(--yellow);
}

footer strong { color: var(--yellow); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; }

/* ---------- Utility ---------- */
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('movers-carrying-moving-boxes-ottawa.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 24px;
  margin: 0 auto 0 calc((100vw - var(--max-w)) / 2 + 24px);
}

@media (max-width: 1200px) { .hero-content { margin-left: 24px; } }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* How it works */
.how {
  padding: 100px 24px;
  background: var(--grey-lt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-top: 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 28px;
  border-bottom: 4px solid var(--yellow);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-card p { color: var(--grey-md); font-size: .9375rem; }

/* Products section */
.products {
  padding: 100px 24px;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.products-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) { .products-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .products-grid--4 { grid-template-columns: 1fr; } }

.hst-note {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--black);
  background: var(--yellow);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
  letter-spacing: .02em;
  vertical-align: middle;
}

.product-img-wrap {
  background: var(--white);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  height: 220px;
}

.product-img-wrap--white {
  background: var(--white);
}

.product-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-3px); }

.product-img-wrap img { max-height: 160px; max-width: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--black);
  margin: 10px 0 4px;
}

.product-price span { font-size: 1rem; font-weight: 700; color: var(--grey-md); }

.product-note { font-size: .875rem; color: var(--grey-md); margin-bottom: 16px; }

.product-info p { font-size: .9375rem; color: var(--grey-md); }

/* In-action / lifestyle section */
.lifestyle {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.lifestyle-img {
  background-image: url('moving-box-rental-truck-ottawa.jpg');
  background-size: cover;
  background-position: center;
}

.lifestyle-copy {
  background: var(--black);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle-copy h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin: 12px 0 20px;
}

.lifestyle-copy h2 em { font-style: normal; color: var(--yellow); }

.lifestyle-copy p { color: rgba(255,255,255,.75); max-width: 440px; line-height: 1.75; margin-bottom: 32px; }

/* Pricing strip */
.pricing-strip {
  background: var(--yellow);
  padding: 64px 24px;
  text-align: center;
}

.pricing-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.pricing-strip p { color: rgba(0,0,0,.65); max-width: 560px; margin: 0 auto 32px; font-size: 1rem; }

.price-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.price-chip {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  padding: 20px 32px;
  text-align: center;
  min-width: 180px;
}

.price-chip .amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}

.price-chip .label { font-size: .8125rem; color: rgba(255,255,255,.65); margin-top: 6px; text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 768px) {
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-img { min-height: 280px; }
  .lifestyle-copy { padding: 48px 28px; }
  .hero-content { margin-left: 24px; }
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */

.page-header {
  background: var(--black);
  padding: 64px 24px 56px;
  text-align: center;
  border-bottom: 4px solid var(--yellow);
}

.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-top: 12px;
  line-height: 1;
}

.page-header p {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1rem;
}

.quote-layout {
  max-width: var(--max-w);
  margin: 56px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

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

/* Form */
.quote-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-md);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin: 32px 0 20px;
}

.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .9375rem;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,.18);
}

.form-group input::placeholder { color: #AAAAAA; }

/* Product selectors on quote page */
.product-selector {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  transition: border-color .2s;
  cursor: pointer;
}

.product-selector:has(input:focus) { border-color: var(--yellow); }

.product-selector.is-active { border-color: var(--yellow); background: #FFFBEA; }

.product-selector img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  padding: 8px;
}

.selector-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.selector-info p { font-size: .8125rem; color: var(--grey-md); }

.selector-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--black);
  white-space: nowrap;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-top: 8px;
}

.qty-control button {
  background: var(--grey-lt);
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  transition: background .15s;
}

.qty-control button:hover { background: var(--yellow); }

.qty-control input {
  border: none !important;
  box-shadow: none !important;
  width: 52px !important;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 !important;
  height: 36px;
  border-radius: 0 !important;
  border-left: 1px solid var(--border) !important;
  border-right: 1px solid var(--border) !important;
}

/* Hand truck toggle */
.toggle-selector {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  transition: border-color .2s, background .2s;
}

.toggle-selector.is-active { border-color: var(--yellow); background: #FFFBEA; }

.toggle-selector img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
}

/* Custom toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  inset: 0;
  background: #DEDEDE;
  border-radius: 100px;
  transition: background .2s;
  cursor: pointer;
}

.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.switch input:checked + .slider { background: var(--yellow); }
.switch input:checked + .slider::before { transform: translateX(22px); }

/* Quote sidebar */
.quote-sidebar {
  position: sticky;
  top: 84px;
}

.summary-card {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 20px;
}

.summary-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}

.summary-line.total {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 16px;
  margin-top: 8px;
}

.summary-line.total span:last-child { color: var(--yellow); }

.summary-note {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  line-height: 1.5;
}

.info-card {
  background: var(--grey-lt);
  border-radius: 10px;
  padding: 24px;
}

.info-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-list { list-style: none; }

.info-list li {
  font-size: .875rem;
  color: var(--grey-md);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.submit-wrap { margin-top: 24px; }
.submit-wrap .btn { width: 100%; text-align: center; font-size: 1.125rem; padding: 16px; }

/* Pickup / delivery option cards */
.pickup-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.pickup-option {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: block;
  overflow: hidden;
}

.pickup-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pickup-option:has(input:checked) {
  border-color: var(--yellow);
  background: #FFFBEA;
}

.pickup-option-body { padding: 18px; }

.pickup-option-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.pickup-option-top h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.pickup-option-top p { font-size: .8125rem; color: var(--grey-md); max-width: 340px; }

.pickup-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.delivery-address {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 4px;
}

.delivery-address .form-group { margin-bottom: 12px; }
.delivery-address .form-group:last-child { margin-bottom: 0; }

.delivery-addr-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey-md);
  margin-bottom: 4px;
}

/* ============================================================
   HAMBURGER NAV
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}

/* Animate to X when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE BREAKPOINT — general
   ============================================================ */
@media (max-width: 680px) {

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-logo {
    font-size: 1.15rem;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 67px; /* nav height (64px) + border (3px) */
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    padding: 8px 0 16px;
    z-index: 150;
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .nav-links li:last-child a { border-bottom: none; }

  /* Hero */
  .hero { min-height: 60vh; }
  .hero-content { padding: 56px 20px 48px; }
  .hero-eyebrow { font-size: .8rem; }
  .hero-sub { font-size: .95rem; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-badges { gap: 8px; }
  .badge { font-size: .75rem; padding: 5px 10px; }

  /* How it works */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 24px 20px; }

  /* Products */
  .products-grid--4 { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-img-wrap { height: 160px; min-height: 160px; padding: 20px; }
  .product-img-wrap img { max-height: 110px; }
  .product-info { padding: 16px; }
  .product-info h3 { font-size: 1.1rem; }
  .product-price { font-size: 1.5rem; }
  .product-note { font-size: .78rem; }
  .product-info p:last-child { font-size: .85rem; }

  /* Pricing strip */
  .pricing-strip { padding: 56px 20px; }
  .pricing-strip h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .price-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .price-chip { padding: 20px 12px; }
  .price-chip .amount { font-size: 2rem; }

  /* How section container */
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 32px; }

  /* Quote page */
  .page-header { padding: 40px 20px 36px; }
  .quote-layout { margin: 32px auto; padding: 0 16px; gap: 24px; }
  .quote-form-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .product-selector { gap: 12px; padding: 14px; }
  .product-selector img { width: 60px; height: 60px; }
  .toggle-selector { gap: 12px; padding: 14px; }
  .toggle-selector img { width: 60px; height: 60px; }
  .summary-card { padding: 24px 20px; }
  .info-card { padding: 20px; }
  .pickup-option-top { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Footer */
  footer { padding: 40px 20px; }
}

/* Very small screens — single column products */
@media (max-width: 400px) {
  .products-grid--4 { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT PAGES (Home extras, Moving Boxes info, City pages)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-w);
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: .8125rem;
  color: var(--grey-md);
}

.breadcrumb a { color: var(--grey-md); text-decoration: underline; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { margin: 0 6px; }

/* Generic content section */
.content-section {
  padding: 64px 24px;
}

.content-section.alt { background: var(--grey-lt); }

.content-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.content-wrap.wide { max-width: var(--max-w); }

.content-wrap h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.05;
}

.content-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 28px 0 10px;
}

.content-wrap p {
  color: var(--grey-md);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.content-wrap p a,
.content-wrap li a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.content-wrap p a:hover,
.content-wrap li a:hover { color: var(--yellow); }

.content-wrap ul,
.content-wrap ol {
  color: var(--grey-md);
  margin: 0 0 20px 20px;
  line-height: 1.8;
}

.content-wrap ul { list-style: disc; }
.content-wrap li { margin-bottom: 6px; }

.lead {
  font-size: 1.15rem !important;
  color: var(--black) !important;
  line-height: 1.7 !important;
}

/* Neighbourhood / service-area chip list */
.hood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.hood-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
}

/* Dimensions / spec table */
.dimensions-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dimensions-table th,
.dimensions-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: .9375rem;
  border-bottom: 1px solid var(--border);
}

.dimensions-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--black);
  color: var(--yellow);
  font-size: .8125rem;
}

.dimensions-table tr:last-child td { border-bottom: none; }
.dimensions-table tr:nth-child(even) td { background: var(--grey-lt); }

/* Two column media + copy block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.split-block img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
}

.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

@media (max-width: 800px) {
  .split-block { grid-template-columns: 1fr; }
  .split-block.reverse { direction: ltr; }
}

/* Checklist */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 20px 0 8px;
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--black);
  font-weight: 500;
}

.check-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* FAQ (native details/summary — crawlable + JS-free) */
.faq-list { max-width: 880px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--grey-md);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); color: var(--yellow); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }

.faq-item .faq-answer {
  padding: 4px 22px 20px;
  color: var(--grey-md);
  font-size: .9375rem;
  line-height: 1.75;
}

.faq-item .faq-answer a { color: var(--black); text-decoration: underline; text-decoration-color: var(--yellow); }

/* City / service-area link grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.city-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.city-card:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: var(--shadow); }

.city-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.city-card p { color: var(--grey-md); font-size: .875rem; margin-bottom: 14px; }

.city-card .link-arrow { font-weight: 700; color: var(--black); font-size: .875rem; text-transform: uppercase; letter-spacing: .04em; }
.city-card:hover .link-arrow { color: var(--yellow); }

/* Small-business about strip */
.about-strip {
  background: var(--grey-lt);
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip-inner { max-width: 760px; margin: 0 auto; }

.about-strip h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  text-transform: uppercase;
  margin: 14px 0 20px;
  color: var(--black);
}

.about-strip p {
  color: var(--grey-md);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Related-pages callout strip at bottom of content pages */
.related-links {
  background: var(--black);
  padding: 56px 24px;
  text-align: center;
}

.related-links h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.related-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.related-links-grid a {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  transition: background .2s, border-color .2s, color .2s;
}

.related-links-grid a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* Footer sitemap links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .8125rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--yellow); }

/* CTA banner (reusable) */
.cta-banner {
  background: var(--yellow);
  padding: 56px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.cta-banner p { color: rgba(0,0,0,.65); margin-bottom: 26px; }

/* Confirmation banner shown after form submit */
.form-confirm {
  display: none;
  background: #1F3D2B;
  border: 1.5px solid #4CAF50;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
  color: #DFF5E3;
}

.form-confirm.is-visible { display: block; }

.form-confirm h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #4CAF50;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.form-confirm p { font-size: .9rem; color: #DFF5E3; }

@media (max-width: 680px) {
  .content-section { padding: 44px 20px; }
  .split-block { gap: 24px; }
  .lifestyle-copy { padding: 48px 24px; }
  .hood-list { gap: 8px; }
  .dimensions-table th, .dimensions-table td { padding: 10px 12px; font-size: .8125rem; }
}
