/* ==========================================================================
   Company Detail Page
   ========================================================================== */

/* Tighter section spacing on company page */
.page-company .section {
    padding-bottom: var(--space-2xl);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--ink-3);
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--rust); }
.breadcrumbs .sep { color: var(--concrete); }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* --- Company Top Section (header + overview combined) --- */
.company-top-section {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-xl);
}
.company-header {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Row A: Identity */
.company-header__identity {
    display: flex;
    align-items: center;
    gap: 16px;
}
.company-header__logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}
.company-header__title {
    flex: 1;
    min-width: 0;
}
.company-header__name {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--ink);
}
.company-header__legal {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 2px;
}
.company-header__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--concrete);
    background: none;
    color: var(--ink);
    text-decoration: none;
    transition: all var(--dur-fast);
    white-space: nowrap;
}
.btn--outline-dark:hover {
    border-color: var(--rust);
    color: var(--rust);
}

/* Row B: Badges */
.company-header__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--concrete);
}
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ui);
    font-size: 13px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--concrete);
    background: var(--paper);
}
.header-badge--google .icon { color: #F59E0B; }
.header-badge__val {
    font-weight: 600;
    color: var(--ink);
}
.header-badge__label {
    font-weight: 400;
    color: var(--ink-3);
}
.header-badge--score .header-badge__val {
    color: var(--rust);
}

/* Row C: Facts strip */
.company-header__facts {
    display: flex;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid var(--concrete);
}
.header-fact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 16px;
    border-right: 1px solid var(--concrete);
}
.header-fact:first-child { padding-left: 0; }
.header-fact:last-child { border-right: none; }
.header-fact__label {
    font-size: 10px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.header-fact__value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}
.header-fact__value--accent { color: var(--rust); }

/* --- Section titles --- */
.section-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--rust);
    display: inline-block;
}
.section-title--light {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, .3);
}
/* Unused but kept for compatibility */

/* --- Overview row (score + about, below header card) --- */
.overview-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

/* Score card */
.score-card {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
}
.score-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--concrete);
}
.score-card__total {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.score-card__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--rust);
    line-height: 1;
}
.score-card__max {
    font-size: 18px;
    font-weight: 400;
    color: var(--ink-3);
}
.score-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-3);
}
.score-card__bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Score progress bars (base) */
.score-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.score-row__label {
    font-size: 12px;
    color: var(--ink-3);
    width: 100px;
    flex-shrink: 0;
}
.score-bar {
    flex: 1;
    height: 6px;
    background: var(--paper-3);
    border-radius: 10px;
    overflow: hidden;
}
.score-bar__fill {
    height: 100%;
    width: var(--w);
    border-radius: 10px;
    background: var(--ochre);
    transition: width .4s ease;
}
.score-row__val {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}
/* Large variant for company page */
.score-row--lg .score-row__label { font-size: 13px; width: 120px; }
.score-row--lg .score-bar { height: 7px; }
.score-row--lg .score-row__val { font-size: 13px; font-weight: 600; }

/* About card */
.about-card {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    padding: 24px;
}
.about-card__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}
.about-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-2);
}

/* Company map card */
.company-map-card {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.company-map-card--wide {
    margin-bottom: 16px;
    border-radius: var(--radius-lg);
}
/* Map marker states */
.custom-marker--active { z-index: 1000 !important; transition: transform .2s; }
.custom-marker--dimmed { opacity: 0.3; transition: opacity .3s; }
.custom-marker { transition: opacity .3s; }
.company-map-card__canvas {
    flex: 1;
    min-height: 300px;
}
.company-map-card--wide .company-map-card__canvas {
    min-height: 280px;
}

/* --- Details grid (services + sizes) --- */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.detail-block__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rust);
    display: inline-block;
}

/* Service chips */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--paper);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    transition: all var(--dur-fast);
}
.service-chip:hover {
    border-color: var(--rust);
}
.service-chip__icon {
    color: var(--rust);
    flex-shrink: 0;
    display: flex;
}

/* Size chips */
.sizes-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.size-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--paper);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}
.size-chip .icon { color: var(--rust); }
.size-chip__m2 {
    font-size: 11px;
    color: var(--ink-3);
}

