/* Beacon Movers — refined local website
   Colors: navy, white, yellow.
*/

:root{
  --navy:#071e3a;
  --navy-2:#0d315f;
  --navy-soft:#102f55;
  --yellow:#f5c84c;
  --yellow-2:#e9b92e;
  --white:#ffffff;
  --bg:#f7f8fb;
  --ink:#111827;
  --muted:#5c6678;
  --line:rgba(15, 23, 42, 0.10);
  --line-strong:rgba(15, 23, 42, 0.16);
  --shadow:0 18px 48px rgba(2, 6, 23, 0.13);
  --soft-shadow:0 10px 24px rgba(2, 6, 23, 0.07);
  --radius:22px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--ink);
}

a{
  color:inherit;
}

img{
  max-width:100%;
}

.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 22px;
}

/* Header */

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:max-content;
}

.logoWrap{
  width:72px;
  height:72px;
  border-radius:18px;
  background:var(--navy);
  display:grid;
  place-items:center;
  box-shadow:var(--soft-shadow);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.18);
  flex-shrink:0;
}

.logo{
  width:100%;
  height:100%;
  object-fit:cover;
  padding:0;
}

.logoFallback{
  display:none;
  width:100%;
  height:100%;
  place-items:center;
  color:var(--yellow);
  font-weight:950;
  letter-spacing:-0.8px;
}

.brandText strong{
  display:block;
  color:var(--navy);
  font-size:20px;
  letter-spacing:-0.3px;
  line-height:1;
}

.brandText span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  margin-top:5px;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:22px;
}

.navlinks a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
}

.navlinks a:hover{
  color:var(--navy);
}

.navCta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:13px 18px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  border:1px solid var(--line);
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btnNavy{
  background:var(--navy);
  color:white;
  border-color:var(--navy);
  box-shadow:0 12px 24px rgba(7,30,58,0.16);
}

.btnYellow{
  background:var(--yellow);
  color:#111827;
  border-color:rgba(0,0,0,0.08);
  box-shadow:0 12px 24px rgba(245,200,76,0.18);
}

.btnWhite{
  background:white;
  color:var(--navy);
}

/* Hero */

.hero{
  position:relative;
  padding:58px 0 34px;
  background:
    radial-gradient(900px 320px at 9% 0%, rgba(245,200,76,0.22), transparent 60%),
    radial-gradient(900px 320px at 98% 8%, rgba(7,30,58,0.14), transparent 55%);
}

.heroGrid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:24px;
  align-items:stretch;
}

.heroPanel{
  background:linear-gradient(180deg,#ffffff,#fbfcff);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:36px;
  overflow:hidden;
  position:relative;
}

.heroPanel:after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:999px;
  border:38px solid rgba(245,200,76,0.12);
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  border:1px solid rgba(7,30,58,0.09);
  background:rgba(7,30,58,0.055);
  color:var(--navy);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:950;
  margin-bottom:18px;
}

.kickerDot{
  width:8px;
  height:8px;
  background:var(--yellow);
  border-radius:999px;
}

.heroTitle{
  position:relative;
  z-index:2;
  margin:0 0 18px;
  font-size:54px;
  line-height:1.02;
  letter-spacing:-1.25px;
}

.heroTitle span{
  color:var(--navy);
}

.heroText{
  position:relative;
  z-index:2;
  margin:0 0 22px;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
  max-width:68ch;
}

.localPills{
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.localPills span{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(2,6,23,0.04);
  border-radius:999px;
  padding:10px 13px;
  font-size:13px;
  font-weight:900;
}

.heroActions{
  position:relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Forms */

.quoteBox{
  background:linear-gradient(180deg,var(--navy),var(--navy-2));
  color:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  position:relative;
  overflow:hidden;
}

.quoteBox:before{
  content:"";
  position:absolute;
  top:-86px;
  right:-86px;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(245,200,76,0.42), transparent 64%);
}

.quoteBox h2{
  position:relative;
  z-index:1;
  margin:0 0 8px;
  font-size:25px;
  letter-spacing:-.3px;
}

.quoteBox p{
  position:relative;
  z-index:1;
  margin:0 0 18px;
  color:rgba(255,255,255,0.78);
  line-height:1.6;
}

.form{
  position:relative;
  z-index:2;
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:10px;
}

.field label{
  color:rgba(255,255,255,0.82);
  font-size:12px;
  font-weight:900;
}

.field input,
.field select,
.field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.085);
  color:white;
  padding:12px 13px;
  outline:none;
  font:inherit;
}

.field select option{
  color:#111827;
}

.field input::placeholder,
.field textarea::placeholder{
  color:rgba(255,255,255,0.48);
}

.field textarea{
  min-height:92px;
  resize:vertical;
}

.submitBtn{
  width:100%;
  border:0;
  border-radius:14px;
  background:var(--yellow);
  color:#111827;
  padding:14px;
  font-weight:950;
  cursor:pointer;
  margin-top:4px;
}

.formNote{
  margin-top:12px;
  color:rgba(255,255,255,0.72);
  font-size:12px;
  line-height:1.55;
}

/* Proof */

.proofStrip{
  padding:20px 0 12px;
}

.proofGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.proofItem{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--soft-shadow);
  padding:20px;
}

.proofItem strong{
  display:block;
  color:var(--navy);
  font-size:29px;
  line-height:1;
  letter-spacing:-.5px;
  margin-bottom:6px;
}

.proofItem span{
  color:var(--muted);
  font-size:13px;
  font-weight:850;
  line-height:1.4;
}

/* Photos */

.photoSection{
  padding:36px 0 10px;
}

.photoIntro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.photoIntro h2{
  margin:0;
  color:var(--navy);
  font-size:32px;
  line-height:1.1;
  letter-spacing:-.5px;
}

.photoIntro p{
  margin:0;
  max-width:58ch;
  color:var(--muted);
  line-height:1.65;
}

.photoGrid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:16px;
}

.photoCard{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#dce2ec;
  box-shadow:var(--shadow);
}

.photoCard.large{
  min-height:500px;
}

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

.photoCard.small{
  min-height:242px;
}

.photoCard.wide{
  grid-column:span 2;
}

.photoCard img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.photoOverlay{
  position:absolute;
  inset:auto 16px 16px 16px;
  background:rgba(7,30,58,0.84);
  color:white;
  border:1px solid rgba(255,255,255,0.12);
  padding:12px 14px;
  border-radius:15px;
  font-size:14px;
  line-height:1.35;
  font-weight:900;
}

/* Sections */

.section{
  padding:58px 0;
}

.sectionHeader{
  margin-bottom:24px;
}

.sectionHeader h2{
  margin:0 0 10px;
  color:var(--navy);
  font-size:36px;
  line-height:1.1;
  letter-spacing:-.6px;
}

.sectionHeader p{
  margin:0;
  color:var(--muted);
  max-width:74ch;
  line-height:1.72;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--soft-shadow);
  padding:25px;
}

.card h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:21px;
  letter-spacing:-.2px;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.card ul{
  margin:15px 0 0;
  padding-left:19px;
  color:var(--muted);
  line-height:1.72;
}

.card li{
  margin:4px 0;
}

.card.highlight{
  border-color:rgba(245,200,76,0.42);
  background:linear-gradient(180deg,#fff,#fff9e9);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.darkBand{
  background:linear-gradient(180deg,var(--navy),var(--navy-2));
  color:white;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.darkBand h2{
  margin:0 0 8px;
  font-size:31px;
  letter-spacing:-.4px;
}

.darkBand p{
  margin:0;
  color:rgba(255,255,255,0.78);
  line-height:1.7;
  max-width:68ch;
}

/* Inner pages */

.pageHero{
  padding:58px 0 26px;
  background:
    radial-gradient(860px 300px at 10% 0%, rgba(245,200,76,0.21), transparent 60%),
    radial-gradient(860px 300px at 95% 10%, rgba(7,30,58,0.13), transparent 55%);
}

.pagePanel{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:40px;
}

.pagePanel h1{
  margin:0 0 16px;
  color:var(--navy);
  font-size:50px;
  line-height:1.04;
  letter-spacing:-.9px;
}

.pagePanel p{
  margin:0;
  max-width:850px;
  color:var(--muted);
  line-height:1.75;
  font-size:17px;
}

.priceGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.priceLabel{
  display:inline-block;
  margin:8px 0 10px;
  color:var(--navy);
  font-size:26px;
  font-weight:950;
  letter-spacing:-.4px;
}

.contactGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.contactCard a{
  color:var(--navy);
  font-weight:950;
  text-decoration:none;
}

.map{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--soft-shadow);
  margin-top:18px;
}

.map iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
}

/* Footer */

.footer{
  padding:30px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

.footerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

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

.footerLinks a{
  color:var(--muted);
  text-decoration:none;
  font-weight:850;
}

.stickyCall{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:220;
  background:var(--navy);
  color:white;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
  box-shadow:var(--shadow);
}

/* Responsive */

@media(max-width:1020px){
  .heroGrid,
  .photoGrid,
  .split{
    grid-template-columns:1fr;
  }

  .photoCard.large{
    min-height:390px;
  }

  .cards,
  .priceGrid{
    grid-template-columns:1fr;
  }

  .darkBand,
  .photoIntro{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(max-width:760px){
  .logoWrap{
    width:58px;
    height:58px;
    border-radius:16px;
  }
}

@media(max-width:760px){
  .navlinks{
    display:none;
  }

  .navCta .btnWhite{
    display:none;
  }

  .hero{
    padding-top:34px;
  }

  .heroPanel,
  .quoteBox,
  .pagePanel{
    padding:24px;
  }

  .heroTitle,
  .pagePanel h1{
    font-size:38px;
  }

  .heroText,
  .pagePanel p{
    font-size:16px;
  }

  .formGrid,
  .proofGrid,
  .photoStack,
  .contactGrid{
    grid-template-columns:1fr;
  }

  .proofGrid{
    gap:12px;
  }

  .photoCard.small{
    min-height:280px;
  }

  .photoCard.wide{
    grid-column:auto;
  }

  .brandText span{
    display:none;
  }

  .stickyCall{
    left:16px;
    right:16px;
    text-align:center;
  }
}
