:root{
--green:#16a34a;
--green-2:#15803d;
--mint:#eaf9f0;
--ink:#0f172a;
--muted:#475569;
--card:#ffffff;
--border: rgba(22,163,74,.22);
--shadow: 0 10px 28px rgba(15,23,42,.08);
--radius:16px;
--max:1100px;
--font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:var(--font); color:var(--ink); background:var(--mint)}
a{color:inherit; text-decoration:none}
a:visited{
  color:inherit;
  text-decoration:none;
}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.topbar{
position:sticky; top:0; z-index:20;
background:#d2eee0;
border-bottom:1px solid rgba(15,23,42,.08);
backdrop-filter: blur(8px);
}
.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
padding:14px 0;
flex-wrap:wrap;
}
.brand{display:flex; align-items:center; gap:12px}
.brand svg{width:34px;height:34px}
.brand .name{
  font-weight:800;
  line-height:1.05;
  width:140px;
}
.brand .sub{display:block; color:var(--green); font-weight:700; font-size:13px; margin-top:2px}
.menu{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  flex:1;
}
.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:104px;
  padding:8px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.10);
  color:var(--ink);
  font-weight:700;
  font-size:14px;
  box-shadow:0 4px 10px rgba(15,23,42,.08);
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nav-btn:hover{
  background:#f0fdf4;
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(15,23,42,.10);
}
.menu a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.menu a:hover{
  background:rgba(22,163,74,.12);
  color:var(--ink);
  transform:translateY(-1px);
}
.menu a.active{
  background:rgba(22,163,74,.18);
  color:var(--ink);
  border:1px solid rgba(22,163,74,.35);
}.menu svg{width:16px;height:16px; color:#16a34a}
.hero{
position:relative;
min-height:380px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
background:
linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
url("assets/img/hero.jpg");
background-size:cover;
background-position:center;
}
.hero-inner{padding:58px 22px; max-width:900px}
.hero h1{margin:0; font-size:56px; line-height:1.05; max-width:18ch; letter-spacing:-.7px}
.hero h1 .leaf{display:inline-block; vertical-align:middle; margin-right:10px}
.hero h1 .leaf svg{width:52px;height:52px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.25))}
.hero .kicker{margin-top:10px; font-size:34px; color:rgba(209,250,229,.95); font-weight:500}
.hero p{margin:14px auto 0; max-width:70ch; font-size:20px; color:rgba(255,255,255,.88)}
.cta-row{margin-top:22px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap}
.btn{
background:#fff;
color:var(--green-2);
border:1px solid rgba(15,23,42,.10);
padding:12px 18px;
border-radius:10px;
font-weight:800;
min-width:160px;
box-shadow: 0 8px 18px rgba(15,23,42,.12);
}
.btn:hover{transform:translateY(-1px)}
.section{
background:var(--mint);
padding:58px 0;
}
.section.white{background:transparent}
.section h2{
text-align:center;
font-size:44px;
margin:0 0 22px 0;
letter-spacing:-.5px;
}
.lead{
max-width:86ch;
margin:0 auto 26px;
color:var(--muted);
font-size:18px;
line-height:1.6;
}
.icon-lines{display:grid; gap:20px; max-width:900px; margin:0 auto}
.line{
display:grid;
grid-template-columns: 42px 1fr;
gap:18px;
align-items:flex-start;
}
.line img{width:32px;height:32px}
.callout{
margin:28px auto 0;
max-width:900px;
background:rgba(22,163,74,.10);
border-radius:14px;
padding:18px 18px;
border:1px solid rgba(22,163,74,.20);
text-align:center;
font-size:18px;
color:rgba(15,23,42,.88);
}
.callout strong{color:var(--green-2)}
.cards{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:26px;
margin-top:26px;
align-items:stretch;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px 20px;
  box-shadow: 0 6px 16px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,23,42,.12);
}
.card .head{
display:flex; gap:12px; align-items:flex-start;
font-weight:900;
font-size:18px;
}
.card .head img{width:22px;height:22px}
.card .date{margin-top:10px; color:var(--green-2); font-weight:700}
.card p{margin:14px 0 0; color:var(--muted); line-height:1.55; font-weight:400}

