:root {
    --plum: #42162F;
    --plum-deep: #301020;
    --gold: #F5C84C;
    --bg: #FFFFFF;
    --bg-section: #F8F8F8;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --hairline: rgba(66, 22, 47, 0.14);
    --glass: rgba(255, 255, 255, 0.7);
    --footer-hairline: rgba(255, 255, 255, 0.14);
    --footer-text-soft: rgba(255, 255, 255, 0.62);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--plum-deep);
    letter-spacing: -0.02em;
}

p {
    color: var(--ink);
}

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

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--plum-deep);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 100px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 200, 76, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 100px;
    transition: background .25s ease, transform .25s ease;
}

.btn-secondary:hover {
    background: var(--bg-section);
    transform: translateY(-2px);
}

.btn-secondary.on-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary.on-dark:hover {
    background: rgba(255, 255, 255, 0.08);
}


.btn-book-strategy {
    display: inline-block;
    background: transparent;
    color: var(--bg);
    border: 1.5px solid var(--bg);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 100px;
    transition: background .25s ease, transform .25s ease;
}

.btn-book-strategy:hover {
    color: var(--plum);
    background: var(--bg-section);
    transform: translateY(-2px);
    box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.5);
}