.hero { min-height: calc(100vh - 80px); padding: 2rem 2.5rem 3.75rem; background-color: #f5f0e8; display: flex; align-items: center; overflow: hidden; box-sizing: border-box; } .hero-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 60px; width: 100%; overflow: visible; box-sizing: border-box; } .hero-content { flex: 0 0 45%; max-width: 700px; box-sizing: border-box; } .hero-title { font-family: 'Cormorant Garamond', serif; font-size: 90px; font-weight: 500; line-height: 1.1; color: #2d2d2d; margin-bottom: 45px; letter-spacing: -2px; } .hero-title .highlight { color: #4a7c59; font-style: italic; position: relative; display: inline-block; } .hero-title .highlight::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 3px; background-color: #2d2d2d; border-radius: 2px; } .hero-description { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 400; line-height: 1.8; color: #5a5a5a; margin-bottom: 15px; max-width: 650px; } .hero-disclaimer { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; line-height: 1.6; color: #7a7a7a; font-style: italic; margin-bottom: 40px; max-width: 650px; } .hero-buttons { display: flex; align-items: center; gap: 30px; } .btn-primary { background-color: #4a7c59; color: white; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; padding: 0.875rem 2.5rem; border-radius: 2rem; transition: all 0.3s ease; display: inline-block; } .btn-primary:hover { background-color: #3d6849; transform: translateY(-2px); } .btn-secondary { display: flex; align-items: center; gap: 16px; font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 500; color: #2d2d2d; transition: all 0.3s ease; } .btn-secondary:hover { color: #4a7c59; } .btn-icon { width: 50px; height: 50px; border: 1.5px solid #c5c5c5; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s ease; } .btn-secondary:hover .btn-icon { border-color: #4a7c59; } .hero-images { flex: 0 0 45%; max-width: 650px; width: 100%; overflow: visible; box-sizing: border-box; } .image-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 28px; width: 100%; } .image-item { overflow: hidden; position: relative; width: 100%; } .image-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; display: block; } .image-item:hover img { transform: scale(1.05); } .image-1 { border-radius: 0 0 0 110px; height: 300px; border: 2px dashed #c5b89a; padding: 12px; background: transparent; } .image-1 img { border-radius: 0 0 0 105px; } .image-2 { border-radius: 110px 0 0 0; height: 300px; } .image-3 { border-radius: 0 110px 0 0; height: 320px; } .image-4 { border-radius: 0 0 110px 0; height: 320px; border: 2px dashed #c5b89a; padding: 12px; background: transparent; } .image-4 img { border-radius: 0 0 105px 0; }