:root {
  --primary: #4A7C59;
  --primary-dark: #2D5A3A;
  --primary-light: #7CB590;
  --secondary: #D4A574;
  --accent: #8B6B4A;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --text: #2C3E2D;
  --text-light: #5A6B5C;
  --white: #FFFFFF;
  --border: #E2D8CC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,62,45,0.4), rgba(44,62,45,0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
  padding: 0 24px;
}

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

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-weight: normal;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: normal;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.card-price {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: bold;
}

/* About / split sections */
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: normal;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

/* Values strip */
.values-strip {
  background: var(--primary-dark);
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.value-item h4 {
  margin-bottom: 8px;
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: normal;
}

.value-item p {
  opacity: 0.85;
  font-size: 0.9rem;
}

/* Article */
.article-hero {
  height: 40vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero .hero-overlay {
  background: linear-gradient(to top, rgba(44,62,45,0.85), transparent);
}

.article-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 2.2rem;
  padding: 24px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  font-weight: normal;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 40px 0 14px;
  font-weight: normal;
}

.article-content p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 28px 0;
}

/* Testimonial */
.testimonial {
  background: var(--cream-dark);
  border-left: 4px solid var(--primary);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  margin: 40px 0;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  opacity: 0.8;
  margin-top: 12px;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 16px;
  color: var(--primary-light);
  font-weight: normal;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

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

.footer-contact p {
  opacity: 0.75;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 968px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active {
    display: flex;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
