:root {
    --c-cream: #F6F0E2;
    --c-cream2: #EDE7D6;
    --c-cream3: #E6DFCF;
    --c-green: #1C3828;
    --c-green2: #274D38;
    --c-terra: #BF5328;
    --c-terra2: #D06840;
    --c-gold: #C49534;
    --c-brown: #3D2010;
    --c-dark: #161310;
    --c-text: #1F1B16;
    --c-mid: #5A5040;
    --c-muted: #9A8E7C;
    --c-border: #D6CEBC;
    --c-white: #FFFFFF;
    --f-serif: 'Cormorant Garamond', Georgia, serif;
    --f-sans: 'Outfit', system-ui, sans-serif;
    --mw: 1260px;
    --nh: 70px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-sans);
    background: var(--c-cream);
    color: var(--c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: var(--f-sans);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: var(--f-sans);
}

h1, h2, h3, h4, h5 {
    font-family: var(--f-serif);
    line-height: 1.1;
}

.stag {
    display: inline-block;
    font-family: var(--f-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-terra);
    margin-bottom: 18px;
}
.stag_light {
    color: var(--c-terra2);
}
.stag_gold {
    color: var(--c-gold);
}

.btn_fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--c-terra);
    color: var(--c-white);
    font-family: var(--f-sans);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.045em;
    transition: background 0.22s ease, transform 0.15s ease;
}
.btn_fill:hover {
    background: var(--c-terra2);
    transform: translateY(-1px);
}
.btn_fill.muted {
    background: var(--c-green);
}
.btn_fill.muted:hover {
    background: var(--c-green2);
}

.btn_stroke {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 30px;
    border: 1.5px solid var(--c-text);
    color: var(--c-text);
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.035em;
    transition: border-color 0.2s, color 0.2s;
}
.btn_stroke:hover {
    border-color: var(--c-terra);
    color: var(--c-terra);
}

.btn_outline_w {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.42);
    color: var(--c-white);
    font-size: 13.5px;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, background 0.2s;
}
.btn_outline_w:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.06);
}

.ck_bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0F0D0A;
    z-index: 9000;
    padding: 22px 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.ck_bar_inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.ck_bar_txt {
    flex: 1;
    min-width: 260px;
}
.ck_bar_txt strong {
    font-family: var(--f-serif);
    font-size: 16px;
    color: var(--c-white);
    display: block;
    margin-bottom: 4px;
}
.ck_bar_txt p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.58);
    line-height: 1.55;
}
.ck_bar_btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.ck_btn_accept {
    padding: 10px 22px;
    background: var(--c-terra);
    color: var(--c-white);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--f-sans);
    transition: background 0.2s;
}
.ck_btn_accept:hover {
    background: var(--c-terra2);
}
.ck_btn_accept.full {
    width: 100%;
    padding: 12px;
    font-size: 13.5px;
}
.ck_btn_reject {
    padding: 10px 22px;
    border: 1.5px solid rgba(255,255,255,0.24);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-family: var(--f-sans);
    transition: border-color 0.2s;
}
.ck_btn_reject:hover {
    border-color: rgba(255,255,255,0.65);
}
.ck_btn_custom {
    padding: 10px 22px;
    border: 1.5px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-family: var(--f-sans);
    transition: color 0.2s;
}
.ck_btn_custom:hover {
    color: rgba(255,255,255,0.75);
}

