
:root{
  --bg:#f3f6f3;
  --bg-2:#edf2ee;
  --surface:rgba(255,255,255,.84);
  --surface-strong:#ffffff;
  --text:#173226;
  --muted:#5f7368;
  --line:rgba(23,50,38,.12);
  --brand:#2c6248;
  --brand-2:#82a95e;
  --accent:#e5b44e;
  --shadow:0 20px 48px rgba(8,28,18,.10);
  --radius:24px;
  --radius-lg:34px;
  --shell:min(1180px, calc(100% - 2rem));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(130,169,94,.14), transparent 30%),
    linear-gradient(180deg, #f8fbf8 0%, #f1f5f2 100%);
  line-height:1.6;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.shell{width:var(--shell);margin:0 auto}
.section{padding:1.25rem 0 4.5rem}

.topStrip{
  background:linear-gradient(90deg,#214d39,#2f674c);
  color:#f5fbf7;
  font-size:.94rem;
}
.topStripInner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
  flex-wrap:wrap;
  padding:.55rem 0;
}
.dot{width:.32rem;height:.32rem;border-radius:999px;background:rgba(255,255,255,.72)}

.siteHeader{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(245,248,245,.82);
  border-bottom:1px solid rgba(23,50,38,.06);
}
.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:.9rem;
  min-width:0;
}
.brandMark{
  width:3rem;
  height:3rem;
  border-radius:1rem;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff;
  background:linear-gradient(135deg,#214d39,#79a75a);
  box-shadow:var(--shadow);
}
.brandText strong{
  display:block;
  font-size:1rem;
}
.brandText small{
  display:block;
  color:var(--muted);
  font-size:.84rem;
  margin-top:.1rem;
}
.siteNav{
  display:flex;
  align-items:center;
  gap:.35rem;
}
.siteNav a{
  padding:.72rem .92rem;
  border-radius:999px;
  color:var(--muted);
  transition:.2s ease;
}
.siteNav a:hover,
.siteNav a.active{
  background:rgba(255,255,255,.72);
  color:var(--text);
}
.navToggle{
  display:none;
  width:3rem;
  height:3rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  gap:.24rem;
  flex-direction:column;
  box-shadow:var(--shadow);
}
.navToggle span{
  width:1rem;
  height:2px;
  background:var(--text);
  display:block;
  border-radius:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:.84rem 1.1rem;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  color:var(--text);
  box-shadow:var(--shadow);
  transition:transform .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btnPrimary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,#2b6248,#7ea85a);
}
.btnSmall{min-height:42px;padding:.72rem 1rem}

.hero{
  padding:2.5rem 0 1rem;
}
.heroGrid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:2rem;
  align-items:center;
}
.heroCopy h1,
.pageHeroInner h1,
.sectionIntro h2,
.infoCard h3,
.panel h2,
.eventCard h2{
  margin:0;
  letter-spacing:-.03em;
  line-height:1.02;
}
.heroCopy h1{
  font-size:clamp(2.9rem, 7vw, 5.4rem);
}
.heroLead{
  color:var(--muted);
  font-size:1.08rem;
  max-width:60ch;
  margin:1rem 0 0;
}
.eyebrow{
  margin:0 0 .65rem;
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--brand);
  font-weight:800;
}
.eyebrow.light{color:#f7fbf6}
.keyList{
  margin:1.4rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.72rem;
}
.keyList li{
  display:flex;
  gap:.7rem;
  align-items:flex-start;
  color:var(--muted);
}
.keyList li::before{
  content:"";
  flex:0 0 .72rem;
  width:.72rem;
  height:.72rem;
  margin-top:.36rem;
  border-radius:50%;
  background:linear-gradient(135deg,#f1c25c,#ffe69f);
  box-shadow:0 0 0 6px rgba(241,194,92,.18);
}
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  margin:1.5rem 0 0;
}

.heroMediaWrap{
  display:grid;
  gap:1rem;
}
.panelMedia{
  min-height:520px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.56);
  box-shadow:var(--shadow);
  background:
    linear-gradient(180deg, rgba(8,24,18,.04), rgba(8,24,18,.22)),
    url("../images/backgrounds/home_hero.jpg") center center / cover no-repeat;
}
.supportCard,
.panel,
.infoCard,
.priceCard,
.eventCard,
.notePanel{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.62);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.supportCard{
  display:grid;
  grid-template-columns:220px 1fr;
  overflow:hidden;
}
.supportCard img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.supportCard > div{padding:1.15rem 1.2rem}
.supportCard h2{margin:.15rem 0 .3rem;font-size:1.25rem;letter-spacing:-.02em}
.supportCard p:last-child{margin-bottom:0;color:var(--muted)}

