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

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --green-dark:  #1B3A2D;
  --green-mid:   #2A5240;
  --green-light: #3D7A5C;
  --green-pale:  #EDF4F0;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE1;
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --text-dark:   #1A2A1E;
  --text-mid:    #3D5247;
  --text-light:  #6B8070;
  --white:       #FFFFFF;
  --border:      #D6E4DC;
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo img {
  height: 44px;
  width: auto;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
}
.navbar-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--green-dark); }
.navbar-links a.active { color: var(--green-dark); font-weight: 600; }
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.01em;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary   { background: var(--green-dark); color: var(--white); }
.btn-secondary { background: var(--gold); color: var(--green-dark); }
.btn-outlined  { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green-dark); }
.btn-dark      { background: var(--green-mid); color: var(--white); }
.btn-full      { width: 100%; }

/* ── Section Titles ────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }
.section-underline {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}
.section-underline.center { margin-left: auto; margin-right: auto; }

/* ── Icon Badge ────────────────────────────────────────── */
.icon-badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.icon-badge svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  padding: 56px 48px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 40px;
}
.footer-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 220px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.65); margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col a.active { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0 0; }

/* ── Utilities ─────────────────────────────────────────── */
.rounded-img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.img-hero   { height: 380px; object-fit: cover; }
.img-medium { height: 300px; object-fit: cover; }
.pill-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.pill-tag.green {
  background: rgba(27,58,45,0.1);
  color: var(--green-mid);
}

/* ── Responsive — Tablet (≤1024px) ─────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .navbar-links { gap: 20px; }
  .footer { padding: 48px 24px 28px; }
  .footer-inner { gap: 28px; }
}

/* ── Responsive — Mobile (≤768px) ──────────────────────── */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
    position: sticky;
    top: 0;
  }
  .navbar-logo { order: 1; }
  .navbar > .btn { order: 2; font-size: 12px; padding: 8px 14px; }
  .navbar-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px 18px;
    flex-wrap: wrap;
    padding: 6px 0 4px;
    border-top: 1px solid var(--border);
  }
  .navbar-links a { font-size: 13px; }

  .btn { padding: 10px 18px; font-size: 13px; }

  .section-title { font-size: 22px; }

  .footer { padding: 36px 20px 20px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-tagline { max-width: 100%; }
  .pill-tag { font-size: 10px; }

  .mv-section .mv-card.dark { border: 1px solid var(--border); }

  .icon-badge { width: 38px; height: 38px; }
  .section-underline { margin-bottom: 20px; }
}