.ck_panel_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9500;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ck_panel_overlay.is_open {
    display: flex;
}
.ck_panel {
    background: var(--c-white);
    width: 100%;
    max-width: 500px;
}
.ck_panel_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px 18px;
    border-bottom: 1px solid var(--c-border);
}
.ck_panel_top h3 {
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
}
.ck_close_btn {
    font-size: 22px;
    color: var(--c-muted);
    transition: color 0.18s;
    display: flex;
    align-items: center;
}
.ck_close_btn:hover {
    color: var(--c-text);
}
.ck_panel_content {
    padding: 4px 28px;
}
.ck_category {
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
}
.ck_category.last {
    border-bottom: none;
}
.ck_cat_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}
.ck_cat_name {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
}
.ck_always_on {
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.ck_category p {
    font-size: 13px;
    color: var(--c-mid);
    line-height: 1.55;
}
.ck_switch {
    position: relative;
    width: 40px;
    height: 23px;
    cursor: pointer;
    display: block;
}
.ck_switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.ck_switch_track {
    position: absolute;
    inset: 0;
    background: var(--c-border);
    border-radius: 12px;
    transition: background 0.2s;
}
.ck_switch_track::before {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--c-white);
    top: 3px;
    left: 3px;
    transition: transform 0.22s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.ck_switch input:checked + .ck_switch_track {
    background: var(--c-terra);
}
.ck_switch input:checked + .ck_switch_track::before {
    transform: translateX(17px);
}
.ck_panel_bottom {
    padding: 16px 28px 24px;
    border-top: 1px solid var(--c-border);
}


.main_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nh);
    z-index: 800;
    padding: 0 40px;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}
.main_nav.nav_scrolled {
    background: rgba(246, 240, 226, 0.94);
    box-shadow: 0 1px 0 var(--c-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav_wrap {
    max-width: var(--mw);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_logo_lnk {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.nlg_serif {
    font-family: var(--f-serif);
    font-size: 21px;
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: 0.01em;
}
.nlg_light {
    font-family: var(--f-serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--c-mid);
}
.nav_menu {
    display: flex;
    align-items: center;
    gap: 38px;
}
.nmenu_lnk {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text);
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.2s;
}
.nmenu_lnk::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-terra);
    transition: width 0.25s ease;
}
.nmenu_lnk:hover {
    color: var(--c-terra);
}
.nmenu_lnk:hover::after {
    width: 100%;
}
.nav_hmb {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
}
.nav_hmb span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--c-text);
    transition: transform 0.25s, opacity 0.2s;
}
.nav_hmb.hmb_active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav_hmb.hmb_active span:nth-child(2) {
    opacity: 0;
}
.nav_hmb.hmb_active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.hero_sect {
    background: var(--c-cream);
    padding-top: var(--nh);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 64px 40px 80px;
    width: 100%;
}
.hero_4col {
    display: grid;
    grid-template-columns: 72px 1fr 1fr 188px;
    gap: 0 44px;
    align-items: start;
}
.h4_label_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
}
.h4_vertical_tag {
    font-size: 9.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}
.h4_divider {
    display: block;
    width: 1px;
    height: 44px;
    background: var(--c-border);
    margin: 14px 0;
}
.h4_est_tag {
    font-family: var(--f-serif);
    font-size: 12px;
    font-style: italic;
    color: var(--c-muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.h4_main_col {
    padding-top: 8px;
}
.h4_kicker {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-terra);
    margin-bottom: 22px;
}
.h4_headline {
    font-family: var(--f-serif);
    font-size: clamp(52px, 6.2vw, 86px);
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--c-text);
    margin-bottom: 28px;
    line-height: 1.04;
}
.h4_headline em {
    font-style: italic;
    color: var(--c-terra);
}
.h4_lead {
    font-size: 16px;
    color: var(--c-mid);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 38px;
}
.h4_cta_row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.h4_image_col {
    grid-column: 3 / 4;
    grid-row: 1;
}
.h4_img_wrap {
    position: relative;
    overflow: hidden;
}
.h4_img_wrap::before {
    content: '';
    display: block;
    padding-bottom: 118%;
}
.h4_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.h4_badge {
    position: absolute;
    bottom: 18px;
    left: -18px;
    background: var(--c-green);
    color: var(--c-white);
    padding: 14px 16px 12px;
    text-align: center;
    line-height: 1;
}
.hb_num {
    display: block;
    font-family: var(--f-serif);
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 4px;
}
.hb_label {
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
}
.h4_info_col {
    grid-column: 4 / 5;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}
.h4_info_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid var(--c-border);
    background: rgba(255,255,255,0.44);
    transition: background 0.2s;
}
.h4_info_item:hover {
    background: rgba(255,255,255,0.75);
}
.h4_info_item i {
    font-size: 15px;
    color: var(--c-terra);
    flex-shrink: 0;
}
.h4_info_item span {
    font-size: 11.5px;
    color: var(--c-mid);
    line-height: 1.4;
}

