:root{
  --sage: #A8BC77;      /* leaflet green */
  --sage-dark: #58643B; /* thin lines/text accents */
  --cream: #F2F1E8;     /* leaflet cream panel */
  --ink: #1E1E1E;
  --border: rgba(88,100,59,0.55);
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
}

body{
  font-family: "Cormorant Garamond", serif;
  background: var(--sage);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* Layout container */
main{
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 18px 60px;
}

/* Header (leaflet-like) */
.site-header{
  max-width: 1100px;
  margin: 26px auto 10px;
  padding: 18px 18px 10px;
}

.brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.logo-img{
  width: 62px;
  height: auto;
}

.brand-text h1{
  margin: 0;
  font-size: 44px;
  font-weight: 600;
}

.brand-text p{
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 500;
}

/* Simple nav, leaflet tone */
.main-nav{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a{
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  padding: 6px 8px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover{
  border-bottom-color: var(--border);
}

/* Hero as calm statement (no modern banner look) */
.hero{
  max-width: 980px;
  margin: 16px auto 24px;
  padding: 0 18px;
}

.hero-inner{
  background: var(--cream);
  border: 2px solid var(--border);
  padding: 28px 26px;
  text-align: center;
}

.hero-inner h2{
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 600;
}

.hero-inner p{
  margin: 0;
  font-size: 22px;
}

/* Sections */
.content-section{
  margin: 22px 0;
}

/* Leaflet-style cream panels */
.card{
  background: var(--cream);
  border: 2px solid var(--border);
  padding: 34px 30px;
}

/* Leaflet-style heading with rules */
.card h2{
  margin: 0 0 18px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card h3{
  margin: 18px 0 6px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

/* Paragraph text size like leaflet */
.card p, .card li{
  font-size: 22px;
}

/* Two-column section like leaflet panels */
.two-column{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px){
  .two-column{ grid-template-columns: 1fr; }
  .brand-text h1{ font-size: 36px; }
  .hero-inner h2{ font-size: 28px; }
}

/* Lists: centred, airy */
#support ul{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

#support li{
  margin: 10px 0;
}

/* Contact card styling */
.contact-card{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.profile-img{
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 2px solid var(--border);
  background: #fff;
}

.contact-text h2{
  margin-top: 0;
}

.contact-text a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.contact-text a:hover{
  border-bottom-color: var(--sage-dark);
}

@media (max-width: 720px){
  .contact-card{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-img{
    margin: 0 auto;
  }
}

/* Footer */
.site-footer{
  text-align: center;
  padding: 16px 0 30px;
  font-size: 18px;
  color: rgba(0,0,0,0.75);
}