:root {
  --jungle: #0b1f14;
  --canopy: #143525;
  --leaf: #1f6b45;
  --moss: #2f9e6b;
  --gold: #e2b85a;
  --sand: #f3e7c9;
  --ink: #eef6ef;
  --muted: #b7cfc0;
  --card: rgba(12, 32, 22, 0.72);
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 10% -10%, #1d5a38 0%, transparent 55%),
    radial-gradient(900px 600px at 100% 0%, #3a2a12 0%, transparent 45%),
    linear-gradient(180deg, #07140e 0%, var(--jungle) 40%, #06110c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.leaf {
  position: fixed; pointer-events: none; z-index: 0; opacity: 0.18;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--moss), transparent 70%);
  filter: blur(8px);
}
.leaf-a { top: 20%; left: -120px; }
.leaf-b { bottom: 10%; right: -140px; background: radial-gradient(circle at 60% 40%, var(--gold), transparent 70%); opacity: 0.12; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 6vw;
  backdrop-filter: blur(14px);
  background: rgba(7, 20, 14, 0.72);
  border-bottom: 1px solid rgba(226, 184, 90, 0.15);
}
.logo { font-weight: 700; letter-spacing: 0.04em; }
.logo span { color: var(--gold); }
.nav nav { display: flex; gap: 1.25rem; font-size: 0.95rem; color: var(--muted); }
.nav nav a:hover { color: var(--gold); }

.hero {
  position: relative; isolation: isolate;
  min-height: min(92vh, 920px);
  display: grid; align-items: end;
  margin: 1.25rem 4vw 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 184, 90, 0.2);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: scale(1.02);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,20,14,0.15) 0%, rgba(7,20,14,0.25) 35%, rgba(7,20,14,0.88) 100%),
    radial-gradient(800px 400px at 70% 20%, rgba(226,184,90,0.18), transparent 60%);
}
.hero-copy {
  position: relative; z-index: 1;
  padding: clamp(1.5rem, 5vw, 4rem);
  max-width: 820px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; color: var(--gold); margin: 0 0 0.75rem;
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  text-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.hero h1 em {
  font-style: italic; color: var(--gold);
}
.lead {
  margin: 1rem 0 1.5rem; max-width: 34rem;
  color: var(--sand); font-size: 1.08rem; line-height: 1.55;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #c9922f);
  color: #1a1205; font-weight: 700;
  box-shadow: 0 10px 30px rgba(226,184,90,0.25);
}
.btn:hover { filter: brightness(1.05); }

.section { position: relative; z-index: 1; padding: 4.5rem 6vw; }
.section.alt { background: linear-gradient(180deg, rgba(20,53,37,0.35), transparent); }
.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 0.5rem; color: var(--sand);
}
.section-head p { margin: 0; color: var(--muted); line-height: 1.6; }

.masonry {
  columns: 3 260px; column-gap: 1rem;
}
.masonry figure {
  break-inside: avoid; margin: 0 0 1rem;
  border-radius: 18px; overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.masonry img { width: 100%; height: auto; }
.masonry figcaption {
  padding: 0.65rem 0.85rem 0.9rem; font-size: 0.85rem; color: var(--muted);
}
.credits { margin-top: 1rem; font-size: 0.8rem; color: #7f998a; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.grid img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 18px; border: 1px solid rgba(226,184,90,0.15);
  box-shadow: var(--shadow);
}

.about-card {
  max-width: 760px;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(31,107,69,0.35), rgba(12,32,22,0.85));
  border: 1px solid rgba(226,184,90,0.22);
  box-shadow: var(--shadow);
}
.about-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 0; color: var(--gold);
}
.about-card p { color: var(--sand); line-height: 1.65; }

footer {
  padding: 2rem 6vw 3rem; color: #7f998a; font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 720px) {
  .nav nav { display: none; }
  .hero { min-height: 78vh; margin: 0.75rem 3vw 0; }
}
