/* ============================================================
   STORE PAGE — store.css
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #b8a99a;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-family2);
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}


/* ── Store Nav Tabs ── */
.store-nav-tabs {
    display: flex;
    transform: translateY(-50%);
}

.store-tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    font-size: 20px;
    font-weight: 400;
    color: #999;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    background: #efede6;
}

.store-tab-item:not(:last-child) {
    border-right: 1px solid #ccc;
}

.store-tab-item.active,
.store-tab-item:hover {
    background-color: #978675;
    color: #fff;
}

/* ── Sub Nav (trực tuyến | ngoại tuyến) ── */
.store-sub-nav {
    margin-top: 30px;
}

.store-sub-nav {
    text-align: center;
}

.store-sub-nav-inner {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 18px;
}

.store-sub-nav-link {
    color: #999;
    font-weight: 400;
    transition: color 0.2s;
    padding: 0 30px;
    line-height: 1;
}

.store-sub-nav-link:not(:last-child) {
    border-right: 1px solid #ccc;

}

.store-sub-nav-link:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.store-sub-nav-link.active {
    color: #1a1a1a;
    font-weight: 700;
}

/* ── Online Retailers Section ── */
.store-online-section {
    padding: 48px 0 64px;
}

.store-online-heading {
    text-align: center;
    margin-bottom: 8px;
}

.store-online-heading h2 {
    font-family: var(--font-family2, 'Georgia', serif);
    font-size: 45px;
    font-weight: 400;
    font-style: italic;
    color: #2a2420;
    margin: 0 0 10px;
    line-height: 1.2;
}

.store-online-heading p {
    font-size: 20px;
    margin: 0 0 40px;
    font-weight: 400;
}

/* Grid 4 cột */
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.retailer-card {
    border: 1px solid #ddd;
    background: #f5f4f0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.retailer-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Header: logo + tên */
.retailer-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.retailer-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.retailer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.retailer-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* Footer: label + icon */
.retailer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.retailer-label {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
}

.retailer-external-icon {
    width: 18px;
    height: 18px;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.retailer-external-icon svg {
    width: 16px;
    height: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .retailer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .store-online-heading h2 {
        font-size: 28px;
    }

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

    .store-tab-item {
        font-size: 14px;
        padding: 14px 8px;
    }

    .hero {
        height: 240px;
    }

    .hero-label {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .retailer-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .store-online-heading h2 {
        font-size: 24px;
    }

    .store-online-heading p {
        font-size: 13px;
    }

    .retailer-name {
        font-size: 13px;
    }

    .hero {
        height: 180px;
    }

    .hero-label {
        font-size: 28px;
    }

    .store-tab-item {
        font-size: 12px;
        padding: 12px 4px;
    }

    .store-sub-nav-inner {
        font-size: 15px;
        gap: 16px;
    }

    .store-online-section {
        padding: 30px 0 30px;
    }
}

/* ============================================================
   OFFLINE STORE SECTION — Cửa hàng ngoại tuyến
   ============================================================ */
.store-offline-section {
    padding: 56px 0 72px;
    /* background: #faf9f7; */
}

/* Heading */
.store-offline-heading {
    text-align: center;
    margin-bottom: 40px;
}

.store-offline-heading h2 {
    font-family: var(--font-family2, 'Georgia', serif);
    font-size: 45px;
    font-weight: 400;
    font-style: italic;
    color: #2a2420;
    margin: 0 0 10px;
    line-height: 1.2;
}

.store-offline-heading p {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
}

/* 2-column layout */
.store-offline-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── LEFT COLUMN ── */
.store-offline-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Filter dropdown */
.store-filter-bar {
    background: #978675;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: none;
    width: 100%;
    text-align: left;
}


/* Google Map iframe wrapper */
.store-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.2;
    overflow: hidden;
    border: 1px solid #ddd;
}

.store-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── RIGHT COLUMN ── */
.store-offline-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Search bar */
.store-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    background: #f5f4f0;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.store-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #555;
    outline: none;
}

.store-search-input::placeholder {
    color: #bbb;
}

.store-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: #999;
    transition: color 0.2s;
}

.store-search-btn:hover {
    color: #333;
}

