@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --cream:    #FDF6EC;
  --cream-2:  #F5ECD8;
  --cream-3:  #EDE0C8;
  --green:    #2D6A4F;
  --green-2:  #40916C;
  --green-light: #D8F3DC;
  --green-pale:  #F0FAF2;
  --berry:    #C0392B;
  --berry-2:  #E74C3C;
  --berry-light: #FADBD8;
  --berry-pale:  #FFF0EE;
  --text:     #1A1A1A;
  --text-2:   #4A4A4A;
  --text-3:   #888888;
  --white:    #FFFFFF;
  --radius:   20px;
  --radius-sm: 12px;
  --shadow:   0 4px 24px rgba(45,106,79,0.12);
  --shadow-lg: 0 12px 48px rgba(45,106,79,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(253,246,236,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(45,106,79,0.12);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.3rem;
  color: var(--green); text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  line-height: 1;
}
.nav-logo-text {
  font-style: normal;
  letter-spacing: 0;
  color: var(--green);
}
.nav-logo-text em {
  font-style: normal;
  color: var(--berry);
}
.nav-logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-2);
  font-size: 0.88rem; font-weight: 600;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 22px; border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(45,106,79,0.3);
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-2) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1.5px solid rgba(45,106,79,0.12);
  padding: 1.5rem 5%; z-index: 99; flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--text-2); font-size: 1rem; font-weight: 600;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(45,106,79,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu a:last-child { border: none; }

.page-content { padding-top: 72px; }

/* SECTION */
section { padding: 80px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  border-radius: 50px; padding: 5px 14px;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-label::before { content: '✦'; font-size: 0.6rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem; color: var(--text-2);
  max-width: 580px; line-height: 1.75;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(45,106,79,0.3); }
.btn-primary:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.35); }
.btn-berry { background: var(--berry); color: var(--white); box-shadow: 0 4px 16px rgba(192,57,43,0.25); }
.btn-berry:hover { background: var(--berry-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* CARD */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* DIVIDER */
.divider { height: 1.5px; background: linear-gradient(90deg, transparent, var(--cream-3), transparent); margin: 0 5%; }

/* TAG */
.tag { display: inline-block; background: var(--green-light); color: var(--green); border-radius: 50px; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-berry { background: var(--berry-light); color: var(--berry); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  min-height: 38vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5% 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { background: rgba(255,255,255,0.2); color: var(--white); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: rgba(255,255,255,0.82); }

/* FAQ */
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: 0 2px 12px rgba(45,106,79,0.08); overflow: hidden; margin-bottom: 0.75rem; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: 0 4px 20px rgba(45,106,79,0.14); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); text-align: left; gap: 1rem; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--green-light); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--text-2); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* VIDEO */
.video-wrapper { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* FORM */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.82rem; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.07em; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--cream); border: 2px solid var(--cream-3); border-radius: var(--radius-sm); color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
footer { background: var(--green); color: var(--white); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--white); }
.footer-brand span { color: #A8D5B5; }
.footer-tagline { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 240px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: background var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,0.25); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes float   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin    { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes blob    { 0%,100%{border-radius:40% 60% 55% 45%/45% 40% 60% 55%} 50%{border-radius:55% 45% 40% 60%/60% 55% 45% 40%} }

.animate-fadeup { animation: fadeUp 0.8s ease forwards; }
.animate-fadein { animation: fadeIn 1s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
