/* ==============================================
   Homepage (titulní strana) styles
   ============================================== */

/* ── shared label (same as .contact-section-lbl) ── */
.front-lbl {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 12px;
    color: var(--main-color);
}

/* em highlight inside headings */
.front-hero-l h1 em,
.front-cat-hd h2 em,
.front-om-l h2 em,
.front-dest-hd h2 em,
.front-ls-cnt h2 em,
.front-seo-l h2 em,
.front-inv-hd h2 em {
    font-style: italic;
    color: var(--main-color);
}

/* ── HERO ── */
.front-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: clamp(480px, 75vh, 700px);
    overflow: hidden;
}
.front-hero-l {
    background: #faf8f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px;
    text-align: left;
}
.front-hero-ey {
    margin-bottom: 18px;
}
.front-hero-ey span {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 5px 14px;
    border-radius: 20px;
}
.front-hero-l h1 {
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 300;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: #111;
    margin-bottom: 18px;
    text-align: left;
}
.front-hero-desc {
    font-size: 15px;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
}
.front-hero-stats {
    display: flex;
    border-top: 1px solid #e2dcc8;
    padding-top: 26px;
    margin-top: 36px;
    gap: 0;
}
.front-hst {
    flex: 1;
    padding-right: 18px;
    border-right: 1px solid #e2dcc8;
    padding-right: 20px;
}
.front-hst:last-child {
    border-right: none;
    padding-left: 20px;
    padding-right: 0;
}
.front-hst:not(:first-child) {
    padding-left: 20px;
}
.front-hst-n {
    display: block;
    font-size: 26px;
    font-weight: 500;
    color: #111;
    line-height: 1;
    margin-bottom: 4px;
}
.front-hst-l {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.front-hero-r {
    position: relative;
    overflow: hidden;
}
.front-hero-r picture,
.front-hero-r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.front-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .55));
}
.front-hero-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 28px;
    text-align: left;
}
.front-hero-badge {
    display: inline-block;
    background: var(--main-color);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.front-hero-title {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}
.front-hero-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}
.front-hero-loc i {
    margin-right: 5px;
    color: var(--main-color);
}

/* ── SEARCH BAR ── */
.srch-wrap {
    position: relative;
    z-index: 10;
}
.srch {
    width: 100%;
    display: flex;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    overflow: hidden;
    height: 70px;
    border-bottom: 2px solid var(--main-color);
}
.sf {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    border-right: 1px solid #ede9dd;
    position: relative;
    min-width: 0;
}
.sf-icon {
    width: 22px;
    flex-shrink: 0;
    color: var(--main-color);
    font-size: 15px;
    text-align: center;
}
/* Fallback native select */
.sf select {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #555;
    font-size: 14px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
    padding-right: 20px;
    min-width: 0;
    width: 100%;
    font-family: inherit !important;
    box-shadow: none !important;
}
.sf::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ccc;
    pointer-events: none;
}
.sf-select2::after {
    display: none;
}
.srch .select2-container {
    flex: 1;
    width: 100% !important;
}
.srch .select2-container .select2-selection--single {
    height: 68px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 24px 0 0;
    display: flex;
    align-items: center;
}
.srch .select2-container .select2-selection--single .select2-selection__rendered {
    color: #555;
    font-size: 14px;
    line-height: 1.2;
    padding-left: 0;
    padding-right: 0;
}
.srch .select2-container .select2-selection--single .select2-selection__arrow {
    right: 2px;
    width: 20px;
}
.srch .select2-container .select2-selection--single .select2-selection__arrow b {
    border-color: #bbb transparent transparent transparent;
}
.srch .select2-container--open .select2-selection--single {
    box-shadow: none;
}
.sf-price {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 22px 6px;
    border-right: 1px solid #ede9dd;
    min-width: 0;
}
.sf-price-label {
    font-size: 10px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
    line-height: 1;
}
.pr-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.pr-v {
    font-size: 11px;
    color: #777;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 46px;
}
.pr-v.hi { text-align: right; min-width: 80px; }
.price-range-front {
    flex: 1;
    min-width: 0;
}
.sf-price .irs {
    height: 20px;
}
.sf-price .irs-with-grid {
    height: 20px;
}
.sf-price .irs-line {
    height: 3px;
    top: 9px;
    background: #e2dcc8;
    border-radius: 999px;
}
.sf-price .irs-bar {
    height: 3px;
    top: 9px;
    background: var(--main-color);
}
.sf-price .irs-slider {
    top: 4px !important;
    width: 12px !important;
    height: 12px !important;
    background: var(--main-color) !important;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    cursor: pointer;
}
.sf-price .irs-slider:before {
    display: none !important;
}
.sf-price .irs-min,
.sf-price .irs-max,
.sf-price .irs-single,
.sf-price .irs-from,
.sf-price .irs-to,
.sf-price .irs-grid {
    display: none !important;
}
.srch-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .1em;
    flex-shrink: 0;
    text-transform: uppercase;
    transition: background .2s, color .2s;
    font-family: inherit;
}
.srch-btn:hover {
    background: var(--main-color);
    color: #111;
}

