.hero-section { display: flex; align-items: center; justify-content: center; padding: 80px 20px 40px; }
@media (max-width: 767px) { .hero-section { padding: 60px 20px 30px; } }

.hero-wrapper { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1000px; width: 100%; align-items: stretch; }
@media (min-width: 768px) { .hero-wrapper { grid-template-columns: 1fr 1fr; gap: 60px; } }

.hero-image-col { display: flex; justify-content: center; }
.hero-image-container { width: 100%; max-width: 400px; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(232,101,74,0.15), rgba(74, 124, 219, 0.15)); display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.hero-image-placeholder svg { width: 50%; height: 50%; color: var(--text-secondary); opacity: 0.3; }

.hero-content-col { text-align: center; display: flex; flex-direction: column; justify-content: center; height: 100%; padding-bottom: 0; }
.hero-title { font-family: 'Fleur De Leah', cursive; font-weight: 400; font-size: 96px; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; letter-spacing: 2px; }
@media (max-width: 480px) { .hero-title { font-size: 64px; letter-spacing: 1px; } }

.hero-subtitle { font-size: 24px; color: var(--text-secondary); margin-bottom: 24px; font-weight: 400; font-style: italic; }
@media (max-width: 480px) { .hero-subtitle { font-size: 20px; margin-bottom: 16px; } }

.hero-cta { display: inline-block; padding: 18px 40px; font-size: 18px; border-radius: var(--radius-sm); text-decoration: none; box-shadow: 0 8px 24px rgba(232, 101, 74, 0.3); transition: transform 0.2s, box-shadow 0.2s; margin-top: auto; align-self: center; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232, 101, 74, 0.4); }
.hero-cta:active { transform: scale(0.98); }