:root{
  --brand: #2F7D63;
  --brand-2: #1F5B46;
  --tint: #EAF5F0;

  --ink: #101312;
  --muted: #4b4f4d;
  --border: rgba(0,0,0,0.10);
  --shadow: 0 14px 40px rgba(0,0,0,0.10);
  --radius: 18px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  color: var(--ink);
  background: linear-gradient(180deg, var(--tint), #fff 35%);
}

a{ color: inherit; }

.container{
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Tighter reading width where needed */
.container.narrow{
  width: min(880px, 92%);
}

/* HEADER */
.header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 10;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo */
.logo{
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV */
.nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  margin-left: auto;
  font-family: "DM Sans", Arial, sans-serif;
}

.nav a,
.nav a:visited,
.nav a:active{
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 2px;
}

.nav a:hover{
  text-decoration: underline;
  opacity: 0.92;
}

/* HERO */
.hero{
  padding: 56px 0 42px;
  background:
    radial-gradient(900px 320px at 12% 18%, rgba(47,125,99,0.26), transparent 60%),
    radial-gradient(780px 280px at 88% 8%, rgba(47,125,99,0.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.0));
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

/* Right column wrapper for "View pricing" + summary box */
.hero-side{
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
  
.hero-email{
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-2);
}

.hero-email a{
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 800;
}

.hero-email a:hover{
  text-decoration: underline;
  
}
.icon-strip{
  margin-top: 18px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
    gap: 12px; /* brings them closer together */
  opacity: 0.9;
  justify-content: space-evenly;
}

.icon-strip img{
  width: 30px !important;
  height: 30px !important;
  display: block;
  filter: brightness(0) saturate(100%)
          invert(23%) sepia(23%) saturate(1026%)
          hue-rotate(112deg) brightness(92%) contrast(92%);

}

.pill{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47,125,99,0.12);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 13px;
}

.hero h1{
  font-size: 54px;
  margin: 14px 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 70ch;
}

.highlights{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0 18px;
}

.highlight{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.06);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  margin-top: 6px;
  flex: 0 0 auto;
}

.highlight strong{
  display: block;
}

.highlight span{
  color: var(--muted);
  font-size: 14px;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(47,125,99,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
  font-weight: 700;
}

.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(47,125,99,0.22);
}

.button.ghost{
  background: rgba(255,255,255,0.72);
  color: var(--brand-2);
  border: 1px solid rgba(31,91,70,0.28);
  box-shadow: none;
}

.button.ghost:hover{
  box-shadow: 0 14px 24px rgba(47,125,99,0.10);
}

.micro{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  max-width: 70ch;
}

/* Summary box */
.hero-summary{
  width: 100%;
  max-width: 420px;

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-summary::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:7px;
  width:100%;
  background: linear-gradient(90deg, var(--brand), rgba(47,125,99,0.15));
}

.summary-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.hero-summary h2{
  font-size: 18px;
  margin: 0;
}

.summary-tag{
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-2);
  background: rgba(47,125,99,0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.ticks{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.ticks li{
  padding-left: 28px;
  position: relative;
  margin: 10px 0;
}

.ticks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-2);
  font-weight: 900;
}

.summary-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 14px 0;
}

/* Kept (safe even if unused after you remove mini pricing HTML) */
.summary-mini-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.mini{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 10px;
  background: rgba(234,245,240,0.50);
}

.mini-kicker{
  display:block;
  font-size: 12px;
  color: var(--muted);
}

.mini-value{
  display:block;
  font-weight: 800;
  color: var(--ink);
  margin-top: 3px;
}

.summary-link{
  display: inline-block;
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 800;
}

.summary-link:hover{
  text-decoration: underline;
}

/* SECTIONS */
.section{
  padding: 56px 0;
}

.section:nth-of-type(even){
  background: rgba(234,245,240,0.55);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.section-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 16px;
}

.section-sub{
  margin: 0;
  color: var(--muted);
  max-width: 90ch;
}

h2{
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0;
}

h3{
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

/* Two column blocks */
.two-col{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* Grids */
.grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

/* Cards */
.card, .price-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card::before, .price-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:6px;
  width:100%;
  background: linear-gradient(90deg, var(--brand), rgba(47,125,99,0.15));
}

.card:hover, .price-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card.soft{
  background: rgba(255,255,255,0.96);
}

/* Pricing */
.pricing-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.price{
  font-size: 22px;
  font-weight: 800;
  margin: 8px 0 14px;
}

/* Lists */
ul{
  padding-left: 20px;
  margin: 10px 0 0;
}

li{
  margin: 6px 0;
}

/* Note */
.note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(31,91,70,0.32);
  background: rgba(234,245,240,0.55);
}

/* Contact */
.contact-card{
  margin-top: 10px;
  border: 1px solid rgba(47,125,99,0.25);
  border-radius: var(--radius);
  background: rgba(234,245,240,0.85); /* soft green tint */
  padding: 18px;
}
  
  .contact-line{
  font-weight: 800;
}


.contact-line{
  margin: 0 0 8px;
  font-weight: 800;
}

.contact-small{
  margin: 0;
  color: var(--muted);
}

/* Footer */
.footer{
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 25px 0;
  text-align: center;
  opacity: 0.75;
}

/* MOBILE */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-side{
    grid-column: auto;
    align-items: stretch;
  }

  .hero-summary{
    max-width: 100%;
  }

  .container.narrow{
    width: min(920px, 92%);
  }

  .two-col{
    grid-template-columns: 1fr;
  }

  .grid{
    grid-template-columns: 1fr;
  }

  .pricing-grid{
    grid-template-columns: 1fr;
  }
  }
@media (max-width: 700px){
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav{
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .logo{
    height: 58px;
  }

  .hero h1{
    font-size: 44px;
  }

  .summary-mini-grid{
    grid-template-columns: 1fr;
  }
   }


/* =========================
   ABOUT SECTION (DESKTOP + MOBILE)
   ========================= */

#about.about-section{
  width: min(880px, 92%);  /* narrower so it matches your reading width */
  margin: 0 auto;
  padding: 56px 0;
}

#about .about-container{
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

#about img.about-photo{
  width: 220px !important;
  max-width: 220px !important;
  height: auto !important;
  flex: 0 0 220px;
  display: block;
  border-radius: 50%;
  margin: 0 !important;
}

#about .about-text{
  flex: 1;
  min-width: 0;      /* critical: prevents weird wrapping */
  max-width: 60ch;   /* stops it feeling too wide */
}

/* Mobile: stack */
@media (max-width: 700px){
  #about .about-container{
    flex-direction: column;
    align-items: center;
  }

  #about .about-text{
    max-width: 70ch;

