:root {
    --cream: #fff7e8;
    --paper: #f7ead2;
    --ink: #2c2118;
    --brown: #5a3b25;
    --orange: #d65428;
    --green: #2f5a36;
    --gold: #c98a3d;
    --muted: #7d6956;
    --line: rgba(90, 59, 37, 0.22);
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(44, 33, 24, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(214, 84, 40, 0.16), transparent 32rem),
        linear-gradient(180deg, var(--cream), var(--paper));
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 232, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 460px;
    text-decoration: none;
}

.brand-logo-wrap {
    width: 78px;
    height: 58px;
    flex: 0 0 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 78px !important;
    max-height: 58px !important;
    object-fit: contain;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--brown);
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(90, 59, 37, 0.28);
}

.brand-text {
    display: block;
}

.brand-text strong {
    display: block;
    color: var(--brown);
    font-size: 1.25rem;
    line-height: 1.1;
}

.brand-text em {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--brown);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: var(--orange);
}

.site-main {
    min-height: 70vh;
}

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 32px;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-home {
    background-image:
        linear-gradient(
            135deg,
            rgba(44, 33, 24, 0.72),
            rgba(90, 59, 37, 0.46)
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 138, 61, 0.22),
            transparent 18rem
        ),
        var(--hero-image),
        linear-gradient(120deg, #5a3b25, #2f5a36);
}

.hero-route66 {
    background-image:
        linear-gradient(
            135deg,
            rgba(44, 33, 24, 0.82),
            rgba(90, 59, 37, 0.50)
        ),
        radial-gradient(
            circle at 70% 25%,
            rgba(214, 84, 40, 0.44),
            transparent 18rem
        ),
        linear-gradient(120deg, #3b2a1c, #8a3d1d);
}

.hero-overlay {
    width: 100%;
    padding: clamp(28px, 6vw, 70px);
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero-text {
    max-width: 730px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
    text-shadow: none;
}

.button-primary {
    color: var(--white);
    background: var(--orange);
}

.button-primary:hover {
    background: #bf431b;
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.content-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.content-main {
    display: grid;
    gap: 24px;
}

.panel,
.feature-card,
.sidebar-box {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 247, 232, 0.78);
    box-shadow: 0 12px 32px rgba(44, 33, 24, 0.1);
}

.panel {
    padding: clamp(24px, 4vw, 42px);
}

.panel h2,
.sidebar-box h3,
.feature-card h3 {
    margin: 0 0 12px;
    color: var(--brown);
    line-height: 1.08;
}

.panel h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.035em;
}

.panel p,
.feature-card p,
.sidebar-box p {
    color: var(--muted);
}

.panel p:last-child,
.feature-card p:last-child,
.sidebar-box p:last-child {
    margin-bottom: 0;
}

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

.feature-card {
    padding: 24px;
}

.card-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accent-panel {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(201, 138, 61, 0.38), transparent 18rem),
        linear-gradient(135deg, var(--brown), #2c2118);
}

.accent-panel h2,
.accent-panel p {
    color: var(--white);
}

.accent-panel .small-note {
    color: rgba(255, 255, 255, 0.76);
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--orange);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.sidebar-box {
    padding: 22px;
}

.sponsor-box {
    background:
        linear-gradient(135deg, rgba(214, 84, 40, 0.13), rgba(201, 138, 61, 0.18)),
        rgba(255, 247, 232, 0.88);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(90, 59, 37, 0.94);
    color: var(--white);
}

.site-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    max-width: 620px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .site-header-inner,
    .site-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }

    .brand {
        max-width: 100%;
    }

    .content-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

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

@media (max-width: 560px) {
    .site-header-inner {
        min-height: auto;
        padding: 14px 0;
    }

    .brand-logo-wrap {
        width: 64px;
        height: 48px;
        flex-basis: 64px;
    }

    .brand-logo {
        max-width: 64px !important;
        max-height: 48px !important;
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .brand-text em {
        font-size: 0.76rem;
    }

    .hero {
        min-height: 420px;
        border-radius: 20px;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav a {
        padding: 7px 10px;
        font-size: 0.88rem;
    }
}