:root{
  --navy:#062f61;
  --navy2:#0c3e72;
  --green:#4e7f27;
  --green2:#77a344;
  --sage:#edf4df;
  --sage2:#dce9c9;
  --ink:#101820;
  --muted:#46515b;
  --line:#dfe6d8;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.45;
}
a{color:inherit}
img{display:block;max-width:100%}
.site-shell{width:min(1500px,100%);margin:auto}
.container{width:min(1380px,94%);margin:auto}
header{
  position:absolute;
  left:0;right:0;top:0;
  z-index:20;
}
.nav-wrap{
  display:grid;
  grid-template-columns:230px 1fr auto;
  align-items:start;
  gap:20px;
  padding-top:18px;
}
.brand{
  display:block;
  text-decoration:none;
  justify-self:start;
}
.brand img{
  width:205px;
  height:205px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
}
nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:35px;
  padding-top:22px;
}
nav a{
  text-decoration:none;
  color:#072854;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
}
nav a.active{color:var(--green);position:relative}
nav a.active:after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:-15px;
  height:4px;
  background:var(--green);
  border-radius:3px;
}
.phone-pill{
  margin-top:8px;
  display:inline-flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  background:var(--navy);
  color:#fff;
  padding:13px 23px;
  border-radius:30px;
  font-size:20px;
  font-weight:800;
  white-space:nowrap;
}
.phone-pill svg{width:24px;height:24px;fill:#fff}
.menu-button{
  display:none;
  border:0;
  background:var(--navy);
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:800;
}
.hero{
  position:relative;
  min-height:595px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 12%,rgba(255,255,255,.92) 0,rgba(255,255,255,.35) 32%,transparent 50%),
    linear-gradient(105deg,#f4f8eb 0%,#eaf2da 58%,#dce9c8 100%);
}
.hero:after,.hero:before{
  content:"";
  position:absolute;
  left:-4%;right:-4%;
  bottom:-45px;
  height:155px;
  border-radius:50%;
  border-top:4px solid rgba(255,255,255,.72);
  transform:rotate(2deg);
}
.hero:before{
  bottom:-72px;
  border-top:0;
  background:rgba(204,224,177,.45);
  transform:rotate(-1deg);
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 1.15fr;
  gap:55px;
  padding-top:172px;
  padding-bottom:48px;
  position:relative;
  z-index:2;
}
.hero-copy{padding-left:78px}
h1{
  margin:0;
  color:var(--navy);
  font-size:56px;
  line-height:1.1;
  letter-spacing:-1px;
}
.hero-rule{
  display:flex;
  align-items:center;
  gap:12px;
  margin:23px 0 18px;
}
.hero-rule span{height:1px;background:var(--green);flex:1}
.hero-rule b{color:var(--green);font-size:24px}
.hero-copy .lead{
  font-size:20px;
  margin:0 0 16px;
  max-width:660px;
}
.tagline{
  color:var(--green);
  font-size:22px;
  font-weight:800;
  font-style:italic;
  line-height:1.35;
  margin:0;
}
.hero-actions{
  display:flex;
  gap:22px;
  margin-top:28px;
  flex-wrap:wrap;
}
.btn{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-size:18px;
  font-weight:800;
}
.btn-primary{background:var(--navy);color:#fff}
.btn-secondary{background:#fff;color:#111;border:2px solid var(--green)}
.btn svg{width:24px;height:24px}
.process{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:11px;
  padding-top:10px;
}
.step{text-align:center;position:relative}
.step:not(:last-child):after{
  content:"····";
  position:absolute;
  top:82px;
  right:-18px;
  color:var(--green);
  font-size:24px;
  letter-spacing:2px;
}
.step-number{
  width:31px;height:31px;
  display:grid;place-items:center;
  margin:0 auto 13px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:17px;
  font-weight:800;
}
.step-icon{
  width:112px;height:112px;
  margin:auto;
  border-radius:50%;
  background:#fff;
  border:1px solid #e5eadf;
  display:grid;place-items:center;
  box-shadow:0 8px 18px rgba(14,50,86,.08);
}
.step-icon svg{
  width:65px;height:65px;
  fill:none;
  stroke:var(--green);
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.step h3{
  color:var(--navy);
  font-size:16px;
  line-height:1.25;
  margin:18px 0 7px;
}
.step p{
  font-size:14px;
  line-height:1.45;
  margin:0;
}
.panels{
  padding:27px 0 28px;
}
.panel-grid{
  display:grid;
  grid-template-columns:1.02fr 1.02fr 1.04fr;
  gap:18px;
}
.panel{
  border-radius:15px;
  padding:23px 28px;
  min-height:285px;
}
.panel:nth-child(1){background:#f7f9f2}
.panel:nth-child(2){background:#f5f7fb}
.panel:nth-child(3){background:#fffaf0}
.panel-title{
  display:flex;
  align-items:center;
  gap:17px;
  color:var(--green);
  margin-bottom:13px;
}
.panel-title h2{
  margin:0;
  font-size:22px;
  line-height:1.2;
}
.panel-title svg{width:56px;height:56px;flex:0 0 auto}
.panel p{font-size:16px;margin:7px 0}
.panel ul{
  list-style:none;
  columns:2;
  column-gap:22px;
  padding:0;
  margin:15px 0;
}
.panel li{
  break-inside:avoid;
  font-size:14px;
  margin:8px 0;
  padding-left:23px;
  position:relative;
}
.panel li:before{
  content:"✓";
  position:absolute;left:0;top:0;
  width:17px;height:17px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:11px;
  font-weight:900;
}
.panel .blue-list{columns:1}
.panel .blue-list li:before{background:var(--navy)}
.panel .commitment{
  color:var(--navy);
  text-align:center;
  font-weight:800;
  margin-top:20px;
}
footer{
  background:var(--navy);
  color:#fff;
  padding:19px 0 17px;
}
.footer-row{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:30px;
  font-size:16px;
}
.footer-row .motto{display:flex;align-items:center;gap:12px}
.footer-row .heart{color:#7aa638;font-size:26px}
.footer-row a{text-decoration:none}
.footer-small{
  text-align:center;
  font-size:14px;
  margin-top:14px;
  color:#e7edf5;
}
.page-hero{
  padding:165px 0 65px;
  background:linear-gradient(105deg,#f4f8eb,#e1ecd1);
}
.page-hero h1{font-size:52px}
.section{padding:55px 0}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
}
.card h2,.card h3{color:var(--navy)}
.faq details{
  border:1px solid var(--line);
  border-radius:12px;
  padding:17px 20px;
  margin:12px 0;
}
.faq summary{font-weight:800;color:var(--navy);cursor:pointer}
.contact-box{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.notice{padding:17px;border-left:5px solid var(--green);background:#f7faef}
@media(max-width:1200px){
  .nav-wrap{grid-template-columns:175px 1fr auto}
  .brand img{width:165px;height:165px}
  nav{gap:18px}
  .hero-inner{padding-top:155px}
  .hero-copy{padding-left:35px}
  h1{font-size:46px}
  .step-icon{width:92px;height:92px}
  .step-icon svg{width:52px;height:52px}
}
@media(max-width:900px){
  header{position:relative;background:#f0f6e6}
  .nav-wrap{grid-template-columns:1fr auto;align-items:center;padding:10px 0}
  .brand{display:flex;align-items:center}
  .brand img{width:88px;height:88px}
  nav{
    display:none;
    position:absolute;
    left:0;right:0;top:105px;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
  }
  nav.open{display:flex}
  nav a.active:after{display:none}
  .phone-pill{display:none}
  .menu-button{display:block}
  .hero{min-height:auto}
  .hero-inner{grid-template-columns:1fr;padding:45px 0}
  .hero-copy{padding-left:0}
  .process{grid-template-columns:repeat(2,1fr)}
  .step:last-child{grid-column:1/-1}
  .step:not(:last-child):after{display:none}
  .panel-grid,.cards,.contact-box{grid-template-columns:1fr}
  .panel{min-height:auto}
  .page-hero{padding:45px 0}
}
@media(max-width:600px){
  h1,.page-hero h1{font-size:36px}
  .hero-copy .lead{font-size:18px}
  .tagline{font-size:19px}
  .process{grid-template-columns:1fr}
  .step:last-child{grid-column:auto}
  .panel ul{columns:1}
  .btn{width:100%}
  .footer-row{gap:12px;text-align:center}
}

/* Final Zip 4 homepage refinements */
header .nav-wrap{
  grid-template-columns:1fr auto;
  align-items:start;
  position:relative;
}
header .brand{
  position:absolute;
  right:22px;
  top:410px;
  z-index:8;
}
header .brand img{
  width:150px;
  height:150px;
  box-shadow:0 10px 24px rgba(6,47,97,.18);
  border:4px solid rgba(255,255,255,.9);
}
header nav{
  grid-column:1;
  justify-content:flex-start;
  padding-left:12px;
}
header .phone-pill{grid-column:2}
.hero-inner{padding-right:130px}
@media(max-width:1200px){
  header .brand{right:16px;top:420px}
  header .brand img{width:125px;height:125px}
  .hero-inner{padding-right:105px}
}
@media(max-width:900px){
  header .nav-wrap{grid-template-columns:1fr auto}
  header .brand{
    position:absolute;
    right:14px;
    top:auto;
    bottom:-515px;
  }
  header .brand img{width:105px;height:105px}
  header nav{padding-left:20px}
  .hero-inner{padding-right:0;padding-bottom:135px}
}
@media(max-width:600px){
  header .brand{right:10px;bottom:-620px}
  header .brand img{width:92px;height:92px}
}

.nav-request{background:#4e7f27;color:#fff!important;padding:10px 14px;border-radius:10px;white-space:nowrap}
@media(max-width:1050px){.nav-request{display:inline-flex;justify-content:center;margin-top:8px}}


/* Stage 1: second service on the Home page */
.appointment-hero{background:linear-gradient(105deg,#edf4fb 0%,#ffffff 53%,#eef5e6 100%);border-top:1px solid #dbe5d4}
.appointment-hero .hero-inner{padding-top:82px;padding-bottom:78px}
.appointment-title{font-family:Arial,Helvetica,sans-serif;font-size:56px;font-weight:700;line-height:1.1;letter-spacing:-1px;color:var(--navy);margin:0 0 14px}
.appointment-hero .step-icon{background:#edf4fb;border-color:#cfdeec}
.appointment-hero .step-number{background:var(--navy)}
.appointment-hero .btn-secondary{border-color:var(--navy);color:var(--navy)}
@media(max-width:900px){.appointment-hero .hero-inner{padding-top:55px;padding-bottom:145px}}
@media(max-width:900px){.appointment-title{font-size:46px}}
@media(max-width:600px){.appointment-title{font-size:36px}}


/* Stage 4: accessibility and interaction improvements */
.skip-link{position:fixed;left:16px;top:12px;z-index:9999;transform:translateY(-160%);background:#fff;color:#062f61;border:3px solid #062f61;border-radius:8px;padding:12px 16px;font-weight:800;text-decoration:none;box-shadow:0 6px 20px rgba(0,0,0,.18)}
.skip-link:focus{transform:translateY(0)}
:focus-visible{outline:3px solid #d38b00;outline-offset:4px}
button,a,input,textarea,select,summary{scroll-margin-top:110px}
button,input,textarea,select{font:inherit}
summary{cursor:pointer}
nav a,.button,.btn,.phone-pill,.nav-request,.menu-button,.nav-toggle{min-height:44px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}


/* Final typography correction: both Home-page service titles use exactly one rule */
.service-hero-title{
  font-family:Arial,Helvetica,sans-serif !important;
  font-size:56px !important;
  font-weight:700 !important;
  font-style:normal !important;
  line-height:1.1 !important;
  letter-spacing:-1px !important;
  color:var(--navy) !important;
  margin:0 0 14px !important;
  text-transform:none !important;
}
@media(max-width:900px){.service-hero-title{font-size:46px !important}}
@media(max-width:600px){.service-hero-title{font-size:36px !important}}


/* Final title identity lock: both service headings use the same element and declaration */
h1.service-hero-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 56px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-stretch: normal !important;
  line-height: 1.1 !important;
  letter-spacing: -1px !important;
  color: var(--navy) !important;
  text-shadow: none !important;
  text-transform: none !important;
}
@media (max-width: 900px) { h1.service-hero-title { font-size: 46px !important; } }
@media (max-width: 600px) { h1.service-hero-title { font-size: 36px !important; } }
