:root{--paper:#fffdf8;--green:#355c3a;--sage:#dce7d4;--text:#2c2c2c;--shadow:0 10px 26px rgba(0,0,0,.08);--radius:22px;--max:1180px}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:linear-gradient(180deg,#f7f4ea,#eef3e7);line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px),var(--max));margin:0 auto}
.topbar{background:rgba(255,253,248,.95);border-bottom:1px solid rgba(53,92,58,.12);position:sticky;top:0;z-index:50}
.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:14px;font-weight:700}
.logo{width:58px;height:58px;border-radius:18px;box-shadow:var(--shadow)}
.brand-title{display:flex;flex-direction:column}
.nav-links{display:flex;gap:10px;flex-wrap:wrap}
.nav-links a{padding:10px 14px;border-radius:999px;font-weight:700;color:var(--green)}
.nav-links a.active,.nav-links a:hover{background:var(--sage)}
.social-icons{display:flex;gap:10px;align-items:center}
.social-icons img{width:20px;height:20px}
.page-hero{padding:36px 0 24px}
.hero-grid,.two-col,.feature-grid,.contact-grid{display:grid;gap:24px}
.hero-grid{grid-template-columns:1.15fr .85fr;align-items:stretch}
.two-col{grid-template-columns:1fr 1fr}
.feature-grid{grid-template-columns:repeat(3,1fr)}
.contact-grid{grid-template-columns:1.15fr .85fr}
.card,.hero-copy,.hero-photo,.feature-card{background:var(--paper);border-radius:var(--radius);box-shadow:var(--shadow)}
.hero-copy{padding:30px}
.hero-photo{overflow:hidden;min-height:400px;position:relative}
.hero-photo img,.feature-card img{width:100%;height:100%;object-fit:cover}
.overlay-note{position:absolute;bottom:16px;left:16px;right:16px;background:rgba(255,253,248,.93);border-radius:18px;padding:14px 16px;box-shadow:var(--shadow)}
.card{padding:26px}
.section{padding:22px 0}
h1,h2,h3{color:var(--green);line-height:1.15;margin:0 0 12px}
h1{font-size:clamp(2.2rem,4vw,4rem)}
h2{font-size:clamp(1.5rem,3vw,2.3rem)}
h3{font-size:1.2rem}
.lead{font-size:1.04rem;max-width:60ch}
.hero-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.hero-points div{background:#faf8ef;border:1px solid #eee5d0;padding:14px;border-radius:16px;font-weight:700}
.info-box{background:#f7f0df;border:1px solid #eeddb7;border-radius:18px;padding:18px;margin-top:18px}
.gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.gallery img{height:240px;width:100%;object-fit:cover;border-radius:18px;box-shadow:var(--shadow)}
.feature-card{overflow:hidden}
.feature-card .text{padding:20px}
.feature-card img{height:220px}
.list{margin:0;padding-left:20px}
.list li{margin-bottom:8px}
.hours{display:grid;gap:10px;margin-top:12px}
.hours div{display:flex;justify-content:space-between;gap:18px;background:#fff;border-radius:14px;padding:12px 14px;border:1px solid #eee8d7;font-weight:700}
footer{margin-top:20px;padding:24px 0 36px;background:#f0eadc;border-top:1px solid #e0d6be}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
.footer-grid p{margin:0 0 8px}
.nav-links a,.social-icons img,.card img,.feature-card,.gallery img{transition:transform .25s ease,opacity .25s ease,box-shadow .25s ease,background-color .25s ease}
.nav-links a:hover{background-color:var(--green);color:white}
.card img:hover,.gallery img:hover{transform:scale(1.03);opacity:.9;box-shadow:0 14px 32px rgba(0,0,0,.18)}
.feature-card:hover{transform:translateY(-5px);box-shadow:0 14px 32px rgba(0,0,0,.18)}
.social-icons img:hover{transform:scale(1.2);opacity:.75}
@media(max-width:920px){.hero-grid,.two-col,.feature-grid,.contact-grid,.footer-grid{grid-template-columns:1fr}.hero-points{grid-template-columns:1fr}}
@media(max-width:560px){.container{width:min(calc(100% - 20px),var(--max))}.hero-copy,.card{padding:20px}.gallery{grid-template-columns:1fr}.nav{justify-content:center}.brand{width:100%;justify-content:center}.nav-links{justify-content:center}}

/* extra simple image rollovers */
.hero-photo img,
.card img,
.gallery img,
.feature-card img {
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

/* gentle zoom on most images */
.card img:hover,
.gallery img:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

/* main image rollover */
.hero-photo img:hover {
  filter: brightness(0.9);
}

/* animal/activity card image rollover */
.feature-card img:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}

/* small social icon rollover */
.social-icons img:hover {
  transform: scale(1.15);
  opacity: 0.8;
}