/* Security chips */
.security-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.security-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
}
.security-chip .icon { color: var(--rust); }

/* --- Locations grid --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 14px;
}
.location-card {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--dur-fast);
}
.location-card:hover {
    border-color: var(--rust);
    box-shadow: 0 4px 16px rgba(191,78,32,.1);
}
.location-card__header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.location-card__icon {
    color: var(--rust);
    flex-shrink: 0;
    margin-top: 2px;
}
.location-card__name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    text-transform: none;
}
.location-card__addr {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 2px;
}
.location-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.location-card__city {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--concrete);
    color: var(--ink-2);
}
.location-card__district {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--rust-light);
    color: var(--rust);
}
.location-card__phone {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ink-3);
}
.location-card__phone:hover { color: var(--rust); }
.location-card__types {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.location-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--concrete);
}

/* --- Rental steps (light) --- */
.rental-steps-light {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.step {
    text-align: center;
    max-width: 260px;
    padding: 0 20px;
}
.step__num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--rust);
    line-height: 1;
    margin-bottom: 16px;
}
.step__icon {
    color: var(--ink-3);
    margin-bottom: 12px;
}
.step__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    text-transform: none;
}
.step__desc {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.6;
}
.step--connector {
    width: 60px;
    height: 2px;
    background: var(--concrete);
    margin-top: 50px;
    flex-shrink: 0;
}

/* --- Reviews --- */
.reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}
.reviews-header .section-title {
    margin-bottom: 0;
}
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
}
.reviews-summary__stars {
    display: inline-flex;
    gap: 2px;
}
.star--active { color: #F59E0B; }
.star--empty { color: var(--concrete); }
.reviews-summary__rating {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}
.reviews-summary__count {
    font-size: 13px;
    color: var(--ink-3);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
}
.review-card {
    background: var(--paper);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--dur-fast);
}
.review-card:hover {
    border-color: rgba(191,78,32,.25);
}
.review-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-card__avatar span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}
.review-card__author {
    flex: 1;
    min-width: 0;
}
.review-card__author strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-card__date {
    font-size: 11px;
    color: var(--ink-3);
}
.review-card__stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}
.review-card__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--ink-3);
    margin-top: -4px;
}
.review-card__text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--ink-2);
}
.review-card__photos {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-top: 4px;
}
.review-card__photo {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm, 4px);
    flex-shrink: 0;
}

/* Location filter tabs */
.reviews-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-lg);
}
.reviews-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-2);
    background: var(--paper);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--dur-fast);
}
.reviews-filter__btn:hover {
    border-color: var(--rust);
    color: var(--rust);
}
.reviews-filter__btn.is-active {
    background: var(--rust);
    border-color: var(--rust);
    color: var(--white);
}
.reviews-filter__count {
    font-size: 10px;
    font-weight: 700;
    opacity: .7;
}

/* --- Similar companies grid --- */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.similar-card {
    background: var(--white);
    border: 1px solid var(--concrete);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--dur-mid) var(--ease-smooth),
                box-shadow var(--dur-mid) var(--ease-smooth);
}
.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.similar-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--concrete);
}
.similar-card__info { flex: 1; min-width: 0; }
.similar-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none;
}
.similar-card__meta {
    font-size: 12px;
    color: var(--ink-3);
}
.similar-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
}
.similar-card__price {
    font-size: 13px;
    font-weight: 600;
    color: var(--rust);
}
.btn--sm {
    font-size: 12px;
    padding: 6px 12px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .overview-row { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .company-map-card__canvas { min-height: 240px; }
}
@media (max-width: 768px) {
    .company-header {
        padding: 20px;
        gap: 16px;
    }
    .company-header__identity {
        flex-wrap: wrap;
    }
    .company-header__actions {
        width: 100%;
        justify-content: flex-start;
    }
    .company-header__facts {
        flex-wrap: wrap;
        gap: 12px;
    }
    .header-fact {
        flex: 0 0 calc(50% - 8px);
        border-right: none;
        padding: 0;
    }
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .step--connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    .similar-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Units, prices and amenities — the self-storage comparison block
   ========================================================================== */
.units-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.units-table-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.units-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-base);
}
.units-table th {
    text-align: left;
    font-size: var(--text-2xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-4);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}