.about_sect {
    background: var(--c-green);
    padding: 108px 0;
    color: var(--c-white);
}
.about_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.ab_layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 88px;
    align-items: center;
}
.ab_visual_side {
    display: flex;
    justify-content: flex-end;
}
.ab_circle_frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.ab_circle_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab_text_side .ab_h2 {
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 28px;
}
.ab_text_side p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.68);
    line-height: 1.78;
    margin-bottom: 20px;
    max-width: 500px;
}
.ab_text_side p:last-of-type {
    margin-bottom: 38px;
}

.hiw_sect {
    background: var(--c-cream);
    padding: 108px 0;
}
.hiw_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.hiw_layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 88px;
    align-items: center;
}
.hiw_content_side .hiw_h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 52px;
}
.hiw_steps_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hiw_step_item {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--c-border);
}
.hiw_step_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.step_nr {
    font-family: var(--f-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--c-border);
    line-height: 1;
    min-width: 54px;
    letter-spacing: -0.02em;
}
.step_desc h4 {
    font-family: var(--f-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 8px;
}
.step_desc p {
    font-size: 14px;
    color: var(--c-mid);
    line-height: 1.68;
}
.hiw_img_side .hiw_img_border_frame {
    border: 1px solid var(--c-border);
    overflow: hidden;
    position: relative;
}
.hiw_img_border_frame::before {
    content: '';
    display: block;
    padding-bottom: 135%;
}
.hiw_img_border_frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats_sect {
    background-image: url('../assets/cl_table_spread_5593.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.stats_dark_overlay {
    background: rgba(15, 24, 15, 0.76);
    padding: 108px 0;
}
.stats_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
.stats_heading {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 72px;
    line-height: 1.12;
}
.stats_heading em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
}
.stats_4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.s4_item {
    padding: 52px 24px 48px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
}
.s4_number {
    font-family: var(--f-serif);
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.025em;
}
.s4_desc {
    font-size: 11.5px;
    color: rgba(255,255,255,0.52);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rfeat_sect {
    background: var(--c-brown);
    padding: 108px 0;
}
.rfeat_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.rfeat_layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 88px;
    align-items: center;
}
.rfeat_img_side .rfeat_img_wrap {
    position: relative;
    overflow: hidden;
}
.rfeat_img_wrap::before {
    content: '';
    display: block;
    padding-bottom: 128%;
}
.rfeat_img_wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rfeat_week_tag {
    position: absolute;
    top: 18px;
    left: 0;
    background: var(--c-terra);
    color: var(--c-white);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
}
.rfeat_text_side .rfeat_h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 24px;
    line-height: 1.12;
}
.rfeat_text_side p {
    font-size: 15px;
    color: rgba(255,255,255,0.62);
    line-height: 1.78;
    margin-bottom: 32px;
}
.rfeat_meta_row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}
.rfeat_meta_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
}
.rfeat_meta_item i {
    font-size: 14px;
}

.features_sect {
    background: var(--c-cream2);
    padding: 108px 0;
}
.feat_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.feat_top {
    text-align: center;
    margin-bottom: 60px;
}
.feat_h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.13;
}
.feat_4grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.f4_card {
    background: var(--c-cream);
    padding: 44px 32px 40px;
    transition: transform 0.22s ease;
}
.f4_card:hover {
    transform: translateY(-5px);
}
.f4_icon {
    font-size: 28px;
    color: var(--c-terra);
    margin-bottom: 20px;
    line-height: 1;
}
.f4_card h4 {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
}
.f4_card p {
    font-size: 13.5px;
    color: var(--c-mid);
    line-height: 1.7;
}

.curator_sect {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}
.curator_text_half {
    background: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.cur_text_inner {
    padding: 80px 72px 80px 40px;
    max-width: 580px;
    width: 100%;
}
.cur_h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.12;
}
.cur_name {
    font-family: var(--f-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--c-terra);
    margin-bottom: 24px;
}
.cur_text_inner p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.78;
    margin-bottom: 16px;
    text-align: justify;
}
.cur_text_inner p.cur_name {
    margin-bottom: 24px;
    text-align: left;
}
.curator_img_half {
    background: var(--c-green);
    overflow: hidden;
}
.curator_img_half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    display: block;
}

