.marck-about-us-wrapper {
    --red: #C8102E;
    --dark: #0F1117;
    --navy: #1A1F2E;
    --mid: #2C3245;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --grey: #6B7280;
    --border: #E2E5EA;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.marck-about-us-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Utility ── */
.marck-about-us-wrapper .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.marck-about-us-wrapper .eyebrow::before,
.marck-about-us-wrapper .eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.marck-about-us-wrapper .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--dark);
}

.marck-about-us-wrapper .section-title span {
    color: var(--red);
}

.marck-about-us-wrapper .section-title.light {
    color: var(--white);
}

.marck-about-us-wrapper .body-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.marck-about-us-wrapper .body-text.light {
    color: rgba(255, 255, 255, 0.78);
}

/* ── Section Spacing ── */
.marck-about-us-wrapper section {
    padding: 90px 0;
}

.marck-about-us-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 1 — STORY */
.marck-about-us-wrapper .story-section {
    background: var(--white);
}

.marck-about-us-wrapper .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.marck-about-us-wrapper .story-image-wrap {
    position: relative;
}

.marck-about-us-wrapper .story-image-bg {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--navy);
    overflow: hidden;
    position: relative;
}

.marck-about-us-wrapper .story-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.marck-about-us-wrapper .story-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 40px rgba(200, 16, 46, 0.35);
    z-index: 2;
}

.marck-about-us-wrapper .story-badge strong {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.marck-about-us-wrapper .story-badge span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.marck-about-us-wrapper .story-divider {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 28px 0;
}

/* 2 — VMV */
.marck-about-us-wrapper .vmv-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.marck-about-us-wrapper .vmv-section::before {
    content: 'MARCK';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.marck-about-us-wrapper .vmv-header {
    text-align: center;
    margin-bottom: 60px;
}

.marck-about-us-wrapper .vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.marck-about-us-wrapper .vmv-card {
    background: var(--navy);
    padding: 50px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.marck-about-us-wrapper .vmv-card:hover {
    background: var(--mid);
}

.marck-about-us-wrapper .vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.marck-about-us-wrapper .vmv-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--red);
    font-size: 22px;
}

.marck-about-us-wrapper .vmv-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.marck-about-us-wrapper .vmv-card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
}

.marck-about-us-wrapper .vmv-values {
    margin-top: 2px;
    background: var(--red);
    padding: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    grid-column: 1 / -1;
}

.marck-about-us-wrapper .vmv-values-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 8px;
}

.marck-about-us-wrapper .value-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
}

/* 3 — WHY MARCK */
.marck-about-us-wrapper .why-section {
    background: var(--light);
}

.marck-about-us-wrapper .why-header {
    text-align: center;
    margin-bottom: 60px;
}

.marck-about-us-wrapper .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.marck-about-us-wrapper .why-card {
    background: var(--white);
    padding: 44px 40px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.marck-about-us-wrapper .why-card:hover {
    border-left-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.marck-about-us-wrapper .why-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    transition: color 0.3s;
}

.marck-about-us-wrapper .why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
}

/* 4 — STATS */
.marck-about-us-wrapper .stats-section {
    background: var(--red);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.marck-about-us-wrapper .stats-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: rgba(0, 0, 0, 0.08);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.marck-about-us-wrapper .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.marck-about-us-wrapper .stat-item {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.marck-about-us-wrapper .stat-item:last-child {
    border-right: none;
}

.marck-about-us-wrapper .stat-num {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.marck-about-us-wrapper .stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

/* 5 — CERTS */
.marck-about-us-wrapper .cert-section {
    background: var(--white);
}

.marck-about-us-wrapper .cert-header {
    margin-bottom: 50px;
}

.marck-about-us-wrapper .cert-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.marck-about-us-wrapper .cert-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--light);
    border-left: 3px solid var(--red);
    margin-bottom: 10px;
}

.marck-about-us-wrapper .cert-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.marck-about-us-wrapper .cert-approvals h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.marck-about-us-wrapper .approvals-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.marck-about-us-wrapper .approval-tag {
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px;
}

/* 6 — CTA */
.marck-about-us-wrapper .cta-section {
    background: var(--navy);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.marck-about-us-wrapper .cta-inner {
    max-width: 720px;
    margin: 0 auto;
    z-index: 1;
}

.marck-about-us-wrapper .cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 40px;
}

.marck-about-us-wrapper .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.marck-about-us-wrapper .btn-primary {
    background: var(--red);
    color: #fff;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s;
}

.marck-about-us-wrapper .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s;
}

.marck-about-us-wrapper .btn-primary:hover,
.marck-about-us-wrapper .btn-outline:hover {
    transform: translateY(-2px);
    border-color: #fff;
}

@media (max-width: 900px) {

    .marck-about-us-wrapper .story-grid,
    .marck-about-us-wrapper .why-grid,
    .marck-about-us-wrapper .cert-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .marck-about-us-wrapper .vmv-grid,
    .marck-about-us-wrapper .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .marck-about-us-wrapper .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESOURCES GALLERY WIDGET
   ============================================================ */
.marck-res-wrapper {
    padding: 40px 0;
}

.marck-res-grid {
    display: grid;
    gap: 30px;
}

.marck-res-item {
    background: #fff;
    border: 1px solid #E2E5EA;
    /* Modern, thin border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.marck-res-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--red, #C8102E);
}

.marck-res-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    /* Vertical/Portrait Aspect Ratio */
    background: #eee;
    overflow: hidden;
    cursor: zoom-in;
}

.marck-res-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marck-res-item:hover .marck-res-image-box img {
    transform: scale(1.08);
}

.marck-res-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 17, 23, 0.3);
    /* Lighter overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.marck-res-image-box:hover .marck-res-overlay {
    opacity: 1;
}

.marck-res-content {
    padding: 12px 16px;
}

/* Title row: title text left, download icon right — inline */
.marck-res-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    font-family: var(--font-display, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1714;
    line-height: 1.4;
}

.marck-res-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Compact inline download icon */
.marck-res-dl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--red, #C8102E);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.marck-res-dl-icon:hover {
    background: #a50d25;
    transform: scale(1.08);
}

.marck-res-dl-icon svg {
    display: block;
}

/* Load More — hidden items & button */
.marck-res-hidden {
    display: none !important;
}

.marck-res-loadmore-wrap {
    text-align: center;
    margin-top: 36px;
}

.marck-res-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--red, #C8102E);
    color: var(--red, #C8102E);
    padding: 12px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.marck-res-loadmore-btn:hover {
    background: var(--red, #C8102E);
    color: #fff;
    transform: translateY(-2px);
}