/* ── CATEGORIES ── */
.front-cat {
    background: #fff;
}
.front-cat-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 72px;
    padding-bottom: 32px;
    gap: 20px;
}
.front-cat-hd > div {
    text-align: left;
}
.front-cat-hd h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 300;
    letter-spacing: -.01em;
    margin-bottom: 0;
    text-align: left;
}
.front-cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.front-cc {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}
.front-cc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 60%);
    transition: opacity .3s;
}
.front-cc:hover .front-cc-ov {
    opacity: .8;
}
.front-cc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    text-align: left;
}
.front-cc-badge {
    display: inline-block;
    background: var(--main-color);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.front-cc-name {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}
.front-cc-sub {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}
.front-cc-arr {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: background .2s, border-color .2s;
}
.front-cc:hover .front-cc-arr {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #111;
}
.front-cat-more {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #f0ede4;
}
.front-ct {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    padding: 7px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    transition: border-color .2s, color .2s;
}
.front-ct:hover,
.front-ct.front-ct-act {
    border-color: var(--main-color);
    color: #111;
    text-decoration: none;
}

/* ── OFF-MARKET ── */
.front-om {
    background: #f3eee3;
    border-top: 1px solid #e2dcc8;
    border-bottom: 1px solid #e2dcc8;
    padding: 80px 0;
}
.front-om-in {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: flex-start;
    direction: ltr;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}
.front-om-l {
    grid-column: 1;
    text-align: left;
}
.front-om-items {
    grid-column: 2;
    text-align: left;
}
.front-om-l .front-lbl {
    color: var(--main-color);
}
.front-om-l h2 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300;
    letter-spacing: -.01em;
    color: #111;
    margin-bottom: 12px;
}
.front-om-l p {
    font-size: 14px;
    color: #68685a;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 1.85em;
}
.front-om-l .commentssubmit {
    background: var(--main-color);
    color: #111;
    border-color: var(--main-color);
    margin-top: 0 !important;
}
.front-om-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.front-omi {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2dcc8;
    border-left: 3px solid var(--main-color);
}
.front-omi-ic {
    width: 30px;
    height: 30px;
    background: #faf8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--main-color);
    flex-shrink: 0;
}
.front-omi-ic i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.front-omi h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a16;
    margin-bottom: 2px;
}
.front-omi p {
    font-size: 12.5px;
    color: #68685a;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* ── DESTINATIONS ── */
.front-dest {
    background: #fff;
}
.front-dest-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 72px;
    padding-bottom: 32px;
    gap: 20px;
}
.front-dest-hd > div {
    text-align: left;
}
.front-dest-hd h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 300;
    letter-spacing: -.01em;
    margin-bottom: 0;
    text-align: left;
}
.front-dest-hd p {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    margin: 6px 0 0;
}
.front-dg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}
.front-dc {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}
.front-dc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 55%);
    transition: opacity .3s;
}
.front-dc:hover .front-dc-ov {
    opacity: .9;
}
.front-dc-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
}
.front-dc-name {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}
.front-dc-cnt {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
}
.front-dc-arr {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    transition: background .2s, border-color .2s;
}
.front-dc:hover .front-dc-arr {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #111;
}
.front-dest-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 20px;
    padding-bottom: 32px;
    border-top: 1px solid #e8e4d8;
}
.front-dl {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 0;
    text-decoration: none;
    border-right: 1px solid #e8e4d8;
    margin-right: 20px;
}
.front-dl:last-child {
    border-right: none;
}
.front-dl-n {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    transition: color .2s;
}
.front-dl:hover .front-dl-n {
    color: var(--main-color);
}
.front-dl-c {
    font-size: 11px;
    color: #999;
}

