.home-page,
.services-page,
.contact-page{
  margin:0;
  padding:0;
  background:#FBF8EE;
  color:#3E4C38;
}

.home-page body,
.home-page *,
.services-page *,
.contact-page *{
  box-sizing:border-box;
}

/* ===== TYPOGRAPHY BASE ===== */
body{
  font-family:Georgia, "Times New Roman", serif;
  font-size:16px;
  line-height:1.7;
  color:#3E4C38;
  background:#FBF8EE;
  margin:0;
  padding:0;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:Georgia, "Times New Roman", serif;
  line-height:1.2;
  margin:0;
}

a{
  color:#4E7A3A;
  text-decoration:none;
}

img{
  max-width:100%;
}

/* ===== FURROW-NAV ===== */
.furrow-nav{
  display:block;
  position:sticky;
  top:0;
  z-index:100;
  background:#FBF8EE;
}

.furrow-band{
  display:block;
  height:10px;
  width:100%;
  background:repeating-linear-gradient(
    to bottom,
    #4E7A3A 0px,
    #4E7A3A 2.5px,
    #D9A441 2.5px,
    #D9A441 5px,
    #4E7A3A 5px,
    #4E7A3A 7.5px,
    #D9A441 7.5px,
    #D9A441 10px
  );
}

.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding:16px 24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:bold;
  letter-spacing:0.12em;
  color:#4E7A3A;
  text-transform:uppercase;
}

.brand .silo-glyph{
  display:inline-block;
  position:relative;
  width:14px;
  height:26px;
  background:#6B4A2E;
  border-radius:2px;
}

