:root{
  --forest-deep:#1f2e22;
  --forest-mid:#3a5240;
  --moss:#6b8a5f;
  --cream:#f6f1e6;
  --terracotta:#c1663b;
  --ink:#22261f;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Georgia','Iowan Old Style',serif;
  background-color:var(--cream);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%233a5240' fill-opacity='0.045' transform='rotate(-18 70 70)'%3E%3Cellipse cx='70' cy='88' rx='24' ry='19'/%3E%3Ccircle cx='45' cy='56' r='10'/%3E%3Ccircle cx='64' cy='44' r='10'/%3E%3Ccircle cx='86' cy='45' r='10'/%3E%3Ccircle cx='102' cy='59' r='10'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  color:var(--ink);
  line-height:1.6;
}
.placeholder-flag{
  background:#ffe9a8;
  color:#5c4a12;
  font-family:Arial,sans-serif;
  font-size:12px;
  text-align:center;
  padding:6px 10px;
  letter-spacing:.03em;
}
a{color:inherit;}

footer{
  background:var(--forest-deep);
  color:var(--cream);
  text-align:center;
  padding:32px 20px 26px;
  font-family:Arial,sans-serif;
  font-size:13px;
  letter-spacing:.02em;
  opacity:.92;
}
footer a{color:var(--cream);text-decoration:underline;text-underline-offset:2px;}
footer a:hover{opacity:.8;}
.footer-mark{width:46px;height:46px;object-fit:cover;border-radius:50%;display:block;margin:0 auto 12px;box-shadow:0 0 0 2px rgba(246,241,230,.35);}

/* top nav (subpages) */
.top-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px;
  font-family:Arial,sans-serif;
  font-size:13px;
  background:var(--forest-deep);
  color:var(--cream);
}
.top-nav a{text-decoration:none;color:var(--cream);opacity:.85;}
.top-nav a:hover{opacity:1;}
.top-nav .brand{display:inline-flex;align-items:center;gap:9px;font-family:Georgia,serif;font-size:16px;letter-spacing:.03em;}
.brand-mark{width:30px;height:30px;object-fit:cover;border-radius:50%;box-shadow:0 0 0 1px rgba(246,241,230,.25);}
.top-nav .links{display:flex;gap:20px;}

header.hero{
  min-height:82vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
  color:var(--cream);
  position:relative;
  overflow:hidden;
  background:var(--forest-deep);
}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(31,46,34,.55), rgba(31,46,34,.78));
  z-index:1;
}
header.hero > .hero-content{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;}
.hero small{
  font-family:Arial,sans-serif;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.8;
  font-size:12px;
}
.hero h1{
  font-size:clamp(2.4rem,6vw,4.2rem);
  font-weight:400;
  margin:14px 0 10px;
  letter-spacing:.02em;
}
.hero p.tagline{
  max-width:520px;
  font-size:1.15rem;
  opacity:.92;
  margin-bottom:26px;
}

/* smaller hero used on park detail pages */
header.hero.park-hero{
  min-height:46vh;
  background:linear-gradient(180deg, rgba(31,46,34,.6), rgba(31,46,34,.8)),
    linear-gradient(135deg,var(--moss),var(--forest-deep));
}
header.hero.park-hero.has-photo{
  background:linear-gradient(180deg, rgba(31,46,34,.55), rgba(31,46,34,.78)),
    var(--park-photo, linear-gradient(135deg,var(--moss),var(--forest-deep)));
  background-size:cover;
  background-position:center;
}
.photo-collage{
  position:absolute;inset:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  grid-auto-rows:1fr;
  z-index:0;
}
.photo-collage img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(.9);
}
@media (max-width:640px){
  .photo-collage{grid-template-columns:repeat(auto-fit,minmax(80px,1fr));}
}

.cta-row{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}
.btn{
  font-family:Arial,sans-serif;
  display:inline-block;
  padding:13px 26px;
  border-radius:2px;
  text-decoration:none;
  font-size:14px;
  letter-spacing:.04em;
  border:1px solid var(--cream);
  color:var(--cream);
  transition:all .2s;
  cursor:pointer;
}
.btn.solid{background:var(--terracotta);border-color:var(--terracotta);}
.btn:hover{opacity:.85;}
.btn.dark{border-color:var(--forest-deep);color:var(--forest-deep);}

