/* Layout & base */
:root {
  --terracotta: #9B8B6F;
  --sage-green: #7A9B7F;
  --cream: #F5F0E8;
  --dark-text: #2C2C2C;
  --light-text: #5A5A5A;
  --soft-beige: #E8DFD5;
  --dark-green: #6B8B7A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--dark-text);
  background-color: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-text);
  line-height: 1.2;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage-green);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Header */
.header-nav {
  background-color: var(--cream);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta);
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-family: Georgia, serif;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--terracotta);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .logo {
    font-size: 1.3rem;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--soft-beige) 100%);
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--dark-green);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--sage-green);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--sage-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 155, 127, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--sage-green);
  border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
  background-color: var(--sage-green);
  color: white;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(107, 139, 122, 0.2);
  transition: transform 0.3s ease;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* About */
.about {
  background: linear-gradient(to bottom, var(--cream), var(--soft-beige));
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 30px;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding: 0 20px;
}

.about-intro {
  font-size: 1.3rem;
  color: var(--sage-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--light-text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: var(--dark-green);
  border-radius: 10px;
  color: white;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(107, 139, 122, 0.15);
}

.highlight-icon {
  font-size: 1.5rem;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-green) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: white;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text {
    padding: 0 16px;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-highlights {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .about-text {
    padding: 0 24px;
  }
}

/* Services */
.services {
  background: linear-gradient(to bottom, var(--soft-beige), var(--cream));
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  border-top: 4px solid var(--sage-green);
  box-shadow: 0 5px 20px rgba(122, 155, 127, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(107, 139, 122, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-title {
  font-size: 1.5rem;
  color: var(--dark-green);
  margin-bottom: 15px;
  text-align: center;
}

.service-description {
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: center;
}

.service-details {
  list-style: none;
  padding: 0;
}

.service-details li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--dark-text);
  font-size: 0.95rem;
}

.service-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-green);
  font-weight: bold;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px 20px;
  }
}

/* Contact */
.contact {
  background: linear-gradient(to bottom, var(--cream), var(--soft-beige));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item h3 {
  color: var(--dark-green);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.info-item p,
.info-item a {
  color: var(--light-text);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background-color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 10px;
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-section h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Decorative Leaves */
.leaf {
  position: absolute;
  color: var(--sage-green);
  opacity: 0.5;
  font-size: 2rem;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.leaf.leaf-1 {
  top: 10%;
  left: 5%;
  font-size: 2.5rem;
  animation-delay: 0s;
  transform: rotate(-25deg);
}

.leaf.leaf-2 {
  top: 25%;
  right: 8%;
  font-size: 1.8rem;
  animation-delay: 1s;
  transform: rotate(35deg);
}

.leaf.leaf-3 {
  top: 50%;
  left: 3%;
  font-size: 2rem;
  animation-delay: 2s;
  transform: rotate(-45deg);
}

.leaf.leaf-4 {
  top: 65%;
  right: 5%;
  font-size: 2.3rem;
  animation-delay: 1.5s;
  transform: rotate(20deg);
}

.leaf.leaf-5 {
  bottom: 15%;
  left: 7%;
  font-size: 1.9rem;
  animation-delay: 3s;
  transform: rotate(-10deg);
}

.leaf.leaf-6 {
  bottom: 25%;
  right: 6%;
  font-size: 2.2rem;
  animation-delay: 2.5s;
  transform: rotate(45deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Position leaves within sections */
section {
  position: relative;
  overflow: hidden;
}
