/* Roanoke Fruit & Produce — site styles */

:root{
  --bg:#fbf9f5;
  --bg-alt:#f2ede3;
  --fg:#211f1a;
  --fg-soft:#5a564c;
  --green:#3d5c3f;
  --green-deep:#2c4530;
  --red:#a4272a;
  --line:#e2dcce;
  --white:#ffffff;
  --maxw:1220px;
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family:'Manrope',system-ui,-apple-system,'Segoe UI',sans-serif;
  background:var(--bg);
  color:var(--fg);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{font-family:'Newsreader',Georgia,'Times New Roman',serif;font-weight:500;margin:0;line-height:1.12;}
p{margin:0;}
a{color:inherit;text-decoration:none;}
a:hover{color:var(--green-deep);}
img{max-width:100%;}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}

.eyebrow{
  font-size:12px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green);font-weight:700;margin-bottom:14px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;padding:14px 26px;font-size:14.5px;font-weight:600;
  border-radius:2px;border:1px solid transparent;transition:background .15s,color .15s;
}
.btn-primary{background:var(--green-deep);color:var(--white);}
.btn-primary:hover{background:#22371f;color:var(--white);}
.btn-outline{border-color:var(--fg);color:var(--fg);}
.btn-outline:hover{background:var(--fg);color:var(--bg);}
.btn-light{background:var(--white);color:var(--green-deep);}
.btn-light:hover{background:#eee9dd;color:var(--green-deep);}
.btn-row{display:flex;flex-wrap:wrap;gap:14px;}

/* ---------- header ---------- */
.site-header{background:var(--bg);border-bottom:1px solid var(--line);}
.header-inner{
  max-width:var(--maxw);margin:0 auto;padding:16px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:14px;}
.brand img{height:58px;width:auto;display:block;}
.brand-name{display:flex;flex-direction:column;line-height:1.2;}
.brand-name strong{font-family:'Newsreader',Georgia,serif;font-size:19px;font-weight:600;}
.brand-name span{font-size:11.5px;letter-spacing:.09em;text-transform:uppercase;color:var(--fg-soft);}
.header-right{display:flex;align-items:center;gap:28px;flex-wrap:wrap;}
.site-nav{display:flex;gap:26px;font-size:14.5px;font-weight:500;flex-wrap:wrap;}
.site-nav a{padding:4px 0;border-bottom:2px solid transparent;}
.site-nav a:hover{border-bottom-color:var(--green);}
.site-nav a.active{border-bottom-color:var(--red);}
.header-phone{
  display:flex;flex-direction:column;line-height:1.25;text-align:right;
}
.header-phone span{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-soft);}
.header-phone a{font-family:'Newsreader',Georgia,serif;font-size:20px;font-weight:600;color:var(--green-deep);}

/* ---------- hero ---------- */
.hero{background:var(--green-deep);color:#f4f1e8;padding:96px 0 44px;}
.hero h1{font-size:60px;max-width:19ch;color:#ffffff;}
.hero .lede{font-size:18px;line-height:1.65;color:#d5dfd1;max-width:58ch;margin-top:26px;}
.hero .btn-row{margin-top:34px;}
.hero-note{font-size:13.5px;color:#a8bda4;margin-top:18px;}

.btn-ghost{border-color:rgba(244,241,232,.5);color:#f4f1e8;}
.btn-ghost:hover{background:#f4f1e8;color:var(--green-deep);}

.served{
  margin-top:66px;border-top:1px solid rgba(244,241,232,.2);
  padding:24px 0 0;display:flex;flex-wrap:wrap;gap:12px 40px;align-items:baseline;
}
.served .label{font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;color:#9fbf9c;font-weight:700;}
.served ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:12px 32px;}
.served li{font-family:'Newsreader',Georgia,serif;font-size:19px;color:#f4f1e8;}

/* ---------- page head (inner pages) ---------- */
.page-head{background:var(--bg-alt);padding:76px 0 62px;}
.page-head h1{font-size:46px;max-width:20ch;color:var(--green-deep);}
.page-head .lede{font-size:17.5px;line-height:1.6;color:var(--fg-soft);max-width:62ch;margin-top:20px;}

/* ---------- sections ---------- */
section{padding:80px 0;}
section.tight{padding:64px 0;}
.section-head{max-width:60ch;margin-bottom:44px;}
.section-head h2{font-size:34px;}
.section-head p{font-size:16.5px;line-height:1.65;color:var(--fg-soft);margin-top:16px;}

/* ---------- category list ---------- */
.categories{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 64px;}
.category{padding:26px 0;border-top:1px solid var(--line);}
.category h3{font-size:21px;margin-bottom:8px;}
.category p{font-size:14.5px;line-height:1.6;color:var(--fg-soft);}

/* ---------- how we work ---------- */
.band{background:var(--bg-alt);}
.facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:38px 64px;}
.fact h3{font-size:19px;margin-bottom:10px;}
.fact p{font-size:14.5px;line-height:1.65;color:var(--fg-soft);}

/* ---------- dark band ---------- */
.dark{background:var(--green-deep);color:var(--white);}
.dark h2{color:var(--white);font-size:33px;max-width:26ch;}
.dark .eyebrow{color:#c2d4bf;}
.dark p{color:#dce4d8;font-size:16px;line-height:1.7;max-width:60ch;margin-top:18px;}
.dark .btn-row{margin-top:30px;}
.dark ul{margin:26px 0 0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 48px;max-width:820px;}
.dark ul li{font-size:15px;color:#dce4d8;padding-left:20px;position:relative;line-height:1.55;}
.dark ul li::before{content:"";position:absolute;left:0;top:9px;width:7px;height:7px;background:#9fbf9c;border-radius:50%;}

/* ---------- story ---------- */
.story{max-width:64ch;}
.story h2{font-size:34px;}
.story p{font-size:16.5px;line-height:1.75;color:var(--fg-soft);margin-top:20px;}
.story p.first{color:var(--fg);font-size:18px;}

/* ---------- contact ---------- */
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:start;}
.contact-block h3{font-size:20px;margin-bottom:14px;}
.contact-block p,.contact-block address{
  font-style:normal;font-size:16px;line-height:1.8;color:var(--fg-soft);
}
.contact-block a{color:var(--green-deep);font-weight:600;}
.big-phone{font-family:'Newsreader',Georgia,serif;font-size:38px;color:var(--green-deep);display:block;margin-bottom:6px;}
.reasons{list-style:none;margin:18px 0 0;padding:0;}
.reasons li{padding:12px 0;border-top:1px solid var(--line);font-size:15.5px;color:var(--fg-soft);}

/* ---------- footer ---------- */
.site-footer{border-top:1px solid var(--line);padding:64px 0 36px;}
.footer-grid{display:flex;justify-content:space-between;gap:56px;flex-wrap:wrap;padding-bottom:36px;border-bottom:1px solid var(--line);}
.footer-brand img{height:96px;width:auto;display:block;margin-bottom:18px;}
.footer-brand address{font-style:normal;font-size:14.5px;line-height:1.9;color:var(--fg-soft);}
.footer-brand address a{color:var(--fg-soft);}
.footer-cols{display:flex;gap:64px;flex-wrap:wrap;}
.footer-col{display:flex;flex-direction:column;gap:11px;font-size:14.5px;}
.footer-col strong{font-weight:600;margin-bottom:3px;}
.footer-col a{color:var(--fg-soft);}
.legal{text-align:center;font-size:12.5px;color:var(--fg-soft);padding-top:26px;}

/* ---------- responsive ---------- */
@media (max-width:1000px){
  .hero h1{font-size:46px;}
  .categories,.facts{grid-template-columns:1fr;gap:0 0;}
  .facts{gap:32px;}
  .contact-grid{grid-template-columns:1fr;gap:44px;}
  .dark ul{grid-template-columns:1fr;}
}

@media (max-width:760px){
  .wrap{padding:0 22px;}
  .header-inner{padding:14px 22px;justify-content:center;text-align:center;}
  .brand{justify-content:center;}
  .brand img{height:50px;}
  .header-right{width:100%;flex-direction:column;gap:16px;}
  .site-nav{justify-content:center;gap:18px;font-size:14px;}
  .header-phone{text-align:center;align-items:center;}
  .hero{padding:56px 0 34px;}
  .hero h1{font-size:37px;max-width:100%;}
  .hero .lede{font-size:16.5px;}
  .served{margin-top:44px;flex-direction:column;gap:14px;}
  .served ul{gap:10px 24px;}
  .served li{font-size:17px;}
  .page-head{padding:52px 0 40px;}
  .page-head h1{font-size:34px;}
  section{padding:56px 0;}
  .section-head{margin-bottom:32px;}
  .section-head h2,.story h2,.dark h2{font-size:27px;}
  .big-phone{font-size:32px;}
  .footer-grid{gap:36px;}
  .footer-cols{gap:36px;}
  .btn{padding:13px 22px;}
}
