:root{
    --ink: #16232E;
    --ink-soft: #4C5A66;
    --paper: #F5F4EF;
    --paper-raised: #FFFFFF;
    --navy: #1C3D5A;
    --navy-deep: #0E2136;
    --green: #35573B;
    --green-deep: #253E29;
    --green-tint: #E9EEE6;
    --line: #DCDAD0;
    --radius: 16px;
    --max: 1160px;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3{
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.08;
    margin: 0 0 .5em 0;
    letter-spacing: -0.01em;
  }
  p{ margin: 0 0 1em 0; color: var(--ink-soft); }
  a{ color: inherit; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width: var(--max); margin: 0 auto; padding: 0 32px; }

  .eyebrow{
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(28,61,90,0.09);
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
  }
  .eyebrow.on-dark{ color: #BFD1C4; background: rgba(191,209,196,0.14); }
  .eyebrow.on-green{ color: var(--green-deep); background: rgba(255,255,255,0.55); }

  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    background: var(--navy); color: #fff;
    padding: 13px 24px; border-radius: 999px;
    font-size: 14.5px; font-weight: 600; text-decoration:none;
    border: 1px solid var(--navy);
    transition: transform .15s ease, background .15s ease;
    cursor:pointer;
    font-family:'Inter', sans-serif;
  }
  .btn:hover{ background: #142c42; transform: translateY(-1px); }
  .btn.secondary{ background: transparent; color: var(--navy); border: 1px solid var(--navy); }
  .btn.secondary:hover{ background: var(--navy); color: #fff; }
  .btn.on-dark{ background: var(--green); border-color: var(--green); }
  .btn.on-dark:hover{ background: #2a4630; }
  .btn.ghost-on-dark{ background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
  .btn.ghost-on-dark:hover{ background: rgba(255,255,255,0.1); }

  /* NAV */
  header{
    position: sticky; top: 0; z-index: 50;
    background: rgba(245,244,239,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  nav.wrap{ display:flex; align-items:center; justify-content:space-between; padding: 18px 32px; }
  .brand{
    display:flex; align-items:center; gap: 14px;
    font-family:'Lora', serif; font-weight:600; font-size: 19px;
    text-decoration:none; color: var(--ink);
  }
  .logo-mark{ flex-shrink:0; display:block; }
  .logo-divider{ width:1px; align-self:stretch; min-height: 30px; background: var(--line); flex-shrink:0; }
  .logo-word{ font-family:'Lora', serif; font-weight:600; font-size: 15.5px; line-height:1.18; color: var(--ink); }
  .logo-word span{ display:block; }

  /* Footer logo — stacked, divider beneath mark, caps wordmark below */
  .footer-logo{ display:flex; flex-direction:column; align-items:center; gap: 10px; text-decoration:none; }
  .footer-logo .logo-mark{ margin: 0 auto; }
  .footer-logo .footer-logo-divider{ width: 120px; height:1px; background: var(--line); }
  .footer-logo .footer-logo-word{
    font-family:'Lora', serif; font-weight:600; font-size: 13.5px;
    letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
  }
  .navlinks{ display:flex; align-items:center; gap: 30px; }
  .navlinks a:not(.btn){ text-decoration:none; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
  .navlinks a:not(.btn):hover{ color: var(--navy); }

  /* HERO — full bleed */
  .hero{
    background: var(--navy-deep);
    color: #fff;
    padding: 84px 0 92px;
    position: relative;
    overflow: hidden;
  }
  .hero .accent-shape{
    position:absolute; right: -180px; top: -120px;
    width: 620px; height: 620px;
    opacity: 0.65;
  }
  .hero .wrap{ position:relative; z-index:2; max-width: 780px; }
  .hero .eyebrow-line{
    font-family:'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9FB6A6;
    margin-bottom: 22px;
  }
  .hero h1{
    font-family:'Lora', serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-size: 44px;
    color: #fff;
    margin: 0;
  }
  .hero .lede{ font-size: 17px; max-width: 46ch; margin: 22px 0 30px; color: rgba(255,255,255,0.72); }
  .hero-ctas{ display:flex; gap: 14px; flex-wrap: wrap; }

  /* INTRO STRIP */
  .intro{ padding: 100px 0; text-align:center; }
  .intro .wrap{ max-width: 760px; }
  .intro h2{ font-size: 30px; margin-bottom: 18px; }
  .intro p{ font-size: 17px; }

  /* SERVICES TEASER — even card grid, links out to the full services page */
  .services-teaser{ padding: 104px 0; border-top: 1px solid var(--line); }
  .service-grid{
    display:grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 56px;
  }
  .service-card{
    background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 30px; display:flex; flex-direction:column;
  }
  .service-card .service-num{
    font-family:'Lora', serif; font-weight: 700; font-size: 13px;
    color: var(--green); margin-bottom: 14px;
  }
  .service-card h3{ font-size: 22px; margin-bottom: 10px; }
  .service-card p{ font-size: 15px; margin-bottom: 20px; flex-grow:1; }
  .service-card .card-link{
    font-family:'Lora', serif; font-weight: 700; font-size: 13.5px;
    color: var(--navy); text-decoration:none; letter-spacing:.01em;
  }
  .service-card .card-link:hover{ text-decoration: underline; }
  .services-teaser-foot{ text-align:center; margin-top: 40px; }

  /* CHECKLIST FEATURE — full bleed green tint */
  .feature-band{ background: var(--green-tint); padding: 104px 0; }
  .feature-band .wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
  .feature-copy h2{ font-size: 32px; margin-bottom: 16px; }
  .feature-copy p{ font-size: 16px; }

  .check-card{
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 30px; box-shadow: 0 18px 40px -18px rgba(14,33,54,0.25);
  }
  .check-card .check-kicker{
    font-family:'Lora', serif; font-weight: 700; font-size: 12.5px;
    letter-spacing: .04em; text-transform:uppercase; color: var(--ink-soft); margin-bottom: 4px;
  }
  .check-card h4{ font-family:'Lora', serif; font-size: 21px; margin: 4px 0 20px 0; font-weight: 600; }
  .check-row{ display:flex; align-items:flex-start; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
  .check-row:first-of-type{ border-top: none; padding-top: 0; }
  .check-row .tick{
    flex-shrink:0; width: 22px; height: 22px; border-radius: 6px;
    background: var(--green); display:flex; align-items:center; justify-content:center; margin-top: 1px;
  }
  .check-row span{ font-size: 14.5px; color: var(--ink); line-height: 1.4; padding-top: 1px; }
  .check-foot{
    margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line);
    font-size: 13.5px; color: var(--ink-soft); font-style: italic;
  }
  .check-foot strong{ color: var(--ink); font-style: normal; }

  /* PRICING */
  section.pricing{ padding: 112px 0; }
  .section-head{ max-width: 62ch; margin-bottom: 56px; }
  .section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
  .section-head h2{ font-size: 32px; }
  .grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .tier{
    border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
    background: var(--paper-raised); display:flex; flex-direction:column;
  }
  .tier.featured{ border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
  .tier .tag{
    font-family:'Lora', serif; font-size: 12px; letter-spacing:.03em;
    text-transform:uppercase; color: var(--green); margin-bottom: 14px; font-weight: 700;
  }
  .tier h3{ font-size: 22px; margin-bottom: 6px; }
  .tier .fit{ font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; font-style: italic; }
  .tier ul{ list-style:none; padding:0; margin: 0 0 26px 0; flex-grow:1; }
  .tier li{ font-size: 14.5px; color: var(--ink-soft); padding-left: 22px; position:relative; margin-bottom: 11px; }
  .tier li::before{
    content: ''; position:absolute; left:0; top: 7px; width: 8px; height: 8px; border-radius: 2px;
    background: var(--green);
  }
  .pricing-note{ text-align:center; margin-top: 48px; font-size: 14px; color: var(--ink-soft); }

  /* PROMISE BAND — full bleed dark */
  .promise-band{ background: var(--navy-deep); color:#fff; padding: 108px 0; }
  .promise-band .section-head h2{ color:#fff; }
  .promise-band .section-head p{ color: rgba(255,255,255,0.65); }
  .promise-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 60px; }
  .promise-item{ border-top: 1px solid rgba(255,255,255,0.18); padding-top: 20px; }
  .promise-item h4{
    font-family:'Lora', serif; font-size: 18px; font-weight:600; margin-bottom: 8px; color:#fff;
  }
  .promise-item p{ font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom:0; }

  /* CTA BANNER */
  .cta-banner{ background: var(--green); color:#fff; padding: 88px 0; text-align:center; }
  .cta-banner h2{ color:#fff; font-size: 32px; margin-bottom: 14px; }
  .cta-banner p{ color: rgba(255,255,255,0.78); max-width: 50ch; margin: 0 auto 30px; font-size: 16px; }

  /* ABOUT + CONTACT */
  #about-contact{ background: var(--paper); padding: 112px 0; }
  #about-contact .wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  #about-contact h2{ font-size: 30px; }
  .contact-card{
    background: var(--paper-raised); color: var(--ink); border-radius: var(--radius);
    padding: 32px 30px; border: 1px solid var(--line);
  }
  .field{ margin-bottom: 16px; }
  .field label{
    display:block; font-size: 12px; font-weight: 700; margin-bottom: 6px;
    font-family: 'Lora', serif; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-soft);
  }
  .field input, .field textarea{
    width: 100%; padding: 11px 13px; border-radius: 8px; border: 1px solid var(--line);
    background: var(--paper); font-family: 'Inter', sans-serif; font-size: 14.5px; color: var(--ink);
  }
  .field textarea{ resize: vertical; min-height: 90px; }
  .field input:focus, .field textarea:focus{ outline: 2px solid var(--navy); outline-offset: 1px; }
  .contact-direct{ margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); font-size: 13.5px; color: var(--ink-soft); }
  .contact-direct a{ color: var(--navy); font-weight: 600; text-decoration:none; }
  .form-status{ font-size: 13.5px; margin: 12px 0 0; min-height: 1em; }
  .form-status.success{ color: var(--green-deep); }
  .form-status.error{ color: #A23B2E; }

  footer{ padding: 34px 0; border-top: 1px solid var(--line); background: var(--paper-raised); }
  footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap: wrap; gap: 12px; }
  footer .fine{ font-size: 12.5px; color: var(--ink-soft); }

  @media (max-width: 880px){
    .hero h1{ font-size: 34px; }
    .feature-band .wrap{ grid-template-columns: 1fr; }
    .grid-3{ grid-template-columns: 1fr; }
    .service-grid{ grid-template-columns: 1fr; }
    .promise-grid{ grid-template-columns: 1fr 1fr; }
    #about-contact .wrap{ grid-template-columns: 1fr; }
    .navlinks{ display:none; }
    .hero .accent-shape{ width: 420px; height: 420px; right: -160px; top: -100px; }
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .btn:hover{ transform:none; }
  }

  /* SERVICES DETAIL PAGE */
  .services-hero{ background: var(--navy-deep); color:#fff; padding: 88px 0 76px; }
  .services-hero .wrap{ max-width: 780px; }
  .services-hero h1{ font-size: 44px; color:#fff; }
  .services-hero p{ font-size: 17px; color: rgba(255,255,255,0.72); max-width: 60ch; margin-bottom:0; }

  .service-detail{ padding: 64px 0; border-bottom: 1px solid var(--line); }
  .service-detail:nth-child(even){ background: var(--paper-raised); }
  .service-detail .wrap{
    display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start;
  }
  .service-detail .detail-label{
    font-family:'Lora', serif; font-weight: 700; font-size: 13px;
    letter-spacing:.03em; text-transform:uppercase; color: var(--green); margin-bottom: 14px;
  }
  .service-detail h2{ font-size: 30px; margin-bottom: 16px; }
  .service-detail .detail-copy p{ font-size: 16px; }
  .service-detail ul{ list-style:none; padding:0; margin: 22px 0 0 0; }
  .service-detail li{
    font-size: 15px; color: var(--ink-soft); padding-left: 24px; position:relative; margin-bottom: 12px;
  }
  .service-detail li::before{
    content:''; position:absolute; left:0; top: 7px; width: 8px; height: 8px; border-radius: 2px;
    background: var(--green);
  }

  @media (max-width: 880px){
    .service-detail .wrap{ grid-template-columns: 1fr; gap: 24px; }
    .services-hero h1{ font-size: 32px; }
  }
