/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FFFDD0;
  color: #3a2f1d;
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: #A0522D; text-decoration: none; transition: color .25s ease; }
a:hover { color: #E8A317; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Georgia, 'Times New Roman', serif;
  color: #A0522D;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; }
.section--alt { background: #f7f3c4; }
.section--olive { background: #6B8E23; color: #FFFDD0; }
.section--olive h2, .section--olive h3, .section--olive h4 { color: #FFFDD0; }
.section--olive a { color: #E8A317; }
.section-divider {
  height: 2px;
  background: #A0522D;
  border: 0;
  margin: 0;
  position: relative;
}
.section-divider::before, .section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #E8A317;
  border: 2px solid #A0522D;
  transform: translateY(-50%) rotate(45deg);
}
.section-divider::before { left: 10%; }
.section-divider::after { right: 10%; }
.section-title { text-align: center; margin-bottom: 3rem; position: relative; }
.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #E8A317;
  margin: 14px auto 0;
  border-radius: 2px;
}
.text-center { text-align: center; }

/* ===== Header & Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #FFFDD0;
  border-bottom: 3px solid #A0522D;
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 18px rgba(160, 82, 45, 0.28);
  background: rgba(255, 253, 208, 0.96);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Poppins', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #A0522D;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: #E8A317;
  color: #FFFDD0;
  border: 2px solid #A0522D;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo span { color: #6B8E23; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #3a2f1d;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  transition: color .25s ease, background .25s ease;
}
.nav-links a:hover { color: #A0522D; background: rgba(232, 163, 23, 0.15); }
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #A0522D;
  background: rgba(232, 163, 23, 0.22);
}
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: #A0522D;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid #A0522D;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #A0522D;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ===== Hero with floating card ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    linear-gradient(135deg, rgba(107, 142, 35, 0.82), rgba(160, 82, 45, 0.78)),
    radial-gradient(circle at 30% 20%, rgba(232,163,23,0.4), transparent 60%),
    #6B8E23;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,253,208,0.04) 0 14px, transparent 14px 28px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-card {
  background: #FFFDD0;
  border: 3px solid #A0522D;
  border-radius: 12px;
  padding: 44px 40px;
  max-width: 540px;
  box-shadow: 0 24px 60px rgba(58, 47, 29, 0.45);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 2px dashed #E8A317;
  border-radius: 8px;
  pointer-events: none;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card .eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B8E23;
  background: rgba(232, 163, 23, 0.18);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-card h1 { color: #A0522D; margin-bottom: 16px; }
.hero-card p { color: #5a4a33; font-size: 1.05rem; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Buttons (ghost/outline, fill on hover) ===== */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2.5px solid #A0522D;
  border-radius: 8px;
  background: transparent;
  color: #A0522D;
  cursor: pointer;
  text-align: center;
  transition: background .3s ease, color .3s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #A0522D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn span, .btn { position: relative; }
.btn:hover::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible {
  color: #FFFDD0;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(160, 82, 45, 0.4);
}
.btn--mustard { border-color: #E8A317; color: #E8A317; }
.btn--mustard::before { background: #E8A317; }
.btn--mustard:hover { color: #3a2f1d; box-shadow: 0 10px 24px rgba(232, 163, 23, 0.45); }
.btn--olive { border-color: #6B8E23; color: #6B8E23; }
.btn--olive::before { background: #6B8E23; }
.btn--olive:hover { color: #FFFDD0; box-shadow: 0 10px 24px rgba(107, 142, 35, 0.4); }
.btn--solid { background: #A0522D; color: #FFFDD0; }
.btn--solid::before { background: #E8A317; }
.btn--solid:hover { color: #3a2f1d; border-color: #E8A317; }
.btn--light { border-color: #FFFDD0; color: #FFFDD0; }
.btn--light::before { background: #FFFDD0; }
.btn--light:hover { color: #A0522D; }

/* ===== Content grids & cards ===== */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #FFFDD0;
  border: 2px solid #A0522D;
  border-radius: 10px;
  padding: 32px 26px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 4px 4px 0 rgba(160, 82, 45, 0.15);
}
.card::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1.5px solid rgba(232, 163, 23, 0.5);
  border-radius: 6px;
  pointer-events: none;
}
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(160, 82, 45, 0.3);
}
.card-icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8A317;
  border: 2px solid #A0522D;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; color: #A0522D; }
.card p { color: #5a4a33; margin-bottom: 16px; }
.card .card-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B8E23;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s ease, color .25s ease;
}
.card .card-link:hover { color: #A0522D; border-bottom-color: #A0522D; }

/* ===== Feature / split row ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #A0522D;
  box-shadow: 8px 8px 0 rgba(232, 163, 23, 0.4);
}
.split-text h2 { margin-bottom: 18px; }
.split-text .lead { font-size: 1.1rem; color: #5a4a33; margin-bottom: 20px; }
.checklist { display: grid; gap: 12px; margin: 20px 0 28px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #5a4a33;
}
.checklist li::before {
  content: '✦';
  color: #E8A317;
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink