/* ── Variables ── */
:root {
  --forest:      #3c5a14;
  --green:       #4e7018;
  --sage:        #7a9840;
  --sage-light:  #b0c870;
  --cream:       #f7f4e8;
  --cream-dark:  #ece8d8;
  --gold:        #c8920a;
  --gold-light:  #e8cc70;
  --white:       #fdfcf8;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ── Botanical pattern background ── */
.pattern-bg {
  background-color: var(--cream);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-dark  { background: var(--forest); color: #fff; }
.btn-dark:hover  { background: var(--green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,51,40,0.22); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: #fff; }
.btn-gold:hover  { background: #b09558; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,169,107,0.3); }
.btn-white { background: #fff; color: var(--forest); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── Announcement Bar ── */
.announcement {
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.announcement a { color: var(--sage-light); text-decoration: underline; }
.announcement a:hover { color: #fff; }

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,252,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--forest);
  font-weight: 700;
  line-height: 1.15;
}
.logo-name small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--forest); }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Section titles ── */
.section-title {
  font-size: 40px;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.18;
}
.section-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.82;
}

/* ── Divider line ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--forest);
  padding: 72px 60px 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/pattern.svg');
  background-repeat: repeat;
  background-size: 220px 220px;
  opacity: 0.06;
}
.page-header .eyebrow { color: var(--sage-light); position: relative; }
.page-header .eyebrow::before { background: var(--sage-light); }
.page-header h1 {
  font-size: 48px;
  color: #fff;
  position: relative;
  max-width: 600px;
  margin: 0 auto 14px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
}

/* ── Footer ── */
footer {
  background: var(--forest);
  padding: 64px 60px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 270px;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { text-decoration: none; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage-light); }

/* ── Mobile Navigation ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--cream); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  background: rgba(253,252,248,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu-list {
  list-style: none;
  padding: 8px 24px 0;
}
.mobile-menu-list li a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.2s;
  text-align: center;
}
.mobile-menu-list li:last-child a { border-bottom: none; }
.mobile-menu-list li a:hover,
.mobile-menu-list li a.active { color: var(--forest); }
.mobile-menu-cta {
  padding: 16px 24px 24px;
}
.mobile-menu-cta .btn { width: 100%; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  nav { padding: 0 20px; height: 72px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: block; top: 72px; }
  .nav-logo img { height: 56px !important; }
  .logo-name { font-size: 17px; }
  .logo-name small { display: none; }
  .trust-bar { flex-wrap: wrap; justify-content: center; padding: 16px 24px; gap: 12px 24px; }
  .page-header { padding: 56px 24px 52px; }
  .page-header h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 48px 24px 28px; }
}
