@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* CSS Variables - Earth Tones */
:root {
  --sage-green: #8ba888;
  --sage-green-light: #a8c5a5;
  --sage-green-dark: #6b8968;
  --warm-white: #faf8f5;
  --sand: #e8dcc8;
  --sand-light: #f3ebe1;
  --charcoal: #3a3a3a;
  --charcoal-light: #5a5a5a;
  --muted-gold: #c9a961;
  --muted-gold-light: #dbc48a;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

p {
  line-height: 1.7;
  color: var(--charcoal-light);
}

a {
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link:hover {
  opacity: 0.8;
}

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

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-light);
  padding-bottom: 0.25rem;
}

.nav-desktop a:hover {
  color: white;
}

.nav-desktop a.active {
  color: var(--sage-green-dark);
  border-bottom: 2px solid var(--sage-green);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle:hover {
  color: var(--sage-green-dark);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-light);
}

.nav-mobile a:hover {
  color: white;
}

.nav-mobile a.active {
  color: var(--sage-green-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(58, 58, 58, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
  background-color: rgba(243, 235, 225, 0.5);
}

.hero h1 .highlight {
  color: #1D5F1C;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #B68937;
  background-color: #D7D7D0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sage-green);
  color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--sage-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-outline:hover {
  background-color: var(--sand);
  color: var(--charcoal);
}

.btn-white {
  background-color: white;
  color: var(--sage-green-dark);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--sand-light);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 6rem 1.5rem;
}

.section-warm {
  background-color: var(--warm-white);
}

.section-sand {
  background-color: var(--sand-light);
}

.section-sage {
  background-color: var(--sage-green);
  color: white;
}

.section-sage h2 {
  color: white;
}

.section-sage p {
  color: rgba(255, 255, 255, 0.9);
}

.container {
  max-width: 1152px;
  margin: 0 auto;
}

.container-small {
  max-width: 896px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section img:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.15);
}

/* Card Styles */
.card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--sage-green-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--charcoal);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Process Cards */
.process-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.process-icon {
  width: 64px;
  height: 64px;
  background-color: var(--sage-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* List Styles */
.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.list-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--sage-green);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.checkmark {
  color: var(--sage-green);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Highlight Box */
.highlight-box {
  background-color: rgba(168, 197, 165, 0.2);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--sage-green-light);
  margin-top: 3rem;
}

.highlight-box p {
  color: var(--charcoal);
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}

.highlight-box strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--warm-white);
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

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

.footer-logo {
  width: 192px;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  font-size: 0.875rem;
  color: var(--sand);
}

.footer ul a:hover {
  color: var(--sage-green-light);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--sand);
}

/* Responsive */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .logo-text {
    display: inline;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .section h2 {
    font-size: 3rem;
  }
}
