@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-deep:   #0D3B2E;
  --green-mid:    #1A5C42;
  --green-light:  #2E8B5E;
  --gold:         #D4A017;
  --gold-light:   #F0C040;
  --cream:        #FAFAF5;
  --cream-dark:   #F0EEE6;
  --white:        #FFFFFF;
  --text-dark:    #0D1F1A;
  --text-mid:     #3D5247;
  --text-light:   #7A9188;
  --border:       #D8E5DF;
  --shadow:       0 4px 24px rgba(13,59,46,0.10);
  --shadow-lg:    0 8px 48px rgba(13,59,46,0.15);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,59,46,0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold-light); }
.nav-logo .badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  background: var(--gold); color: var(--green-deep);
  padding: 2px 8px; border-radius: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--green-deep) !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: var(--transition); letter-spacing: 0.01em;
}
.btn-primary { background: var(--green-mid); color: var(--white); }
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,92,66,0.35); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,160,23,0.4); }
.btn-outline { background: transparent; color: var(--green-mid); border: 2px solid var(--green-mid); }
.btn-outline:hover { background: var(--green-mid); color: var(--white); }
.btn-white { background: white; color: var(--green-deep); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 8px; }

/* FORMS */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  background: var(--white); color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-light); box-shadow: 0 0 0 4px rgba(46,139,94,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

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

/* FOOTER */
footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.footer-logo span { color: var(--gold-light); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }
.georgia-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,160,23,0.15); color: var(--gold-light); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(212,160,23,0.3); }

/* SECTION HELPERS */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { display: inline-block; background: rgba(46,139,94,0.1); color: var(--green-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 1rem; border: 1px solid rgba(46,139,94,0.2); }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--green-deep); }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 580px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* BADGE */
.badge-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.badge-green { background: rgba(46,139,94,0.12); color: var(--green-light); border: 1px solid rgba(46,139,94,0.25); }
.badge-gold { background: rgba(212,160,23,0.12); color: #A07010; border: 1px solid rgba(212,160,23,0.25); }
.badge-red { background: rgba(220,38,38,0.1); color: #DC2626; border: 1px solid rgba(220,38,38,0.2); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 1.25rem; }
}
