﻿:root {
    --color-bg-main: #1B2632;
    --color-bg-secondary: #2C3B4D;
    --color-accent: #FFB162;
    --color-hover: #A35139;
    --color-light: #EEE9DF;
    --color-neutral: #C9C1B1;
    --color-text-dark: #18202A;
    --color-text-light: #F7F3EC;
    --color-border: rgba(255,255,255,.10);
    --font-title: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;
    --container: 1240px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shadow-soft: 0 16px 50px rgba(10, 15, 25, .18);
    --shadow-deep: 0 20px 60px rgba(7, 11, 18, .35);
    --transition: all .28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

section {
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #EEE9DF 0%, #F5EFE5 100%);
    padding: 110px 0;
}

.section-light-alt {
    background: linear-gradient(180deg, #EEE9DF 0%, #E6DDCF 100%);
    padding: 110px 0;
}

.section-dark {
    background: linear-gradient(180deg, #1B2632 0%, #2C3B4D 50%, #A35139 80%, #FFB162 100%);
    color: var(--color-text-light);
    padding: 110px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    color: var(--color-hover);
    margin-bottom: 14px;
}

    .section-kicker::before {
        content: "";
        width: 28px;
        height: 1px;
        background: currentColor;
        display: inline-block;
    }

.section-heading h2,
h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    line-height: 1;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.section-heading p {
    font-size: 1.05rem;
    color: rgba(24, 32, 42, .84);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: #18202A;
    box-shadow: 0 10px 30px rgba(255, 177, 98, .28);
}

    .btn-primary:hover {
        background: #ffc17f;
        transform: translateY(-2px);
    }

.btn-secondary {
    border: 1px solid rgba(24, 32, 42, .14);
    background: rgba(255,255,255,.35);
    color: var(--color-text-dark);
    backdrop-filter: blur(12px);
}

    .btn-secondary:hover {
        border-color: rgba(24, 32, 42, .28);
        transform: translateY(-2px);
    }

.btn-block {
    width: 100%;
}

@media (max-width: 900px) {
    .section-light,
    .section-light-alt,
    .section-dark {
        padding: 84px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }
}
