html {
    font-size: 100% !important;
}

:root {
    --beige: #DAD7C5;
    --sage: #BCE3C5;
    --earth-yellow: #E1A95E;
    --oakwood: #786C3B;
}

.welcome-wrapper {
    margin: 2rem;
    border-radius: 32px;
    overflow: hidden;
}

.welcome {
    display: flex;
    align-items: stretch;
    background-color: var(--beige);
    min-height: 480px;
}

.welcome-text {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.welcome-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--oakwood);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.welcome-text .subtitle {
    font-size: 1rem;
    color: var(--oakwood);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 360px;
}

.welcome-image {
    flex: 1;
    background-color: #e0ddd5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-outline {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border: 2px solid #786C3B;
    border-radius: 4px;
    color: #786C3B;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    align-self: flex-start;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--oakwood);
    color: #fff;
}

.about {
    display: flex;
    align-items: flex-start;
    padding: 4rem;
    gap: 4rem;
    background-color: #fff;
}

.about-left { flex: 1; }

.about-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #786C3B;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-left .journey-label {
    color: #888;
    font-size: 0.95rem;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.about-right p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.get-in-touch {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--beige);
}

.get-in-touch h2 {
    font-size: 2.2rem;
    color: #786C3B;
    margin-bottom: 1rem;
}

.get-in-touch p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .welcome, .about { flex-direction: column; }
    .welcome-text h1 { font-size: 2rem; }
}