.store-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Store list */
.store-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-list-item {
    display: flex;
    gap: 20px;
    padding: 18px 15px;
    cursor: pointer;
    border-bottom: 1px solid #e8e4de;
    align-items: flex-start;
}

.store-list-item.active {
    background: #f5f4f0;
}

.store-list-item:first-child {
    border-top: 1px solid #e8e4de;
}

/* Store item left: name */
.store-item-name {
    width: 140px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #2a2420;
    line-height: 1.5;
    padding-top: 2px;
}

/* Store item right: address + phone */
.store-item-details {
    flex: 1;
}

.store-item-row {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 7px;
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
}

.store-item-row:last-child {
    margin-bottom: 0;
}

.store-item-row svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #978675;
}

/* Bottom note */
.store-offline-note {
    margin-top: 16px;
    padding: 16px 0;
    border-top: 1px solid #e8e4de;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

.store-note-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 6px;
}

.store-note-link:hover {
    text-decoration: underline;
    color: #000;
}

.store-note-link svg {
    width: 14px;
    height: 14px;
    stroke: #333;
}

/* Pagination */
.store-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0 0;
    list-style: none;
    margin: 0;
}

.store-pagination li a,
.store-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    border-radius: 2px;
    transition: color 0.2s;
}

.store-pagination li.active a,
.store-pagination li.active span {
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 0;
}

.store-pagination li a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.store-pagination li.pag-arrow a,
.store-pagination li.pag-arrow span {
    font-size: 16px;
    color: #aaa;
}