.cta_sect {
    position: relative;
    overflow: hidden;
}
.cta_img_wrap {
    position: relative;
}
.cta_img_wrap::before {
    content: '';
    display: block;
    padding-bottom: 52%;
}
.cta_bg_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cta_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(28, 56, 40, 0.88) 0%, rgba(28, 56, 40, 0.55) 60%, transparent 100%);
    display: flex;
    align-items: center;
}
.cta_content {
    padding: 0 80px;
    max-width: 580px;
}
.cta_h2 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 20px;
    line-height: 1.06;
}
.cta_h2 em {
    font-style: italic;
    color: rgba(255,255,255,0.65);
}
.cta_sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 380px;
}
.cta_btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .cta_img_wrap::before {
        padding-bottom: 120%;
    }
    .cta_content {
        padding: 0 28px;
    }
    .cta_overlay {
        background: rgba(28, 56, 40, 0.82);
        align-items: flex-end;
        padding-bottom: 44px;
    }
}

@media (max-width: 480px) {
    .cta_btns {
        flex-direction: column;
    }
    .cta_btns .btn_fill,
    .cta_btns .btn_outline_w {
        width: 100%;
        justify-content: center;
    }
}

.site_footer {
    background: var(--c-dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.55);
}
.footer_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.footer_main_row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer_logo {
    display: inline-block;
    font-family: var(--f-serif);
    font-size: 21px;
    color: var(--c-white);
    font-weight: 300;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.footer_logo span {
    font-weight: 600;
}
.footer_brand_col p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
}
.footer_addr {
    margin-top: 12px !important;
}
.footer_col_hd {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
    font-weight: 500;
}
.footer_links_col,
.footer_contact_col {
    display: flex;
    flex-direction: column;
}
.footer_links_col a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 5px 0;
    transition: color 0.2s;
    text-decoration: none;
}
.footer_links_col a:hover {
    color: var(--c-white);
}
.footer_contact_col p {
    font-size: 13px;
    color: rgba(255,255,255,0.44);
    padding: 3px 0;
    line-height: 1.65;
}
.footer_base {
    padding: 22px 0;
    font-size: 11.5px;
    color: rgba(255,255,255,0.25);
}