section{padding:70px 20px;max-width:1080px;margin:0 auto;}
section.narrow{max-width:820px;}
.section-label{
  font-family:Arial,sans-serif;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  color:var(--moss);
  text-align:center;
  margin-bottom:10px;
}
.section-label::before{
  content:"";
  display:inline-block;
  width:18px;height:18px;
  margin-right:7px;
  vertical-align:middle;
  position:relative;top:-1px;
  background:url("images/anand-leaf.jpg") center/cover;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(31,46,34,.15);
}
h2{
  text-align:center;
  font-size:clamp(1.5rem,5vw,2rem);
  font-weight:400;
  color:var(--forest-deep);
  margin-bottom:18px;
}
.center-text{max-width:640px;margin:0 auto 40px;text-align:center;color:#444;}

.story{
  max-width:760px;
  text-align:left;
}
.story-logo{
  display:block;
  width:100%;
  max-width:280px;
  margin:0 auto 30px;
  background:var(--cream);
  border:1px solid rgba(31,46,34,.14);
  box-shadow:0 6px 20px rgba(31,46,34,.06);
  border-radius:6px;
  padding:18px;
}
.story h3{font-size:1.6rem;font-weight:400;margin-bottom:16px;color:var(--forest-deep);text-align:center;}
.story p{color:#4a4a42;margin-bottom:16px;}
.story .signature{font-style:italic;color:var(--moss);margin:0;}
.signature-row{display:flex;align-items:center;gap:12px;margin-top:10px;justify-content:center;}
.signature-row .avatar{
  width:56px;height:56px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--cream);
  box-shadow:0 3px 10px rgba(31,46,34,.15);
  flex-shrink:0;
}

.park-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}
.park-card{
  background:#fff;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(31,46,34,.08);
  text-decoration:none;
  display:block;
  transition:transform .15s, box-shadow .15s;
}
.park-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(31,46,34,.14);
}
.park-photo{
  height:190px;
  background:linear-gradient(135deg,var(--moss),var(--forest-deep));
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.85);
  font-family:Arial,sans-serif;font-size:12px;text-align:center;padding:16px;
}
.park-card .body{padding:18px 20px 22px;}
.park-card h4{font-size:1.15rem;font-weight:600;color:var(--forest-deep);margin-bottom:4px;font-family:Arial,sans-serif;}
.park-card .meta{font-family:Arial,sans-serif;font-size:12px;color:var(--terracotta);text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;}
.park-card p{font-size:.92rem;color:#555;margin-bottom:10px;}
.photo-credit{font-family:Arial,sans-serif;font-size:11px;color:#999;font-style:italic;}
.card-cta{font-family:Arial,sans-serif;font-size:12px;color:var(--terracotta);font-weight:bold;}

/* hotel listings on park detail pages */
.hotel-note{
  background:#fff8e8;
  border:1px solid #eddca0;
  border-radius:4px;
  padding:14px 18px;
  font-family:Arial,sans-serif;
  font-size:12.5px;
  color:#6b5719;
  margin-bottom:30px;
}
.tier-block{margin-bottom:34px;}
.tier-block h3{
  font-family:Arial,sans-serif;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--forest-deep);
  border-bottom:1px solid #ddd6c4;
  padding-bottom:8px;
  margin-bottom:16px;
}
.hotel-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}
.hotel-card{
  background:#fff;
  border-radius:4px;
  padding:14px 16px;
  box-shadow:0 3px 12px rgba(31,46,34,.06);
}
.hotel-card .name{font-family:Arial,sans-serif;font-weight:bold;font-size:14px;color:var(--forest-deep);margin-bottom:4px;}
.hotel-card .note{font-size:.88rem;color:#666;}
.booking-links{font-family:Arial,sans-serif;font-size:12px;color:var(--moss);margin-top:6px;}
.booking-links a{color:var(--terracotta);}

.breadcrumb{
  max-width:1080px;margin:0 auto;padding:14px 20px 0;
  font-family:Arial,sans-serif;font-size:12px;color:#888;
}
.breadcrumb a{color:var(--terracotta);text-decoration:none;}

.vananansh-strip{
  background:var(--forest-deep);
  color:var(--cream);
  padding:70px 20px;
}
.vananansh-strip .inner{max-width:760px;margin:0 auto;text-align:center;}
.vananansh-strip h2{color:var(--cream);}
.vananansh-strip p{color:#d8ddd0;margin-bottom:24px;}

form.waitlist{
  display:flex;
  gap:10px;
  max-width:460px;
  margin:0 auto;
  flex-wrap:wrap;
  justify-content:center;
}
form.waitlist input[type=email],
form.waitlist input[type=text],
form.waitlist input[type=tel]{
  flex:1;
  min-width:180px;
  padding:13px 16px;
  border:1px solid #556b52;
  background:rgba(255,255,255,.06);
  color:var(--cream);
  border-radius:2px;
  font-family:Arial,sans-serif;
}
form.waitlist input::placeholder{color:#aeb8a6;}
.whatsapp-note{
  font-family:Arial,sans-serif;
  font-size:.85rem;
  color:#c9d4c0;
  margin-top:16px;
  text-align:center;
}
.whatsapp-note a{
  color:var(--terracotta);
  font-weight:bold;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.whatsapp-note a:hover{text-decoration:underline;}
.whatsapp-note svg{width:15px;height:15px;flex-shrink:0;}

/* photography gallery page */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:14px;
}
.gallery-grid .tile{
  aspect-ratio:1/1;
  border-radius:4px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--moss),var(--forest-deep));
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.8);
  font-family:Arial,sans-serif;font-size:12px;text-align:center;padding:2px;
}
.gallery-grid .tile img{width:100%;height:100%;object-fit:cover;display:block;}
.gallery-empty{
  text-align:center;
  font-family:Arial,sans-serif;
  color:#888;
  padding:60px 20px;
  border:1px dashed #ccc4ab;
  border-radius:6px;
}

