/* ===================================================
   VANWILD — GLOBAL STYLESHEET
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== TOKENS ===== */

:root {
    --orange: #F4631E;
    --orange-dark: #C94F12;
    --orange-light: rgba(244, 99, 30, 0.10);
    --cream: #F5F0E8;
    --sand: #E8DFD0;
    --dark: #1A1612;
    --mid: #3A2F25;
    --text: #2C251D;
    --muted: #7A6B5D;
    --white: #FEFCF8;
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --space-xs: clamp(8px, 1.5vw, 14px);
    --space-sm: clamp(14px, 2.5vw, 24px);
    --space-md: clamp(24px, 4vw, 48px);
    --space-lg: clamp(48px, 8vw, 96px);
    --space-xl: clamp(72px, 12vw, 140px);
    --fs-xs: clamp(11px, 1.2vw, 13px);
    --fs-sm: clamp(13px, 1.5vw, 15px);
    --fs-base: clamp(15px, 2vw, 17px);
    --fs-md: clamp(18px, 2.5vw, 24px);
    --fs-lg: clamp(26px, 4vw, 42px);
    --fs-xl: clamp(42px, 8vw, 96px);
    --fs-xxl: clamp(56px, 12vw, 140px);
    --radius: 12px;
    --radius-lg: 24px;
    --shadow: 0 20px 60px rgba(26, 22, 18, 0.18);
    --shadow-sm: 0 4px 20px rgba(26, 22, 18, 0.10);
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}


/* ===== RESET ===== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    font-size: var(--fs-base);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 99px;
}


/* ===== LAYOUT ===== */

.container {
    width: min(1260px, 94%);
    margin-inline: auto;
}

.section-pad {
    padding: var(--space-xl) 0;
}

.section-pad-sm {
    padding: var(--space-lg) 0;
}


/* ===== TYPOGRAPHY ===== */

.display {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 0.93;
}

.heading {
    font-family: var(--font-head);
    font-weight: 800;
}

.muted {
    color: var(--muted);
}

.section-header {
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.section-header p {
    color: var(--muted);
    max-width: 520px;
    margin-top: 14px;
}

.section-header.center {
    text-align: center;
}

.section-header.center p {
    margin-inline: auto;
}


/* ===== TAG ===== */

.tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-light);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.tag.dark {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}


/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--fs-sm);
    letter-spacing: 0.04em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 12px;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 99, 30, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: white;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}


/* ===== CARDS ===== */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.card-body {
    padding: var(--space-sm) var(--space-md);
}


/* ===== NAV ===== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--dark);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 36px);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

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

.nav-cta {
    margin-left: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 60px);
    color: var(--white);
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--orange);
}


/* ===== PAGE HERO (inner pages) ===== */

.page-hero {
    background: var(--dark);
    padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    filter: saturate(0.5);
}

.page-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.95) 0%, rgba(58, 47, 37, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--white);
    line-height: 0.93;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-md);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: var(--space-md);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb .current {
    color: var(--orange);
}


/* ===== MARQUEE ===== */

.marquee-section {
    background: var(--orange);
    padding: 13px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    color: var(--white);
    letter-spacing: 0.07em;
    white-space: nowrap;
    opacity: 0.9;
}

.marquee-track .dot {
    color: rgba(255, 255, 255, 0.35);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ===== CTA BANNER ===== */

.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: var(--space-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: 'VANWILD';
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 260px);
    color: rgba(255, 255, 255, 0.055);
    letter-spacing: 0.08em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    font-size: var(--fs-md);
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}


/* ===== FOOTER ===== */

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: var(--space-lg) 0 var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* brand + 3 columns */
    gap: clamp(24px, 4vw, 56px);
}

.footer-brand .logo {
    font-size: 36px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li a {
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col li a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}


/* ===== ARTICLE / GUIDE CONTENT ===== */

.article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    letter-spacing: 0.02em;
    margin: var(--space-md) 0 var(--space-sm);
    color: var(--text);
}

.article-content h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: var(--fs-md);
    margin: var(--space-sm) 0 12px;
}

.article-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.75;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-content li {
    line-height: 1.65;
    color: var(--text);
}

.article-content ul li {
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.callout {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin: var(--space-sm) 0;
}

.callout-warn {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #FFC107;
}

.callout strong {
    display: block;
    font-family: var(--font-head);
    margin-bottom: 6px;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-sm) 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.cost-table th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
}

.cost-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--sand);
    font-size: var(--fs-sm);
}

.cost-table tr:last-child td {
    border-bottom: none;
}

.cost-table tr:nth-child(even) td {
    background: rgba(232, 223, 208, 0.4);
}

.cost-table .total td {
    font-family: var(--font-head);
    font-weight: 700;
    background: var(--orange-light) !important;
    color: var(--orange);
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    background: var(--cream);
    transition: var(--transition);
}

.sidebar-link:hover {
    background: var(--orange);
    color: white;
    transform: translateX(4px);
}

.sidebar-link .link-icon {
    font-size: 18px;
}


/* ===== REVEAL ANIMATION ===== */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* ===== COMPARISON TABLE ===== */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-table th {
    background: var(--dark);
    color: white;
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 14px;
    text-align: left;
}

.compare-table th:first-child {
    background: var(--mid);
}

.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--sand);
    font-size: var(--fs-sm);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table .best {
    color: #2e7d32;
    font-weight: 700;
}

.compare-table .worst {
    color: #c62828;
}

.compare-table .mid {
    color: var(--muted);
}

.compare-table .highlight-col {
    background: rgba(244, 99, 30, 0.06);
}


/* ===== BLOG GRID ===== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    height: clamp(180px, 22vw, 240px);
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.blog-card-img img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.07);
}

.blog-card-body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--sand);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.blog-meta .cat {
    color: var(--orange);
}

.blog-card h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: var(--fs-base);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card h3 a {
    transition: color 0.2s;
}

.blog-card h3 a:hover {
    color: var(--orange);
}

.blog-card p {
    color: var(--muted);
    font-size: var(--fs-sm);
    flex: 1;
    margin-bottom: 18px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media print {
    nav,
    .cta-banner,
    .marquee-section {
        display: none;
    }
    body {
        font-size: 12pt;
        background: white;
    }
}