:root {
  /* Premium Nature Color Palette */
  --color-primary: #2d5a50;
  /* Deep moss green */
  --color-primary-light: #4a7c70;
  --color-secondary: #d4a373;
  /* Warm sand/earth */
  --color-accent: #e9edc9;
  /* Soft light green */
  --primary-color: #4a7c70;
  /* Deep Moss Green - Calming, nature-related */
  --secondary-color: #d4a373;
  /* Warm Sand - Grounded, comforting */
  --accent-color: #e9edc9;
  /* Soft Cream - Fresh, light */
  --text-color: #2c3e50;
  /* Dark Slate - Readable, professional */
  --background-color: #fcfcfc;
  /* Off-white - Warm, not sterile */
  --light-bg: #f7f9f8;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background-color: #3a6359;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: #bfa07a;
}

.section-padding {
  padding: 80px 0;
}

/* Header/Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(254, 250, 224, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(74, 124, 112, 0.05) 0%, rgba(212, 163, 115, 0.1) 100%);
  border-radius: 0 0 50px 50px;
  min-height: 100vh;
  /* Keep original min-height */
  padding-top: 80px;
  /* Keep original padding-top */
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.image-card {
  width: 100%;
  height: 500px;
  background-color: var(--accent-color);
  /* Placeholder for image */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.image-card::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  z-index: -1;
}

/* Services */
.services {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header span {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 50%;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* About */
.about {
  background-color: var(--color-bg-light);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

.about-image {
  flex: 1;
  height: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a50 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.contact h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #1a3c35;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    border-radius: 0 0 30px 30px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .about-flex {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image {
    order: -1;
    width: 100%;
    height: 300px;
  }

  .nav-links {
    display: none;
    /* Keep hidden for now on mobile as per simple landing page needs, or stack them */
  }

  .nav-links {
    display: none;
    /* In a real app we'd add a burger menu */
  }
}