:root {
    color-scheme: light;
}

body {
    background: #fffbf2;
    color: #2c1f0f;
    line-height: 1.6;
    cursor: default;
    margin: 0;
}

a,
button,
[role="button"],
.btn {
    cursor: pointer;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.storytitletext {
    margin-bottom: 8px;
}

.sheader {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff5d8;
    border-bottom: 1px solid #2c1f0f1f;
    backdrop-filter: blur(6px);
}

.hinner {
    width: min(1500px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 4vw;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease;
    user-select: none;
}

.brand a {
    transition: color 0.2s ease;
}

.brand:hover {
    transform: scale(1.04);
}

.brand a:hover {
    color: #ff0000;
}

.brand img {
    width: 40px;
    height: 40px;
}

.nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    user-select: none;
}

.nitem {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav > a,
.navl {
    color: #2c1f0f;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav > a:hover,
.nav > a:focus-visible,
.navl:hover,
.navl:focus-visible {
    text-decoration: underline;
    color: #ff0000;
    transform: scale(1.08);
}

.ndropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 10px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #2c1f0f1f;
    box-shadow: 0 16px 30px #2c1f0f1f;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
    user-select: none;
}

.nitemdrp:hover .ndropdown,
.nitemdrp:focus-within .ndropdown,
.nitemdrp.is-open .ndropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ndropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    color: #2c1f0f;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ndropdown a:hover,
.ndropdown a:focus-visible {
    background: #f7d4884d;
    color: #7c3f00;
    transform: translateX(2px);
}

.container {
    width: min(1500px, 100%);
    margin: 0 auto;
    padding: 0 4vw;
}

.pagecontent {
    padding-bottom: 56px;
}

.h {
    padding: 64px 0 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;

}

.toplinethingy {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    color: #2c1f0fa6;
}

.hzoom {
    transition: transform 0.2s ease;
}

.hzoom:hover {
    transform: scale(1.01);
}

.htitle {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 12px 0;
}

.htext {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hactions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btnmain {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.btnsec {
    background: #ffc000;
    color: #000000;
    border-color: #ffc000;
}

.mercbenz {
    background: #cc0000;
    color: #ffffff;
    border-color: #cc0000;
}

.amg {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.maybach {
    background: #8b7355;
    color: #ffffff;
    border-color: #8b7355;
}

.btnoutline {
    background: transparent;
    color: #2c1f0f;
    border-color: #2c1f0f4d;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #00000040;
}

.hcard {
    padding: 24px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 30px #2c1f0f4d;
    border: 1px solid #2c1f0f14;
}

.hcard h2 {
    margin-bottom: 8px;
}

.sgrid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 48px;
}

.scard {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #2c1f0f14;
    box-shadow: 0 12px 24px #2c1f0f14;
    transition: transform 0.2s ease;
}

.scard:hover {
    transform: scale(1.02);
}

.scard h3 {
    margin-bottom: 8px;
}

.scard a {
    color: #2c1f0f;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.scard a:hover,
.scard a:focus-visible {
    text-decoration: underline;
    color: #ff0000;
    transform: scale(1.04);
}

.footer {
    margin-top: auto;
    padding: 20px 0 32px;
    border-top: 1px solid #2c1f0f1f;
    color: #2c1f0fb3;
    font-size: 0.95rem;
}

.phtitle {
    text-decoration: none;
    color: black;
}

.navbtn {
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
}

@media (max-width: 900px) {
    .h,
    .spotlight {
        grid-template-columns: 1fr;
    }

    .sgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hinner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav {
        width: 100%;
        gap: 12px 16px;
    }

    .ndropdown {
        min-width: 180px;
        max-width: calc(100vw - 32px);
    }
}
