/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-surface-2: #1e1e1e;
    --color-border: #2a2a2a;
    --color-gold: #c9a84c;
    --color-gold-light: #e8c97a;
    --color-gold-dim: rgba(201, 168, 76, 0.15);
    --color-cream: #f5f0e8;
    --color-muted: #8a8a8a;
    --color-white: #ffffff;
    --color-error: #e05252;
    --color-success: #52c07a;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-cream);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold-light);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

/* ── Typography ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-cream);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-cream);
}

p:last-child {
    margin-bottom: 0;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

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

@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.section-header__line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: var(--space-md) auto 0;
}

.section-header p {
    color: var(--color-muted);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    color: var(--color-bg);
    transform: translateY(-1px);
}

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

.btn--ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn__arrow {
    font-size: 1.125rem;
    transition: transform var(--transition);
}

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

/* ── Tags ─────────────────────────────────────────────────── */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-gold);
    background: var(--color-gold-dim);
    border-radius: 100px;
    text-transform: uppercase;
}

/* ── Toast Notification ───────────────────────────────────── */
.toast {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
    max-width: 90vw;
}

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

.toast--success {
    background: var(--color-success);
}

.toast--error {
    background: var(--color-error);
}

/* ── Utility ──────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-gold {
    color: var(--color-gold);
}

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