:root {
    --black: #000000;
    --bg-dark: #0b0b0b;
    --bg-card: #121212;
    --bg-panel: #1b1b1b;
    --bg-section: #0b0b0b;
    --gold: #c89b3c;
    --gold-mid: #d4af37;
    --gold-light: #f2d27a;
    --gold-dark: #8b7019;
    --gold-glow: rgba(200, 155, 60, 0.35);
    --gold-border: rgba(212, 175, 55, 0.45);
    --white: #ffffff;
    --text: #ffffff;
    --text-muted: #a8a095;
    --border: #2a2a2a;
    --font-imperial: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --header-h: 72px;
    --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 155, 60, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

main { position: relative; z-index: 1; flex: 1; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Header ── */
.header {
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid var(--gold-border);
    position: sticky;
    top: 0;
    z-index: 300;
    backdrop-filter: blur(12px);
}

.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-h);
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 310;
}

.logo__icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.logo__text {
    font-family: var(--font-imperial);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.18em;
}

.nav {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold-light);
    text-shadow: 0 0 12px var(--gold-glow);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--gold-border);
    cursor: pointer;
    padding: 8px;
    z-index: 310;
}

.burger span {
    display: block;
    height: 1px;
    background: var(--gold-mid);
    transition: transform 0.3s, opacity 0.3s;
}

.burger--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 250;
}

.nav-overlay--visible { display: block; }

.header__cta { flex-shrink: 0; z-index: 310; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid var(--gold-mid);
    background: transparent;
    color: var(--gold-light);
    white-space: nowrap;
}

.btn--outline:hover {
    background: rgba(200, 155, 60, 0.12);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border-color: var(--gold-mid);
}

.btn--gold:hover {
    box-shadow: 0 4px 24px var(--gold-glow);
    transform: translateY(-1px);
}

.btn--block { width: 100%; margin-top: 18px; }
.btn__icon { font-size: 0.85rem; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--gold-border);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.88) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.75) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 80px 40px 100px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.hero__left { text-align: left; }

.hero__franchise {
    font-family: var(--font-imperial);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.1;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 0 30px var(--gold-glow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.8;
}

.hero__divider {
    width: 70px;
    height: 1px;
    background: var(--gold-mid);
    margin-top: 24px;
    position: relative;
}

.hero__divider::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-mid);
    font-size: 0.45rem;
    background: var(--black);
    padding: 0 8px;
}

.hero__center { text-align: center; }

.hero__crown { margin-bottom: 8px; }

.hero__eagle-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 16px var(--gold-glow));
}

.hero__title {
    font-family: var(--font-imperial);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.2em;
    text-shadow: 0 4px 40px rgba(0,0,0,0.95), 0 0 50px var(--gold-glow);
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__right { text-align: right; }

.hero__quote {
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--gold-light);
    line-height: 1.55;
    font-style: normal;
    text-shadow: 0 2px 16px rgba(0,0,0,0.9);
    max-width: 300px;
    margin-left: auto;
}

.hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.35;
    transition: all 0.3s;
}

.hero__dot--active {
    background: var(--gold-light);
    opacity: 1;
    box-shadow: 0 0 8px var(--gold-glow);
}

