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

:root {
  --green: #2a6e2a;
  --green-light: #eef6ee;
  --green-dark: #1d4d1d;
  --white: #ffffff;
  --off-white: #f9f9f7;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #dde8dd;
}

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--green-dark);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.3;
}

.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
  color: #b8d4b8;
  font-family: Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

nav ul li a {
  display: block;
  padding: 20px 16px;
  color: #c8e0c8;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
}

nav ul li a.active {
  border-bottom: 3px solid rgba(255,255,255,0.4);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #3a8a3a 100%);
  color: var(--white);
  padding: 90px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span {
  color: #7dca7d;
}

.hero p {
  font-size: 1.15rem;
  color: #c8e0c8;
  margin-bottom: 36px;
  font-family: Arial, sans-serif;
}

.btn {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.btn:hover {
  background: #122e12;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  margin-left: 12px;
}

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

/* SECTIONS */
section {
  padding: 70px 40px;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

p {
  color: var(--text-muted);
  font-family: Arial, sans-serif;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.divider {
  width: 50px;
  height: 3px;
  background: var(--green);
  margin-bottom: 30px;
}

/* INTRO STRIP */
.intro-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.intro-item {
  text-align: center;
}

.intro-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-item h3 {
  text-align: center;
  margin-bottom: 8px;
}

.intro-item p {
  text-align: center;
  font-size: 0.92rem;
}

/* ABOUT PREVIEW */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-placeholder {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHO WE SERVE */
.serve-section {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.serve-section h2 {
  color: var(--white);
}

.serve-section .section-label {
  color: #a8cca8;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.serve-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
}

.serve-card .icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.serve-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
}

/* DELIVERY AREA */
.delivery-section {
  background: var(--off-white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.area-list {
  list-style: none;
  margin-top: 16px;
}

.area-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: bold;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.contact-detail h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-detail p {
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--green);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--green-dark);
}

form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}

form h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: bold;
}

input, textarea, select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
}

textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--green-dark);
}

/* FOOTER */
footer {
  background: #111f11;
  color: #a8cca8;
  padding: 40px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

footer strong {
  color: var(--white);
}

footer a {
  color: #a8cca8;
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}

footer .footer-links {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 60px 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  color: #c8e0c8;
  max-width: 500px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
    flex-wrap: wrap;
  }

  nav ul {
    gap: 0;
  }

  nav ul li a {
    padding: 16px 10px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 50px 20px;
  }

  .intro-grid,
  .serve-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .delivery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-placeholder {
    height: 200px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .intro-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }
}