/* ── LIFESTYLE ── */
.front-ls {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.front-ls-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.front-ls-ov {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}
.front-ls-cnt {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 0;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.front-ls-cnt h2 {
    font-size: clamp(24px, 3vw, 44px);
    font-weight: 300;
    letter-spacing: -.01em;
    color: #fff;
    margin-bottom: 20px;
}
.front-ls-cnt p {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 12px;
}
.front-ls-cnt .front-lbl {
    color: var(--main-color);
}

/* ── BROKER / REVIEWS wrappers ── */
.front-broker-wrap {
    padding: 72px 0 0;
}
.front-reviews-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 48px;
    position: relative;
}
.front-reviews-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: #faf8f3;
    border-top: 1px solid #e2dcc8;
    z-index: -1;
}
.front-reviews-wrap .contact-section-reviews {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

/* ── SEO / SERVICES ── */
.front-seo {
    background: #fff;
    border-top: 1px solid #e2dcc8;
    padding: 80px 0;
}
.front-seo-in {
    display: grid;
    grid-template-columns: 6fr 7fr;
    gap: 56px;
    align-items: start;
    direction: ltr;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}
.front-seo-l {
    grid-column: 1;
    max-width: 620px;
    text-align: left;
}
.front-seo-l .front-lbl {
    color: var(--main-color);
}
.front-seo-l h2 {
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 300;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
}
.front-seo-l p {
    font-size: 14px;
    color: #68685a;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 12px;
}
.front-seo-l .commentssubmit {
    margin-top: 14px;
}
.front-seo-cards {
    grid-column: 2;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.front-sc {
    background: #faf8f3;
    border: 1px solid #ede9dd;
    padding: 15px 19px;
    text-align: left;
    transition: background .2s;
}
.front-sc:hover {
    background: #f3eee3;
}
.front-sc h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 400;
    color: #1a1a16;
    text-align: left;
    margin-bottom: 3px;
}
.front-sc p {
    font-size: 12.5px;
    color: #68685a;
    font-weight: 300;
    line-height: 1.65;
    text-align: left;
    margin: 0;
}

/* ── INVEST ── */
.front-inv {
    background: #f3eee3;
    padding: 80px 0;
    border-top: 1px solid #e2dcc8;
    border-bottom: 1px solid #e2dcc8;
}
.front-inv-in {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
}
.front-inv-hd {
    text-align: left;
    max-width: 700px;
    margin: 0;
}
.front-inv-hd .front-lbl {
    text-align: left;
    display: block;
}
.front-inv-hd h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 300;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}
.front-inv-hd p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
}
.front-inv-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.front-icard {
    background: #fff;
    border: 1px solid #e2dcc8;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: border-color .2s, box-shadow .2s;
}
.front-icard:hover {
    border-color: var(--main-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    text-decoration: none;
}
.front-ic-body {
    padding: 28px 28px 24px;
}
.front-ic-ey {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--main-color);
    margin-bottom: 10px;
}
.front-icard h3 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}
.front-icard p {
    font-size: 13px;
    color: #666;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 20px;
}
.front-ic-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    border-top: 1px solid #ede9dd;
    padding-top: 18px;
    margin-bottom: 20px;
}
.front-isp {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.front-isp-l {
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.front-isp-v {
    font-size: 13px;
    color: #222;
    font-weight: 500;
}
.front-ic-lnk {
    font-size: 12px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ── ARTICLES ── */
.front-arts {
    background: #faf8f3;
    padding: 80px 0;
    border-top: 1px solid #e2dcc8;
}
.front-arts-in {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}
.front-arts-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.front-arts-hd > div {
    text-align: left;
}
.front-arts-hd h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 300;
    letter-spacing: -.01em;
    margin-bottom: 0;
}
.front-arts-carousel .swiper-container {
    overflow: hidden;
}
.front-arts-carousel .swiper-wrapper {
    align-items: stretch;
}
.front-arts-carousel .swiper-slide {
    height: auto;
    display: flex;
}
.front-ac {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #ede9dd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}
.front-ac-img {
    aspect-ratio: 5 / 3;
    overflow: hidden;
}
.front-ac-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.front-ac:hover {
    border-color: var(--main-color);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    text-decoration: none;
}
.front-ac-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 20px;
}
.front-ac-date {
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}
.front-ac-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 10px;
}
.front-ac-exc {
    font-size: 13px;
    color: #777;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.front-ac-lnk {
    font-size: 12px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: auto;
}
.front-arts-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}
.front-arts-prev,
.front-arts-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2dcc8;
    color: #222;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.front-arts-prev:hover,
.front-arts-next:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}
.front-arts-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}
.front-arts-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: #d5d5d5;
    opacity: 1;
}
.front-arts-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

