:root {
    --sand: #faf7f2;
    --sand-2: #f0ebe0;
    --sand-3: #e4ddd0;
    --sea: #1a6b8a;
    --sea-pale: #e8f4f8;
    --orange: #ff6b35;
    --orange-2: #ff9a3c;
    --ink: #1a1410;
    --ink-2: #4a3f35;
    --ink-3: #8a7d70;
    --gold: #c9a84c;
    --gold-pale: rgba(201, 168, 76, .12);
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 24px;
    --r-pill: 100px;
    --t: 0.22s ease;
}



.btn {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--r-pill);
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    transition: all var(--t)
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    padding: 10px 22px
}

.btn-orange:hover {
    background: var(--orange-2);
    transform: translateY(-1px)
}

/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: var(--ink);
}

/* Фоновая текстура — мелкие точки */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Золотое свечение */
.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, .12) 0%, transparent 65%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Декоративная линия сверху */
.hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero__line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold))
}

.hero__line--r {
    background: linear-gradient(90deg, var(--gold), transparent)
}

.hero__diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero__eyebrow {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 14px 36px;
    border-radius: var(--r-pill);
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    letter-spacing: .06em;
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(201, 168, 76, .3);
}

.btn-gold:hover {
    background: #d4b05a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, .4)
}

.btn-ghost-white {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 14px 36px;
    border-radius: var(--r-pill);
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .2);
    text-decoration: none;
    letter-spacing: .06em;
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost-white:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

/* ---- WAVE ---- */
.wave {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.wave svg {
    display: block;
    width: 100%
}

/* ---- LAYOUT ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.container--narrow {
    max-width: 760px
}

.section {
    padding: 72px 0
}

.section--alt {
    background: var(--sand-2);
    border-top: 1px solid var(--sand-3);
    border-bottom: 1px solid var(--sand-3)
}

/* ---- ФОРМАТЫ СОТРУДНИЧЕСТВА ---- */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--sand-3);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-top: 48px;
}

.format-card {
    background: var(--sand);
    padding: 36px 28px;
    transition: background var(--t);
    position: relative;
}

.format-card__title {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.4;
}

.format-card__desc {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.75;
}

/* Золотой акцент на первой карточке */
.format-card--gold {
    background: var(--gold-pale)
}

/* ---- ЦИТАТА ---- */
.quote-block {
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 48px 0 0;
}

.quote-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.quote-block__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.55;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto 20px;
}

.quote-block__text em {
    color: var(--gold)
}

.quote-block__author {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .35);
    position: relative;
    z-index: 1;
}

/* ---- КТО МЫ ИЩЕМ ---- */
.looking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.looking-card {
    background: #fff;
    border: 1px solid var(--sand-3);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: border-color var(--t);
}

.looking-card:hover {
    border-color: var(--gold);
}

.looking-card__title {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.looking-card__desc {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.7;
}

/* ---- КАК ЭТО РАБОТАЕТ ---- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.step {
    text-align: center;
    padding: 0;
    position: relative;
}

.step__num {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
    margin-bottom: 8px;
    display: block;
}

.step__title {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.step__desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.6;
}

/* ---- ФИНАЛЬНЫЙ CTA ---- */
.final-cta {
    background: linear-gradient(160deg, var(--ink) 0%, #2a1f18 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.final-cta::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, .1) 0%, transparent 65%);
}

.final-cta__inner {
    position: relative;
    z-index: 1
}

.final-cta__eyebrow {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.final-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.final-cta__title em {
    font-style: italic;
    color: var(--gold)
}

.final-cta__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.final-cta__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.final-cta__contact-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .3);
}

.final-cta__contact-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color var(--t);
}

.final-cta__contact-val:hover {
    color: var(--gold)
}

.final-cta__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
}



/* Sticky CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100
}

.sticky-cta__btn {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, .96);
    color: #fff;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255, 107, 53, .35);
    white-space: nowrap
}

/* ---- SECTION TYPOGRAPHY ---- */
.eyebrow-gold {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 8px;
    display: block
}

.eyebrow-sea {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--sea);
    margin-bottom: 8px;
    display: block
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.15
}

.section-title em {
    font-style: italic;
    color: var(--gold)
}

.section-sub {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.7;
    max-width: 560px
}

/* ---- RESPONSIVE ---- */
@media(max-width:900px) {
    .formats-grid {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }
}

@media(max-width:768px) {
    .header__nav {
        display: none
    }

    .sticky-cta {
        display: flex
    }

    .looking-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 72px 0 56px
    }

    .quote-block {
        padding: 36px 24px
    }

    .final-cta__divider {
        display: none
    }

    .final-cta__contacts {
        flex-direction: column;
        gap: 20px
    }
}

@media(max-width:480px) {
    .steps {
        grid-template-columns: 1fr
    }

    .hero__cta {
        flex-direction: column;
        align-items: center
    }

    .hero__cta .btn-gold,
    .hero__cta .btn-ghost-white {
        width: 260px;
        justify-content: center
    }
}