/* ————————— Hero ————————— */
.hero {
    position: relative;
    height: 82vh;
    min-height: 500px;
    background: url('https://assets.goodwinsranch.com/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: relative;
    color: #fff;
    margin: 0 1rem;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
}

.btn-primary {
    background: var(--clr‑accent);
    color: #fff;
    padding: .9rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.btn-primary:hover {
    background: var(--clr‑accent‑dark);
}


/* ————————— About ————————— */
.about {
    max-width: 1400px;
    margin: 5rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    padding: 0 1.4rem;
    align-items: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--clr‑accent);
    margin-bottom: 1rem;
}

.about p {
    color: var(--clr‑text‑muted);
    margin-bottom: 1.2rem;
}


.about img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--clr‑text‑muted);
}