/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:   #0d1a0f;
  --green:  #1a3a1e;
  --accent: #2d6e35;
  --bright: #4aaa56;
  --sand:   #c8a96e;
  --cream:  #f0e8d0;
  --muted:  rgba(240,232,208,0.55);
  --faint:  rgba(240,232,208,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: linear-gradient(to bottom, rgba(13,26,15,0.97) 0%, rgba(13,26,15,0) 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(13,26,15,0.97);
  border-bottom: 1px solid rgba(74,170,86,0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--bright);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--bright); }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--bright) !important;
  color: var(--bright) !important;
  padding: 0.45rem 1.4rem !important;
  border-radius: 2px;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: rgba(74,170,86,0.12) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5.5rem;
  position: relative;
  background:
    linear-gradient(to top, rgba(13,26,15,1) 0%, rgba(13,26,15,0.55) 45%, rgba(13,26,15,0.15) 100%),
    linear-gradient(135deg, #0d2412 0%, #1a3a1e 40%, #2a4a1e 70%, #1a2e10 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 25%, rgba(44,110,53,0.28) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 85%, rgba(200,169,110,0.09) 0%, transparent 48%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 1.5rem;
  font-weight: 400;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  max-width: 820px;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-headline em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--bright), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--bright);
  color: var(--dark);
  border: none;
  padding: 1rem 2.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #5cc868; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,232,208,0.32);
  padding: 1rem 2.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(240,232,208,0.6); background: rgba(240,232,208,0.05); }

/* ===== STATS BAND ===== */
.stats-band {
  width: 100%;
  padding: 2.5rem 4rem;
  background: rgba(74,170,86,0.06);
  border-top: 1px solid rgba(74,170,86,0.12);
  border-bottom: 1px solid rgba(74,170,86,0.12);
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bright);
  display: block;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,208,0.4);
  margin-top: 0.3rem;
  display: block;
}

/* ===== SHARED ===== */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bright);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}

/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 7rem 4rem; background: var(--dark); }
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-cards { display: flex; flex-direction: column; gap: 1rem; }
.problem-card {
  border: 1px solid rgba(200,169,110,0.2);
  border-left: 3px solid var(--sand);
  padding: 1.25rem 1.5rem;
  background: rgba(200,169,110,0.04);
  border-radius: 0 4px 4px 0;
  transition: background 0.3s;
}
.problem-card:hover { background: rgba(200,169,110,0.08); }
.problem-card.highlight {
  border-left-color: var(--bright);
  border-color: rgba(74,170,86,0.25);
  background: rgba(74,170,86,0.06);
}
.problem-card-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}
.problem-card.highlight .problem-card-title { color: var(--bright); }
.problem-card-body {
  font-size: 0.82rem;
  color: rgba(240,232,208,0.5);
  font-weight: 300;
  line-height: 1.65;
}
.problem-card.highlight .problem-card-body { color: rgba(240,232,208,0.7); }

/* ===== SOLUTION SECTION ===== */
.solution-section {
  padding: 7rem 4rem;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(74,170,86,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.solution-inner { max-width: 720px; margin: 0 auto; position: relative; }
.solution-section .section-title { font-size: clamp(2rem, 4vw, 3.5rem); }

/* ===== EXPERIENCE SECTION ===== */
.experience-section { padding: 7rem 4rem; background: var(--dark); }
.experience-inner { max-width: 1200px; margin: 0 auto; }
.experience-header { text-align: center; margin-bottom: 3.5rem; }
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.exp-card {
  background: rgba(26,58,30,0.4);
  border: 1px solid rgba(74,170,86,0.15);
  border-radius: 4px;
  padding: 2.2rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.exp-card:hover { border-color: rgba(74,170,86,0.4); background: rgba(26,58,30,0.65); transform: translateY(-4px); }
.exp-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--bright);
  line-height: 1; margin-bottom: 0.6rem; opacity: 0.2;
}
.exp-title { font-size: 1rem; font-weight: 500; color: var(--cream); margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.exp-body { font-size: 0.83rem; color: rgba(240,232,208,0.5); line-height: 1.75; font-weight: 300; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); overflow: hidden; }
.gallery-track { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2px; height: 500px; }
.gallery-item { overflow: hidden; position: relative; background: var(--green); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; filter: brightness(0.85) saturate(0.9); }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.95) saturate(1); }
.gallery-item-caption {
  position: absolute; bottom:0; left:0; right:0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(13,26,15,0.85) 0%, transparent 100%);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,232,208,0.6);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }
.gallery-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, #1a3a1e 0%, #0d2412 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 0.4rem; opacity: 0.35;
}
.gallery-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; letter-spacing: 0.15em; color: var(--cream); text-transform: uppercase;
}
.gallery-placeholder small { font-size: 0.68rem; color: var(--cream); letter-spacing: 0.08em; }

/* ===== LOCATION SECTION ===== */
.location-section { padding: 7rem 4rem; background: #0a1409; }
.location-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
}
.location-checklist { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.check-item { display:flex; align-items:flex-start; gap:1rem; font-size:0.85rem; color:rgba(240,232,208,0.6); font-weight:300; line-height:1.5; }
.check-icon { color: var(--bright); font-size: 1rem; flex-shrink:0; margin-top:1px; }
.ambience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ambience-card {
  background: rgba(26,58,30,0.45);
  border: 1px solid rgba(74,170,86,0.14);
  border-radius: 4px; padding: 1.6rem; text-align: center;
  transition: border-color 0.3s;
}
.ambience-card:hover { border-color: rgba(74,170,86,0.35); }
.ambience-card.wide { grid-column: 1/-1; background: rgba(44,110,53,0.18); border-color: rgba(74,170,86,0.22); }
.ambience-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--bright);
  display: block; line-height: 1.1; margin-bottom: 0.3rem;
}
.ambience-card.wide .ambience-big { font-size: 2.8rem; }
.ambience-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,232,208,0.45); }

