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

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #2d5016;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  color: #f8c471;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 22px;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #c9df8a;
}

/* Home hero */
.hero {
  background: linear-gradient(rgba(45,80,22,0.9), rgba(45,80,22,0.9)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><rect width='120' height='120' fill='%233e7210' fill-opacity='0.2'/><path d='M0 0L120 120' stroke='%232d5016' stroke-width='2'/><path d='M120 0L0 120' stroke='%232d5016' stroke-width='2'/></svg>");
  background-size: cover;
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.btn-primary {
  background: #f8c471;
  color: #2d5016;
}

.btn-primary:hover {
  background: #f5b757;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: #2d5016;
  color: white;
}

.btn-dark:hover {
  background: #3e7210;
  transform: translateY(-2px);
}

/* Home sections */
.section-block {
  padding: 60px 0;
}

.section-block.alt {
  background: #f1f7e9;
}

.section-title {
  text-align: left;
  margin: 10px 0 25px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #2d5016;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #f8c471;
  margin-top: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border-top: 4px solid #f8c471;
}

.grid-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2d5016;
  margin-bottom: 10px;
}

.grid-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.grid-card a {
  font-weight: 600;
  color: #4a7c1b;
  text-decoration: none;
  font-size: 14px;
}

.grid-card a:hover {
  text-decoration: underline;
}

/* Inner page hero */
.page-hero {
  background: #f1f7e9;
  padding: 50px 0 30px;
  border-bottom: 1px solid #dbe7c7;
}

.page-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6c8c3c;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #2d5016;
}

/* Inner page content */
.page-section {
  padding: 40px 0 70px;
}

.page-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 25px 0 10px;
  color: #2d5016;
}

.page-section p {
  margin-bottom: 14px;
  color: #444;
}

.page-section ul {
  margin: 0 0 16px 20px;
}

.page-section li {
  margin-bottom: 6px;
}

/* Pill list */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 20px;
  list-style: none;
  padding-left: 0;
}

.pill-list li {
  background: #f1f7e9;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: #2d5016;
  border: 1px solid #d1e1b5;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(0,1.4fr);
  gap: 32px;
}

.callout-box {
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 4px solid #f8c471;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* Footer */
footer {
  background: #1a2f0d;
  color: white;
  padding: 60px 0 30px;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #f8c471;
}

.footer-column p {
  color: #e9ecef;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #e9ecef;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #f8c471;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2d5016;
  color: #a0b779;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  .main-nav ul {
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .main-nav ul li {
    margin: 6px 10px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 17px;
  }
}
