/* =====================================================================
   McMurtry homepage rebuild — sections only (header/footer untouched)
   Loaded only on the Home template. Scoped under .home-rebuild.
   ===================================================================== */

/* =====================================================================
   McMurtry of Greenwich — index rebuild
   Clean, dependency-free HTML/CSS (no Bootstrap / owl / WordPress).
   Rebuilt from the live theme "aanWordpress". Font: Rubik (Google Fonts).
   ===================================================================== */

/* ----------  Design tokens  ---------- */
:root{
  --bg: #000;
  --fg: #fff;
  --light: #e3e3e3;      /* light section bg + accent */
  --dark-text: #222222;  /* text on light sections */
  --muted: #b9b9b9;
  --spec: #e0e0e0;
  --border: #707070;
  --footer-text: #747474;
  --maxw: 1600px;
  --gutter: 40px;
}

/* ----------  Homepage scope  ---------- */
.home-rebuild{
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  color: var(--fg);
  background-color: var(--bg);
  letter-spacing: 0;
}
.home-rebuild *, .home-rebuild *::before, .home-rebuild *::after{ box-sizing: border-box; }
.home-rebuild img, .home-rebuild svg, .home-rebuild video{ max-width: 100%; display: block; }
.home-rebuild a{ color: inherit; text-decoration: none; }
.home-rebuild ul{ margin: 0; padding: 0; list-style: none; }
.home-rebuild h1, .home-rebuild h2, .home-rebuild h3, .home-rebuild h4, .home-rebuild h5, .home-rebuild h6{ margin: 0; font-weight: 600; }
.home-rebuild p{ margin: 0; }
.home-rebuild section{ position: relative; }

/* ----------  Layout helpers  ---------- */
.home-rebuild .container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.home-rebuild .row{ display: flex; flex-wrap: wrap; }

