:root {
  /* Primary Palette */
  --warm-ivory: #F7F3EE;
  --deep-charcoal: #2B2B2B;
  --muted-gold: #C2A46D;
  
  /* Secondary Palette */
  --sage-green: #A8B2A1;
  --soft-sand: #D9CFC3;
  --terracotta: #B87A5B;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--warm-ivory);
  padding: 80px 5%;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--deep-charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
}

.btn-primary {
  background: var(--deep-charcoal);
  color: white;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--muted-gold);
}

.btn-secondary {
  border: 2px solid var(--deep-charcoal);
  color: var(--deep-charcoal);
  padding: 14px 30px;
  margin-left: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 5%;
  }
  
  .hero-image {
    order: -1;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 16px;
    display: block;
  }
}
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 5%;
  background: white;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--muted-gold);
  margin-bottom: 8px;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.problems {
  padding: 100px 5%;
  background: var(--warm-ivory);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--deep-charcoal);
  margin-bottom: 20px;
}

.section-header p {
  font-family: var(--font-body);
  color: #666;
  line-height: 1.8;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.problem-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--muted-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--muted-gold);
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-charcoal);
  margin-bottom: 12px;
}

.problem-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}
.method {
  padding: 100px 5%;
  background: var(--deep-charcoal);
  color: white;
}

.method .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted-gold);
  margin-bottom: 16px;
}

.method .section-header h2 {
  color: white;
  margin-bottom: 20px;
}

.method .section-header p {
  color: rgba(255,255,255,0.7);
}

.method-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.method-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--muted-gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.method-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.method-step p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.method-connector {
  width: 40px;
  height: 2px;
  background: var(--muted-gold);
  opacity: 0.3;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .method-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .method-connector {
    width: 2px;
    height: 30px;
    margin: 20px 0;
  }
  
  .method-step {
    max-width: 400px;
  }
}
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 5%;
  background: white;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: var(--soft-sand);
  border-radius: 8px;
}

.about-content {
  max-width: 540px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--deep-charcoal);
  margin-bottom: 24px;
}

.about-intro {
  font-size: 1.125rem;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-content p {
  font-family: var(--font-body);
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-credentials {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.credential {
  padding: 10px 20px;
  border: 1px solid var(--soft-sand);
  border-radius: 4px;
  font-size: 0.875rem;
  color: #666;
}

.text-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep-charcoal);
  text-decoration: none;
  border-bottom: 2px solid var(--muted-gold);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .about-preview {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.services-overview {
  padding: 100px 5%;
  background: var(--warm-ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 50px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--muted-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

.service-card p {
  font-family: var(--font-body);
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted-gold);
  font-size: 0.9rem;
}

.service-card.featured {
  background: var(--deep-charcoal);
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.service-card.featured p {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.lead-magnet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 5%;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--soft-sand) 100%);
  align-items: center;
}

.lead-content {
  max-width: 480px;
}

.lead-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
}

.lead-content > p {
  font-family: var(--font-body);
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.lead-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.lead-benefits li {
  font-family: var(--font-body);
  color: #333;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.lead-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--deep-charcoal);
  font-weight: bold;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form input {
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--muted-gold);
}

.form-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 12px;
}

.lead-visual {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .lead-magnet {
    grid-template-columns: 1fr;
  }
  
  .lead-visual {
    order: -1;
  }
}
.testimonials {
  padding: 100px 5%;
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--warm-ivory);
  padding: 40px;
  border-radius: 8px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--deep-charcoal);
}

.author-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}
.final-cta {
  padding: 120px 5%;
  background: var(--deep-charcoal);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
}
.site-footer {
  background: var(--deep-charcoal);
  color: white;
  padding: 80px 5% 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--muted-gold);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted-gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--deep-charcoal);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--muted-gold);
}

.nav-cta {
  background: var(--deep-charcoal);
  color: white !important;
  padding: 12px 24px;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--muted-gold);
  color: white !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}
