:root {
    --lp-bg: #ffffff;
    --lp-surface: #ffffff;
    --lp-surface-2: #f2ede5;
    --lp-surface-3: #424953;
    --lp-text: #424953;
    --lp-text-soft: #8f6a3b;
    --lp-text-invert: #ffffff;    
    --lp-line: rgba(27, 26, 24, 0.12);
    --lp-gold: #b68c53;
    --lp-gold-dark: #8f6a3b;
    --lp-grey: #8D9BA4;
    --lp-dark-grey: #424953;
    --lp-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    --lp-radius-lg: 20px;
    --lp-radius-md: 12px;
    --lp-radius-sm: 4px;
    --lp-radius-null: 0px;    
    --lp-container: 1920px;
    --lp-section-padding: 120px;
    --lp-section-padding-md: 60px;
    --lp-section-padding-sm: 30px;
    --lp-section-padding-null: 0px;    
    --lp-lead-font: "Barlow", sans-serif;
    --lp-title-font: "Playfair Display", serif;
}

.lp-pp-wrapper,
.lp-pp-wrapper * { box-sizing: border-box; }

.lp-pp-wrapper .lp-landing__section {
    padding: var(--lp-section-padding) 0;
    position: relative;
}

.lp-pp-wrapper .lp-landing__container {
    width: min(100% - 0px, var(--lp-container));
    margin: 0 auto;
}

.lp-pp-wrapper .lp-landing__section-grid {
    display: grid;
    gap: 30px;
}

.lp-pp-wrapper .lp-landing__heading-group {
    display: grid;
    gap: 14px;
}

.lp-pp-wrapper .lp-landing__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    gap: 10px;
    color: var(--lp-grey);
    font-family: var(--lp-lead-font);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lp-pp-wrapper .lp-landing__section-title {
    text-align: center;    
    font-family: var(--lp-title-font);
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
    line-height: 2.6rem;
    color: var(--lp-dark-grey) !important;
    margin: 0;
}

.lp-pp-wrapper .lp-landing__lead {
    font-family: var(--lp-lead-font);
    color: var(--lp-text);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 2rem;
    margin: 0;    
    text-align: center;     
}

.lp-pp-wrapper .lp-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.lp-pp-wrapper .lp-timeline__item {
    position: relative;
    padding: 24px 26px 32px 26px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-sm);
    box-shadow: var(--lp-shadow);
    display: grid;
    align-content: start;
    gap: 10px;
}

.lp-pp-wrapper .lp-timeline__item::before {
    content: attr(data-step);
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--lp-dark-grey);
    color: var(--lp-text-invert);
    font-weight: 800;
    font-family: var(--lp-lead-font);
    font-size: 1rem;
}

.lp-pp-wrapper .lp-timeline__title {
    color: var(--lp-dark-grey);
    font-family: var(--lp-title-font);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.lp-pp-wrapper .lp-timeline__desc {
    color: var(--lp-text);
    font-family: var(--lp-lead-font);
    font-size: 1rem;
    line-height: 1.8em;
    margin: 0;
}

.lp-pp-wrapper .lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}
.lp-pp-wrapper .lp-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .lp-pp-wrapper .lp-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .lp-pp-wrapper .lp-landing__section { padding: 64px 0; }
    .lp-pp-wrapper .lp-landing__section-title { font-size: 1.6rem !important; line-height: 2.4rem; }
    .lp-pp-wrapper .lp-timeline { grid-template-columns: 1fr; }
}