  :root{
    --cream:#F6F1E7;
    --cream-2:#EFE7D6;
    --navy:#1E3A52;
    --navy-deep:#152A3D;
    --teal:#3B6B7D;
    --gold:#C9A24B;
    --ink:#2A2521;
    --line: rgba(30,58,82,0.18);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'Karla', sans-serif;
    font-size:17px;
    line-height:1.6;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
    color:var(--navy-deep);
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}

  /* --- Porch rail divider (signature element) --- */
  .rail{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:34px 0;
  }
  .rail span{
    width:2px;
    height:26px;
    background:var(--teal);
    opacity:0.55;
  }
  .rail span:nth-child(3n){ height:34px; opacity:0.85; }

  /* --- Header --- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(246,241,231,0.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .nav-wrap{
    max-width:1120px;
    margin:0 auto;
    padding:14px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }
  .brand{
    display:flex; align-items:center; gap:10px;
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:1.15rem;
    color:var(--navy-deep);
    text-decoration:none;
  }
  .brand img{ height:38px; width:auto; }
  nav ul{
    list-style:none; display:flex; gap:26px;
    margin:0; padding:0;
    font-size:0.92rem;
    font-weight:600;
  }
  nav a{ text-decoration:none; color:var(--navy); }
  .nav-cta{
    background:var(--navy-deep);
    color:var(--cream)!important;
    padding:10px 18px;
    border-radius:3px;
    font-weight:700;
  }
  .nav-toggle{ display:none; }

  /* --- Hero --- */
  .hero{
    position:relative;
    min-height:86vh;
    display:flex;
    align-items:flex-end;
    background:linear-gradient(180deg, rgba(21,42,61,0.25) 0%, rgba(21,42,61,0.55) 55%, rgba(21,42,61,0.86) 100%), url('images/farmhouse.jpg') center 30%/cover no-repeat;
  }
  .hero-inner{
    max-width:1120px;
    margin:0 auto;
    padding:70px 24px 64px;
    color:var(--cream);
    width:100%;
  }
  .eyebrow{
    text-transform:uppercase;
    letter-spacing:0.16em;
    font-size:0.78rem;
    font-weight:700;
    color:var(--gold);
    margin-bottom:14px;
  }
  .hero h1{
    color:var(--cream);
    font-size:clamp(2.3rem, 5vw, 3.6rem);
    line-height:1.08;
    margin:0 0 18px;
    max-width:14ch;
  }
  .hero p{
    max-width:46ch;
    font-size:1.12rem;
    color:#EFE7D6;
    margin:0 0 30px;
  }
  .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  .btn{
    display:inline-block;
    padding:14px 26px;
    border-radius:3px;
    font-weight:700;
    text-decoration:none;
    font-size:0.98rem;
  }
  .btn-primary{ background:var(--gold); color:var(--navy-deep); }
  .btn-ghost{ border:1.5px solid rgba(246,241,231,0.7); color:var(--cream); }

  /* --- Welcome section --- */
  .section{ max-width:1120px; margin:0 auto; padding:20px 24px; }
  .welcome{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:center;
    padding:70px 24px;
  }
  .welcome img{ border-radius:4px; width:100%; display:block; }
  .welcome .tag{
    font-size:0.8rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--teal); margin-bottom:12px;
  }
  .welcome h2{ font-size:2rem; margin:0 0 18px; }
  .welcome p{ margin:0 0 16px; color:#453e37; }
  .signature{ font-family:'Fraunces',serif; font-style:italic; color:var(--navy); font-size:1.05rem; }

  /* --- Services --- */
  .services{ padding:20px 24px 70px; }
  .services-head{ text-align:center; max-width:640px; margin:0 auto 44px; }
  .services-head .tag{
    font-size:0.8rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--teal); margin-bottom:10px;
  }
  .services-head h2{ font-size:2rem; margin:0 0 12px; }
  .card-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
  }
  .card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:5px;
    padding:28px 22px;
    text-decoration:none;
    color:var(--ink);
  }
  .card .num{
    font-family:'Fraunces',serif;
    color:var(--gold);
    font-size:0.85rem;
    font-weight:700;
    letter-spacing:0.05em;
  }
  .card h3{ font-size:1.15rem; margin:10px 0 8px; }
  .card p{ margin:0; font-size:0.94rem; color:#5a534c; }

  /* --- Kentucky roots band --- */
  .roots{
    background:var(--navy-deep);
    color:var(--cream);
    padding:74px 24px;
  }
  .roots-inner{ max-width:1120px; margin:0 auto; }
  .roots .tag{ color:var(--gold); font-weight:700; letter-spacing:0.14em; text-transform:uppercase; font-size:0.8rem; margin-bottom:12px; }
  .roots h2{ color:var(--cream); font-size:1.9rem; max-width:26ch; margin:0 0 20px; }
  .roots p{ max-width:60ch; color:#D8CFBC; margin:0 0 40px; }
  .roots-grid{
    display:grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    grid-auto-rows: 170px;
    gap:16px;
  }
  .roots-grid img{ border-radius:4px; width:100%; height:100%; object-fit:cover; display:block; }
  .roots-grid .tall{ grid-row: span 2; }

  /* --- Lead form --- */
  .lead{ padding:80px 24px; }
  .lead-box{
    max-width:1120px;
    margin:0 auto;
    background:var(--cream-2);
    border:1px solid var(--line);
    border-radius:6px;
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
  }
  .lead-copy{ padding:56px 48px; }
  .lead-copy .tag{ font-size:0.8rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal); margin-bottom:12px; }
  .lead-copy h2{ font-size:1.9rem; margin:0 0 16px; }
  .lead-copy p{ color:#453e37; margin:0; }
  .lead-form{ padding:48px; background:#fff; }
  .field{ margin-bottom:16px; }
  .field label{ display:block; font-size:0.85rem; font-weight:700; margin-bottom:6px; color:var(--navy-deep); }
  .field .checkbox-row label{ display:flex; align-items:center; gap:8px; font-weight:400; margin-bottom:0; font-size:0.98rem; color:var(--ink); }
  .field input, .field select{
    width:100%; padding:12px 14px;
    border:1px solid var(--line);
    border-radius:3px;
    font-family:'Karla',sans-serif;
    font-size:0.98rem;
    background:#fdfcf9;
  }
  .field input[type="checkbox"], .field input[type="radio"]{
    width:auto; padding:0; flex-shrink:0;
  }
  .field input:focus, .field select:focus{
    outline:2px solid var(--teal);
    outline-offset:1px;
  }
  .lead-form button{
    width:100%;
    padding:15px;
    background:var(--navy-deep);
    color:var(--cream);
    border:none;
    border-radius:3px;
    font-weight:700;
    font-size:1rem;
    cursor:pointer;
    margin-top:6px;
  }
  .lead-form button:hover{ background:var(--navy); }
  .fine{ font-size:0.78rem; color:#7a746b; margin-top:12px; }

  /* --- Footer --- */
  footer{
    background:var(--navy-deep);
    color:#C7CFD6;
    padding:0;
    border-top:3px solid var(--gold);
  }
  .foot-inner{
    max-width:1120px; margin:0 auto;
    padding:44px 24px 26px;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:36px;
  }
  .foot-inner h4{ color:var(--cream); font-family:'Fraunces',serif; font-size:1.1rem; margin:0 0 14px; }
  .foot-inner p, .foot-inner a{ font-size:0.92rem; color:#B7C0C8; text-decoration:none; }
  .foot-inner a:hover{ color:var(--gold); }
  .foot-inner ul{ list-style:none; margin:0; padding:0; }
  .foot-inner li{ margin-bottom:8px; }
  .foot-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
    padding:20px 24px;
  }
  .foot-bottom-inner{
    max-width:1120px; margin:0 auto;
    display:flex; justify-content:space-between; align-items:flex-start; gap:20px; flex-wrap:wrap;
  }
  .disclaimer{ font-size:0.78rem; color:#8B95A0; max-width:70ch; }

  @media (max-width:860px){
    nav ul{ display:none; }
    .welcome{ grid-template-columns:1fr; gap:32px; padding:56px 22px; }
    .card-grid{ grid-template-columns:repeat(2,1fr); }
    .roots-grid{ grid-template-columns:1fr 1fr; }
    .roots-grid .tall{ grid-row:auto; }
    .lead-box{ grid-template-columns:1fr; }
    .lead-copy{ padding:40px 30px 10px; }
    .lead-form{ padding:30px; }
    .foot-inner{ grid-template-columns:1fr; }
  }

/* --- Shared inner-page components --- */
.page-hero{
  background: linear-gradient(180deg, rgba(21,42,61,0.88) 0%, rgba(21,42,61,0.92) 100%), url('images/farmhouse.jpg') center 35%/cover no-repeat;
  padding:64px 24px 56px;
  color:var(--cream);
}
.page-hero-inner{ max-width:1120px; margin:0 auto; }
.page-hero h1{ color:var(--cream); font-size:clamp(2rem,4vw,2.8rem); margin:10px 0 14px; max-width:20ch; }
.page-hero p{ max-width:60ch; color:#D8CFBC; font-size:1.05rem; margin:0; }

.video-box{
  position:relative;
  width:100%;
  padding-top:56.25%;
  background:#000;
  border-radius:5px;
  overflow:hidden;
  margin: 8px 0 6px;
}
.video-box.vertical{ padding-top:177.7%; max-width:340px; margin-left:auto; margin-right:auto; }
.video-box iframe{
  position:absolute; top:0; left:0; width:100%; height:100%; border:0;
}
.video-caption{ font-size:0.85rem; color:#7a746b; text-align:center; margin:0 0 24px; }

.badge-row{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 8px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--navy-deep); color:var(--cream);
  padding:8px 16px; border-radius:30px;
  font-size:0.82rem; font-weight:700;
  border:1px solid var(--gold);
}

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.two-col img{ width:100%; display:block; }
.two-col.reverse{ direction:rtl; } .two-col.reverse > *{ direction:ltr; }

.content-block{ padding:64px 24px; }
.content-block h2{ font-size:1.9rem; margin:0 0 18px; }
.content-block p{ margin:0 0 16px; color:#453e37; }
.content-block ul{ margin:0 0 16px; padding-left:22px; color:#453e37; }
.content-block li{ margin-bottom:8px; }

.carrier-strip{
  background:var(--cream-2);
  padding:30px 24px;
  text-align:center;
}
.carrier-strip .tag{ font-size:0.8rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal); margin-bottom:12px; }
.carrier-list{
  display:flex; flex-wrap:wrap; justify-content:center; gap:12px;
  max-width:900px; margin:0 auto;
}
.carrier-pill{
  background:#fff; border:1px solid var(--line); border-radius:30px;
  padding:9px 20px; font-weight:600; font-size:0.92rem; color:var(--navy-deep);
}

.service-areas{ background:var(--navy-deep); color:var(--cream); padding:64px 24px; }
.service-areas-inner{ max-width:1120px; margin:0 auto; }
.service-areas h2{ color:var(--cream); font-size:1.8rem; margin:0 0 24px; }
.area-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.area-grid h3{ color:var(--gold); font-family:'Fraunces',serif; font-size:1.15rem; margin:0 0 12px; }
.area-grid p{ color:#D8CFBC; margin:0; line-height:1.7; }

.subnav{
  background:var(--cream-2);
  border-bottom:1px solid var(--line);
}
.subnav-inner{
  max-width:1120px; margin:0 auto; padding:14px 24px;
  display:flex; gap:24px; flex-wrap:wrap;
  font-size:0.9rem; font-weight:700;
}
.subnav a{ text-decoration:none; color:var(--navy); }
.subnav a.active{ color:var(--gold); border-bottom:2px solid var(--gold); padding-bottom:2px; }

@media (max-width:860px){
  .two-col{ grid-template-columns:1fr; gap:32px; }
  .area-grid{ grid-template-columns:1fr; gap:28px; }
}
