@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #0d2b14;
  --green-800: #1a4726;
  --green-700: #1e7a2e;
  --green-600: #2d9142;
  --green-500: #3dab55;
  --green-400: #6dc47f;
  --green-200: #b8e4c0;
  --green-100: #dff2e3;
  --green-50:  #f2fbf4;
  --earth-700: #5c3d1e;
  --earth-400: #a0744a;
  --earth-200: #d4b896;
  --earth-100: #f0e4d4;
  --cream:     #faf8f3;
  --white:     #ffffff;
  --text-dark: #0d1f0f;
  --text-mid:  #3a5240;
  --text-muted:#6b8572;
  --shadow-green: rgba(30, 122, 46, 0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-50); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,122,46,0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(13,43,20,0.1); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--green-800); letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid); text-decoration: none;
  letter-spacing: 0.03em;
  position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--green-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-700); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-nav {
  background: var(--green-700); color: var(--white);
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-nav:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: 0 6px 20px var(--shadow-green); }

/* ── PAGE HEADER (breadcrumb banner) ── */
.page-header {
  padding: 120px 5vw 60px;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
  position: relative; overflow: hidden;
}
.ph-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.2; pointer-events: none;
}
.ph-blob1 { width: 500px; height: 500px; background: var(--green-500); top: -200px; right: -100px; }
.ph-blob2 { width: 300px; height: 300px; background: var(--green-400); bottom: -100px; left: -80px; }
.ph-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.ph-breadcrumb a:hover { color: var(--green-400); }
.ph-breadcrumb span { color: rgba(255,255,255,0.25); }
.ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 0.75rem;
}
.ph-title em { color: var(--green-400); font-style: italic; }
.ph-desc {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  font-weight: 300; max-width: 520px; line-height: 1.7;
}

/* ── SECTION COMMONS ── */
section { padding: 5rem 5vw; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-700);
  padding-left: 0.9rem; border-left: 2.5px solid var(--green-500);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 1rem;
}
.section-title em { color: var(--green-700); font-style: italic; }
.section-desc {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-muted); font-weight: 300; max-width: 560px;
}
.centered { text-align: center; }
.centered .section-desc { margin: 0 auto; }
.centered .section-tag { display: block; text-align: center; border-left: none; padding-left: 0; }
.centered .section-tag::before { content: '— '; }
.centered .section-tag::after { content: ' —'; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-700); color: var(--white);
  padding: 0.85rem 2.2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s; border: none; cursor: pointer;
  display: inline-block; font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 10px 32px var(--shadow-green); }
.btn-outline {
  border: 1.5px solid var(--green-400); color: var(--green-800);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s; display: inline-block;
  background: transparent;
}
.btn-outline:hover { background: var(--green-100); border-color: var(--green-600); }

/* ── FOOTER ── */
footer {
  background: var(--green-900);
  padding: 4rem 5vw 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; text-decoration: none; }
.footer-logo img { height: 44px; filter: none; opacity: 1; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; text-decoration: none; color: var(--white);
  transition: background 0.2s;
}
.social-btn:hover { background: var(--green-700); }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 3.5rem 1.5rem; }
  .page-header { padding: 100px 1.5rem 40px; }
}