.bannerGrid,
.cardGrid,
.featureSplit,
.visitGrid,
.pricingGrid,
.previewGrid,
.footerInner,
.rulesGrid{
  display:grid;
  gap:1.15rem;
}
.bannerGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
.cardGrid.fourUp{grid-template-columns:repeat(4,minmax(0,1fr))}
.cardGrid.threeUp{grid-template-columns:repeat(3,minmax(0,1fr))}
.featureSplit{grid-template-columns:1.05fr .95fr;align-items:start}
.featureSplit.reverse{grid-template-columns:.95fr 1.05fr}
.visitGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
.pricingGrid{grid-template-columns:repeat(4,minmax(0,1fr))}
.pricingGrid.compact{grid-template-columns:repeat(4,minmax(0,1fr))}
.previewGrid{grid-template-columns:repeat(4,minmax(0,1fr))}
.rulesGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
.footerInner{grid-template-columns:1.2fr .8fr auto;align-items:start}

.sectionIntro{
  max-width:72ch;
  margin-bottom:1.5rem;
}
.sectionIntro h2{
  font-size:clamp(2rem, 4vw, 3.1rem);
}
.sectionIntro p{
  color:var(--muted);
  margin:.7rem 0 0;
}
.sectionIntro.split{
  display:flex;
  gap:1rem;
  align-items:end;
  justify-content:space-between;
  max-width:none;
}

.infoCard{padding:1.3rem}
.infoCard h3{font-size:1.25rem}
.infoCard p{color:var(--muted);margin:.6rem 0 0}

.panel{padding:1.35rem}
.panel h2{font-size:clamp(1.55rem,3vw,2.25rem)}
.panel p{color:var(--muted)}
.panel .microNote{font-size:.92rem}
.panelText{padding:1rem 1rem 0}
.panelText h3{margin:.1rem 0 .3rem;font-size:1.2rem;letter-spacing:-.02em}
.panelText p{color:var(--muted);margin:0}
.featureImagePanel{
  overflow:hidden;
}
.featureImagePanel img{
  width:100%;
  height:min(54vw, 360px);
  object-fit:cover;
  border-radius:calc(var(--radius) - 10px);
}
.featureImagePanel.tall img{height:min(70vw, 620px)}

.tagRow{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:1rem 0 1.2rem;
}
.tagRow span{
  padding:.55rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  color:var(--text);
}