@media (max-width: 1100px) {
    .hero_4col {
        grid-template-columns: 60px 1fr 1fr;
    }
    .h4_info_col {
        display: none;
    }
    .stats_4grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feat_4grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer_main_row {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 960px) {
    .hero_4col {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .h4_label_col {
        display: none;
    }
    .h4_image_col {
        grid-column: 1;
        max-width: 500px;
    }
    .ab_layout {
        grid-template-columns: 1fr;
        gap: 52px;
        text-align: center;
    }
    .ab_visual_side {
        justify-content: center;
    }
    .ab_text_side p {
        max-width: 100%;
    }
    .hiw_layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .hiw_img_side {
        max-width: 380px;
    }
    .rfeat_layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .rfeat_img_side {
        max-width: 420px;
    }
    .curator_sect {
        grid-template-columns: 1fr;
    }
    .curator_text_half {
        justify-content: flex-start;
    }
    .cur_text_inner {
        padding: 72px 40px;
        max-width: 100%;
    }
    .curator_img_half {
        height: 420px;
    }
    .kont_layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .kont_card_col {
        position: static;
        max-width: 460px;
    }
}

@media (max-width: 700px) {
    .main_nav {
        padding: 0 20px;
    }
    .nav_menu {
        display: none;
        position: fixed;
        top: var(--nh);
        left: 0;
        right: 0;
        background: var(--c-cream);
        flex-direction: column;
        padding: 16px 20px 28px;
        gap: 0;
        border-top: 1px solid var(--c-border);
        box-shadow: 0 10px 28px rgba(0,0,0,0.07);
    }
    .nav_menu.nav_open {
        display: flex;
    }
    .nmenu_lnk {
        padding: 14px 0;
        border-bottom: 1px solid var(--c-border);
        font-size: 14.5px;
    }
    .nmenu_lnk:last-child {
        border-bottom: none;
    }
    .nmenu_lnk::after {
        display: none;
    }
    .nav_hmb {
        display: flex;
    }
    .hero_container {
        padding: 40px 20px 60px;
    }
    .about_container,
    .hiw_container,
    .stats_container,
    .rfeat_container,
    .feat_container,
    .kont_container {
        padding: 0 20px;
    }
    .about_sect,
    .hiw_sect,
    .stats_dark_overlay,
    .rfeat_sect,
    .features_sect,
    .kontakt_sect {
        padding: 72px 0;
    }
    .feat_4grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .stats_4grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer_container {
        padding: 0 20px;
    }
    .footer_main_row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cur_text_inner {
        padding: 56px 20px;
    }
    .curator_img_half {
        height: 300px;
    }
    .ck_bar {
        padding: 18px 20px;
    }
    .ck_bar_inner {
        gap: 18px;
    }
    .ck_bar_btns {
        flex-direction: column;
        width: 100%;
    }
    .ck_btn_accept, .ck_btn_reject, .ck_btn_custom {
        text-align: center;
        width: 100%;
    }
    .stats_sect {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .h4_cta_row {
        flex-direction: column;
    }
    .btn_fill, .btn_stroke {
        width: 100%;
        justify-content: center;
    }
    .stats_4grid {
        grid-template-columns: 1fr;
    }
    .rfeat_meta_row {
        gap: 14px;
    }
    .footer_main_row {
        grid-template-columns: 1fr 1fr;
    }
    .footer_brand_col {
        grid-column: 1 / -1;
    }
}
.main_nav.nav_solid {
    background: rgba(246, 240, 226, 0.97);
    box-shadow: 0 1px 0 var(--c-border);
}

.nmenu_current {
    color: var(--c-terra) !important;
}
.nmenu_current::after {
    width: 100% !important;
    background: var(--c-terra);
}

.ty_modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.48);
    z-index: 9200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ty_modal.ty_open {
    display: flex;
}
.ty_box {
    background: var(--c-white);
    padding: 52px 44px 44px;
    text-align: center;
    max-width: 360px;
    width: 100%;
}
.ty_check_icon {
    font-size: 44px;
    color: var(--c-terra);
    margin-bottom: 18px;
    line-height: 1;
}
.ty_box h3 {
    font-size: 27px;
    font-weight: 400;
    color: var(--c-text);
    margin-bottom: 10px;
}
.ty_box p {
    font-size: 14px;
    color: var(--c-mid);
    line-height: 1.65;
    margin-bottom: 30px;
}
.ty_dismiss {
    padding: 12px 30px;
    background: var(--c-green);
    color: var(--c-white);
    font-family: var(--f-sans);
    font-size: 14px;
    transition: background 0.2s;
}
.ty_dismiss:hover {
    background: var(--c-green2);
}

.fgrp {
    margin-bottom: 22px;
}
.fgrp label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text);
    margin-bottom: 8px;
}
.fgrp input,
.fgrp textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    background: var(--c-cream2);
    font-size: 14px;
    color: var(--c-text);
    outline: none;
    transition: border-color 0.22s, background 0.22s;
    resize: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.fgrp input:focus,
.fgrp textarea:focus {
    border-color: var(--c-terra);
    background: var(--c-white);
}
.fgrp input::placeholder,
.fgrp textarea::placeholder {
    color: var(--c-muted);
}
.ferr {
    display: block;
    font-size: 11.5px;
    color: #B71C1C;
    margin-top: 5px;
    min-height: 15px;
}

