:root{
    --maroon: #64140d;
    --gold: #dbb98f;
    --light-gray: #e6e6e6;
    --very-light: #f5f7fa;
    --text: #222;
    --white: #fff;
    --border: #d7d7d7;
    --heading2: 40px;
}

* { box-sizing: border-box; }

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

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { color: inherit; }

.container {
    width: min(1320px, 94%);
    margin: 0 auto;
}

/* =========================
TOP AFFILIATE BAR
========================== */
.affiliate-bar {
    background: var(--maroon);
    color: #fff;
    padding: 30px 10%;
    font-size: 18px;
    font-weight: 700;
}

/* =========================
HERO
========================== */
.hero {
    min-height: 690px;
    background: linear-gradient(90deg, rgba(15, 18, 20, .96) 0%, rgba(15, 18, 20, .76) 42%, rgba(15, 18, 20, .08) 100%), url('/static/assets/images/hero_image.png') top center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    width: 50%;
    padding: 55px 0;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: 44px;
    line-height: 1.15;
}

.hero p {
    max-width: 500px;
    margin: 0 0 24px;
    font-size: 18px;
}

.cta-button-img img, .step-cta img {
	width:256px;
}

/* =========================
COMMON
========================== */
.section-title {
    color: var(--maroon);
    font-size: 25px;
    line-height: 1.2;
    margin: 0 0 13px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 34px;
    font-size: 12px;
    text-align: center;
}

/* =========================
ADVANTAGES
========================== */
.advantages {
    padding: 58px 0 62px;
    background: #fff;
}

.advantages-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 42px;
}

.advantages .section-title {
    color: var(--maroon);
    font-size: var(--heading2);
    line-height: 1.28;
    margin: 0 0 26px;
    font-weight: 700;
}

.advantages .section-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.55;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 62px;
    row-gap: 48px;
}

.advantage {
	display: block;

}

.advantage-icon img, .family-icon img, .step-icon img{
	width:48px;
}

.advantage-icon, .family-icon, .step-icon{
	margin-bottom:24px;
}

.advantage h3 {
    margin: 0 0 14px;
    color: var(--maroon);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.advantage p {
    margin: 0;
    max-width: 380px;
    font-size: 16px;
    line-height: 1.48;
}

/* =========================
BRANDS
========================== */
.brands {
    background: var(--maroon);
    color: #fff;
    text-align: center;
    padding: 55px 0;
}

.brands h2 {
    color: #e3c276;
    margin: 0 0 14px;
    font-size: 28px;
}

.brands p {
    max-width: 760px;
    margin: 0 auto 15px;
    font-size: 18px;
}
.brands p em{
    font-size: 16px;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 35px;
    margin-top: 32px;
}

.brand-logos img {
    width:127px;
    margin: auto;
    object-fit: contain;
}
.brand-logos img:last-child {
    width: 100%;
}

/* =========================
INSTRUMENT FAMILIES
========================== */
.families {
    background: var(--light-gray);
    padding: 55px 0;
}

.families-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 30px;
    align-items: start;
}

.families-intro {
    text-align: center;
}

.eyebrow {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
}

.families-intro h2 {
    color: var(--maroon);
    margin: 0 0 11px;
    font-size: var(--heading2);
}

.families-intro p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 410px;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
    padding: 22px;
}

.family h3 {
	color: var(--maroon);
	margin: 0 0 5px;
	font-size: 28px;
}

.family p {
    margin: 0;
    font-size: 16px;
}

/* =========================
FAQ
========================== */

.faq-section {
    background: #f5f8fc;
    padding: 28px 0 30px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.75fr .95fr;
    gap: 55px;
    align-items: center;
}

.faq-section h2 {
    color: var(--maroon);
    margin: 0 0 22px;
    font-size: var(--heading2);
    line-height: 1.1;
}

.faq-list {
    width: 100%;
}

details {
    background: #fff;
    border-bottom: 1px solid #e6edf2;
    padding: 13px 12px;
    font-size: 11px;
}

details:first-child {
    border-top: 0;
}

details summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--maroon);
    list-style: none;
    position: relative;
    padding-right: 22px;
    font-size:18px;
}

details summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.45;
}

.faq-arrow {
    position: absolute;
    right: 4px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

details[open] .faq-arrow {
    transform: rotate(225deg);
}

.questions-box {
    border: 2px solid #dfc0bd;
    background: #fff;
    padding: 28px 34px;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.questions-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 9px;
    color: var(--maroon);
    font-size: 23px;
}

.questions-box h3 {
    margin: 0 0 13px;
    font-size: 18px;
    color: #222;
}

.questions-box p {
    margin: 7px 0;
    font-size: 16px;
    text-align: left;
    padding-left: 18%;
}

.questions-box p i {
    color: var(--maroon);
    width: 20px;
    margin-right: 7px;
}

/* =========================
HOW TO RENT
========================== */
.how-to {
    background: var(--light-gray);
    padding: 55px 0;
    text-align: center;
}

.how-to h2 {
    color: var(--maroon);
    font-size: var(--heading2);
    margin: 0 0 34px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


.step-number {
    font-size: 16px;
    font-weight: 700;
}

.step-icon img{
	display:inline;
}

.step h3 {
    color: var(--maroon);
    font-size: 28px;
    margin: 7px 0;
}

.step p {
    font-size: 16px;
    max-width: 280px;
    margin: auto;
}

.step-cta {
	margin-top: 30px;
}
.step-cta img{
	display: inline;
}

/* =========================
INSTRUMENTS & RATES
========================== */

.rates {
    padding: 28px 0 38px;
    background: #fff;
    border-bottom: 2px solid var(--gold);
}

.rates > .container > h2 {
    color: var(--maroon);
    text-align: center;
    font-size: var(--heading2);
    margin: 0 0 22px;
    line-height: 1.2;
}

.rates-layout {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1.4fr) 70px minmax(0, 1.2fr);
    gap: 18px;
    align-items: center;
}

.rates-pricing,
.brochure {
    min-width: 0;
}

.rates-pricing h3,
.brochure h3 {
    margin: 0 0 14px;
    text-align: center;
    color: #222;
    font-size: 16px;
}

.rates-pricing h3 span,
.brochure h3 span {
    font-weight: 400;
}

.pricing-table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    min-width: 570px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
    font-size: 16px;
    text-align: center;
}