.imageCard,
.imageBand{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.imageCard::before,
.imageBand::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:var(--card-bg, var(--band-bg));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.imageCard::after,
.imageBand::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg, rgba(8,24,18,.18), rgba(8,24,18,.60)),
    radial-gradient(circle at top right, rgba(255,225,145,.18), transparent 25%);
}
.eventCard{
  min-height:270px;
  padding:1.5rem;
  display:flex;
  align-items:end;
}
.overlayContent{max-width:30rem;color:#fff}
.overlayContent h2{font-size:clamp(1.8rem, 3vw, 2.6rem)}
.overlayContent p{color:rgba(255,255,255,.92)}
.textLink{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-weight:700;
}
.textLink.light{color:#fff}

.immersiveBand{
  min-height:340px;
  display:flex;
  align-items:flex-end;
}
.bandInner{
  padding:5rem 0 3rem;
  color:#fff;
}
.bandInner h2{
  font-size:clamp(2rem,4.5vw,3.5rem);
  line-height:1.05;
  margin:0;
  max-width:11ch;
}
.bandInner p:last-child{
  max-width:52ch;
  color:rgba(255,255,255,.92);
  margin:.8rem 0 0;
}

.previewCard{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.62);
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.previewCard img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.previewCard figcaption{
  padding:.9rem 1rem;
  font-weight:600;
}

.pageHero{
  min-height:360px;
  display:flex;
  align-items:end;
}
.pageHeroInner{
  padding:5rem 0 2.8rem;
  color:#fff;
}
.pageHeroInner h1{
  font-size:clamp(2.2rem, 5vw, 4rem);
  max-width:13ch;
}
.pageHeroInner p:last-child{
  max-width:56ch;
  color:rgba(255,255,255,.92);
  margin:.8rem 0 0;
}

.priceCard{
  padding:1.15rem;
}
.priceCard h3{
  margin:0 0 .35rem;
  font-size:1rem;
}
.priceCard p{
  margin:0;
  font-size:1.4rem;
  font-weight:800;
  color:var(--text);
}
.priceCard small{
  display:block;
  color:var(--muted);
  margin-top:.35rem;
}

.rule{
  padding:1rem 1.05rem;
  border-radius:18px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-weight:600;
}
.notePanel{padding:1rem 1.15rem;margin-top:1rem}
.notePanel p{margin:0}

.stackLinks,
.contactStack{
  display:grid;
  gap:.75rem;
}
.contactStack a{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:var(--text);
  font-weight:600;
}
.contactForm{
  display:grid;
  gap:1rem;
  margin-top:1rem;
}
.contactForm label{
  display:grid;
  gap:.45rem;
  font-weight:700;
}
.contactForm input,
.contactForm textarea{
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  color:var(--text);
  border-radius:18px;
  padding:.95rem 1rem;
}
.contactForm textarea{resize:vertical}

.siteFooter{
  padding:2rem 0 2.8rem;
  border-top:1px solid rgba(23,50,38,.08);
  background:rgba(255,255,255,.4);
}
.siteFooter p{color:var(--muted)}
.footerLinks{
  display:grid;
  gap:.5rem;
}
.credit{
  justify-self:end;
  font-size:.95rem;
  color:var(--muted);
}

.galleryGridPage{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1rem;
}
.galleryItem{
  border:0;
  padding:0;
  background:none;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.galleryItem img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
  display:block;
}
.galleryItem.portrait img{
  aspect-ratio:3/4;
}
.lightbox[hidden]{display:none}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,16,12,.84);
  display:grid;
  place-items:center;
  padding:1rem;
  z-index:50;
}
.lightboxImage{
  max-width:min(1200px, calc(100vw - 2rem));
  max-height:calc(100vh - 2rem);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.lightboxClose{
  position:absolute;
  top:1rem;
  right:1rem;
  width:3rem;
  height:3rem;
  border-radius:999px;
  border:0;
  font-size:2rem;
  line-height:1;
  background:#fff;
  cursor:pointer;
}

@media (max-width: 1024px){
  .heroGrid,
  .featureSplit,
  .featureSplit.reverse,
  .visitGrid,
  .footerInner{
    grid-template-columns:1fr;
  }
  .cardGrid.fourUp{grid-template-columns:repeat(2,minmax(0,1fr))}
  .previewGrid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .pricingGrid,
  .pricingGrid.compact{grid-template-columns:repeat(2,minmax(0,1fr))}
  .panelMedia{min-height:420px}
}

@media (max-width: 820px){
  .navToggle{display:inline-flex}
  .siteNav{
    position:absolute;
    top:calc(100% + .5rem);
    left:1rem;
    right:1rem;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:1rem;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(23,50,38,.08);
    border-radius:22px;
    box-shadow:var(--shadow);
  }
  .siteNav.open{display:flex}
  .siteNav a{padding:.82rem 1rem}
  .brandText small{display:none}
  .hero{padding-top:1.4rem}
  .bannerGrid,
  .supportCard,
  .cardGrid.threeUp,
  .galleryGridPage{
    grid-template-columns:1fr;
  }
  .previewGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sectionIntro.split{
    display:grid;
    justify-content:stretch;
  }
  .panelMedia{min-height:320px}
  .supportCard{grid-template-columns:1fr}
  .supportCard img{aspect-ratio:16/10}
  .eventCard{min-height:230px}
  .pageHero{min-height:300px}
  .pageHeroInner,
  .bandInner{padding-top:4.4rem}
}

@media (max-width: 560px){
  .shell{width:min(100% - 1rem, 1180px)}
  .topStripInner{justify-content:flex-start}
  .heroCopy h1{font-size:2.6rem}
  .pageHeroInner h1,
  .sectionIntro h2,
  .bandInner h2{max-width:none}
  .cardGrid.fourUp,
  .previewGrid,
  .rulesGrid,
  .pricingGrid,
  .pricingGrid.compact{
    grid-template-columns:1fr;
  }
  .ctaRow{display:grid}
  .btn{width:100%}
  .footerInner{gap:1rem}
  .credit{justify-self:start}
}
