/* ╔══════════════════════════════════════════════════╗
   ║   JMD JEWELLERS — ABOUT US (LUXURY v4.0)        ║
   ║   Heritage · Leadership · Modern Showroom        ║
   ╚══════════════════════════════════════════════════╝ */

/* Uses design tokens from jmd-header.css (:root) */

/* ─── KEYFRAMES ─── */
@keyframes jmd-hero-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-10px) scale(1.02); }
}

@keyframes jmd-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes jmd-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes jmd-shimmer-subtle {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.7; }
}

@keyframes jmd-scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes jmd-goldPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3); }
    50%      { box-shadow: 0 0 20px 4px rgba(212, 168, 67, 0.15); }
}

@keyframes jmd-slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes jmd-slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ─── SCROLL REVEAL ─── */
.jmd-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.jmd-reveal.jmd-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.jmd-reveal:nth-child(2) { transition-delay: 0.1s; }
.jmd-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════ */
.jmd-about-page {
    background: var(--jmd-bg-white, #ffffff);
    color: var(--jmd-text-body, #444444);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Subtle geometric pattern overlay */
.jmd-about-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 168, 67, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.jmd-about-hero {
    position: relative;
    padding: 140px 20px 110px;
    background: linear-gradient(165deg, var(--jmd-bg-cream, #F8F6F2) 0%, var(--jmd-bg-white, #ffffff) 55%, rgba(212, 168, 67, 0.03) 100%);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.jmd-about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://jmdjewellers.flowndeveloper.me/wp-content/uploads/2026/02/IMG_9785-1.png');
    background-size: 480px;
    background-position: center 60%;
    background-repeat: no-repeat;
    opacity: 0.05;
    animation: jmd-hero-float 12s ease-in-out infinite;
}

.jmd-about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--jmd-gold, #D4A843) 20%, var(--jmd-gold-light, #F0D78C) 50%, var(--jmd-gold, #D4A843) 80%, transparent 95%);
    opacity: 0.5;
}

/* Corner ornaments */
.jmd-about-hero__ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--jmd-gold, #D4A843);
    border-style: solid;
    border-width: 0;
    opacity: 0.15;
}

.jmd-about-hero__ornament--tl {
    top: 24px; left: 24px;
    border-top-width: 1px; border-left-width: 1px;
}
.jmd-about-hero__ornament--tr {
    top: 24px; right: 24px;
    border-top-width: 1px; border-right-width: 1px;
}
.jmd-about-hero__ornament--bl {
    bottom: 24px; left: 24px;
    border-bottom-width: 1px; border-left-width: 1px;
}
.jmd-about-hero__ornament--br {
    bottom: 24px; right: 24px;
    border-bottom-width: 1px; border-right-width: 1px;
}

.jmd-about-hero__content {
    position: relative;
    z-index: 2;
    animation: jmd-fadeInUp 0.9s ease-out;
}

.jmd-about-badge {
    display: inline-block;
    padding: 8px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--jmd-gold-dark, #B8860B);
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 4px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.jmd-about-badge--sm {
    font-size: 0.7rem;
    padding: 6px 18px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.jmd-about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--jmd-text-dark, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.jmd-about-title span,
.jmd-about-title {
    background: linear-gradient(135deg,
        var(--jmd-text-dark, #1a1a1a) 0%,
        var(--jmd-text-dark, #1a1a1a) 40%,
        var(--jmd-gold-dark, #B8860B) 50%,
        var(--jmd-text-dark, #1a1a1a) 60%,
        var(--jmd-text-dark, #1a1a1a) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jmd-about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 24px;
}

.jmd-about-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--jmd-gold, #D4A843);
}

.jmd-about-divider-diamond {
    font-size: 0.6rem;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.7;
}

.jmd-about-divider-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--jmd-gold, #D4A843), var(--jmd-gold-light, #F0D78C));
}

.jmd-about-tagline {
    font-size: 0.95rem;
    color: var(--jmd-text-muted, #888888);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.jmd-about-hero-sub {
    font-size: 0.88rem;
    color: var(--jmd-text-body, #444444);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.7;
}

/* Compact divider for Legacy section */
.jmd-about-divider--compact {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--jmd-gold, #D4A843), var(--jmd-gold-light, #F0D78C));
    margin: 0 0 20px 0;
    margin-left: auto;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   GRID LAYOUT — Legacy Section
   ═══════════════════════════════════════════ */
.jmd-about-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.jmd-about-content {
    position: relative;
    z-index: 1;
}

.jmd-about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.jmd-legacy-year {
    font-family: 'Poppins', sans-serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.1;
    font-weight: 700;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.jmd-about-col-left {
    text-align: right;
    border-right: 2px solid var(--jmd-border-light, #eee9e0);
    padding-right: 40px;
    position: relative;
}

.jmd-about-col-left::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--jmd-gold, #D4A843);
    border-radius: 50%;
    transform: translateY(-50%);
}

.jmd-about-col-right {
    padding-left: 10px;
}

.jmd-about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--jmd-text-body, #444444);
    margin-bottom: 24px;
}

.jmd-about-text strong {
    color: var(--jmd-gold-dark, #B8860B);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════ */
.jmd-about-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

.jmd-about-divider-icon {
    font-size: 0.9rem;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.6;
    letter-spacing: 0.5em;
}

/* ═══════════════════════════════════════════
   HERITAGE GALLERY — Old Shop Photos
   ═══════════════════════════════════════════ */
.jmd-heritage-gallery {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.jmd-heritage-gallery__header {
    text-align: center;
    margin-bottom: 56px;
}

.jmd-heritage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.jmd-heritage-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--jmd-bg-white, #ffffff);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease;
}

.jmd-heritage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 4px 16px rgba(212, 168, 67, 0.1);
}

.jmd-heritage-card__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #1a1a1a;
}

.jmd-heritage-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.4s ease;
    filter: sepia(15%) contrast(1.05);
}

.jmd-heritage-card:hover .jmd-heritage-card__frame img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1);
}

.jmd-heritage-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.jmd-heritage-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--jmd-gold-light, #F0D78C);
}

.jmd-heritage-card__caption {
    padding: 28px 28px 32px;
}

.jmd-heritage-card__caption h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin-bottom: 10px;
}

.jmd-heritage-card__caption p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--jmd-text-muted, #888888);
    margin: 0;
}

/* ═══════════════════════════════════════════
   LEADERSHIP — Founder & Director
   ═══════════════════════════════════════════ */
.jmd-leadership {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.jmd-leadership__header {
    text-align: center;
    margin-bottom: 56px;
}

.jmd-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.jmd-leader-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: var(--jmd-bg-white, #ffffff);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease;
}

.jmd-leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 4px 16px rgba(212, 168, 67, 0.1);
}

.jmd-leader-card__portrait {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #0d0d0d;
}

.jmd-leader-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.jmd-leader-card:hover .jmd-leader-card__portrait img {
    transform: scale(1.04);
}

.jmd-leader-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.jmd-leader-card__badge--gold {
    background: rgba(212, 168, 67, 0.85);
    border-color: rgba(212, 168, 67, 0.5);
    color: #ffffff;
}

.jmd-leader-card__info {
    padding: 32px 28px 36px;
    flex: 1;
}

.jmd-leader-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.jmd-leader-card__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--jmd-gold-dark, #B8860B);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.jmd-leader-card__years {
    font-size: 0.82rem;
    color: var(--jmd-text-muted, #888888);
    font-weight: 400;
    margin-bottom: 16px;
}

.jmd-leader-card__divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--jmd-gold, #D4A843), var(--jmd-gold-light, #F0D78C));
    margin-bottom: 16px;
    border-radius: 2px;
}

.jmd-leader-card__bio {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--jmd-text-body, #444444);
    margin: 0;
}

/* Founder card — sepia effect */
.jmd-leader-card--founder .jmd-leader-card__portrait img {
    filter: sepia(20%) contrast(1.05);
}

.jmd-leader-card--founder:hover .jmd-leader-card__portrait img {
    filter: sepia(5%) contrast(1.1);
}

/* ═══════════════════════════════════════════
   FOUNDER'S LEGACY SECTION (Hindi Story)
   ═══════════════════════════════════════════ */
.jmd-founder-section {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.jmd-founder-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 12px;
    margin-bottom: 50px;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
    border-radius: 12px;
    border: 1px dashed rgba(212, 168, 67, 0.2);
}

.jmd-founder-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 90px;
    padding: 0 12px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--jmd-text-muted, #888888);
}

.jmd-founder-timeline__year {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--jmd-gold-dark, #B8860B);
    line-height: 1.2;
}

.jmd-founder-timeline__item > span:last-child {
    text-align: center;
    line-height: 1.3;
}

.jmd-founder-timeline__line {
    width: 1px;
    min-height: 32px;
    align-self: center;
    background: linear-gradient(180deg, transparent, var(--jmd-gold, #D4A843) 20%, var(--jmd-gold, #D4A843) 80%, transparent);
    opacity: 0.4;
}

.jmd-founder-profile {
    text-align: center;
    padding: 48px 40px 50px;
    background: linear-gradient(180deg, var(--jmd-bg-cream, #F8F6F2) 0%, var(--jmd-bg-white, #ffffff) 100%);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.jmd-founder-profile::before,
.jmd-founder-profile::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--jmd-gold, #D4A843);
    border-style: solid;
    border-width: 1px;
    opacity: 0.2;
}

.jmd-founder-profile::before {
    top: 16px; left: 16px;
    border-right: none; border-bottom: none;
    border-radius: 4px 0 0 0;
}

.jmd-founder-profile::after {
    bottom: 16px; right: 16px;
    border-left: none; border-top: none;
    border-radius: 0 0 4px 0;
}

.jmd-founder-profile__inner {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    position: relative;
    padding-top: 24px;
}

.jmd-founder-profile__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jmd-gold, #D4A843), transparent);
}

.jmd-founder-name {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.jmd-founder-tagline {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--jmd-gold-dark, #B8860B);
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.jmd-founder-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--jmd-text-body, #444444);
    margin-bottom: 28px;
    line-height: 1.5;
}

.jmd-founder-meta span {
    white-space: nowrap;
}

.jmd-founder-legacy {
    padding-top: 24px;
    border-top: 1px solid var(--jmd-border-light, #eee9e0);
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--jmd-text-body, #444444);
}

.jmd-founder-legacy-title {
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin-bottom: 8px;
}

.jmd-founder-legacy p {
    margin: 0 0 4px 0;
}

.jmd-founder-legacy-footer {
    font-size: 0.88rem;
    color: var(--jmd-gold-dark, #B8860B);
    font-style: italic;
    margin-top: 12px !important;
}

.jmd-founder-story-title {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    text-align: center;
    margin-top: 48px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.jmd-founder-story {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.jmd-founder-story .jmd-founder-chapter {
    scroll-margin-top: 100px;
}

.jmd-founder-chapter {
    margin-bottom: 36px;
}

.jmd-founder-chapter h3 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--jmd-gold-dark, #B8860B);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--jmd-border-soft, #f0ece4);
}

.jmd-founder-chapter p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--jmd-text-body, #444444);
    margin-bottom: 14px;
}

.jmd-founder-chapter p:last-child {
    margin-bottom: 0;
}

.jmd-founder-chapter strong {
    color: var(--jmd-gold-dark, #B8860B);
    font-weight: 600;
}

.jmd-founder-inspiration {
    padding: 32px 28px;
    background: var(--jmd-bg-cream, #F8F6F2);
    border-radius: 10px;
    border-left: 3px solid var(--jmd-gold, #D4A843);
}

.jmd-founder-inspiration h3 {
    border-bottom: none;
}

/* ═══════════════════════════════════════════
   MODERN SHOWROOM — Video Section
   ═══════════════════════════════════════════ */
.jmd-showroom {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.jmd-showroom__header {
    text-align: center;
    margin-bottom: 48px;
}

/* Showroom today — store photos row */
.jmd-showroom-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.jmd-showroom-photo {
    position: relative;
    min-width: 0; /* allow grid item to shrink */
    max-width: 100%;
}

.jmd-showroom-photo__frame {
    width: 100%;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--jmd-bg-cream, #F8F6F2);
    aspect-ratio: 4/5; /* taller frame to show more of the storefront (less top/bottom crop) */
}

.jmd-showroom-photo:hover .jmd-showroom-photo__frame {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1),
                0 4px 20px rgba(212, 168, 67, 0.1);
}

.jmd-showroom-photo__frame img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    vertical-align: middle;
}

.jmd-showroom-photo__caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--jmd-text-muted, #888888);
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.jmd-showroom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.jmd-showroom-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d0d0d;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jmd-showroom-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(212, 168, 67, 0.08);
}

.jmd-showroom-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jmd-showroom-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0.9;
}

.jmd-showroom-video__play svg {
    margin-left: 4px;
    width: 28px;
    height: 28px;
}

/* Hide play button once video is playing */
.jmd-showroom-video.jmd-playing .jmd-showroom-video__play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

.jmd-showroom__tagline {
    text-align: center;
    font-size: 1rem;
    color: var(--jmd-text-muted, #888888);
    font-style: italic;
    margin-top: 36px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   COLLECTIONS — Craftsmanship Cards
   ═══════════════════════════════════════════ */
.jmd-about-collections {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 70px 40px;
    background: linear-gradient(180deg, var(--jmd-bg-cream, #F8F6F2) 0%, rgba(248, 246, 242, 0.5) 100%);
    position: relative;
    z-index: 1;
}

.jmd-about-collections::before,
.jmd-about-collections::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jmd-gold, #D4A843), transparent);
}

.jmd-about-collections::before { top: 0; }
.jmd-about-collections::after { bottom: 0; }

.jmd-about-collections-header {
    text-align: center;
    margin-bottom: 48px;
}

.jmd-about-section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.jmd-about-section-desc {
    font-size: 0.95rem;
    color: var(--jmd-text-muted, #888888);
    font-weight: 400;
}

.jmd-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.jmd-collection-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    background: var(--jmd-bg-white, #ffffff);
}

.jmd-collection-card__glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.jmd-collection-card:hover .jmd-collection-card__glow {
    opacity: 1;
}

.jmd-card-icon {
    margin-bottom: 16px;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.9;
}

.jmd-card-icon svg {
    display: inline-block;
}

.jmd-collection-card:hover .jmd-card-icon {
    animation: jmd-shimmer-subtle 1.5s ease-in-out;
}

.jmd-card-gold {
    background: linear-gradient(135deg,
        var(--jmd-bg-white, #ffffff) 0%,
        rgba(212, 168, 67, 0.06) 50%,
        var(--jmd-bg-cream, #F8F6F2) 100%);
    border-color: rgba(212, 168, 67, 0.15);
}

.jmd-card-silver {
    background: linear-gradient(135deg,
        var(--jmd-bg-white, #ffffff) 0%,
        rgba(192, 192, 192, 0.06) 50%,
        var(--jmd-bg-cream, #F8F6F2) 100%);
    border-color: rgba(192, 192, 192, 0.2);
}

.jmd-card-diamond {
    background: linear-gradient(135deg,
        var(--jmd-bg-white, #ffffff) 0%,
        rgba(185, 220, 255, 0.06) 50%,
        var(--jmd-bg-cream, #F8F6F2) 100%);
    border-color: rgba(185, 220, 255, 0.25);
}

.jmd-collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.25);
}

.jmd-card-inner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--jmd-text-dark, #1a1a1a);
    margin-bottom: 10px;
}

.jmd-card-inner p {
    font-size: 0.9rem;
    color: var(--jmd-text-muted, #888888);
    margin-bottom: 24px;
}

.jmd-btn-link {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid var(--jmd-gold, #D4A843);
    color: var(--jmd-gold-dark, #B8860B);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.jmd-btn-link:hover {
    background: var(--jmd-gold-dark, #B8860B);
    border-color: var(--jmd-gold-dark, #B8860B);
    color: #ffffff;
}

/* ═══════════════════════════════════════════
   PHILOSOPHY SECTION
   ═══════════════════════════════════════════ */
.jmd-about-philosophy {
    position: relative;
    z-index: 1;
}

.jmd-about-philosophy-header {
    text-align: center;
    margin-bottom: 48px;
}

.jmd-about-philosophy .jmd-about-section-heading {
    margin-bottom: 12px;
}

.jmd-philosophy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.jmd-phil-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--jmd-bg-white, #ffffff);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.jmd-phil-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.4;
}

.jmd-phil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--jmd-gold, #D4A843);
    opacity: 0;
    transition: all 0.35s ease;
}

.jmd-phil-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(212, 168, 67, 0.06);
    transform: translateY(-4px);
}

.jmd-phil-card:hover::before {
    opacity: 1;
    width: 100%;
}

.jmd-phil-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--jmd-gold, #D4A843);
}

.jmd-phil-icon svg {
    stroke: var(--jmd-gold, #D4A843);
}

.jmd-phil-title {
    color: var(--jmd-text-dark, #1a1a1a);
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.jmd-phil-card p {
    font-size: 0.92rem;
    color: var(--jmd-text-muted, #888888);
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════
   QUOTE BOX
   ═══════════════════════════════════════════ */
.jmd-quote-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(248, 246, 242, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid var(--jmd-border-soft, #f0ece4);
    border-radius: 16px;
    position: relative;
}

.jmd-quote-brackets {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jmd-quote-bracket {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--jmd-gold, #D4A843);
    opacity: 0.12;
    line-height: 1;
}

.jmd-quote-bracket--l {
    top: 16px; left: 24px;
}

.jmd-quote-bracket--r {
    bottom: 16px; right: 24px;
}

.jmd-quote-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--jmd-text-body, #444444);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.jmd-quote-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jmd-gold, #D4A843), transparent);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .jmd-about-hero {
        padding: 110px 20px 80px;
    }

    .jmd-about-hero__ornament {
        width: 40px;
        height: 40px;
    }

    .jmd-about-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .jmd-about-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .jmd-founder-timeline {
        gap: 6px 16px;
        padding: 24px 20px;
    }

    .jmd-founder-timeline__year {
        font-size: 1rem;
    }

    .jmd-founder-timeline__line {
        min-height: 28px;
    }

    .jmd-about-grid {
        gap: 40px;
    }

    .jmd-about-section {
        padding: 0 24px;
    }

    .jmd-about-collections {
        padding: 50px 24px;
    }

    .jmd-founder-section {
        padding: 0 24px;
    }

    .jmd-founder-name {
        font-size: 1.6rem;
    }

    .jmd-founder-meta {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .jmd-heritage-gallery {
        padding: 0 24px;
    }

    .jmd-leadership {
        padding: 0 24px;
    }

    .jmd-showroom {
        padding: 0 24px;
    }

    .jmd-leader-card__name {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .jmd-about-hero {
        padding: 90px 20px 70px;
    }

    .jmd-about-hero__ornament {
        display: none;
    }

    .jmd-about-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }

    .jmd-about-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .jmd-about-tagline {
        font-size: 0.82rem;
        letter-spacing: 2px;
    }

    .jmd-about-hero-sub {
        font-size: 0.82rem;
    }

    .jmd-about-section-divider {
        padding: 40px 20px;
    }

    .jmd-founder-timeline {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        margin-bottom: 40px;
    }

    .jmd-founder-timeline__line {
        width: 1px;
        height: 12px;
        background: linear-gradient(180deg, var(--jmd-gold, #D4A843), transparent);
    }

    .jmd-about-collections-header,
    .jmd-about-philosophy-header {
        margin-bottom: 36px;
    }

    .jmd-about-section-heading {
        font-size: 1.3rem;
    }

    .jmd-collection-card {
        height: 260px;
    }

    .jmd-quote-box {
        padding: 44px 28px;
    }

    .jmd-quote-bracket {
        font-size: 2.5rem;
    }

    .jmd-quote-text {
        font-size: 1.15rem;
    }

    .jmd-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .jmd-about-col-left {
        border-right: none;
        border-bottom: 2px solid var(--jmd-border-light, #eee9e0);
        padding-right: 0;
        padding-bottom: 30px;
        text-align: center;
    }

    .jmd-about-col-left::after {
        right: 50%;
        top: auto;
        bottom: -5px;
        transform: translateX(50%);
    }

    .jmd-about-col-right {
        padding-left: 0;
    }

    .jmd-legacy-year {
        font-size: 4.5rem;
    }

    .jmd-about-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .jmd-about-collections {
        padding: 40px 20px;
        margin-bottom: 60px;
    }

    .jmd-collection-grid {
        grid-template-columns: 1fr;
    }

    .jmd-collection-card {
        height: 220px;
    }

    .jmd-philosophy {
        gap: 20px;
    }

    .jmd-quote-box {
        padding: 36px 20px;
    }

    .jmd-quote-text {
        font-size: 1.1rem;
    }

    .jmd-founder-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .jmd-founder-profile {
        padding: 36px 24px;
        margin-bottom: 40px;
    }

    .jmd-founder-name {
        font-size: 1.5rem;
    }

    .jmd-founder-story-title {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }

    .jmd-founder-chapter h3 {
        font-size: 1.05rem;
    }

    .jmd-founder-chapter p {
        font-size: 0.98rem;
    }

    .jmd-founder-inspiration {
        padding: 24px 20px;
    }

    /* Heritage Gallery — stack on mobile */
    .jmd-heritage-gallery {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .jmd-heritage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jmd-heritage-card__frame {
        aspect-ratio: 3/4;
    }

    .jmd-heritage-card__caption {
        padding: 24px 20px 28px;
    }

    /* Leadership — stack on mobile */
    .jmd-leadership {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .jmd-leadership-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .jmd-leader-card__portrait {
        aspect-ratio: 3/4;
    }

    .jmd-leader-card__info {
        padding: 24px 20px 28px;
    }

    .jmd-leader-card__name {
        font-size: 1.2rem;
    }

    /* Showroom — stack videos on mobile */
    .jmd-showroom {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .jmd-showroom-photos {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    .jmd-showroom-photo__caption {
        font-size: 0.85rem;
    }

    .jmd-showroom-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jmd-showroom-video {
        aspect-ratio: 16/9;
        max-height: none;
    }

    .jmd-showroom__tagline {
        font-size: 0.9rem;
        margin-top: 28px;
    }
}

@media (max-width: 480px) {
    .jmd-about-hero {
        padding: 80px 16px 60px;
    }

    .jmd-about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .jmd-about-divider-line {
        width: 32px;
    }

    .jmd-legacy-year {
        font-size: 3.5rem;
    }

    .jmd-founder-timeline__item span:last-child {
        font-size: 0.75rem;
    }

    .jmd-collection-card {
        height: 240px;
    }

    .jmd-card-inner h3 {
        font-size: 1.3rem;
    }

    .jmd-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .jmd-phil-card {
        padding: 36px 24px;
    }

    .jmd-phil-number {
        top: 16px;
        right: 20px;
    }

    .jmd-quote-box {
        padding: 36px 24px;
    }

    .jmd-quote-text {
        font-size: 1.05rem;
    }

    .jmd-founder-name {
        font-size: 1.35rem;
    }

    .jmd-founder-profile {
        padding: 30px 20px;
    }

    .jmd-founder-story-title {
        font-size: 1.1rem;
    }

    .jmd-heritage-card__caption h3 {
        font-size: 1.05rem;
    }

    .jmd-heritage-card__caption p {
        font-size: 0.85rem;
    }

    .jmd-leader-card__name {
        font-size: 1.15rem;
    }

    .jmd-leader-card__bio {
        font-size: 0.85rem;
    }

    .jmd-showroom-video {
        max-height: 420px;
    }

    .jmd-showroom-video__play {
        width: 56px;
        height: 56px;
    }

    .jmd-showroom-video__play svg {
        width: 22px;
        height: 22px;
    }
}
