
:root{
  --bg:#ffffff;
  --ink:#2F3338;
  --muted:#6B7177;
  --accent:#3B3F45; /* slate grey */
  --light:#F4F6F8;
  --link:#2b5fbf;
  --maxw:1100px;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Helvetica,Arial,sans-serif}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eceff2;z-index:10}
.nav{display:flex;align-items:center;justify-content:space-between;height:86px}
.nav .brand{display:flex;align-items:center;gap:14px}
.nav img{height:60px}
.nav a{margin-left:18px;color:var(--ink);font-weight:600}
.nav a.cta{background:var(--accent);color:#fff;padding:10px 16px;border-radius:10px;box-shadow:var(--shadow)}
.hero{padding:72px 0 36px}
.hero .wrap{display:grid;grid-template-columns:1.3fr 1fr;gap:32px;align-items:center}
.hero h1{font-size:42px;line-height:1.15;margin:0 0 10px}
.hero p{color:var(--muted);font-size:18px;margin:0 0 18px}
.hero .card{background:var(--light);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.badge{display:inline-block;background:#eef2f7;color:#3b3f45;font-weight:600;padding:6px 10px;border-radius:999px;margin-bottom:12px}
.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cards .card{background:#fff;border:1px solid #e7e9ec;border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.section{padding:56px 0}
.section h2{font-size:28px;margin:0 0 6px}
.section p.lead{color:var(--muted);margin-top:0}
.pricelist{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.price{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border:1px solid #e7e9ec;border-radius:12px;background:#fff;box-shadow:var(--shadow)}
.price .amt{font-weight:800}
.kicker{font-size:12px;color:var(--muted)}
.process ol{margin:0;padding-left:18px}
.cta-block{background:var(--accent);color:#fff;border-radius:16px;padding:26px;display:flex;align-items:center;justify-content:space-between;box-shadow:var(--shadow)}
.cta-block a{background:#fff;color:var(--accent);padding:10px 16px;border-radius:10px;font-weight:700}
.footer{border-top:1px solid #eceff2;padding:28px 0;color:var(--muted);font-size:14px}
.footer .cols{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
.footer .cols h4{margin:0 0 8px;color:var(--ink)}
.notice{font-size:12px;color:#8a8f94;margin-top:6px}
.form{background:#fff;border:1px solid #e7e9ec;border-radius:16px;padding:18px;box-shadow:var(--shadow)}
.form label{display:block;font-weight:600;margin:10px 0 6px}
.form input,.form textarea{width:100%;padding:12px 12px;border:1px solid #dfe3e8;border-radius:10px;font:inherit}
.form button{margin-top:12px;background:var(--accent);color:#fff;border:0;padding:12px 16px;border-radius:10px;font-weight:700}
@media (max-width:980px){
 .hero .wrap{grid-template-columns:1fr}
 .grid.cols-3{grid-template-columns:1fr}
 .pricelist{grid-template-columns:1fr}
 .footer .cols{grid-template-columns:1fr}
}

/* --- Smooth in-page scrolling and header offset --- */
html{ scroll-behavior:smooth; } /* modern browsers */
#services, #process, #about, #contact{ scroll-margin-top: 100px; } /* avoid header overlap */

.form label.consent{display:flex;align-items:center;gap:8px;margin-top:8px}
.form label.consent a{text-decoration:underline; text-underline-offset:2px}

/* Consent line tidy layout */
.form label.consent{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0 4px;
  font-weight:400; /* don't inherit bold label weight */
}
.form label.consent input[type="checkbox"]{
  width:16px; height:16px; flex:0 0 auto;
}
.form label.consent .consent-text{
  line-height:1.5;
}
.form label.consent a{ text-decoration:underline; text-underline-offset:2px }

/* --- Mobile refinement pack (<= 800px) --- */
@media (max-width: 800px){
  .container{padding:0 16px}
  .nav{height:64px}
  .nav img{height:40px}
  .nav a{margin-left:12px}
  .hero{padding:56px 0 28px}
  .hero .wrap{grid-template-columns:1fr; gap:18px}
  .hero h1{font-size:32px; line-height:1.2}
  .hero p{font-size:16px}
  .pricelist{grid-template-columns:1fr; gap:12px}
  .price{padding:12px 14px}
  .cta-block{flex-direction:column; align-items:flex-start; gap:12px}
  .section{padding:40px 0}
  #services, #process, #about, #contact{ scroll-margin-top: 76px; }
  .hero .wrap img{ width:100%; max-width:420px; margin:0 auto; }
  .form input, .form textarea{ font-size:16px } /* avoid iOS zoom */
  .form button{ width:100%; }
  .footer .cols{grid-template-columns:1fr}
}

/* --- Phone tweaks (<= 480px): keep CTA visible and align header/logo/buttons --- */
@media (max-width: 480px){
  .container{padding:0 14px}
  .nav{height:58px}
  .nav .brand img{height:34px; display:block;}
  .nav nav{display:flex; align-items:center; gap:10px; margin-left:auto; flex-wrap:nowrap}
  .nav nav a{margin-left:0; font-size:14px; white-space:nowrap}
  .nav nav a.cta{padding:8px 12px; border-radius:8px; line-height:1}
  .nav nav a:not(.cta){display:none} /* show only primary CTA on very small screens */
  .hero{padding:48px 0 24px}
  .hero h1{font-size:28px}
  .hero p{font-size:15px}
  .hero .wrap{gap:14px}
  .hero .wrap img{max-width:360px; margin:0 auto}
  .cta-block{gap:10px}
  .cta-block a{align-self:flex-start} /* ensure the button aligns cleanly on left */
  .pricelist{gap:10px}
  .price{padding:10px 12px}
  .form button{width:100%} /* full-width button on phone */
}


/* Align hero logo to top-right alongside H1 & intro (desktop only) */
@media (min-width: 1024px){
  .hero .wrap{ align-items: start; }
  .hero .wrap > div:last-child{ align-self: start; margin-top: 0; }
}



/* --- Desktop: place hero logo in right column, top-aligned, right-aligned --- */
@media (min-width: 1024px){
  .hero .wrap{
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 40px;
    align-items: start;
  }
  .hero .wrap > div:first-child{ grid-column: 1; }
  .hero .wrap > div:last-child{ grid-column: 2; align-self: start; justify-self: end; }
  .hero .wrap > div:last-child img{ margin: 0; height: auto; max-width: 420px; display:block; }
}



/* --- Desktop: align hero badge and place logo on the right (flex) --- */
@media (min-width: 1024px){
  .hero .wrap{ display:flex; gap:40px; align-items:flex-start; }
  .hero .wrap > div:first-child{ flex:1 1 auto; display:flex; flex-direction:column; }
  .hero .wrap > div:last-child{ flex:0 0 auto; align-self:flex-start; }
  .hero .wrap > div:last-child img{ display:block; width:420px; height:auto; margin:0; }
  .hero .badge{ align-self:flex-end; } /* right align within text column */
}



/* --- Desktop: limit hero text column width so badge aligns with H1 --- */
@media (min-width: 1024px){
  .hero .wrap{ display:flex; gap:40px; align-items:flex-start; }
  .hero .wrap > div:first-child{ flex:0 0 760px; max-width:760px; } /* text column width */
  .hero .wrap > div:last-child{ flex:0 0 auto; align-self:flex-start; } /* logo column */
  .hero .wrap > div:last-child img{ width:420px; height:auto; display:block; margin:0; }
  .hero .badge{ margin-left:auto; } /* right edge of text column */
}



/* --- Desktop: final hero alignment using .hero-flex (mobile unchanged) --- */
@media (min-width: 1024px){
  .hero .hero-flex{ display:flex; gap:40px; align-items:flex-start; }
  .hero .hero-flex > div:first-child{ flex:0 0 760px; max-width:760px; }
  .hero .hero-flex > div:last-child{ flex:0 0 auto; margin-left:auto; align-self:flex-start; }
  .hero .hero-flex > div:last-child img{ width:420px; height:auto; display:block; margin:0; }
  .hero .badge{ display:block; margin-left:auto; }
}



/* --- Desktop: place hero logo to the right, keep badge on the left --- */
@media (min-width: 1024px){
  .hero{ position: relative; }
  .hero .container{ position: relative; }
  .hero .hero-logo{ position: absolute;   }
  .hero .hero-logo img{ width: 420px; height: auto; display:block; }
  /* Prevent text from running under the logo */
  .hero .container.wrap{ padding-right: 500px; }
  /* Badge back to left-aligned */
  .hero .badge{ margin-left: 0; }
}



/* --- Badge alignment fix (left) --- */
@media (min-width: 1024px){
  .hero .badge{ margin-left: 0 !important; display:inline-block; }
}



/* --- Hero logo nudge --- */
@media (min-width: 1024px){
  .hero .hero-logo{   } /* adjust here if you want finer control */
  .hero .hero-logo img{ width: 420px; height: auto; }
}



/* --- Fees: add-ons box --- */
.fees-addons{
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #e6e8eb;
  background: #f8fafc;
  border-radius: 10px;
}
.fees-addons ul{ margin: 0; padding-left: 18px; }
.fees-addons li{ margin: 4px 0; }



/* Desktop hero layout refinements */
@media (min-width: 1024px){
  .hero .container{ position: relative; padding-right: 560px; } /* make room for logo */
  .hero .hero-logo{ position: absolute;   } /* align near Book button */
  .hero .hero-logo img{ width: 420px; height: auto; display: block; }
  .hero .wrap > div:first-child{ max-width: 720px; } /* reduce text column width */
}



@media (min-width: 1024px){
  .hero .badge{ margin-left: 0 !important; align-self: flex-start !important; }
}



/* Add-ons card matches Fixed fees card visuals */
.addons-card ul{ margin:8px 0 0 18px; }
.addons-card li{ margin:4px 0; }



/* Add-ons card (matches Fixed fees card visuals) */
.addons-card ul{ margin:8px 0 0 18px; }
.addons-card li{ margin:4px 0; }

@media (min-width: 1024px){
  .hero .container{ position:relative; padding-right: 560px; } /* space for logo */
  .hero .hero-logo{ position:absolute;   } /* fallback */
  .hero .hero-logo img{ width:420px; height:auto; display:block; }
  .hero .wrap > div:first-child{ max-width: 720px; }
  .hero .badge{ margin-left: 0 !important; align-self: flex-start !important; }
}



/* Add-ons card spacing under Fixed fees */
#pricing .addons-card { margin-top: 12px; }
#pricing .addons-card ul{ margin:8px 0 0 18px; }
#pricing .addons-card li{ margin:4px 0; }



/* Force hero logo left shift on desktop (CSS fallback) */
@media (min-width: 1024px){
  .hero .hero-logo{   }
}

\n
/* Nudge hero logo 20px to the right & give text more breathing room */
@media (min-width: 1024px){
  .hero .hero-logo{  } /* was 410px */
  .hero .wrap > div:first-child{ max-width: 700px !important; } /* was wider; reduces line length */
}
\n

/* Hard cap the hero text column width on desktop (applies to container.wrap > div) */
@media (min-width: 1024px){
  .hero .container.wrap > div{ max-width: 620px !important; }
  .hero .container.wrap > div h1,
  .hero .container.wrap > div p{ max-width: 620px !important; }
}

\n
/* Strong cap for hero text width (desktop) */
@media (min-width: 1024px){
  .hero .container.wrap > div:first-child{
    width: 600px !important;
    max-width: 600px !important;
    flex: 0 0 600px !important;
  }
  .hero .container.wrap > div:first-child h1,
  .hero .container.wrap > div:first-child p{
    max-width: 600px !important;
  }
}
\n\n
/* Hero text column hard cap */
@media (min-width: 1024px){
  .hero .hero-copy{ width: 580px !important; max-width: 580px !important; flex: 0 0 580px !important; }
  .hero .hero-copy h1,
  .hero .hero-copy p{ max-width: 580px !important; }
}
\n

/* Hero logo: down 20px and +10% size on desktop */
@media (min-width: 1024px){
  .hero .hero-logo{  }
  .hero .hero-logo img{ width: 462px !important; height: auto !important; }
}



/* Hero logo: down another 50px and +10% more size on desktop */
@media (min-width: 1024px){
  .hero .hero-logo{  }
  .hero .hero-logo img{ width: 508px !important; height: auto !important; }
}

\n
/* Hero logo fine-tune: up 15px and right 15px (desktop) */
@media (min-width: 1024px){
  .hero .hero-logo{   }
}
\n

/* Hero logo fine-tune #2: up another 15px and right another 15px (desktop) */
@media (min-width: 1024px){
  .hero .hero-logo{   }
}


/* CTA buttons */
.btn{display:inline-block;padding:12px 18px;border-radius:12px;text-decoration:none;font-weight:600}
.btn.primary{background:var(--accent);color:#fff}
.btn.secondary{background:#eef2f7;color:#2f3338}
.cta-row{display:flex;gap:12px;margin:14px 0 4px;align-items:center;flex-wrap:wrap}
.turnaround{color:var(--muted);font-size:14px;margin-top:4px}
.show-mobile{display:none}
@media (max-width:640px){.show-mobile{display:inline-block}}
.section.light{background:var(--light)}

/* --- Modal (Northmark) --- */
.nm-modal[hidden]{display:none}
.nm-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center}
.nm-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.35);opacity:0;transition:opacity .18s ease}
.nm-modal__dialog{position:relative;z-index:1;background:#fff;border-radius:14px;box-shadow:0 12px 40px rgba(0,0,0,.18);max-width:720px;width:92%;padding:22px 22px 18px;transform:translateY(10px) scale(.98);opacity:.0;transition:transform .18s ease,opacity .18s ease}
.nm-modal.show .nm-modal__overlay{opacity:1}
.nm-modal.show .nm-modal__dialog{transform:translateY(0) scale(1);opacity:1}
.nm-modal__close{position:absolute;top:8px;right:10px;background:#eef2f7;border:0;border-radius:10px;width:34px;height:34px;font-size:20px;line-height:1;cursor:pointer}
.nm-modal__content h2{margin:0 0 8px}
.nm-modal__content .lead{color:#5b6570;margin-bottom:10px}
.nm-modal__content h3{margin-top:14px}
.nm-modal__content ul{margin:8px 0 10px 20px}
.modal-cta{margin-top:8px}
@media (max-width:640px){.nm-modal__dialog{padding:18px 16px;border-radius:12px} .nm-modal__close{top:6px;right:8px}}
