/* ===== HUB HERO ===== */

.calc-tone {
    background: #F0F3EE;
    border-top: 1px solid #e4e8e0;
    border-bottom: 1px solid #e4e8e0;
}

.hub-hero {
    min-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.55) 100%),
                url('images/hub_hero.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 90px 20px 50px;
}

.hub-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    max-width: 750px;
    line-height: 1.25;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hub-hero p {
    font-size: 1rem;
    color: rgba(249,249,249,0.9);
    max-width: 520px;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ===== PRODUCT GRID ===== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.product-card-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img-wrap img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(249,249,249,0.92);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.product-card-body {
    padding: 28px 26px 32px;
}

.product-card-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.product-card-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.product-card-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--logo-gray);
    white-space: nowrap;
}

.product-card-stat svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--logo-green);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.product-card-price {
    font-weight: 700;
    font-size: 1.05rem;
}

.product-card-price span {
    display: block;
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.product-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--logo-green);
}

.product-card:hover .product-card-cta {
    text-decoration: underline;
}

.map-wrapper-portrait {
    max-width: 420px;
    height: 280px !important;
}

.about-hub-location {
    max-width: 420px;
}

@media (max-width: 700px) {
    .hub-hero {
        min-height: 70vh;
        padding: 70px 20px 40px;
    }
}