.brand .silo-glyph::before{
  content:"";
  position:absolute;
  top:-8px;
  left:-2px;
  width:18px;
  height:10px;
  background:#6B4A2E;
  border-radius:50% 50% 0 0 / 60% 60% 0 0;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:0;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-links li{
  display:flex;
  align-items:center;
}

.nav-links li + li::before{
  content:"";
  width:5px;
  height:5px;
  background:#D9A441;
  border-radius:50%;
  margin:0 14px;
}

.nav-links a{
  color:#2C3A26;
  font-size:12px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:0.13em;
  padding:4px 0;
  border-bottom:2px solid transparent;
  font-family:Georgia, "Times New Roman", serif;
}

.nav-links a:hover,
.nav-links a:focus{
  color:#4E7A3A;
  border-bottom:2px solid #4E7A3A;
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}

.nav-toggle .bar{
  display:block;
  width:22px;
  height:3px;
  background:#2C3A26;
  margin:4px 0;
}

@media (max-width: 860px){
  .nav-toggle{
    display:block;
  }
  .nav-links{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    width:100%;
    background:#FFFDF6;
    padding:18px 24px;
    border-top:1px solid #E4DEC9;
  }
  .nav-links.open{
    display:flex;
  }
  .nav-links li + li::before{
    display:none;
  }
  .nav-row.open .nav-links{
    display:flex;
  }
}

/* ===== HIGHWAY-CONVOY HERO ===== */
.convoy-hero{
  position:relative;
  background:#33452C;
  overflow:hidden;
  padding:90px 24px 140px;
}

.convoy-hero-inner{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.eyebrow-chip{
  display:inline-block;
  background:#D9A441;
  color:#2C3A26;
  font-size:12px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:0.18em;
  padding:7px 18px;
  border-radius:2px;
  margin-bottom:26px;
}

.convoy-hero h1{
  font-size:52px;
  font-weight:bold;
  color:#FFFDF6;
  line-height:1.12;
  margin-bottom:24px;
}

.convoy-hero h1 .ag-word{
  color:#D9A441;
}

.convoy-subcopy{
  font-size:19px;
  color:#E9E4C9;
  max-width:680px;
  margin:0 auto 34px;
  line-height:1.75;
}

.hero-ctas{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-primary{
  display:inline-block;
  background:#D9A441;
  color:#2C3A26;
  font-weight:bold;
  font-family:Georgia, "Times New Roman", serif;
  padding:15px 34px;
  font-size:16px;
  border-radius:3px;
  border:none;
  cursor:pointer;
  letter-spacing:0.03em;
}

.btn-primary:hover{
  background:#ca9432;
  color:#2C3A26;
}

.btn-outline{
  display:inline-block;
  background:transparent;
  color:#D9A441;
  border:2px solid #D9A441;
  font-weight:bold;
  font-family:Georgia, "Times New Roman", serif;
  padding:13px 32px;
  font-size:16px;
  border-radius:3px;
  cursor:pointer;
}

.btn-outline:hover{
  background:rgba(217,164,65,0.12);
  color:#D9A441;
}

/* Highway scene */
.highway-scene{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:150px;
  background:#33452C;
}

.highway-line{
  position:absolute;
  top:26px;
  left:0;
  right:0;
  height:8px;
  background:repeating-linear-gradient(
    to right,
    #D9A441 0px,
    #D9A441 70px,
    transparent 70px,
    transparent 110px
  );
}

.convoy{
  position:absolute;
  top:48px;
  left:0;
  right:0;
  display:flex;
  justify-content:space-around;
  align-items:flex-start;
  padding:0 60px;
}

.trailer{
  position:relative;
  background:#FFFDF6;
  border-radius:4px;
}

.trailer .hopper-line{
  position:absolute;
  background:#4E7A3A;
}

.trailer .wheels{
  position:absolute;
  bottom:-10px;
}

.trailer .wheels .wheel{
  position:absolute;
  width:16px;
  height:16px;
  background:#2C3A26;
  border-radius:50%;
  border:2px solid #FFFDF6;
  bottom:0;
}

.trailer-1{
  width:130px;
  height:44px;
}

.trailer-1 .hopper-line{
  top:8px;
  bottom:8px;
  width:4px;
  left:30px;
}

.trailer-1 .wheels{
  left:14px;
  width:50px;
  height:6px;
}

.trailer-1 .wheel-a{ left:0; }
.trailer-1 .wheel-b{ left:34px; }

.trailer-2{
  width:150px;
  height:52px;
  top:-10px;
}

.trailer-2 .hopper-line{
  top:8px;
  bottom:8px;
  width:4px;
  left:70px;
}

.trailer-2 .wheels{
  left:18px;
  width:50px;
  height:6px;
}

.trailer-2 .wheel-a{ left:0; }
.trailer-2 .wheel-b{ left:34px; }

.trailer-3{
  width:120px;
  height:40px;
}

.trailer-3 .hopper-line{
  top:8px;
  bottom:8px;
  width:4px;
  left:24px;
}

.trailer-3 .wheels{
  left:12px;
  width:50px;
  height:6px;
}

.trailer-3 .wheel-a{ left:0; }
.trailer-3 .wheel-b{ left:34px; }

/* ===== SILO-BAY COLUMNS ===== */
.silo-bays{
  background:#FBF8EE;
  padding:90px 24px 80px;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 56px;
}

.section-head h2{
  font-size:40px;
  color:#4E7A3A;
  margin-bottom:16px;
}

.section-head p{
  font-size:18px;
  color:#3E4C38;
}

.silo-bays-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:44px;
  max-width:1200px;
  margin:0 auto;
}

.silo-bay{
  background:#FFFDF6;
  border:1px solid #E4DEC9;
  border-radius:10px;
  padding:0 30px 44px;
  text-align:center;
  position:relative;
}

.silo-top{
  width:90px;
  height:40px;
  margin:-20px auto 26px;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
}

.silo-top-accent-1{ background:#4E7A3A; }
.silo-top-accent-2{ background:#D9A441; }
.silo-top-accent-3{ background:#6B4A2E; }

.bay-number{
  font-size:13px;
  font-weight:bold;
  letter-spacing:0.2em;
  color:#6B4A2E;
  margin-bottom:14px;
}

.silo-bay h3{
  font-size:24px;
  color:#4E7A3A;
  margin-bottom:18px;
}

.silo-bay p{
  font-size:16px;
  color:#3E4C38;
  text-align:left;
  line-height:1.75;
}

/* ===== DISPATCH BOARD ===== */
.dispatch-board{
  background:#33452C;
  padding:90px 24px 90px;
}

.dispatch-board .section-head h2{
  color:#FFFDF6;
}

.dispatch-board .section-head p{
  color:#E9E4C9;
}

.dispatch-list{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.dispatch-row{
  display:flex;
  align-items:center;
  gap:26px;
  background:#3E5236;
  border-top:1px solid #D9A441;
  padding:24px 30px;
  flex-wrap:wrap;
}

.time-chip{
  background:#D9A441;
  color:#2C3A26;
  font-weight:bold;
  font-size:18px;
  letter-spacing:0.05em;
  padding:8px 14px;
  border-radius:2px;
  min-width:78px;
  text-align:center;
  font-family:Georgia, "Times New Roman", serif;
}

.route-detail{
  flex:1;
  min-width:260px;
}

.route-detail h3{
  color:#FFFDF6;
  font-size:22px;
  margin-bottom:6px;
}

.route-detail p{
  color:#D9D3B4;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

.status-chip{
  border:1px solid #D9A441;
  color:#D9A441;
  font-size:12px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:0.12em;
  padding:7px 18px;
  border-radius:2px;
}

/* ===== METRIC BAND ===== */
.metric-band{
  background:#D9A441;
  padding:64px 24px;
}

.metric-strip{
  display:flex;
  max-width:1200px;
  margin:0 auto;
}

.metric-item{
  flex:1;
  text-align:center;
  padding:0 24px;
}

.metric-item + .metric-item{
  border-left:2px solid #6B4A2E;
}

.metric-num{
  font-size:52px;
  font-weight:bold;
  color:#2C3A26;
  line-height:1.1;
  font-family:Georgia, "Times New Roman", serif;
}

.metric-label{
  font-size:12px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:#33452C;
  margin-top:8px;
}

/* ===== STATEMENT BAND ===== */
.statement-band{
  background:#FFFDF6;
  padding:96px 24px;
}

.statement-inner{
  max-width:820px;
  margin:0 auto;
  border-left:4px solid #4E7A3A;
  padding:10px 0 10px 36px;
}

.statement-inner p{
  font-size:26px;
  line-height:1.5;
  color:#2C3A26;
  font-weight:normal;
  margin-bottom:18px;
}

.statement-attrib{
  font-size:14px;
  font-weight:bold;
  letter-spacing:0.1em;
  color:#4E7A3A;
  text-transform:uppercase;
}

/* ===== CTA BAND ===== */
.cta-band{
  background:#FBF8EE;
  padding:90px 24px;
  text-align:center;
}

.cta-band h2{
  font-size:38px;
  color:#4E7A3A;
  margin-bottom:16px;
}

.cta-band p{
  font-size:18px;
  color:#3E4C38;
  max-width:640px;
  margin:0 auto 34px;
}

.btn-green{
  display:inline-block;
  background:#4E7A3A;
  color:#FFFDF6;
  font-weight:bold;
  font-family:Georgia, "Times New Roman", serif;
  padding:16px 38px;
  font-size:16px;
  border-radius:3px;
  border:none;
  cursor:pointer;
  letter-spacing:0.03em;
}

.btn-green:hover{
  background:#416634;
  color:#FFFDF6;
}

/* ===== TAILGATE-CHAIN FOOTER ===== */
.tailgate-footer{
  background:#2C3A26;
  padding:0 0 44px;
  position:relative;
  z-index:1;
}

.tailgate-hinge{
  width:100%;
  height:12px;
  background:repeating-linear-gradient(
    to right,
    #6B4A2E 0px,
    #6B4A2E 16px,
    #2C3A26 16px,
    #2C3A26 22px
  );
}

.footer-inner{
  text-align:center;
  padding:54px 24px 0;
  position:relative;
  z-index:1;
}

.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#D9A441;
  font-size:22px;
  font-weight:bold;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:26px;
}

.footer-brand .silo-glyph{
  display:inline-block;
  position:relative;
  width:14px;
  height:26px;
  background:#6B4A2E;
  border-radius:2px;
}

.footer-brand .silo-glyph::before{
  content:"";
  position:absolute;
  top:-8px;
  left:-2px;
  width:18px;
  height:10px;
  background:#6B4A2E;
  border-radius:50% 50% 0 0 / 60% 60% 0 0;
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-bottom:34px;
  list-style:none;
  padding:0;
}

.footer-links a{
  color:#E9E4C9;
  font-size:14px;
  letter-spacing:0.05em;
}

.footer-links a:hover{
  color:#D9A441;
}

.footer-links li + li::before{
  content:"·";
  color:#A9A97E;
  margin-right:22px;
}

.tailgate-chain{
  display:flex;
  justify-content:center;
  gap:6px;
  margin:0 auto 32px;
  width:180px;
}

.chain-link{
  width:14px;
  height:22px;
  border:2px solid #D9A441;
  border-radius:6px;
}

.chain-ring{
  width:8px;
  height:8px;
  border:2px solid #D9A441;
  border-radius:50%;
  align-self:center;
}

.footer-legal{
  color:#C9C6A8;
  font-size:13px;
  letter-spacing:0.04em;
  line-height:1.9;
  max-width:860px;
  margin:0 auto;
}

/* ===== SCROLL REVEAL ===== */
.fade-up{
  opacity:0;
  transform:translateY(26px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== CONTACT PAGE STYLES ===== */
.page-hero{
  background:#33452C;
  padding:74px 24px;
  text-align:center;
}

.page-hero h1{
  color:#FFFDF6;
  font-size:46px;
  margin-bottom:14px;
}

.page-hero .hero-overline{
  color:#D9A441;
  font-size:12px;
  font-weight:bold;
  letter-spacing:0.18em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.page-hero p{
  color:#E9E4C9;
  max-width:680px;
  margin:0 auto;
  font-size:18px;
}

/* ===== SERVICES SECTIONS ===== */
.services-embed{
  background:#FBF8EE;
  padding:70px 24px 20px;
}

.service-section{
  background:#FFFDF6;
  border:1px solid #E4DEC9;
  border-radius:10px;
  padding:44px 40px;
  margin:0 auto 24px;
  max-width:1100px;
}

.service-section h2{
  color:#4E7A3A;
  font-size:28px;
  margin-bottom:14px;
}

.service-section h2 .num{
  color:#D9A441;
  font-size:20px;
  margin-right:10px;
}

.service-section p{
  color:#3E4C38;
  font-size:16px;
  line-height:1.8;
  margin-bottom:12px;
}

.service-divider{
  max-width:1100px;
  margin:40px auto;
  height:1px;
  background:#E4DEC9;
}

.process-band{
  background:#FFFDF6;
  padding:70px 24px;
}

.process-band h2{
  text-align:center;
  color:#4E7A3A;
  font-size:36px;
  margin-bottom:40px;
}

.steps-row{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1200px;
  margin:0 auto;
}

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

.step-number{
  width:52px;
  height:52px;
  border:2px solid #4E7A3A;
  background:#FBF8EE;
  color:#4E7A3A;
  font-weight:bold;
  font-size:22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  font-family:Georgia, "Times New Roman", serif;
}

.step-item h3{
  color:#2C3A26;
  font-size:19px;
  margin-bottom:10px;
}

.step-item p{
  color:#3E4C38;
  font-size:15px;
  line-height:1.7;
}

.services-cta{
  background:#FBF8EE;
  padding:80px 24px;
  text-align:center;
}

.services-cta h2{
  color:#4E7A3A;
  font-size:34px;
  margin-bottom:16px;
}

.services-cta p{
  color:#3E4C38;
  font-size:18px;
  max-width:640px;
  margin:0 auto 30px;
}

/* ===== CONTACT PAGE ===== */
.contact-layout{
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
}

.contact-form-wrap{
  background:#FFFDF6;
  border:1px solid #E4DEC9;
  border-radius:10px;
  padding:40px;
}

.contact-form-wrap h2{
  color:#4E7A3A;
  font-size:28px;
  margin-bottom:26px;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  display:block;
  font-weight:bold;
  color:#2C3A26;
  font-size:14px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.form-group input,
.form-group textarea{
  width:100%;
  background:#FBF8EE;
  border:1px solid #E4DEC9;
  border-radius:4px;
  padding:14px 16px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:16px;
  color:#2C3A26;
}

.form-group textarea{
  resize:vertical;
  min-height:150px;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#4E7A3A;
}

.contact-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.info-panel{
  background:#FFFDF6;
  border:1px solid #E4DEC9;
  border-radius:10px;
  padding:30px;
}

.info-panel h3{
  color:#4E7A3A;
  font-size:21px;
  margin-bottom:16px;
}

.info-panel p,
.info-panel a{
  color:#3E4C38;
  font-size:16px;
  line-height:1.8;
}

.info-panel a{
  color:#4E7A3A;
  font-weight:bold;
}

.faq-panel{
  background:#FFFDF6;
  border:1px solid #E4DEC9;
  border-radius:10px;
  padding:30px;
}

.faq-panel h3{
  color:#4E7A3A;
  font-size:21px;
  margin-bottom:20px;
}

.faq-item{
  border-top:1px solid #E4DEC9;
  padding:16px 0;
}

.faq-item:first-of-type{
  border-top:none;
}

.faq-question{
  font-weight:bold;
  color:#2C3A26;
  font-size:16px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question .faq-toggle{
  color:#D9A441;
  font-weight:bold;
  font-size:20px;
}

.faq-answer{
  color:#3E4C38;
  font-size:15px;
  line-height:1.7;
  margin-top:10px;
  display:none;
}

.faq-answer.open{
  display:block;
}

.contact-note{
  color:#5A6B75;
  font-size:14px;
  margin-top:6px;
}

@media (max-width: 1000px){
  .silo-bays-row{
    grid-template-columns:1fr;
  }
  .contact-layout{
    grid-template-columns:1fr;
    gap:40px;
  }
  .steps-row{
    grid-template-columns:repeat(2, 1fr);
  }
  .metric-strip{
    flex-wrap:wrap;
  }
  .metric-item{
    flex:1 1 50%;
    margin-bottom:24px;
  }
  .metric-item:nth-child(3){
    border-left:none;
  }
}

@media (max-width: 620px){
  .convoy-hero h1{
    font-size:36px;
  }
  .metric-strip{
    flex-direction:column;
  }
  .metric-item + .metric-item{
    border-left:none;
    border-top:2px solid #6B4A2E;
    padding-top:20px;
  }
  .steps-row{
    grid-template-columns:1fr;
  }
  .nav-row{
    flex-wrap:wrap;
  }
  .footer-links li + li::before{
    display:none;
  }
}