.ph_sect {
    background: var(--c-cream);
    padding-top: calc(var(--nh) + 60px);
    padding-bottom: 80px;
}
.ph_sect.ph_dark {
    background: var(--c-green);
    color: var(--c-white);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    overflow: hidden;
}
.ph_container {
    max-width: 680px;
    padding: 80px 60px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ph_sect.ph_dark .ph_container {
    padding: calc(var(--nh) + 48px) 60px 60px 40px;
    max-width: 100%;
}
.ph_h1 {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--c-text);
}
.ph_sect.ph_dark .ph_h1 {
    color: var(--c-white);
}
.ph_lead {
    font-size: 15.5px;
    color: var(--c-mid);
    line-height: 1.7;
    max-width: 480px;
}
.ph_sect.ph_dark .ph_lead {
    color: rgba(255,255,255,0.68);
}
.ph_dark_img {
    overflow: hidden;
}
.ph_dark_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: block;
}

.pricing_sect {
    background: var(--c-cream2);
    padding: 88px 0 96px;
}
.pricing_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.pricing_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 28px;
}
.plan_card {
    background: var(--c-cream);
    padding: 44px 36px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.plan_card.plan_featured {
    background: var(--c-green);
    color: var(--c-white);
    transform: translateY(-16px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}
.plan_featured_tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--c-terra);
    color: var(--c-white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 0;
}
.plan_badge_save {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-terra);
    margin-bottom: 16px;
    font-weight: 500;
}
.plan_period {
    font-family: var(--f-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--c-muted);
    margin-bottom: 16px;
    margin-top: 8px;
}
.plan_featured .plan_featured_tag + .plan_period {
    margin-top: 32px;
}
.plan_featured .plan_period {
    color: rgba(255,255,255,0.55);
}
.plan_price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 6px;
}
.plan_amt {
    font-family: var(--f-serif);
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--c-text);
}
.plan_featured .plan_amt {
    color: var(--c-white);
}
.plan_curr {
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 300;
    color: var(--c-mid);
    align-self: flex-start;
    padding-top: 8px;
}
.plan_featured .plan_curr {
    color: rgba(255,255,255,0.65);
}
.plan_per {
    font-size: 13px;
    color: var(--c-muted);
    padding-bottom: 4px;
}
.plan_featured .plan_per {
    color: rgba(255,255,255,0.5);
}
.plan_billing {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.plan_featured .plan_billing {
    color: rgba(255,255,255,0.55);
}
.plan_divider {
    height: 1px;
    background: var(--c-border);
    margin-bottom: 24px;
}
.plan_featured .plan_divider {
    background: rgba(255,255,255,0.15);
}
.plan_perks {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}
.plan_perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--c-mid);
}
.plan_featured .plan_perks li {
    color: rgba(255,255,255,0.8);
}
.plan_perks li i {
    font-size: 16px;
    color: var(--c-terra);
    flex-shrink: 0;
}
.plan_featured .plan_perks li i {
    color: rgba(255,255,255,0.6);
}
.plan_btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 13.5px;
}
.pricing_note {
    text-align: center;
    font-size: 12.5px;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.pricing_note i {
    font-size: 14px;
}

.plan_includes_sect {
    background: var(--c-cream);
    padding: 88px 0;
}
.pi_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.pi_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pi_h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.12;
}
.pi_text_col p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}
.pi_check_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}
.pi_check_item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    color: var(--c-text);
}
.pi_check_item i {
    font-size: 18px;
    color: var(--c-terra);
    flex-shrink: 0;
}
.pi_img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid var(--c-border);
}

.plan_guarantee_sect {
    background: var(--c-cream2);
    padding: 88px 0;
}
.pg_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.pg_inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.pg_icon {
    font-size: 40px;
    color: var(--c-green);
    margin-bottom: 20px;
}
.pg_h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
}
.pg_inner p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}
.pg_inner p:last-of-type {
    margin-bottom: 32px;
}