/* ── Responsive ≤ 1100px: keep hero split but compress ── */
@media (max-width: 1100px) {
    .front-hero-l { padding: 48px 40px; }
    .sf { padding: 0 16px; }
    .sf-price { padding: 8px 16px; }
    .srch-btn { padding: 0 28px; }
}

/* ── Responsive ≤ 768px: search bar stacks ── */
@media (max-width: 768px) {
    .srch {
        height: auto;
        flex-direction: column;
        overflow: hidden;
    }
    .sf {
        height: 52px;
        border-right: none;
        border-bottom: 1px solid #ede9dd;
        padding: 0 20px;
    }
    .sf::after { right: 20px; }
    .sf-price {
        border-right: none;
        border-bottom: 1px solid #ede9dd;
        padding: 12px 20px;
    }
    .srch-btn { height: 52px; width: 100%; padding: 0; }
}

/* ── Responsive ≤ 768px: hero stacked (wireframe) ── */
@media (max-width: 768px) {
    .front-hero {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .front-hero-r {
        position: relative;
        height: 360px;
    }
    .front-hero-r picture,
    .front-hero-r img {
        height: 100%;
    }
    .front-hero-ov {
        background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .55) 100%);
    }
    .front-hero-l {
        position: relative;
        background: #faf8f3;
        padding: 44px 24px;
        justify-content: center;
        z-index: auto;
    }
    .front-hero-l h1 {
        color: #111;
        font-size: clamp(28px, 6vw, 42px);
        margin-bottom: 16px;
    }
    .front-hero-ey span {
        background: transparent;
        border-color: var(--main-color);
    }
    .front-hero-desc {
        color: #666;
        margin-bottom: 0;
    }
    .front-hero-stats {
        border-top-color: #e2dcc8;
        margin-top: 26px;
        padding-top: 18px;
    }
    .front-hst-n { color: #111; }
    .front-hst-l { color: #888; }
    .front-hst   { border-right-color: #e2dcc8; }
    .front-hero-cap {
        z-index: 1;
        text-align: left;
    }
}

/* ── Responsive ≤ 992px: other sections ── */
@media (max-width: 992px) {
    .front-cat-grid { grid-template-columns: 1fr 1fr; }
    .front-dg { grid-template-columns: 1fr 1fr; }
    .front-dc { aspect-ratio: 4 / 3; }
    .front-om-in,
    .front-seo-in { grid-template-columns: 1fr; gap: 40px; }
    .front-om-in { gap: 28px; }
    .front-om-l,
    .front-om-items {
        grid-column: auto;
    }
    .front-om-l { order: 1; }
    .front-om-items { order: 2; }
    .front-inv-in { padding: 0 32px; }
    .front-inv-g  { grid-template-columns: 1fr; }
    .front-seo-l,
    .front-seo-cards {
        grid-column: auto;
        max-width: none;
    }
}

/* ── Responsive ≤ 576px ── */
@media (max-width: 576px) {
    .front-hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    .front-hst {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 0 0 12px;
    }
    .front-hst:last-child { border-bottom: none; padding-bottom: 0; }
    .front-hst:not(:first-child) { padding-left: 0; padding-top: 12px; }

    .front-cat-hd,
    .front-dest-hd,
    .front-arts-hd { flex-direction: column; align-items: flex-start; gap: 14px; }
    .front-cat-grid { grid-template-columns: 1fr; }
    .front-dg { grid-template-columns: 1fr 1fr; }
    .front-om { padding: 56px 0; }
    .front-om-in {
        padding-left: 20px;
        padding-right: 20px;
        gap: 22px;
    }
    .front-om-l h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }
    .front-om-l p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .front-om-l .commentssubmit {
        width: 100%;
        justify-content: center;
    }
    .front-om-items {
        gap: 8px;
    }
    .front-omi {
        padding: 12px 12px;
        gap: 10px;
    }
    .front-omi-ic {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .front-omi h4 {
        font-size: 12.5px;
    }
    .front-omi p {
        font-size: 12px;
    }
    .front-ls-cnt { padding: 56px 20px; }
    .front-seo { padding: 56px 0; }
    .front-seo-in {
        padding-left: 20px;
        padding-right: 20px;
    }
    .front-seo-cards { grid-template-columns: 1fr; }
    .front-inv { padding: 56px 0; }
    .front-inv-in {
        padding: 0 20px;
    }
    .front-inv-g { grid-template-columns: 1fr; }
    .front-arts { padding: 56px 0; }
    .front-arts-in {
        padding-left: 20px;
        padding-right: 20px;
    }
    .front-reviews-wrap {
        padding: 56px 20px;
    }
}
