﻿/* ============================================
   SPF Landing Page — Shared Design Tokens
   Loaded by every SPF widget.
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --sp-ink: #12211D;
    --sp-gold: #C9922D;
    --sp-gold-light: #E4B564;
    --sp-terracotta: #B65C38;
    --sp-terracotta-dark: #A04F2F;
    --sp-linen: #FAF7F2;
    --sp-linen-dim: #F0EAE0;
    --sp-white: #FFFFFF;
    --sp-text-muted: #6B7570;
    --sp-line: #DEDAD0;
    --sp-radius: 6px;
}

/* Shared page-width container — max-width, centering, and side padding
   used by every SPF widget. Each widget can still add its own internal
   layout rules (grid/flex) scoped to itself on top of this. */
.sp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Shared buttons used across SPF widgets */
.sp-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;

    border: none;
    cursor: pointer;
    border-radius: var(--sp-radius);

    padding: 14px 26px;

    letter-spacing: 0.01em;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition:
        transform .15s ease,
        background .2s ease,
        border-color .2s ease;
}

.sp-btn:hover {
    transform: translateY(-1px);
}

.sp-btn-primary {
    background: var(--sp-terracotta);
    color: var(--sp-white);
}

.sp-btn-primary:hover {
    background: var(--sp-terracotta-dark);
}

.sp-btn-ghost {
    background: transparent;
    color: var(--sp-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.sp-btn-ghost:hover {
    border-color: #fff;
}

/* Small tracked label above headings */
.sp-eyebrow {
    display: block;

    margin-bottom: 14px;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--sp-gold);
}

/* Reset the browser's default body margin */
html, body {
    margin: 0;
    padding: 0;
}

.sp-bg-linen {
    background: var(--sp-linen);
}

.sp-bg-linen-dim {
    background: var(--sp-linen-dim);
}

.sp-bg-ink {
    background: var(--sp-ink);
}