/* Hero: old-site identity + renewed layout
   Used by index_new_rev03.html only.
*/

.hero-brand {
    position: relative;
    overflow: hidden;
    min-height: clamp(500px, 68vh, 700px);
    display: flex;
    align-items: center;
    padding-top: clamp(72px, 10vw, 120px);
    padding-bottom: clamp(72px, 10vw, 120px);
}

.hero-brand::before,
.hero-brand::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-brand::before {
    width: min(38vw, 460px);
    aspect-ratio: 1;
    right: -12%;
    top: -18%;
    background: rgba(238, 188, 145, 0.16);
}

.hero-brand::after {
    width: min(30vw, 350px);
    aspect-ratio: 1;
    left: -10%;
    bottom: -24%;
    background: rgba(137, 174, 145, 0.12);
}

.hero-brand-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 920px);
    margin: 0 auto;
    text-align: center;
}

.hero-brand-icon {
    width: clamp(118px, 15vw, 168px);
    height: clamp(118px, 15vw, 168px);
    margin: 0 auto 26px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(64, 53, 43, 0.10);
}

.hero-brand-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-brand-eyebrow {
    margin: 0 0 12px;
    font-size: clamp(0.76rem, 1.2vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent, #c9784f);
}

.hero-brand-title {
    margin: 0;
    font-size: clamp(2.4rem, 6.5vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.hero-brand-location {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    margin: 20px 0 0;
    font-size: clamp(0.86rem, 1.3vw, 1rem);
    letter-spacing: 0.12em;
    font-weight: 600;
}

.hero-brand-location::before,
.hero-brand-location::after {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.35;
}

.hero-brand-lead {
    margin: 28px auto 0;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.9;
}

.hero-brand-actions {
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 720px) {
    .hero-brand {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 76px;
    }

    .hero-brand-inner {
        width: min(100% - 32px, 560px);
    }

    .hero-brand-icon {
        margin-bottom: 22px;
    }

    .hero-brand-title {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .hero-brand-lead {
        margin-top: 24px;
    }

    .hero-brand-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-brand-actions .button {
        width: 100%;
        justify-content: center;
    }
}
