* { box-sizing: border-box; }
:root {
    --bg: #0f0f0f;
    --bg-soft: #171717;
    --card: #1c1c1c;
    --card-border: rgba(255, 111, 0, .36);
    --orange: #ff6f00;
    --orange-light: #ff971f;
    --text: #f7f7f7;
    --muted: #c9c9c9;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.55;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,111,0,.13), transparent 34%),
        linear-gradient(180deg, #111 0%, var(--bg) 100%);
    color: var(--text);
}
a { color: inherit; }
.site-header {
    min-height: 84px;
    background: rgba(12,12,12,.96);
    border-bottom: 1px solid rgba(255,111,0,.28);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 14px 28px;
    position: sticky;
    top: 0;
    z-index: 20;
}
.page-nav { display: flex; justify-content: center; gap: clamp(16px, 3vw, 42px); flex-wrap: wrap; }
.page-nav a {
    position: relative;
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    padding: 12px 0;
    white-space: nowrap;
}
.page-nav a:hover, .page-nav a.active { color: var(--orange); }
.page-nav a.active::after,
.page-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
}
.header-call {
    margin-left: auto;
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255,111,0,.16), rgba(255,111,0,.04));
}
.header-call:hover { background: var(--orange); }
main { width: min(1440px, 100%); margin: 0 auto; padding: 32px 28px 0; }
.about-hero { text-align: center; max-width: 900px; margin: 0 auto 30px; }
.about-hero h1 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: .06em;
    text-shadow: 0 8px 26px rgba(0,0,0,.42);
}
.title-line { display: block; width: 72px; height: 3px; margin: 10px auto 18px; border-radius: 99px; background: var(--orange); }
.about-hero p { margin: 4px auto; color: #ededed; font-size: clamp(1rem, 2vw, 1.2rem); }
.about-hero p:last-child { color: var(--orange-light); font-weight: 900; }
.locations-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.rental-location {
    background: linear-gradient(180deg, rgba(35,35,35,.96), rgba(22,22,22,.98));
    color: var(--text);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.03);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.photo-frame {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,111,0,.32);
    background: #0c0c0c;
    aspect-ratio: 16 / 9;
    margin-bottom: 14px;
}
.location-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.01);
}
.location-content { display: flex; flex-direction: column; flex: 1; }
.location-title {
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    line-height: 1.22;
    margin: 0 0 14px;
    font-weight: 950;
}
.address-block, .contact-block {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 12px;
}
.icon {
    flex: 0 0 22px;
    color: var(--orange);
    font-size: 1.1rem;
    line-height: 1.35;
    filter: drop-shadow(0 0 10px rgba(255,111,0,.2));
}
.icon-location::before { content: '📍'; }
.icon-time::before { content: '🕘'; }
.icon-phone::before { content: '📞'; }
.street { font-weight: 950; font-size: 1.05rem; margin: 0 0 4px; color: #fff; }
.city-region, .working-hours { font-size: .98rem; color: var(--muted); margin: 0; }
.phone-number { color: #fff; text-decoration: none; font-weight: 950; font-size: 1.12rem; }
.phone-number:hover { color: var(--orange-light); }
.route-button, .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 950;
    border: 1px solid transparent;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.route-button {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: 0 10px 18px rgba(255,111,0,.18);
}
.route-button:hover, .cta-button:hover { transform: translateY(-2px); }
.soon-card {
    min-height: 206px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
    border-color: rgba(255,111,0,.78);
}
.soon-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(255,111,0,.18);
    color: var(--orange);
    font-size: 2rem;
}
.soon-card h2 { margin: 0; line-height: 1.25; color: #fff; }
.soon-card h2 span { color: var(--orange); }
.soon-card p { color: var(--muted); margin: 12px 0 0; }
.benefits {
    margin: 24px 0 30px;
    background: linear-gradient(180deg, rgba(35,35,35,.94), rgba(22,22,22,.96));
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,.3);
}
.benefit { text-align: center; padding: 6px 16px; }
.benefit + .benefit { border-left: 1px solid rgba(255,255,255,.14); }
.benefit span { display: block; font-size: 2.1rem; margin-bottom: 10px; color: var(--orange); }
.benefit h3 { margin: 0 0 6px; font-size: 1.05rem; color: #fff; }
.benefit p { margin: 0; color: var(--muted); font-size: .95rem; }
.about-cta {
    margin: 0 0 34px;
    border: 1px solid var(--orange);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(255,111,0,.16), rgba(255,111,0,.03)),
        linear-gradient(180deg, rgba(30,30,30,.95), rgba(18,18,18,.98));
    padding: 20px 28px;
    display: grid;
    grid-template-columns: 1fr minmax(220px, 320px) minmax(220px, 320px);
    gap: 22px;
    align-items: center;
}
.about-cta h2 { margin: 0 0 4px; text-transform: uppercase; font-size: 1.8rem; color: #fff; }
.about-cta p { margin: 0; color: #fff; font-weight: 700; }
.cta-button.primary { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: #fff; }
.cta-button.secondary { border-color: var(--orange); color: #fff; background: rgba(12,12,12,.55); }
.cta-button.secondary:hover { background: rgba(255,111,0,.16); }
.site-footer { text-align: center; padding: 24px 20px; background: #0a0a0a; color: #aaa; border-top: 1px solid rgba(255,111,0,.18); }
@media (max-width: 1100px) {
    .site-header { justify-content: space-between; }
    .header-call { margin-left: 0; }
    .locations-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .benefit:nth-child(3) { border-left: none; }
    .about-cta { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .site-header { position: static; padding: 12px 14px; flex-direction: column; gap: 10px; }
    .page-nav { gap: 14px 20px; }
    .header-call { width: 100%; max-width: 320px; text-align: center; }
    main { padding: 24px 14px 0; }
    .locations-container, .benefits { grid-template-columns: 1fr; gap: 16px; }
    .benefit + .benefit { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; }
    .rental-location { padding: 12px; }
    .photo-frame { aspect-ratio: 4 / 3; }
    .about-cta { padding: 18px; gap: 14px; }
    .about-cta h2 { font-size: 1.45rem; }
}

/* Дополнительные карточки без фото: единый черно-оранжевый стиль */
.photo-frame--placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,111,0,.26), transparent 34%),
        linear-gradient(135deg, #151515, #0b0b0b);
}
.location-placeholder-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    border: 2px solid rgba(255,111,0,.55);
    color: var(--orange-light);
    font-weight: 950;
    letter-spacing: .02em;
    box-shadow: 0 0 30px rgba(255,111,0,.18);
}
@media (min-width: 1101px) {
    .locations-container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