/* ===== STEPS / ROADMAP ===== */
.steps-section { padding: 7rem 4rem; background: var(--green); }
.steps-inner { max-width: 1000px; margin: 0 auto; }
.steps-header { text-align: center; margin-bottom: 4rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(74,170,86,0.12);
  border: 1px solid rgba(74,170,86,0.12); border-radius: 4px; overflow: hidden;
}
.step-item { background: rgba(13,26,15,0.6); padding: 2rem 1.5rem; text-align: center; transition: background 0.3s; }
.step-item:hover { background: rgba(26,58,30,0.8); }
.step-dot { width:10px; height:10px; background: rgba(74,170,86,0.3); border-radius:50%; margin: 0 auto 1rem; }
.step-title { font-size: 0.82rem; font-weight: 500; color: var(--cream); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.step-body { font-size: 0.76rem; color: rgba(240,232,208,0.45); line-height: 1.6; font-weight: 300; }

/* ===== CTA ===== */
.cta-section {
  padding: 9rem 4rem; background: #070e08; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(44,110,53,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-badge {
  display: inline-block;
  background: rgba(74,170,86,0.12);
  border: 1px solid rgba(74,170,86,0.5);
  color: var(--bright);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0.4rem 1.3rem; border-radius: 100px; margin-bottom: 2.5rem;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900;
  color: var(--cream); line-height: 1.05; margin-bottom: 1.5rem;
}
.cta-sub { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 3rem; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.cta-email {
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--sand);
  border-bottom: 1px solid rgba(200,169,110,0.3); padding-bottom: 0.2rem;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.cta-email:hover { color: #e0c080; border-color: rgba(200,169,110,0.6); }

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 4rem; background: #050c06;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(74,170,86,0.1); flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bright); text-decoration: none; display: block;
}
.footer-tagline { font-size: 0.68rem; letter-spacing: 0.15em; color: rgba(240,232,208,0.3); text-transform: uppercase; margin-top: 0.3rem; }
.footer-copy { font-size: 0.72rem; color: rgba(240,232,208,0.28); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-scroll { display: none; }
  .stats-band { gap: 2rem; padding: 2rem 1.5rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-section { padding: 5rem 1.5rem; }
  .solution-section { padding: 5rem 1.5rem; }
  .experience-section { padding: 5rem 1.5rem; }
  .experience-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-track { grid-template-columns: 1fr; height: auto; }
  .gallery-item { height: 260px; }
  .location-section { padding: 5rem 1.5rem; }
  .location-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-section { padding: 5rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 6rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
}

/* ===== PAGE TEMPLATE ===== */
.page-content {
  background: var(--forest, #0d1a0f);
  min-height: 100vh;
  padding: 140px 0 80px;
}
.page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--cream, #ebe4d2);
}
.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sand, #d4c096);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,192,150,0.2);
}
.page-body h2, .page-body h3, .page-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--sand, #d4c096);
  margin: 2rem 0 0.75rem;
}
.page-body h2 { font-size: 1.5rem; }
.page-body h3 { font-size: 1.2rem; }
.page-body h4 { font-size: 1rem; font-weight: 700; }
.page-body p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: rgba(235,228,210,0.85);
}
.page-body ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: rgba(235,228,210,0.85);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}
.page-body a {
  color: var(--sand, #d4c096);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-body a:hover { color: var(--bright, #6a9e5a); }
.page-body hr {
  border: none;
  border-top: 1px solid rgba(212,192,150,0.15);
  margin: 2.5rem 0;
}

/* ===== NAV LOGO IMAGE ===== */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: 1;
}

/* ===== TEASER GALLERY ===== */
.teaser-gallery {
  background: var(--forest, #0d1a0f);
  padding: 0 2rem 0;
}
.teaser-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 0.55fr;
  grid-template-rows: 420px;
  gap: 12px;
}
.teaser-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.teaser-item:hover img {
  transform: scale(1.04);
}
.teaser-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(212,192,150,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(212,192,150,0.5);
  font-family: 'Jost', sans-serif;
}
.teaser-placeholder span { font-size: 1rem; }
.teaser-placeholder small { font-size: 0.75rem; opacity: 0.6; }
.teaser-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 0.8rem;
  background: linear-gradient(to top, rgba(13,26,15,0.85) 0%, transparent 100%);
  color: var(--sand, #d4c096);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .teaser-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 260px 200px;
  }
}

/* ===== NAV LOGO SVG ===== */
.nav-logo-svg {
  height: 48px;
  width: auto;
  color: var(--sand, #d4c096);
  display: block;
  transition: opacity 0.2s, color 0.2s;
}
.nav-logo:hover .nav-logo-svg {
  color: var(--bright, #6a9e5a);
}

/* Nav Logo Image */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }
.nav-logo-text { font-family: 'Playfair Display', Georgia, serif; }

/* Hide empty teaser items */
.teaser-item:empty { display: none; }