.dostep_steps_sect {
    background: var(--c-cream);
    padding: 88px 0;
}
.ds_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ds_step {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid var(--c-border);
}
.ds_step:last-child {
    border-bottom: none;
}
.ds_step_num_col {
    display: flex;
    justify-content: center;
}
.ds_big_num {
    font-family: var(--f-serif);
    font-size: 80px;
    font-weight: 300;
    color: var(--c-border);
    line-height: 1;
    letter-spacing: -0.03em;
}
.ds_h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.12;
}
.ds_step_content p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}
.ds_step_content p:last-child {
    margin-bottom: 0;
}
.ds_img_frame {
    overflow: hidden;
    position: relative;
}
.ds_img_frame::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}
.ds_img_frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dostep_archive_sect {
    background: var(--c-green);
    padding: 88px 0;
    color: var(--c-white);
}
.da_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.da_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.da_h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.da_text_col p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 16px;
}
.da_stats_row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.da_stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.da_stat_num {
    font-family: var(--f-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--c-white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.da_stat_lbl {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.da_img_col {
    position: relative;
}
.da_img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.da_img_card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--c-terra);
    color: var(--c-white);
    padding: 18px 20px;
    max-width: 220px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.da_img_card i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.da_img_card span {
    font-size: 12px;
    line-height: 1.55;
}

.dostep_devices_sect {
    background: var(--c-cream2);
    padding: 88px 0;
}
.dd_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.dd_top {
    text-align: center;
    margin-bottom: 56px;
}
.dd_h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 14px;
}
.dd_sub {
    font-size: 14.5px;
    color: var(--c-mid);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.65;
}
.dd_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.dd_item {
    background: var(--c-cream);
    padding: 36px 28px;
    transition: transform 0.2s;
}
.dd_item:hover {
    transform: translateY(-4px);
}
.dd_icon {
    font-size: 28px;
    color: var(--c-terra);
    margin-bottom: 16px;
}
.dd_item h4 {
    font-family: var(--f-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 10px;
}
.dd_item p {
    font-size: 13.5px;
    color: var(--c-mid);
    line-height: 1.68;
}

.inner_cta_sect {
    background: var(--c-green);
    padding: 80px 0;
    text-align: center;
}
.ic_container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 40px;
}
.ic_h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 16px;
}
.inner_cta_sect p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 36px;
}
.ic_btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ic_btn_light {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.8);
}
.ic_btn_light:hover {
    border-color: rgba(255,255,255,0.75);
    color: var(--c-white);
}

.faq_header_sect {
    background: var(--c-cream2);
    padding-top: var(--nh);
    overflow: hidden;
}
.fh_inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}
.fh_text {
    padding: 72px 0 64px;
}
.fh_h1 {
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.1;
    margin-bottom: 18px;
}
.fh_text p {
    font-size: 15px;
    color: var(--c-mid);
    line-height: 1.7;
}
.fh_link {
    color: var(--c-terra);
    text-decoration: underline;
    text-decoration-color: rgba(191,83,40,0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.fh_link:hover {
    text-decoration-color: var(--c-terra);
}
.fh_img_col {
    overflow: hidden;
    max-height: 360px;
}
.fh_img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.faq_group_sect {
    background: var(--c-cream);
    padding: 80px 0 96px;
}
.faq_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}
.faq_group_hd {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--c-text);
}
.faq_group_num {
    font-family: var(--f-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--c-border);
    line-height: 1;
    letter-spacing: -0.02em;
}
.faq_group_title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 300;
    color: var(--c-text);
}
.faq_items_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}
.faq_item {
    background: var(--c-cream2);
    padding: 32px 28px;
}
.faq_item h4 {
    font-family: var(--f-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
    line-height: 1.3;
}
.faq_item p {
    font-size: 13.5px;
    color: var(--c-mid);
    line-height: 1.72;
}

.faq_cta_sect {
    background: var(--c-cream2);
    padding: 72px 0;
    border-top: 1px solid var(--c-border);
}
.faq_cta_inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.faq_cta_text h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 8px;
}
.faq_cta_text p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.65;
}