/* "plan a tour with Anand" contact card */
.tours-note{
  background:#fff;
  border:1px solid #ddd6c4;
  border-radius:6px;
  padding:26px 24px;
  max-width:560px;
  margin:28px auto 0;
  text-align:center;
}
.tours-note .label{
  font-family:Arial,sans-serif;
  font-weight:bold;
  font-size:13px;
  color:var(--forest-deep);
  margin-bottom:10px;
}
.contact-links{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:8px;
}
.contact-links a{
  font-family:Arial,sans-serif;
  font-size:14px;
  font-weight:bold;
  color:var(--terracotta);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.contact-links a:hover{text-decoration:underline;}
.contact-links svg{width:15px;height:15px;flex-shrink:0;}
.reach-divider{
  font-family:Arial,sans-serif;
  font-size:.82rem;
  color:#c9d4c0;
  text-align:center;
  margin-top:20px;
  margin-bottom:4px;
}
.query-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:16px;
  text-align:left;
}
.query-form .row{display:flex;gap:12px;flex-wrap:wrap;}
.query-form .row input{flex:1;min-width:160px;}
.query-form input,
.query-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd6c4;
  border-radius:3px;
  font-family:Arial,sans-serif;
  font-size:14px;
  color:var(--ink);
  background:#fdfbf5;
}
.query-form textarea{resize:vertical;min-height:70px;font-family:Georgia,serif;}
.query-form input::placeholder,
.query-form textarea::placeholder{color:#999;}
.query-form button{align-self:flex-start;}
.tours-note-divider{
  font-family:Arial,sans-serif;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#999;
  text-align:center;
  margin:20px 0 12px;
}
.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#25D366;
  border-color:#25D366;
  color:#fff;
}
.whatsapp-btn:hover{opacity:.9;}
.whatsapp-btn svg{width:17px;height:17px;flex-shrink:0;}
.strip-contact{
  margin-top:16px;
  font-size:.9rem;
  color:#c9d4c0;
  line-height:1.7;
}
.strip-contact .contact-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:10px;
}
.strip-contact a{
  color:var(--terracotta);
  font-weight:bold;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.strip-contact a:hover{text-decoration:underline;}
.strip-contact svg{width:15px;height:15px;flex-shrink:0;}

/* ==========================================================================
   Mobile-friendly overrides — kept last in the file on purpose, so they
   reliably win the cascade against every rule above (same-specificity CSS
   rules are resolved by source order, and this stylesheet has several
   same-named rules declared later than the earlier "mobile" block used to
   sit at, which was silently cancelling most of it out).
   ========================================================================== */
@media (max-width:780px){
  .top-nav{flex-direction:column;gap:12px;padding:16px 18px;}
  .top-nav .links{flex-wrap:wrap;justify-content:center;gap:10px 16px;}
  .story-logo{max-width:200px;padding:14px;margin-bottom:22px;}
  .story h3{font-size:1.3rem;}
  .story p{font-size:.95rem;line-height:1.7;}
  section{padding:46px 18px;}
  header.hero{min-height:72vh;padding:32px 16px;}
  header.hero.park-hero{min-height:38vh;}
  .gallery-grid{grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:8px;}
  .park-grid{gap:18px;}
  form.waitlist{flex-direction:column;align-items:stretch;}
  form.waitlist input[type=email]{min-width:0;}
  .tours-note{padding:20px 16px;}
}

@media (max-width:420px){
  .top-nav .links{gap:8px 12px;font-size:12px;}
  .hero p.tagline{font-size:1rem;}
  .cta-row{gap:10px;}
  .btn{padding:11px 18px;font-size:13px;}
}
