: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;
  }
}
