/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: hsl(120, 20%, 97%); color: hsl(140, 40%, 8%); }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== COLORS ===== */
:root {
  --green-bright: hsl(130, 75%, 38%);
  --green-vivid: hsl(120, 80%, 42%);
  --green-deep: hsl(140, 50%, 14%);
  --green-medium: hsl(135, 40%, 25%);
  --green-pale: hsl(120, 30%, 92%);
  --cream: hsl(80, 30%, 96%);
  --white: #fff;
  --muted: hsl(140, 10%, 45%);
  --border: hsl(120, 15%, 88%);
  --shadow-luxury: 0 4px 30px hsla(140, 40%, 10%, 0.08);
  --shadow-card: 0 8px 40px hsla(140, 40%, 10%, 0.12);
  --shadow-green: 0 4px 20px hsla(130, 75%, 38%, 0.3);
}

/* ===== UTILITY ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.font-heading { font-family: 'Cormorant Garamond', serif; }
.font-display { font-family: 'Playfair Display', serif; }
.font-body { font-family: 'Lato', sans-serif; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--green-deep);
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-bright);
}
.gold-divider { width: 5rem; height: 2px; margin: 0 auto; background: var(--green-bright); }
.gold-divider-left { width: 5rem; height: 2px; background: var(--green-bright); margin-bottom: 1.5rem; }

/* ===== BUTTONS ===== */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 2rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.75rem; border-radius: 2px; transition: all 0.3s;
  background: hsl(130deg 79.03% 29.99%); color: var(--white); border: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-green:hover { background: var(--green-vivid); box-shadow: var(--shadow-green); }

.btn-outline-green {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 2rem; border: 2px solid var(--green-bright); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; border-radius: 2px;
  transition: all 0.3s; color: var(--green-bright); background: transparent; cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-outline-green:hover { background: var(--green-bright); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(100deg, hsl(130, 75%, 30%), hsl(140, 50%, 14%)); box-shadow: 0 2px 20px rgba(0,0,0,0.3); padding: 0.5rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-size: 0.875rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgb(255 255 255); transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; font-size: 1.75rem; }
.mobile-menu { display: none; background: var(--green-deep); border-top: 1px solid var(--green-medium); padding: 1.5rem 2rem; }
.mobile-menu a { display: block; padding: 0.5rem 0; color: rgba(255,255,255,0.8); font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: block; }
}

/* ===== PAGE BANNER ===== */
.page-banner { padding: 8rem 0 4rem; background: var(--green-deep); text-align: center; }
.page-banner .subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: hsl(130,75%,50%); margin-bottom: 0.75rem; }
.page-banner h1 { font-size: 2.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem; }
.page-banner .breadcrumb { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.page-banner .breadcrumb a:hover { color: var(--white); }
.page-banner .breadcrumb span { color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-desc { color: var(--muted); margin-top: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 0.875rem; line-height: 1.7; }
.bg-cream { background: var(--cream); }

/* ===== FOOTER ===== */
.footer { background: var(--green-deep); padding: 4rem 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.footer .subtitle, .footer .ftsubtitle { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: hsl(130,75%,50%); margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer a:hover { color: var(--white); }
.footer h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.footer .links a { display: block; padding: 0.125rem 0; }
.footer .socials { display: flex; gap: 0.75rem; }
.footer .social-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 2px; border: 1px solid hsla(130,40%,30%,0.5);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  transition: all 0.3s; font-size: 1rem;
}
.footer .social-icon:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; text-align: center; border-top: 1px solid hsla(130,40%,30%,0.3); }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--green-bright); }

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.75rem; }
}

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.input {
  width: 100%; padding: 0.75rem 1rem; background: var(--white); border: 1px solid var(--border);
  border-radius: 2px; font-family: 'Lato', sans-serif; font-size: 0.875rem; color: hsl(140,40%,8%);
  transition: border-color 0.3s;
}
.input:focus { outline: none; border-color: var(--green-bright); }
.input.full, .full { grid-column: 1/-1; }
textarea.input { resize: none; min-height: 9rem; }
select.input { appearance: auto; }
.form-label { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.25rem; }

@media (max-width: 767px) { .form-grid { grid-template-columns: 1fr; } }

/* ===== ANIMATIONS ===== */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }
.fade-up-d1 { animation: fadeUp 0.8s ease-out 0.2s forwards; opacity: 0; }
.fade-up-d2 { animation: fadeUp 0.8s ease-out 0.4s forwards; opacity: 0; }
