:root{
  --bg: #ffffff;
  --bg-soft: #F1F1F1;

  --text: #000000;
  --muted: #73777F;
  --heading: #232C3F;

  --link: #239EDB;

  --font-body: "Montserrat", Arial, sans-serif;
  --font-heading: "Arvo", Georgia, serif;
  --font-nav: "Noto Serif", Georgia, serif;

  --container: 1120px;
}

/* Base */
*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
}

/* Header */
.site-header{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header .container{
  padding-left: 5px;
  padding-right: 5px;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  font-family: var(--font-nav);
  font-size: 32px;
  color: var(--muted);
  text-decoration: none;
}

.nav a{
  font-family: var(--font-nav);
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}

/* Hero (used on Home; can also be used on Services if you choose) */
.hero{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}

.hero .container{
  position: relative;
  text-align: center;
  padding: 70px 20px;
}

.hero h1{
  margin: 0;
  color: var(--bg-soft);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
}

/* Light grey section blocks */
.section-soft{
  background: var(--bg-soft);
  padding: 50px 0;
}

/* Home page: cards grid */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
}

/* Card styling */
.card{
  background: #fff;
  padding: 46px 28px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.card h2{
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--heading);
}

.card p{
  margin: 0 0 18px;
  color: var(--text);
}

.card a{
  color: var(--link);
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: .02em;
}

.card a:hover{
  text-decoration: underline;
}

/* Services page helpers */
.page-title{
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 400;
  font-size: 34px;
  margin: 0 0 10px;
}

.page-intro{
  max-width: 850px;
  margin: 0;
  color: var(--text);
}

/* Generic section blocks used on Services */
.section{
  padding: 52px 0;
}

.section.alt{
  background: #F1F1F1;
}

.section.service{
  padding: 80px 0;
}

.section.service .container{
  max-width: 850px;
}

.service h2{
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 10px;
}

.service p{
  margin: 0 0 16px;
  max-width: 900px;
  line-height: 1.7;
}

/* Services hero centering (ONLY affects elements inside .services-hero) */
.services-hero .container{
  text-align: center;
}

.services-hero .page-intro{
  margin: 0 auto;
  max-width: 750px;
}

/* Footer */
.footer{
  margin-top: 20px;
  padding: 14px 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer p{
  margin: 3px 0;
  line-height: 1.35;
}
.team-member{
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.team-member:first-of-type{
  border-top: 0;
  padding-top: 0;
}
.team-name{
  margin: 0 0 10px;
}
.client-list{
  margin: 12px 0 0;
  padding-left: 1.2rem; /* keeps bullets visible */
}
.client-list.two-col{
  columns: 2;
  column-gap: 48px;
}

.client-list.two-col li{
  break-inside: avoid;
  margin: 0 0 8px;
}

/* Make it 1 column on small screens */
@media (max-width: 700px){
  .client-list.two-col{ columns: 1; }
}
/* Contact: side-by-side cards */
.contact-cards{
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;

  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;
}

.contact-card{
  flex: 1 1 0;
  text-align: center;
  padding: 28px 22px;
}

.contact-card + .contact-card{
  border-left: 1px solid rgba(0,0,0,0.18); /* vertical divider line */
}

.contact-icon{
  color: #2a8fbf;            /* match your site accent */
  display: inline-flex;
  margin-bottom: 10px;
}

.contact-card h3{
  margin: 6px 0 12px;
}

.contact-card p{
  margin: 6px 0;
}

.contact-card a{
  text-decoration: none;
}

/* Mobile: stack */
@media (max-width: 700px){
  .contact-cards{
    flex-direction: column;
  }
  .contact-card + .contact-card{
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.18);
  }
}
.hero-home h1{
  font-size: 20px;
}