:root {
    --terracotta: #CB997E;
    --dusty-rose: #DDBEA9;
    --peach-cream: #FFE8D6;
    --soft-apricot: #B7B7A4;
    --sage-fern: #A5A58D;
    --olive-green: #6B705C;
    --cream: #FFF8F0;
    --dark: #2f3328;
    --text: #303126;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 18px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 112, 92, 0.15);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--olive-green);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    list-style: none;
}

.nav-links li {
    display: block;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.hero {
    min-height: auto;
    padding: 20px 7% 20px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(rgba(255, 248, 240, 0.85), rgba(255, 248, 240, 0.85)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.hero-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(107, 112, 92, 0.18);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(47, 51, 40, 0.12);
}

.eyebrow {
    font-family: Arial, sans-serif;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.3rem);
    line-height: 0.98;
    color: var(--olive-green);
    margin-bottom: 22px;
}

.quote {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    color: var(--dark);
    margin-bottom: 28px;
    font-style: italic;
}

.hero-text {
    font-family: Arial, sans-serif;
    font-size: 1.06rem;
    max-width: 620px;
    margin-bottom: 32px;
    color: #4a4d40;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(47, 51, 40, 0.12);
}

.btn-primary {
    background: var(--olive-green);
    color: var(--white);
}

.btn-secondary {
    background: var(--dusty-rose);
    color: var(--dark);
}

.hero-image {
    min-height: 520px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(47, 51, 40, 0.2);
    background: linear-gradient(rgba(107, 112, 92, 0.18), rgba(203, 153, 126, 0.12)), url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1000&q=80") center/cover;
    position: relative;
}

.image-label {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: rgba(255, 248, 240, 0.88);
    border-radius: 22px;
    padding: 22px;
    font-family: Arial, sans-serif;
}

section {
    padding: 90px 7%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--olive-green);
    margin-bottom: 18px;
    line-height: 1.1;
}

.section-subtitle {
    font-family: Arial, sans-serif;
    max-width: 760px;
    color: #565a4a;
    margin-bottom: 38px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border-radius: 26px;
    padding: 28px;
    border: 1px solid rgba(107, 112, 92, 0.12);
    box-shadow: 0 14px 28px rgba(47, 51, 40, 0.08);
    min-height: 230px;
}

.service-card:nth-child(1) {
    background: var(--peach-cream);
}

.service-card:nth-child(2) {
    background: var(--dusty-rose);
}

.service-card:nth-child(3) {
    background: var(--soft-apricot);
}

.service-card:nth-child(4) {
    background: var(--sage-fern);
}

.service-card h3 {
    font-size: 1.45rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-family: Arial, sans-serif;
    color: #45483c;
}

.owner-section {
    background: linear-gradient(135deg, var(--olive-green), var(--sage-fern));
    color: var(--white);
}

.owner-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.owner-photo {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=800&q=80") center/cover;
    border: 8px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.owner-section .section-title,
.owner-section .section-subtitle {
    color: var(--white);
}

.form-section {
    background: var(--peach-cream);
}

.form-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.tab-btn {
    border: 1px solid rgba(107, 112, 92, 0.25);
    background: var(--white);
    color: var(--dark);
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.tab-btn.active {
    background: var(--olive-green);
    color: var(--white);
}

.form-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 16px 35px rgba(47, 51, 40, 0.1);
    max-width: 860px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Arial, sans-serif;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(107, 112, 92, 0.28);
    border-radius: 16px;
    padding: 14px 15px;
    font-size: 1rem;
    background: var(--cream);
    color: var(--dark);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.hidden {
    display: none;
}

footer {
    padding: 36px 7%;
    text-align: center;
    background: var(--dark);
    color: var(--cream);
    font-family: Arial, sans-serif;
}

@media (max-width:900px) {

    .hero,
    .owner-wrap {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 390px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .owner-photo {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width:620px) {
    .navbar {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero {
        padding: 20px 7%;
    }

    .hero-card,
    .form-card {
        padding: 26px;
    }

    .services-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
}