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

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

:root {
  --green:       #1a3d2b;
  --green-mid:   #2d6a4f;
  --green-light: #52b788;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --cream:       #f8f4ec;
  --white:       #ffffff;
  --gray:        #718096;
  --gray-light:  #e2e8f0;
  --red:         #e53e3e;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 100px;
  --shadow:      0 4px 24px rgba(26,61,43,0.10);
  --shadow-lg:   0 12px 48px rgba(26,61,43,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--green);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(248,244,236,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: var(--green) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--green);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(248,244,236,0.3);
}
.btn-outline-light:hover { border-color: var(--cream); }

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--cream); }

.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ── SECTION LABELS & HEADINGS ── */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto 56px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  padding: 36px 32px;
}

.card-dark {
  background: rgba(248,244,236,0.04);
  border: 1px solid rgba(248,244,236,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

/* ── FOOTER ── */
footer {
  background: #0f2218;
  padding: 60px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248,244,236,0.08);
}

.footer-brand .logo-text { font-size: 20px; }
.footer-tagline {
  font-size: 13px;
  color: rgba(248,244,236,0.4);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248,244,236,0.35);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(248,244,236,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(248,244,236,0.25);
}

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 60px; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-cream { color: var(--cream); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.75); }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,61,43,0.98); padding: 16px 24px 24px; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(248,244,236,0.06); font-size: 16px; }
  .nav-cta { border: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .section-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