.kontakt_page_sect {
    background: var(--c-cream);
    padding-top: calc(var(--nh) + 64px);
    padding-bottom: 96px;
}
.kp_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.kp_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.kp_h1 {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.1;
}
.kp_h1 em {
    font-style: italic;
    color: var(--c-terra);
}
.kp_intro {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.72;
    margin-bottom: 40px;
    max-width: 420px;
}
.kp_faq_lnk {
    color: var(--c-terra);
    text-decoration: underline;
    text-decoration-color: rgba(191,83,40,0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.kp_faq_lnk:hover {
    text-decoration-color: var(--c-terra);
}
.kp_contact_details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
}
.kp_detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.kp_detail_icon {
    width: 40px;
    height: 40px;
    background: var(--c-cream2);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--c-terra);
    flex-shrink: 0;
}
.kp_detail_body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kp_detail_label {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.kp_detail_val {
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.55;
}
.kp_img_wrap {
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}
.kp_img_wrap::before {
    content: '';
    display: block;
    padding-bottom: 60%;
}
.kp_img_wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kp_form_box {
    background: var(--c-white);
    padding: 48px 44px 44px;
    border: 1px solid var(--c-border);
}
.kp_form_h2 {
    font-size: 22px;
    font-weight: 400;
    color: var(--c-text);
    margin-bottom: 28px;
}
.kp_submit_btn {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.04em;
    gap: 10px;
    margin-top: 4px;
}
.kp_submit_btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.kp_address_sect {
    background: var(--c-cream2);
    padding: 88px 0;
}
.kp_addr_container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}
.kp_addr_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.kp_addr_h2 {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 18px;
}
.kp_addr_text p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.72;
    margin-bottom: 28px;
}
.kp_addr_block {
    padding: 24px 28px;
    border: 1px solid var(--c-border);
    background: var(--c-cream);
}
.kp_addr_block strong {
    display: block;
    font-family: var(--f-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 8px;
}
.kp_addr_block p {
    font-size: 13.5px;
    color: var(--c-mid);
    margin-bottom: 0;
    line-height: 1.6;
}
.kp_addr_img {
    overflow: hidden;
}
.kp_addr_img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.legal_page_sect {
    padding-top: calc(var(--nh) + 64px);
    padding-bottom: 96px;
    background: var(--c-cream);
}
.legal_container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}
.legal_header {
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--c-border);
}
.legal_h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 300;
    color: var(--c-text);
    margin-bottom: 18px;
    line-height: 1.1;
}
.legal_intro {
    font-size: 15px;
    color: var(--c-mid);
    line-height: 1.72;
}
.legal_body h2 {
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--c-text);
    margin-top: 44px;
    margin-bottom: 14px;
}
.legal_body h2:first-child {
    margin-top: 0;
}
.legal_body p {
    font-size: 14.5px;
    color: var(--c-mid);
    line-height: 1.8;
    margin-bottom: 0;
}
.legal_body p + p {
    margin-top: 12px;
}

@media (max-width: 1000px) {
    .pricing_grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .plan_card.plan_featured {
        transform: none;
    }
    .pi_layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ds_step {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ds_step_num_col {
        justify-content: flex-start;
    }
    .ds_step_alt .ds_step_img_col {
        order: -1;
    }
    .da_layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .da_img_card {
        right: 0;
        bottom: -16px;
    }
    .dd_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fh_inner {
        grid-template-columns: 1fr;
    }
    .fh_img_col {
        display: none;
    }
    .faq_items_grid {
        grid-template-columns: 1fr;
    }
    .kp_layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .kp_addr_layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ph_sect.ph_dark {
        grid-template-columns: 1fr;
    }
    .ph_dark_img {
        height: 220px;
    }
    .faq_cta_inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .ph_container {
        padding: 48px 20px 56px;
    }
    .ph_sect.ph_dark .ph_container {
        padding: calc(var(--nh) + 40px) 20px 48px;
    }
    .pricing_container,
    .pi_container,
    .pg_container,
    .ds_container,
    .da_container,
    .dd_container,
    .ic_container,
    .faq_container,
    .faq_cta_inner,
    .kp_container,
    .kp_addr_container,
    .legal_container {
        padding: 0 20px;
    }
    .faq_header_sect .fh_inner {
        padding: 0 20px;
    }
    .dd_grid {
        grid-template-columns: 1fr;
    }
    .kp_form_box {
        padding: 32px 22px;
    }
    .da_stats_row {
        gap: 24px;
    }
    .legal_page_sect,
    .kontakt_page_sect {
        padding-top: calc(var(--nh) + 40px);
        padding-bottom: 72px;
    }
    .plan_card {
        padding: 36px 28px;
    }
}