/* ----------  Buttons  ---------- */
.home-rebuild .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 38px;
  padding: 0 5rem;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.home-rebuild .btn--primary{ background: #000; color: #fff; border-color: #000; }
.home-rebuild .btn--primary:hover{ background: transparent; color: #000; }
.home-rebuild .btn--white{ background: #fff; color: #000; border-color: #fff; }
.home-rebuild .btn--white:hover{ background: transparent; color: #fff; }

/* ----------  Section headings  ---------- */
.home-rebuild .section-heading h2{ color: var(--dark-text); font-size: 80px; line-height: 1.08; }
.home-rebuild .section-heading h3{ font-size: 38px; line-height: 1.2; }
.home-rebuild .section-heading h4{ font-size: 26px; line-height: 1.2; }
.home-rebuild .section-heading h5{ font-size: 32px; line-height: 50px; }
.home-rebuild .section-heading p{ color: #fff; font-size: 14px; font-weight: 400; line-height: 25px; }

/* =====================================================================
   HERO / BANNER SLIDER
   ===================================================================== */
.home-rebuild .banner-section{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100vh;            /* always fills the screen — no fold */
  height: 100svh;
}
.home-rebuild .hero-slider{ width: 100%; height: 100%; position: relative; }
.home-rebuild .hero-slide{ display: none; width: 100%; height: 100%; }
.home-rebuild .hero-slide.is-active{ display: block; }
.home-rebuild .hero-slide picture{ display: block; width: 100%; height: 100%; }
.home-rebuild .hero-slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* gradient overlay so the logo + heading read on bright studio shots */
.home-rebuild .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Strong top shade for transparent nav; bottom shade for hero copy */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 10%,
    rgba(0, 0, 0, 0.2) 22%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

/* prev / next arrows */
.home-rebuild .hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.home-rebuild .hero-arrow:hover{ background: rgba(0, 0, 0, 0.6); }
.home-rebuild .hero-arrow--prev{ left: 2%; }
.home-rebuild .hero-arrow--next{ right: 2%; }

/* hero pagination hidden (arrows + autoplay drive the slider) */
.home-rebuild .hero-dots{
  display: none;
  position: absolute;
  left: 0; right: 0; bottom: 2.2rem;
  z-index: 6;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.home-rebuild .hero-dots button{
  height: 12px; width: 12px;
  padding: 0;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.home-rebuild .hero-dots button:hover{ border-color: #fff; }
.home-rebuild .hero-dots button.is-active{ background: #fff; border-color: #fff; }

.home-rebuild .banner-content{
  position: absolute;
  left: 0; right: 0; bottom: 6rem;
  z-index: 9;
  width: 100%;
  text-align: center;
}
.home-rebuild .banner-content .welcome{
  max-width: 58%;
  margin: 0 auto;
}
.home-rebuild .banner-content .banner-logo{ margin: 0 auto 2.5rem; }
.home-rebuild .banner-content h1{
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  line-height: 50px;
}

/* =====================================================================
   ULTIMATE SECTION  (light)
   ===================================================================== */
.home-rebuild .ultimate-section{ background: var(--light); padding: 4rem 0; }
.home-rebuild .ultimate-section .section-heading p{ color: var(--dark-text); }  /* dark text on light bg */
.home-rebuild .ultimate-section .row{ max-width: 1160px; margin: 0 auto; align-items: center; gap: 80px; }
.home-rebuild .ultimate-left{ flex: 1 1 0; max-width: 600px; }
.home-rebuild .ultimate-right{ flex: 1 1 0; max-width: 480px; }
.home-rebuild .ultimate-left .section-heading p:first-of-type{ margin: 1.5rem 0; }
.home-rebuild .ultimate-left .section-heading p{ margin-bottom: 2rem; }
.home-rebuild .ultimate-right img{ margin-bottom: 1rem; }
.home-rebuild .ultimate-right video{ width: 100%; }

/* =====================================================================
   VIDEO SECTION
   ===================================================================== */
.home-rebuild .video-section{ display: flex; align-items: center; }
.home-rebuild .video-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/video-overlay.png") center/cover no-repeat;
  z-index: 1;
}
.home-rebuild .video-section .video-box{ width: 100%; }
.home-rebuild .video-section .video-box video{ width: 100%; }
.home-rebuild .video-content{ position: absolute; left: 0; right: 0; z-index: 3; }
.home-rebuild .video-content .inner{ flex: 0 0 58.333%; max-width: 58.333%; }
.home-rebuild .video-content .video-logo{ margin-bottom: 1.5rem; }
.home-rebuild .video-content h3{ font-size: 38px; line-height: 1.2; }
.home-rebuild .video-content p, .home-rebuild .video-content .price{ font-size: 20px; line-height: 30px; font-weight: 400; color: #fff; }
.home-rebuild .video-content p{ margin: 1.5rem 0; font-weight: 300; }
.home-rebuild .video-content .price{ display: block; margin-bottom: 1.5rem; }

/* =====================================================================
   HISTORIC SECTION
   ===================================================================== */
.home-rebuild .historic-section{ background: #000; padding: 6rem 0; }
.home-rebuild .historic-section .row{ align-items: stretch; }
.home-rebuild .historic-section .col{ flex: 1; padding: 0 15px; }
.home-rebuild .historic-section .lead{
  flex: 0 0 33.333%; max-width: 33.333%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding-right: 2rem;
}
.home-rebuild .historic-section .lead .section-heading{ text-align: left; margin-bottom: 1.5rem; }
.home-rebuild .historic-section .lead p{ font-size: 18px; line-height: 1.65; font-weight: 300; padding: 0; text-align: left; }
.home-rebuild .historic-card{
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 220px; padding: 2rem;
}

/* =====================================================================
   PERFORMANCE SECTION
   ===================================================================== */
.home-rebuild .performance-section{
  position: relative;
  background: url("../images/performance-track.jpg") center/cover no-repeat;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.home-rebuild .performance-section::before{ content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.home-rebuild .performance-section .container{ position: relative; z-index: 1; }
.home-rebuild .performance-inner{ max-width: 1160px; margin: 0 auto; align-items: center; }
.home-rebuild .performance-left{ flex: 0 0 58.333%; max-width: 58.333%; }
.home-rebuild .performance-left .section-heading{ text-align: center; margin-bottom: 3rem; }
.home-rebuild .performance-left .section-heading img{ margin: 0 auto 1.5rem; }
.home-rebuild .perf-cards{ display: flex; gap: 15px; }
.home-rebuild .performance-card{
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.75rem;
  width: 100%; min-height: 240px; padding: 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.home-rebuild .performance-card:hover{
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}
.home-rebuild .perf-icon{ color: #fff; line-height: 0; margin-bottom: 0.3rem; }
.home-rebuild .perf-icon svg{ width: 44px; height: 44px; display: block; }
.home-rebuild .perf-value{ font-size: 40px; font-weight: 500; color: #fff; line-height: 1; }
.home-rebuild .perf-label{ font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: #8a8a8a; }
.home-rebuild .performance-right{ flex: 0 0 33.333%; max-width: 33.333%; margin-left: 8.333%; text-align: left; }
.home-rebuild .performance-right p{ color: var(--muted); font-size: 18px; line-height: 1.65; font-weight: 300; margin: 1.5rem 0; text-align: left; }

/* =====================================================================
   SPECIFICATIONS SECTION
   ===================================================================== */
.home-rebuild .specifications-section{ background: #000; padding: 6rem 0; }
.home-rebuild .spec-title{ color: #fff; font-size: 40px; font-weight: 600; text-align: center; margin: 0 0 4rem; }

.home-rebuild .spec-block{ display: flex; align-items: stretch; justify-content: center; gap: 80px; margin-bottom: 72px; }
.home-rebuild .spec-block:last-of-type{ margin-bottom: 0; }

.home-rebuild .spec-media{ flex: 1 1 0; max-width: 520px; overflow: hidden; }
.home-rebuild .spec-col{ flex: 1 1 0; max-width: 560px; display: flex; flex-direction: column; justify-content: center; }
.home-rebuild .spec-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.home-rebuild .spec-col--right{ text-align: right; }
.home-rebuild .spec-col--left{ text-align: left; }
.home-rebuild .spec-item{ padding: 18px 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.home-rebuild .spec-label{ display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #8a8a8a; margin-bottom: 7px; }
.home-rebuild .spec-value{ display: block; font-size: 20px; line-height: 1.3; color: #fff; font-weight: 500; }

/* scroll reveal: photo up from bottom, text in from the side */
.home-rebuild .spec-media, .home-rebuild .spec-col{ opacity: 0; transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.home-rebuild .spec-media{ transform: translateY(90px); }
.home-rebuild .spec-col--right{ transform: translateX(90px); }
.home-rebuild .spec-col--left{ transform: translateX(-90px); }
.home-rebuild .spec-block.in-view .spec-media, .home-rebuild .spec-block.in-view .spec-col{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .home-rebuild .spec-media, .home-rebuild .spec-col{ opacity: 1 !important; transform: none !important; transition: none; }
}

/* =====================================================================
   TOP GEAR SECTION
   ===================================================================== */
.home-rebuild .topgear-section{ padding: 6rem 0; }
.home-rebuild .topgear-inner{ max-width: 1160px; margin: 0 auto; }
.home-rebuild .top-gear-block{ display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }
.home-rebuild .top-gear-block .tg-logo{ max-width: 200px; margin-bottom: 1.75rem; }
.home-rebuild .top-gear-block .tg-caption{ font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #8a8a8a; margin-bottom: 0.7rem; }
.home-rebuild .top-gear-block h6{ font-size: 30px; color: #fff; font-weight: 400; text-transform: uppercase; }
.home-rebuild .tg-video video{ width: 100%; display: block; border-radius: 8px; }

/* =====================================================================
   FOUNDED SECTION
   ===================================================================== */
.home-rebuild .founded-section{ padding: 6rem 0; position: relative; overflow: hidden; }
.home-rebuild .founded-section > .container{ position: relative; z-index: 1; }
/* subtle radial glows — bottom + side */
.home-rebuild .founded-section::before{
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; bottom: -12%; transform: translateX(-50%);
  width: 85%; height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06), transparent 65%);
}
.home-rebuild .founded-section::after{
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -10%; top: 20%;
  width: 45%; height: 60%;
  background: radial-gradient(circle at center, rgba(150, 170, 200, 0.08), transparent 62%);
}
.home-rebuild .founded-section .row{ align-items: center; }
.home-rebuild .founded-text{ flex: 0 0 50%; max-width: 50%; padding-right: 3rem; }
.home-rebuild .founded-section h5{ font-size: 32px; line-height: 1.35; margin-bottom: 1.75rem; text-wrap: balance; }
.home-rebuild .founded-section p{ font-weight: 300; margin: 1.5rem 0; }
.home-rebuild .founded-img{ flex: 0 0 50%; max-width: 50%; }

/* About: founders + factory — width matched to the specs blocks (560 + 80 + 520 = 1160, centered) */
.home-rebuild .about-block{ display: flex; align-items: center; justify-content: center; gap: 80px; margin-bottom: 60px; }
.home-rebuild .about-text{ flex: 1 1 0; max-width: 560px; }
.home-rebuild .about-founders{ flex: 1 1 0; max-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.home-rebuild .founder{ margin: 0; }
.home-rebuild .founder img{ width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; border-radius: 8px; }
.home-rebuild .founder figcaption{ margin-top: 14px; display: flex; flex-direction: column; }
.home-rebuild .founder-name{ font-size: 15px; color: #fff; font-weight: 500; }
.home-rebuild .founder-role{ font-size: 11px; letter-spacing: 0.5px; line-height: 1.4; color: #8a8a8a; margin-top: 4px; }
.home-rebuild .about-factory{ margin: 0 auto; max-width: 1160px; }
.home-rebuild .about-factory img{ width: 100%; aspect-ratio: 1600 / 540; object-fit: cover; display: block; border-radius: 8px; }
.home-rebuild .about-factory figcaption{ margin-top: 14px; font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; color: #8a8a8a; }

/* scroll reveal — slide up from bottom */
.home-rebuild .reveal-up{ opacity: 0; transform: translateY(80px); transition: opacity 1.4s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.home-rebuild .reveal-up.in-view{ opacity: 1; transform: none; }
.home-rebuild .about-founders .founder:nth-child(2){ transition-delay: 0.12s; }
.home-rebuild .about-factory.reveal-up{ transition-delay: 0.08s; }
@media (prefers-reduced-motion: reduce) {
  .home-rebuild .reveal-up{ opacity: 1 !important; transform: none !important; transition: none; }
}

/* =====================================================================
   MCMURTRY SECTION
   ===================================================================== */
.home-rebuild .mcmurtry-section{
  position: relative;
  background: url("../images/mcmurtry-team.jpg") center 30%/cover no-repeat;
  background-attachment: fixed;   /* parallax */
  min-height: 94vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 11rem 0 0;
}
.home-rebuild .mcmurtry-section::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.62) 42%, rgba(0,0,0,0.25) 68%, rgba(0,0,0,0) 92%);
}
.home-rebuild .mcmurtry-section .container{ position: relative; z-index: 1; }
.home-rebuild .mcmurtry-section .founded-text{ max-width: 760px; margin: 0 auto; padding-right: 0; text-align: center; }
.home-rebuild .mcmurtry-section h5{ font-size: 32px; line-height: 1.25; margin-bottom: 1.5rem; }
.home-rebuild .mcmurtry-section p{ font-weight: 300; margin: 1.25rem 0; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1550.99px) {
  :root{ --maxw: 1390px; }
  .home-rebuild .section-heading h2{ font-size: 68px; }
  .home-rebuild .banner-content h1{ font-size: 25px; line-height: 40px; }
  .home-rebuild .banner-content{ bottom: 4.5rem; }
  
}
@media (max-width: 1366.99px) {
  .home-rebuild .section-heading h2{ font-size: 60px; }
  .home-rebuild .section-heading h3, .home-rebuild .video-content h3{ font-size: 26px; }
}
@media (max-width: 1024.99px) {
  :root{ --maxw: 960px; --gutter: 15px; }
  .home-rebuild .section-heading{ text-align: center; }
  .home-rebuild .section-heading h2{ font-size: 40px; }
  .home-rebuild .banner-content h1{ font-size: 20px; line-height: 30px; }
  .home-rebuild .banner-content .welcome{ max-width: 80%; }

  /* stack all two-column layouts */
  .home-rebuild .ultimate-left, .home-rebuild .ultimate-right, .home-rebuild .video-content .inner, .home-rebuild .performance-inner, .home-rebuild .performance-left, .home-rebuild .performance-right, .home-rebuild .specifications-section .spec-wrap, .home-rebuild .topgear-inner, .home-rebuild .founded-text, .home-rebuild .founded-img{
    flex: 0 0 100%; max-width: 100%; margin-left: 0;
  }
  .home-rebuild .ultimate-right{ margin-top: 2.5rem; text-align: center; }
  .home-rebuild .ultimate-right img{ margin-inline: auto; }
  .home-rebuild .mcmurtry-section{ background-attachment: scroll; }
  .home-rebuild .mcmurtry-section .founded-text{ max-width: 100%; margin: 0 auto; }
  .home-rebuild .founded-img{ margin-top: 2rem; }
  .home-rebuild .about-block{ flex-direction: column; gap: 36px; }
  .home-rebuild .about-text, .home-rebuild .about-founders{ flex: none; width: 100%; max-width: 100%; }
}
@media (max-width: 820.99px) {
  .home-rebuild .section-heading h2{ font-size: 34px; }
  .home-rebuild .hero-arrow{ width: 44px; height: 44px; }
  .home-rebuild .hero-arrow svg{ width: 18px; height: 21px; }
  .home-rebuild .video-section{ flex-direction: column; }
  .home-rebuild .video-section::before{ display: none; }
  .home-rebuild .video-content{ position: static; margin-top: 1.5rem; }
  .home-rebuild .historic-section .row{ flex-direction: column; }
  .home-rebuild .historic-section .lead, .home-rebuild .historic-section .col{ flex: 0 0 100%; max-width: 100%; }
  .home-rebuild .historic-section .lead{ padding: 0 1.5rem 2rem; text-align: center; }
  .home-rebuild .historic-section .lead .section-heading,
  .home-rebuild .historic-section .lead p{ text-align: center; padding-right: 0; }
  .home-rebuild .historic-card{ margin-bottom: 15px; }
  .home-rebuild .perf-cards{ flex-direction: column; }
  .home-rebuild .performance-right{ padding: 2rem 1.5rem 0; text-align: center; }
  .home-rebuild .performance-right p{ text-align: center; }
  .home-rebuild .mcmurtry-section .founded-text{ padding: 0 1.5rem; }
  .home-rebuild .spec-block, .home-rebuild .spec-block--reverse{ flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .home-rebuild .spec-media, .home-rebuild .spec-col{ flex: none; width: 100%; max-width: 100%; }
  .home-rebuild .spec-media--a, .home-rebuild .spec-media--b{ aspect-ratio: 4 / 3; }
  .home-rebuild .spec-block--reverse .spec-media{ order: -1; }
  .home-rebuild .spec-col--right{ text-align: left; }
  .home-rebuild .spec-title{ font-size: 28px; }
}
@media (max-width: 480.99px) {
  .home-rebuild .section-heading h2{ font-size: 24px; }
  .home-rebuild .banner-content h1{ font-size: 16px; line-height: 25px; }
  .home-rebuild .section-heading p{ font-size: 16px; }
  .home-rebuild .btn{ padding: 0 3rem; }
  .home-rebuild .top-gear-block{ flex-direction: column; text-align: center; }
  .home-rebuild .top-gear-block .text{ padding-left: 0; margin-top: 1rem; }
  .home-rebuild .historic-section .lead,
  .home-rebuild .performance-right,
  .home-rebuild .mcmurtry-section .founded-text{ padding-left: 1.25rem; padding-right: 1.25rem; }
}


/* ----------  Beat legacy theme homepage rules  ---------- */
.home-rebuild .banner-section { padding-bottom: 0; height: 100vh; height: 100svh; }
.home-rebuild .performance-section {
  background-image: url("../images/performance-track.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.home-rebuild .specifications-section::before { content: none; display: none; }
.home-rebuild .mcmurtry-section {
  background-image: url("../images/mcmurtry-team.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  background-attachment: fixed;
  min-height: 94vh;
  align-items: flex-start;
  padding: 11rem 0 0;
}
.home-rebuild .top-gear-block { flex-direction: column; align-items: center; text-align: center; }
.home-rebuild .historic-section .col { flex: 1 1 0; max-width: none; width: auto; }
@media (max-width: 1024.99px) {
  .home-rebuild .mcmurtry-section { background-attachment: scroll; }
}
@media (max-width: 820.99px) {
  .home-rebuild .historic-section .col { flex: 0 0 100%; max-width: 100%; }
}