.units-table td {
    padding: 0.75rem var(--space-md);
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.units-table tr:last-child td { border-bottom: none; }
.units-table__num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.units-table__label {
    display: block;
    font-weight: var(--fw-semibold);
    color: var(--ink);
}
.units-table__note {
    display: block;
    font-size: var(--text-xs);
    color: var(--ink-4);
    margin-top: 2px;
}
.units-table__price {
    font-weight: var(--fw-bold);
    color: var(--ochre);
}

.units-fallback,
.units-term {
    margin: var(--space-md) 0 0;
    font-size: var(--text-sm);
    color: var(--ink-3);
}
.units-fallback strong,
.units-term strong { color: var(--ink); }

/* Amenities */
.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.625rem 0.875rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--ink-2);
}
.amenity-item__icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: var(--ochre-light);
    color: var(--ochre);
    flex-shrink: 0;
}

.promo-box {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--ochre-light);
    border: 1px solid var(--ochre-mid);
    border-radius: var(--radius-md);
}
.promo-box__label {
    display: block;
    font-size: var(--text-2xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 3px;
}
.promo-box__text {
    font-size: var(--text-base);
    color: var(--ink);
    font-weight: var(--fw-medium);
}

@media (max-width: 860px) {
    .units-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Rebuilt sections — score facets, the merged offer block, table terms
   ========================================================================== */

/* The description is what a visitor reads; the score is a glance. Weight the
   columns accordingly instead of splitting the row down the middle. */
.overview-row {
    grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
    align-items: start;
}

.score-card { margin-bottom: 0; }

.score-facets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.score-facet {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.score-facet__label {
    font-size: var(--text-sm);
    color: var(--ink-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.score-facet__value {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

/* These scores cluster between 7 and 8, so a bar that starts at zero leaves
   every row looking identical. Anchoring the track at 5 spreads the range
   that actually varies across the full width. */
.score-facet__bar {
    display: block;
    width: 84px;
    height: 6px;
    background: var(--paper-3);
    border-radius: 3px;
    overflow: hidden;
}

.score-facet__fill {
    display: block;
    width: var(--w, 0%);
    height: 100%;
    background: var(--ochre);
    border-radius: 3px;
}

.score-facet__num {
    min-width: 2.1em;
    text-align: right;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

/* --- Offer: services, sizes and security under one heading --- */
.offer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    align-items: start;
}

.offer__label {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-2xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    font-size: var(--text-sm);
    color: var(--ink-2);
    background: var(--white);
    border: 1px solid var(--line-2);
    border-radius: 100px;
}

.tag__icon {
    display: flex;
    color: var(--ochre);
}

.tag__meta {
    padding-left: 7px;
    margin-left: 1px;
    border-left: 1px solid var(--line-2);
    font-size: var(--text-xs);
    font-variant-numeric: tabular-nums;
    color: var(--ink-4);
}

/* --- Units table --- */

/* With no name column the area carries the row, so it leads rather than
   sitting right-aligned against an empty gutter. */
.units-table__area {
    font-weight: var(--fw-semibold);
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

.units-table__area .units-table__note {
    display: block;
    margin-top: 2px;
    font-size: var(--text-xs);
    font-weight: var(--fw-regular);
    color: var(--ink-4);
}

.units-terms {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-xl);
    margin: var(--space-md) 0 0;
}

.units-terms__row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.units-terms dt {
    font-size: var(--text-sm);
    color: var(--ink-3);
}

.units-terms dd {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--ink);
}

@media (max-width: 980px) {
    .overview-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .offer__grid { gap: var(--space-lg); }
    .score-facet__bar { width: 52px; }
}

/* Areas shown as chips when there is no price column to compare against */
.tag-list--areas { gap: 10px; }

.tag--area {
    padding: 9px 15px;
    font-variant-numeric: tabular-nums;
    font-weight: var(--fw-medium);
    color: var(--ink);
}

/* --- Reviews: paged, because one company has close to a thousand --- */
.review-card--hidden { display: none; }

.reviews-more {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
}

.reviews-more__left {
    margin-left: 6px;
    font-variant-numeric: tabular-nums;
    color: var(--ink-4);
}
