@font-face {
    font-family: 'MontserratExtraBoldItalic';
    src: url('fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'ManropeRegular';
    src: url('fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'ManropeRegular';
    background: #f6f6f6;
    color: #222;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px
}

.header {
    font-family: 'ManropeRegular';
    font-style: italic;
    text-align: center;
    padding: 10px 0
}

.logo {
    max-width: 300px;
    height: auto
}

h1 {

    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #bfa535;
    margin-top: 10px
}

.contact {
    text-align: center;
    margin: 15px 0
}

.phone {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    text-decoration: none
}

.phone i {
    margin-right: 10px
}

.socials {
    margin-top: 10px
}

.socials a {
    margin: 0 8px;
    font-size: 1.5rem;
    text-decoration: none
}

.fa-telegram {
    color: #0088cc
}

.fa-vk {
    color: #4c75a3
}

.main {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .05);
    content-visibility: auto;
    contain-intrinsic-size: 1000px 600px
}

.bike {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block
}

.description p {
    margin-bottom: 8px
}

.description ul {
    margin: 6px 0 10px 18px
}

.pricing {
    background: #faf7f0;
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0
}

.models-header h2,
.pricing h2,
.location h2 {
    font-style: italic;
    color: #bfa535;
    margin-bottom: 8px
}

.pricing ul {
    list-style: none
}

.pricing li {
    padding: 5px 0
}

.location {
    margin-top: 15px
}

.map {
    margin-top: 10px
}

.map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f0f0, #e7e7e7);
    display: flex;
    align-items: center;
    justify-content: center
}

.map-btn {
    appearance: none;
    border: 0;
    background: #bfa535;
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08)
}

.map-btn:focus {
    outline: 2px solid #222;
    outline-offset: 2px
}

footer {
    padding: 20px 0;
    color: #666;
    font-size: .9rem
}