/* ── Features ── */
.features {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.features__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.feature:last-child { border-right: none; }

.feature__icon {
    margin-bottom: 14px;
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.feature__icon img { display: inline-block; }

.feature__title {
    font-family: var(--font-imperial);
    font-size: 0.72rem;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.feature__text {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Section titles ── */
.section-title {
    font-family: var(--font-imperial);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-border);
    position: relative;
}

.section-title::after {
    content: '◆';
    position: absolute;
    bottom: -6px;
    left: 0;
    font-size: 0.5rem;
    color: var(--gold-mid);
    background: var(--black);
    padding-right: 8px;
}

.section-title--sm { font-size: 1.1rem; }

/* ── Split (Cities + Services) ── */
.split {
    padding: 56px 0;
    background: var(--black);
}

.split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-panel__count {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.map-panel__count-num {
    font-family: var(--font-imperial);
    font-size: 1.8rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-right: 6px;
}

.map-panel {
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 16px;
    margin-bottom: 8px;
    position: relative;
}

.map-panel__wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 500 / 280;
}

.map-panel__base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.map-panel__pins {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-pin__glow { animation: pinPulse 3s ease-in-out infinite; }
.map-pin-group:nth-child(odd) .map-pin__glow { animation-delay: 0.5s; }
.map-pin-group:nth-child(3n) .map-pin__glow { animation-delay: 1s; }

@keyframes pinPulse {
    0%, 100% { opacity: 0.4; r: 8; }
    50% { opacity: 0.8; r: 12; }
}

.map-panel__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.map-panel__city {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 5px 12px;
    border: 1px solid var(--border);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Services grid ── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service-card {
    position: relative;
    min-height: 160px;
    border: 1px solid var(--gold-border);
    overflow: hidden;
    cursor: default;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px var(--gold-glow);
}

.service-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: opacity 0.4s, transform 0.6s;
}

.service-card:hover .service-card__bg {
    opacity: 0.65;
    transform: scale(1.05);
}

.service-card--franshiza .service-card__bg {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%231b1b1b' width='200' height='200'/%3E%3Cpath d='M40 140h120M60 120l40-50 40 30 20-40' stroke='%23d4af37' stroke-width='2' fill='none' opacity='0.4'/%3E%3C/svg%3E");
}

.service-card--soprovozhdenie .service-card__bg {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%23121212' width='200' height='200'/%3E%3Cpath d='M60 150l40-100 40 100z' stroke='%23f2d27a' stroke-width='2' fill='rgba(200,155,60,0.15)'/%3E%3Ccircle cx='100' cy='70' r='8' fill='%23d4af37' opacity='0.5'/%3E%3C/svg%3E");
}

.service-card--razvitie-seti .service-card__bg {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%230b0b0b' width='200' height='200'/%3E%3Ccircle cx='100' cy='100' r='50' stroke='%23c89b3c' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M100 50v15M100 135v15M50 100h15M135 100h15' stroke='%23d4af37' stroke-width='1.5'/%3E%3C/svg%3E");
}

.service-card--obuchenie .service-card__bg {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect fill='%231b1b1b' width='200' height='200'/%3E%3Crect x='50' y='60' width='100' height='80' stroke='%23d4af37' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M60 80h80M60 100h60M60 120h70' stroke='%23c89b3c' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E");
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 2;
    padding: 18px;
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card__title {
    font-family: var(--font-imperial);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
}

.service-card__desc {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.link-center {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: var(--gold-mid);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.link-center:hover {
    color: var(--gold-light);
    text-shadow: 0 0 12px var(--gold-glow);
}

/* ── Triple section ── */
.triple {
    padding: 56px 0 72px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.triple__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
}

.news-list { display: flex; flex-direction: column; gap: 14px; }

.news-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.news-item:hover { border-color: var(--gold-border); }

.news-item__thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-item__img {
    width: 36px;
    height: 36px;
    opacity: 0.7;
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.news-item__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold-mid);
    margin-bottom: 4px;
}

.news-item__text {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.news-item__date {
    font-size: 0.65rem;
    color: var(--gold-dark);
    display: block;
    margin-top: 6px;
}

.review-slider {
    position: relative;
    min-height: 200px;
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 36px 28px;
    text-align: center;
}

.review-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.review-slide--active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.review-slide__marks {
    font-family: var(--font-imperial);
    font-size: 3.5rem;
    color: var(--gold-mid);
    line-height: 0.4;
    margin-bottom: 20px;
    text-shadow: 0 0 16px var(--gold-glow);
}

.review-slide__text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
}

.review-slide__author {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    font-family: var(--font-display);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0;
}

.review-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.35;
    cursor: pointer;
    transition: all 0.3s;
}

.review-dot--active,
.review-dot:hover {
    background: var(--gold-light);
    opacity: 1;
    box-shadow: 0 0 6px var(--gold-glow);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
    border-bottom: 1px solid var(--gold-border);
    background: var(--bg-panel);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    font-size: 0.78rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.faq-item__question:hover { color: var(--gold-light); }
.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__toggle {
    color: var(--gold-mid);
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }

.faq-item__answer {
    padding: 0 16px 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── Inner pages ── */
.section { padding: 48px 0; }
.section--dark { background: var(--bg-dark); }

.page-header {
    padding: 56px 0 28px;
    background: linear-gradient(180deg, var(--bg-panel) 0%, var(--black) 100%);
    border-bottom: 1px solid var(--gold-border);
}

.page-title {
    font-family: var(--font-imperial);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.88rem;
}

.page-hero {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--gold-border);
}

.page-hero .hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    -webkit-text-fill-color: var(--gold-light);
    margin-bottom: 16px;
}

.page-hero__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px var(--gold-glow));
}

.page-hero__text {
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.card--full { grid-column: 1 / -1; }

.card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-mid);
    margin-bottom: 10px;
}

.card__text { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

.card__date {
    color: var(--gold-dark);
    font-size: 0.75rem;
    display: block;
    margin-bottom: 10px;
}

.cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.city-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 22px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.35s;
}

.city-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.city-card__name {
    font-family: var(--font-imperial);
    font-size: 1.1rem;
    color: var(--gold-mid);
    letter-spacing: 0.06em;
}

.city-card__arrow { color: var(--gold-light); }

.reviews { display: flex; flex-direction: column; gap: 18px; }

.review {
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 28px;
}

.review__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review__author {
    font-weight: 600;
    color: var(--gold-light);
    font-family: var(--font-display);
}

.review__rating { color: var(--gold-mid); }
.review__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.bot-card {
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 48px;
    text-align: center;
    margin-bottom: 28px;
}

.bot-card--primary {
    background: linear-gradient(135deg, var(--bg-panel), #1a1510);
}

.bot-card__badge {
    color: var(--gold-mid);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bot-card__name {
    font-family: var(--font-imperial);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.mirrors { display: flex; flex-direction: column; gap: 12px; }

.mirror {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 16px 22px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.3s;
}

.mirror:hover { border-color: var(--gold-mid); }
.mirror__arrow { color: var(--gold-light); }

.product-list { list-style: none; }

.product-item {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-panel);
}

.product-item:first-child { border-top: 1px solid var(--border); }

.product-item__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
}

.cta-block {
    margin-top: 40px;
    text-align: center;
    padding: 36px;
    background: var(--bg-dark);
    border: 1px solid var(--gold-border);
}

.cta-block p { color: var(--text-muted); margin-bottom: 18px; }

/* ── Footer ── */
.footer {
    margin-top: auto;
    background: var(--black);
    border-top: 1px solid var(--gold-border);
    padding: 36px 0;
    position: relative;
    z-index: 1;
}

.footer__inner { text-align: center; }

.footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer__icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.footer__name {
    font-family: var(--font-imperial);
    font-size: 1.15rem;
    color: var(--gold-light);
    letter-spacing: 0.14em;
}

.footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 18px;
}

.footer__nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer__nav a:hover { color: var(--gold-light); }

.footer__copy {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

/* ── Utils ── */
.empty { color: var(--text-muted); font-style: italic; }
.link-gold { color: var(--gold-mid); text-decoration: none; }
.link-gold:hover { text-decoration: underline; }

.breadcrumb {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.breadcrumb:hover { color: var(--gold-light); }

.announcement {
    background: var(--bg-panel);
    border: 1px solid var(--gold-border);
    padding: 16px 20px;
    margin: 14px auto 0;
}

.announcement__title {
    font-family: var(--font-imperial);
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.announcement__text { color: var(--text); font-size: 0.85rem; }

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive: Tablet ── */
@media (max-width: 1200px) {
    .container { padding: 0 28px; }
    .hero__inner { padding: 60px 28px 90px; gap: 24px; }
    .features__inner { grid-template-columns: repeat(3, 1fr); }
    .feature { border-right: none; }
    .triple__inner { gap: 28px; }
}

@media (max-width: 1024px) {
    .header__inner {
        grid-template-columns: auto auto 1fr;
    }

    .burger { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.98);
        border-left: 1px solid var(--gold-border);
        flex-direction: column;
        justify-content: flex-start;
        padding: calc(var(--header-h) + 24px) 32px 32px;
        gap: 0;
        transition: right 0.4s ease;
        z-index: 280;
    }

    .nav--open { right: 0; }

    .nav__link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.78rem;
        width: 100%;
    }

    .header__cta {
        font-size: 0.6rem;
        padding: 9px 14px;
    }

    .split__inner { grid-template-columns: 1fr; gap: 40px; }
    .triple__inner { grid-template-columns: 1fr; gap: 40px; }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 28px 80px;
    }

    .hero__left,
    .hero__right { text-align: center; }

    .hero__quote { margin: 0 auto; }
    .hero__divider { margin: 20px auto 0; }

    .features__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .container { padding: 0 16px; }

    .logo__text { font-size: 1rem; letter-spacing: 0.12em; }
    .logo__icon { width: 32px; height: 32px; }

    .header__cta {
        font-size: 0;
        padding: 9px 12px;
        gap: 0;
    }

    .header__cta .btn__icon { font-size: 1rem; }

    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero__inner {
        padding: 36px 16px 72px;
        gap: 28px;
    }

    .hero__franchise { font-size: 1.8rem; }
    .hero__tagline { font-size: 0.68rem; letter-spacing: 0.18em; }
    .hero__title { letter-spacing: 0.12em; }
    .hero__quote { font-size: 1.15rem; max-width: 100%; }

    .features { padding: 28px 0; }
    .features__inner { grid-template-columns: 1fr; gap: 8px; }
    .feature { padding: 16px; border-bottom: 1px solid var(--border); }

    .split { padding: 36px 0; }
    .map-panel__wrap { aspect-ratio: 500 / 280; }
    .map-panel__city { font-size: 0.6rem; padding: 4px 8px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 140px; }
    .service-card__content { min-height: 140px; }

    .triple { padding: 36px 0 48px; }
    .review-slider { min-height: 180px; padding: 28px 20px; }

    .page-header { padding: 40px 0 20px; }
    .cities { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }

    .footer__nav { gap: 14px; }
}

@media (max-width: 480px) {
    .hero__franchise { font-size: 1.5rem; }
    .hero__eagle-icon { width: 36px; height: 36px; }
    .section-title { font-size: 1.1rem; }
    .map-panel__count-num { font-size: 1.4rem; }
}