.pricing-table th {
    background: var(--maroon);
    color: #fff;
    padding: 10px 8px;
    font-size: 18px;
    font-weight: 700;
    border-right: 1px solid rgba(255,255,255,.22);
    white-space: nowrap;
}

.pricing-table th:last-child {
    border-right: 0;
}

.pricing-table td {
    padding: 9px 8px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.pricing-table td:last-child {
    border-right: 0;
}

.pricing-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-table td:first-child {
    text-align: left;
    padding-left: 14px;
}

.pricing-note {
    margin: 14px 0 0;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
}

.rates-divider {
    position: relative;
    height: 100%;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rates-divider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #cfcfcf;
    transform: translateX(-50%);
}

.rates-divider span {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: #fff;
    font-weight: 700;
    font-size: 12px;
}

.brochure-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brochure-pages {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.brochure-page {
    text-align: center;
    font-size: 16px;
    min-width: 120px;
}

.brochure-page img {
    width: 120px;
    height: 170px;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 1px solid #ddd;
    border-radius:5px;
}

.brochure-page strong {
    display: block;
}

.brochure-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 180px;
}

.brochure-button {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--maroon);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
}

.brochure-download {
    background: #fff;
    color: var(--maroon);
    border: 2px solid #c9918c;
}

/* =========================
AFFILIATE LOGO
========================== */
.affiliate-logo-section {
    background: var(--light-gray);
    padding: 30px 0;
    text-align: center;
}

.affiliate-logo-section img {
    max-width: 300px;
    max-height: 90px;
    margin: auto;
    object-fit: contain;
}

/* =========================
MAP / CONTACT
========================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 250px;
}

.map {
    min-height: 250px;
    overflow: hidden;
    background: #eee;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
    display: block;
}

.contact-info {
    background: var(--maroon);
    color: #fff;
    padding: 38px 7%;
}

.contact-info h2 {
    margin: 0 0 14px;
    font-size: 22px;
    text-transform:uppercase;
}

.contact-info p {
    margin: 9px 0;
    font-size: 16px;
}

.contact-info i {
    width: 18px;
    color: #fff;
}
#lightbox-container-image img{
    border: 2px solid #eee;
}


/* =========================
BACK TO TOP
========================== */

#backToTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;

	width: 48px;
	height: 48px;
	border: 2px solid #fff;
	border-radius: 50%;

	background-color: #64140d;
	color: #fff;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;

	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#backToTop:hover {
	background-color: #2c3236;
}

#backToTop svg {
	width: 20px;
	height: 20px;
}

/* =========================
FOOTER
========================== */
footer {
    background: #111;
    color: #fff;
    padding: 13px 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

footer a {
    text-decoration: none;
    margin-left: 12px;
}

/* =========================
RESPONSIVE
========================== */
@media (max-width: 850px) {
    .hero-content {
        width: 62%;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-logos {
       grid-template-columns: repeat(2, 1fr);
    }
    
    .families-layout,
    .faq-layout,
    .contact {
       grid-template-columns: 1fr;
    }
    
    .rates-layout {
       grid-template-columns: 1fr;
    }
    
    .rates-divider {
       min-height: 55px;
    }
    
    .rates-divider::before {
        left: 50%;
        top: 0;
        bottom: 0;
    }

    .brochure-content {
       justify-content: center;
    }
    
    .steps {
       grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    :root{
        --heading2: 32px;
    }
    body,
    .rates,
    .rates .container,
    .rates-layout,
    .rates-pricing {
        max-width: 100%;
        min-width: 0;
    }
    
    .pricing-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero {
        min-height: 390px;
        background:linear-gradient(90deg, rgba(15,18,20,.93), rgba(15,18,20,.58)), url('/static/assets/images/hero_image.png') center/cover no-repeat;
        padding:0 3%;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .advantages-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .advantages .section-title {
        font-size: 25px;
    }

    .advantage-icon {
        font-size: 40px;
    }
    
    .families-layout {
        gap: 20px;
    }
    
    .pricing-table {
        min-width: 570px;
    }
    
    .brochure-content {
        flex-direction: column;
    }
    
    .brochure-actions {
        width: 100%;
        max-width: 300px;
    }
    
    .brochure-button {
        width: 100%;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .questions-box {
        min-height: 180px;
    }
    
    .questions-box p {
        padding-left: 10%;
    }
    
    .advantages, .faq-section {
        padding: 45px 3% 50px;
    }
    
    .advantages .section-title {
        font-size: 28px;
    }

    .advantages .section-intro {
        font-size: 16px;
    }
    
    .advantage p {
        max-width: 100%;
    }
    
    .advantages-grid {
    column-gap: 35px;
        row-gap: 42px;
    }
    
    .advantage h3 {
        font-size: 22px;
    }
    #lightbox-container-image-box, #lightbox-container-image-data-box{
        width:411px !important;
    }
    #lightbox-container-image-box{
        height:584px!important;
    }
    .contact-info {
        padding: 32px 7%;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
    }
    
    footer a {
        margin: 0 6px;
    }
}