/* ── Global — Banshee Designs ────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/* ── Custom properties ── */
:root {
    --black:       #111111;
    --white:       #f5f5f5;
    --pure-white:  #ffffff;
    --grey-100:    #f0f0f0;
    --grey-200:    #e2e2e2;
    --grey-400:    #aaaaaa;
    --grey-600:    #666666;
    --grey-800:    #333333;

    /* ── Accent palette — Crimson Rose (tomato red ↔ purple midpoint) ── */
    --accent:          #C42050;
    --accent-dark:     #96183C;
    --accent-light:    #D94870;
    --accent-tint:     rgba(196, 32, 80, 0.09);
    --accent-glow:     rgba(196, 32, 80, 0.28);

    /* ── Secondary accent — Mustard Gold ── */
    --accent-2:        #C9920A;
    --accent-2-dark:   #9E7108;
    --accent-2-light:  #E0AA2A;
    --accent-2-tint:   rgba(201, 146, 10, 0.09);
    --accent-2-glow:   rgba(201, 146, 10, 0.30);

    --font-primary: 'Oswald', sans-serif;
    --font-mono:    'Courier New', Courier, monospace;

    --nav-height:  64px;
    --max-w:       1400px;
    --pad-x:       80px;
    --pad-x-sm:    40px;
    --pad-x-xs:    20px;

    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--pure-white);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── Layout helpers ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    box-sizing: border-box;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.section--grey {
    background: var(--grey-100);
}

/* ── Typography scale ── */
.t-hero {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.t-display {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.t-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
}

.t-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-600);
}

.t-body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

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

.btn--dark:hover {
    background: var(--grey-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.btn--light:hover {
    background: var(--grey-200);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.btn--ghost:hover {
    background: var(--black);
    color: var(--white);
}

.btn--ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--ghost-light:hover {
    background: #fff;
    color: var(--black);
}

/* Accent button */
.btn--accent {
    background: var(--accent);
    color: #fff;
}

.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn--ghost-accent {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn--ghost-accent:hover {
    background: var(--accent);
    color: #fff;
}

/* Mustard accent button */
.btn--accent-2 {
    background: var(--accent-2);
    color: #111;
}

.btn--accent-2:hover {
    background: var(--accent-2-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-2-glow);
}

.btn--ghost-accent-2 {
    background: transparent;
    color: var(--accent-2);
    border: 1.5px solid var(--accent-2);
}

.btn--ghost-accent-2:hover {
    background: var(--accent-2);
    color: #111;
}

/* Accent text utilities */
.text-accent  { color: var(--accent); }
.text-accent-2 { color: var(--accent-2); }

/* Accent underline on hover (for links/headings) */
.accent-line {
    position: relative;
    display: inline-block;
}
.accent-line::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 40px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.btn__arrow {
    display: inline-block;
    transition: transform 0.25s var(--ease-out);
}

.btn:hover .btn__arrow {
    transform: translateX(5px);
}

/* ── Scroll-reveal utility ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.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; }

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 0;
}

.divider--light {
    border-color: rgba(255,255,255,0.12);
}

/* ── Page top offset (for fixed nav) ── */
.page-body {
    padding-top: var(--nav-height);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    :root {
        --pad-x: var(--pad-x-sm);
    }
    .section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 560px) {
    :root {
        --pad-x: var(--pad-x-xs);
    }
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
