*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest:  #0d1f0d;
  --canopy:  #162916;
  --moss:    #2e5c28;
  --fern:    #4a8c40;
  --leaf:    #7bbf6a;
  --gold:    #e8c97a;
  --cream:   #f2ebe0;
}
html { scroll-behavior: smooth; }
body { background: #060f06; color: #fff; font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 3rem;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 0.3rem; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 0; }
.nav-links li { list-style: none; }
.nav-links a {
  color: #222; text-decoration: none; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem;
  transition: color 0.2s; display: block; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--fern); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -2px; left: 1rem; right: 1rem;
  height: 2px; background: var(--fern); border-radius: 2px;
}
.nav-cta {
  margin-left: 1.2rem; padding: 0.6rem 1.4rem; background: #111; color: #fff;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--fern); transform: translateY(-1px); }

/* HERO */
.page-hero {
  margin-top: 72px;
  position: relative;
  padding: 7rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
  background: #0a180a;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(74,140,64,0.15), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--leaf); background: rgba(74,140,64,0.12);
  border: 1px solid rgba(74,140,64,0.3); padding: 0.35rem 1rem;
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0; color: #fff;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub {
  max-width: 560px; margin: 1.6rem auto 0;
  font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.75;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}

/* FILTER BAR */
.filter-bar {
  display: flex; justify-content: center; gap: 0.6rem;
  padding: 2.5rem 1rem 0; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}
.filter-btn {
  padding: 0.55rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(74,140,64,0.25);
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; border-radius: 20px;
}
.filter-btn:hover { border-color: var(--fern); color: var(--leaf); }
.filter-btn.active { background: var(--fern); border-color: var(--fern); color: #fff; }

/* MASONRY */
.portfolio-section { padding: 3rem 2rem 6rem; max-width: 1300px; margin: 0 auto; }
.masonry { columns: 3; column-gap: 14px; }

.photo-card {
  break-inside: avoid; margin-bottom: 14px;
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: 10px;
  background: #0d1f0d;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

.card-img {
  width: 100%; display: block;
  object-fit: cover; transition: transform 0.5s ease;
}
.photo-card:hover .card-img { transform: scale(1.04); }

/* Height classes for real images */
.photo-card.h1 .card-img { height: 220px; }
.photo-card.h2 .card-img { height: 300px; }
.photo-card.h3 .card-img { height: 260px; }
.photo-card.h4 .card-img { height: 360px; }
.photo-card.h5 .card-img { height: 190px; }

/* Placeholder slots */
.slot {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem;
  color: rgba(123,191,106,0.3);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.35s;
  background: rgba(22,41,22,0.4);
}
.photo-card.h1 .slot { height: 220px; }
.photo-card.h2 .slot { height: 300px; }
.photo-card.h3 .slot { height: 260px; }
.photo-card.h4 .slot { height: 360px; }
.photo-card.h5 .slot { height: 190px; }
.photo-card:hover .slot { background: rgba(46,92,40,0.2); }
.slot-icon { font-size: 2rem; opacity: 0.35; }

/* Overlay */
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,12,5,0.92) 0%, rgba(5,12,5,0.3) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
}
.photo-card:hover .overlay { opacity: 1; }
.overlay-tag {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 0.3rem;
}
.overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: #fff; margin-bottom: 0.2rem;
}
.overlay-credit { font-size: 0.65rem; color: rgba(255,255,255,0.45); }

/* Coming Soon Banner */
.coming-soon-banner {
  text-align: center; padding: 4rem 3rem;
  background: rgba(74,140,64,0.06);
  border: 1px solid rgba(74,140,64,0.15);
  border-radius: 12px;
  margin: 3rem auto 0; max-width: 640px;
}
.banner-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.coming-soon-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--gold); margin-bottom: 0.8rem;
}
.coming-soon-banner p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; }
.back-home {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; background: transparent;
  border: 1px solid rgba(74,140,64,0.35); color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 6px; transition: all 0.25s;
}
.back-home:hover { border-color: var(--fern); color: var(--leaf); }

/* Instagram CTA */
.insta-cta {
  text-align: center; padding: 7rem 2rem;
  background: #0a1a0a;
  border-top: 1px solid rgba(74,140,64,0.12);
}
.insta-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 1.2rem; display: block;
}
.insta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: #fff;
  margin-bottom: 1rem;
}
.insta-title em { color: var(--gold); font-style: italic; }
.insta-sub { color: rgba(255,255,255,0.5); font-size: 0.98rem; max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.75; }
.insta-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff; text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 6px; transition: transform 0.2s, opacity 0.2s;
}
.insta-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* Footer */
footer {
  background: #030803;
  padding: 2.8rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(74,140,64,0.12);
}
.footer-left { display: flex; align-items: center; gap: 1.4rem; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }
.footer-right p { font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); }
.footer-dev { color: rgba(74,140,64,0.5) !important; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) { .masonry { columns: 2; } nav { padding: 0.7rem 1.5rem; } }
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .nav-links { display: none; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { align-items: center; }
}

/* Dynamic gallery extras */
.filter-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.photo-count-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.overlay-caption { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.4; margin-bottom: 0.4rem; font-style: italic; }
.empty-state { text-align: center; padding: 5rem 2rem; color: rgba(255,255,255,0.3); font-size: 0.9rem; letter-spacing: 0.1em; }

/* TOURS SECTION */
.tours-section {
  background: #060f06;
  padding: 7rem 2rem;
  border-top: 1px solid rgba(74,140,64,0.12);
}
.tours-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--leaf);
  background: rgba(74,140,64,0.12);
  border: 1px solid rgba(74,140,64,0.3);
  padding: 0.35rem 1rem;
  margin-bottom: 1.6rem;
}
.tours-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; color: #fff;
  margin-bottom: 1rem; line-height: 1.1;
}
.tours-title em { color: var(--gold); font-style: italic; }
.accent-line {
  width: 48px; height: 3px;
  background: var(--fern); border-radius: 2px;
  margin: 1.2rem auto 1.8rem;
}
.tours-desc {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 600px;
  margin: 0 auto 3.5rem;
}
.tours-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tour-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.tour-card:hover {
  background: rgba(74,140,64,0.08);
  border-color: rgba(74,140,64,0.3);
  transform: translateY(-5px);
}
.tour-icon { font-size: 2rem; margin-bottom: 1rem; }
.tour-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: #fff; margin-bottom: 0.6rem;
}
.tour-card p {
  font-size: 0.92rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.tour-tag {
  display: inline-block;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fern);
  background: rgba(74,140,64,0.1);
  border: 1px solid rgba(74,140,64,0.25);
  padding: 0.25rem 0.8rem; border-radius: 20px;
}
.tours-contact {
  font-size: 0.92rem; color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) { .tours-cards { grid-template-columns: 1fr; } }