/* ── Offline Responsive ── */
@media (max-width: 900px) {
    .store-offline-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .store-map-wrap {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .store-offline-heading h2 {
        font-size: 32px;
    }

    .store-item-name {
        width: 110px;
    }
}

@media (max-width: 480px) {
    .store-offline-heading h2 {
        font-size: 26px;
    }

    .store-list-item {
        flex-direction: column;
        gap: 8px;
    }

    .store-item-name {
        width: auto;
        font-weight: 600;
    }
}

/* ============================================================
   BRAND LINE SECTION — Dòng sản phẩm
   ============================================================ */

.brand-intro-section {
    padding: 120px 0;
    background: #f5f2ec;
    text-align: center;
    margin-top: 30px;
}

/* Brand name block */
.brand-intro-name {
    display: block;
    font-family: var(--font-family2, serif);
    font-size: clamp(52px, 8vw, 80px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.0;
    text-transform: uppercase;
}

/* Oval "Since" badge */
.brand-intro-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #91856f;
    border-radius: 50%;
    padding: 10px 40px;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    color: #978676;
    border: 1px solid #91856f;
    margin: 40px 0 60px;
    font-family: var(--font-family2, 'Georgia', serif);
    font-style: italic;
}

/* Description text */
/* .brand-intro-desc {
    max-width: 720px;
    margin: 0 auto;
} */

.brand-intro-lead {
    font-size: 24px;
    font-weight: 700;
    color: #1a1512;
    line-height: 1.4;
    margin-bottom: 18px;
}

.brand-intro-body {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.kd-story {
    padding: 120px 0;
}

.kd-story .noi_dung_in {
    max-width: 980px;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
}

/* ── Brand Line Responsive ── */
@media (max-width: 768px) {
    .brand-intro-section {
        padding: 52px 0 60px;
    }

    .brand-intro-name .brand-main {
        letter-spacing: 2px;
    }

    .brand-intro-name .brand-sub {
        letter-spacing: 4px;
    }

    .brand-intro-lead {
        font-size: 15px;
    }

    .brand-intro-body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .brand-intro-section {
        padding: 40px 0 48px;
    }

    .brand-intro-badge {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 22px;
    }

    .brand-intro-lead {
        font-size: 14px;
    }
}


.brand-intro {
    margin-top: 30px;
    position: relative;
    width: 100%;
    min-height: 800px;
    background-image: url('https://piccasso.co.kr/web/upload/kdesign/img/img_brand_intro_bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.brand-intro__overlay {
    position: absolute;
    inset: 0;
    background: rgba(210, 190, 170, 0.08);
    pointer-events: none;
}

.brand-intro__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.brand-intro__heading {
    font-family: var(--font-family2);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3.5vw, 45px);
    color: #fff;
    line-height: 1.45;
    margin: 0 0 28px 0;
}

.brand-intro__desc {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #fff;
    line-height: 1.85;
    font-weight: 400;
}

@media (max-width: 768px) {
    .brand-intro {
        min-height: 360px;
        background-position: 60% center;
    }

    .brand-intro__content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .brand-intro__heading {
        font-size: 1.4rem;
    }

    .brand-intro__desc {
        font-size: 0.875rem;
        padding: 0 8px;
    }

    .brand-intro__desc br {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-intro {
        min-height: 300px;
    }

    .brand-intro__heading {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .brand-intro__heading br {
        display: none;
    }

    .store-offline-heading p {
        font-size: 13px;
    }
}

.story-info {
    padding: 120px 0;
    background: #F2EEE7;
    text-align: center;
}

.story-info h3 {
    font-size: 20px;
    margin: 20px 0;
}

.story-info p {
    font-size: 18px;
}

/* ============================================================
   STORY COLLAGE SECTION — 3-photo editorial layout
   ============================================================ */
.story-collage {
    padding: 80px 0 100px;
    background: #fff;
}

.story-collage__grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.5fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 0 40px;
}

/* ── LEFT: tall image, anchored top ── */
.story-collage__item--left {
    grid-column: 1;
    align-self: start;
    margin-top: 0;
}

/* ── CENTER: smaller image, pushed down ── */
.story-collage__item--center {
    grid-column: 2;
    align-self: end;
    margin-top: 80px;
}

/* ── RIGHT: smaller image, anchored high ── */
.story-collage__item--right {
    grid-column: 3;
    align-self: start;
    margin-top: 0;
    padding-left: 30px;
}

/* Image wrapper – preserves aspect ratio */
.story-collage__img-wrap {
    width: 100%;
    overflow: hidden;
    background: #e8e2d8;
}

.story-collage__item--left .story-collage__img-wrap {
    aspect-ratio: 3 / 4;
}

.story-collage__item--center .story-collage__img-wrap {
    aspect-ratio: 3 / 3.6;
}

.story-collage__item--right .story-collage__img-wrap {
    aspect-ratio: 4 / 3;
    max-width: 320px;
}

.story-collage__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.story-collage__img-wrap:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Caption */
.story-collage__caption {
    margin: 12px 0 0;
    font-size: 16px;
    color: #777;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
    .story-collage__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 32px 24px;
    }

    .story-collage__item--left {
        grid-column: 1 / 3;
        margin-top: 0;
    }

    .story-collage__item--left .story-collage__img-wrap {
        aspect-ratio: 16 / 9;
    }

    .story-collage__item--center {
        grid-column: 1;
        margin-top: 0;
        align-self: start;
    }

    .story-collage__item--right {
        grid-column: 2;
        padding-left: 0;
        align-self: start;
    }

    .story-collage__item--right .story-collage__img-wrap {
        max-width: 100%;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 600px) {
    .story-collage {
        padding: 48px 0 60px;
    }

    .story-collage__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .story-collage__item--left,
    .story-collage__item--center,
    .story-collage__item--right {
        grid-column: 1;
        margin-top: 0;
        align-self: start;
        padding-left: 0;
    }

    .story-collage__item--left .story-collage__img-wrap {
        aspect-ratio: 4 / 3;
    }

    .story-collage__item--center .story-collage__img-wrap {
        aspect-ratio: 4 / 3;
    }

    .story-collage__item--right .story-collage__img-wrap {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .story-collage__caption {
        font-size: 12px;
    }
}

/* ============================================================
   STORY ERA SECTION — 2-column text layout
   ============================================================ */
.story-era {
    padding: 80px 0 100px;
    background: #fff;
}

.story-era__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0 80px;
    align-items: start;
}

/* ── Left column ── */
.story-era__left {
    padding-top: 6px;
}

.story-era__heading {
    font-family: var(--font-family2, sans-serif);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.story-era__subtitle {
    font-size: clamp(13px, 1.2vw, 15px);
    color: #999;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* ── Right column ── */
.story-era__right {
    padding-top: 4px;
}

.story-era__year {
    font-family: var(--font-family2, 'Georgia', serif);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: #978675;
    margin: 0 0 28px 0;
    line-height: 1.3;
}

.story-era__body {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #555;
    line-height: 1.85;
    font-weight: 400;
    margin: 0 0 28px 0;
}

.story-era__body:last-child {
    margin-bottom: 0;
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
    .story-era__grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 0 48px;
    }

    .story-era__heading {
        font-size: 24px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .story-era {
        padding: 52px 0 64px;
    }

    .story-era__grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }

    .story-era__heading {
        font-size: 22px;
    }

    .story-era__year {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .story-era__body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .story-era {
        padding: 40px 0 52px;
    }

    .story-era__heading {
        font-size: 20px;
        line-height: 1.5;
    }
}

/* ============================================================
   STORY SPLIT SECTION — text left + full-height image right
   ============================================================ */
.story-split {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.story-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 480px;
}

/* ── Left column: text block ── */
.story-split__left {
    padding: 72px 64px 72px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-split__heading {
    font-family: var(--font-family2, sans-serif);
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.45;
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
}

.story-split__subtitle {
    font-size: clamp(12px, 1.1vw, 14px);
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 36px 0;
    font-weight: 400;
}

.story-split__year {
    font-family: var(--font-family2, 'Georgia', serif);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    font-style: italic;
    color: #978675;
    margin: 0 0 22px 0;
    line-height: 1.3;
}

.story-split__body {
    font-size: clamp(13px, 1.1vw, 15px);
    color: #555;
    line-height: 1.85;
    font-weight: 400;
    margin: 0;
}

/* ── Right column: image fills the cell ── */
.story-split__right {
    position: relative;
    overflow: hidden;
}

.story-split__img-wrap {
    position: absolute;
    inset: 0;
}

.story-split__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.story-split__right:hover .story-split__img-wrap img {
    transform: scale(1.03);
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
    .story-split__grid {
        grid-template-columns: 1fr 1fr;
        min-height: 380px;
    }

    .story-split__left {
        padding: 52px 40px 52px 0;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .story-split__grid {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .story-split__left {
        padding: 48px 0 36px 0;
        order: 1;
    }

    .story-split__right {
        order: 2;
        position: relative;
        height: 260px;
    }

    .story-split__img-wrap {
        position: relative;
        height: 100%;
    }

    .story-split__img-wrap img {
        position: absolute;
        inset: 0;
    }

    .story-split__heading {
        font-size: 20px;
    }

    .story-split__year {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .story-split__right {
        height: 220px;
    }

    .story-split__heading {
        font-size: 18px;
        line-height: 1.5;
    }
}

/* ============================================================
   STORY VALUES SECTION — image left + #01/#02/#03 list right
   ============================================================ */
.story-values {
    padding: 80px 0 100px;
    background: #fff;
}

.story-values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    align-items: stretch;
}

/* ── Left: image fills height ── */
.story-values__img-col {
    position: relative;
    min-height: 460px;
}

.story-values__img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.story-values__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.story-values__img-col:hover .story-values__img-wrap img {
    transform: scale(1.03);
}

/* ── Right: numbered list ── */
.story-values__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 8px 0;
}

.story-values__item {
    padding: 32px 0;
    border-bottom: 1px solid #e8e3dc;
}

.story-values__item:first-child {
    border-top: 1px solid #e8e3dc;
}

.story-values__num {
    font-family: var(--font-family2, 'Georgia', serif);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    font-style: italic;
    color: #978675;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.story-values__text {
    font-size: clamp(13px, 1.15vw, 15px);
    color: #555;
    line-height: 1.85;
    font-weight: 400;
    margin: 0;
}

.story-values__text strong {
    font-weight: 700;
    color: #333;
}

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
    .story-values__grid {
        gap: 0 48px;
    }

    .story-values__img-col {
        min-height: 360px;
    }

    .story-values__item {
        padding: 24px 0;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .story-values {
        padding: 52px 0 64px;
    }

    .story-values__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .story-values__img-col {
        position: relative;
        min-height: 260px;
        margin-bottom: 40px;
    }

    .story-values__img-wrap {
        position: relative;
        height: 260px;
    }

    .story-values__img-wrap img {
        position: absolute;
        inset: 0;
    }

    .story-values__num {
        font-size: 18px;
    }

    .story-values__text {
        font-size: 13px;
    }

    .story-values__item {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .story-values__img-wrap {
        height: 220px;
    }
}