/* Meeting Information balance */
.card-center { text-align:center; }

.head.head-center { justify-content:center; }

/* keep cards visually aligned */
.cards .card{
  display:flex;
  flex-direction:column;
  min-height:170px;
}

.footer{
padding:30px 0;
border-top:1px solid rgba(15,23,42,.08);
color:rgba(71,85,105,.9);
font-size:14px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-logos{
  display:flex;
  align-items:center;
  gap:20px;
}

.footer-logos img{
  height:80px;
  width:auto;
  display:block;
}
@media (max-width: 980px){
.cards{grid-template-columns: repeat(2,1fr)}
.hero h1{font-size:44px}
.hero .kicker{font-size:28px}
}
@media (max-width: 640px){
.cards{grid-template-columns: 1fr}
.hero{min-height:320px}
.hero h1{font-size:36px}
.hero .kicker{font-size:22px}
.section h2{font-size:34px}
.menu{gap:10px}
}
.task-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:18px;
  margin-top:30px;
  margin-bottom:10px;
}
@media (max-width: 900px){
  .task-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 500px){
  .task-grid{
    grid-template-columns: 1fr;
  }
}
.task-grid a{
  display:block;
  text-align:center;
  padding:18px;
  border-radius:14px;
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  font-weight:600;
  text-decoration:none;
  color:#065f46;
  transition:.15s;
}

.task-grid a:hover{
  background:#dcfce7;
  transform:translateY(-2px);
  box-shadow: 0 6px 16px rgba(15,23,42,.08);
}
.task-grid a.current-month{
  background:#bbf7d0;
  border:2px solid #22c55e;
  font-weight:700;
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(0,0,0,.25);
}
.draft-banner{
  background:#f6c344;
  color:#1b2430;
  text-align:center;
  font-weight:600;
  padding:8px 12px;
  font-size:14px;
  letter-spacing:.5px;
}
/* Global link behaviour */
.section .container a{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar .brand,
.topbar .brand:link,
.topbar .brand:visited,
.topbar .menu a,
.topbar .menu a:link,
.topbar .menu a:visited,
.topbar .menu a:hover,
.topbar .menu a.active{
  text-decoration:none !important;
}
.container a:hover{
  color:#16a34a;
}

/* Photography notice panel (Gallery page) */

.photo-notice-section{
  padding: 0 0 40px;
}

.photo-notice-card{
  background:#f3f7f2;
  border:1px solid #dbe8d8;
  border-radius:16px;
  padding:24px 28px;
  box-shadow:0 6px 16px rgba(15,23,42,.06);
}

.photo-notice-card h2{
  margin-top:0;
  margin-bottom:12px;
  font-size:1.35rem;
}

.photo-notice-card p{
  margin:0 0 12px;
  line-height:1.6;
}

.photo-notice-card p:last-child{
  margin-bottom:0;
}
/* Botanical framing for welcome section */

.welcome-botanical{
  position: relative;
  overflow: hidden;
}
.welcome-botanical .container{
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.welcome-botanical::before{
  content: "";
  position: absolute;
  left: 0px;
  top: 85px;
  width: 260px;
  height: 560px;
  background-image: url("assets/img/lavender-stem.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  opacity: 0.7;
  pointer-events: none;
}

.welcome-botanical::after{
  content: "";
  position: absolute;
  right: 0px;
  top: 85px;
  width: 260px;
  height: 560px;
  background-image: url("assets/img/tomato-vine.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  opacity: 0.7;
  pointer-events: none;
}

.welcome-botanical *{
  position: relative;
  z-index: 2;
}

@media (max-width: 800px){
  .welcome-botanical::before,
  .welcome-botanical::after{
    display: none;
  }
}
