:root {
    --bg-main: #090a0f;
    --bg-soft: #101219;
    --bg-card: #141720;
    --bg-card-2: #181b24;
    --text-main: #f6f2ea;
    --text-soft: #bdb6a8;
    --gold: #d2a546;
    --gold-dark: #a97d27;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(210, 165, 70, 0.28);
    --white-10: rgba(255, 255, 255, 0.10);
    --white-05: rgba(255, 255, 255, 0.05);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.30);
    --shadow-gold: 0 0 30px rgba(210, 165, 70, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1280px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, rgba(210, 165, 70, 0.06), transparent 28%),
                radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), transparent 22%),
                var(--bg-main);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-wrapper {
    min-height: 100vh;
}

.main-content {
    padding-top: 92px;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 920px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: transparent;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

h1 {
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 700;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 600;
    margin-bottom: 18px;
}

h3 {
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 600;
    margin-bottom: 14px;
}

p {
    color: var(--text-soft);
    font-size: 16px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.align-center {
    align-items: center;
}

.card-grid.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 18px;
}

.text-link:hover {
    opacity: 0.85;
}

.inner-page-banner {
    padding: 140px 0 100px;
}