/* === FONTS — matching live site exactly === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,500&family=EB+Garamond:ital,wght@1,400;1,500&family=Work+Sans:wght@400;500;600;700&family=Roboto:wght@300;400;700&display=swap');

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

/* === CSS VARIABLES — sourced from live jingyisong.com c1 class definitions === */
:root {
    /* Colors extracted from live site */
    --color-bg:          rgb(255, 255, 255);   /* c1-3 */
    --color-text:        rgb(27, 27, 27);       /* c1-2d */
    --color-muted:       rgb(94, 94, 94);       /* c1-34 */
    --color-muted-2:     rgb(164, 164, 164);    /* c1-5a */
    --color-accent:      rgb(165, 232, 215);    /* #a5e8d7 — hero bg, hover highlight */
    --color-accent-mid:  rgb(89, 125, 116);     /* c1-7h — link color, hover */
    --color-accent-dark: rgb(46, 68, 63);       /* c1-3l hover */
    --color-accent-darkest: rgb(29, 45, 41);    /* c1-6g active */
    --color-nav-dark:    rgb(22, 22, 22);       /* c1-4j — mobile nav bg */
    --color-alt-bg:      rgb(247, 247, 247);    /* c1-4w light bg */
    --color-footer-bg:   rgb(246, 246, 246);    /* c1-5s */
    --color-border:      rgba(76, 76, 76, 0.5); /* c1-5b */
    --color-divider:     rgb(226, 226, 226);    /* c1-8l */
    --color-dark-text:   rgb(21, 21, 21);       /* c1-6i */
    --color-sub-muted:   rgb(89, 89, 89);       /* c1-8u */

    /* Typography — matching live site exactly */
    --font-body:   'Roboto', arial, sans-serif;   /* c1-b */
    --font-heading:'Work Sans', sans-serif;        /* c1-6a */
    --font-size-base: 16px;                        /* c1-c */

    /* Layout */
    --nav-height: 72px;
    --container-max: 1280px;
    --container-pad: 24px;     /* c1-13 / c1-14 */
}

/* === BASE === */
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;       /* c1-4g */
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border: 0; vertical-align: middle; }
ul { list-style: none; padding: 0; margin: 0; }

/* === NAVBAR ===
   Background: white — links CENTERED (no logo in nav bar on home page)
   Original has nav links centered across the full width
*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background-color: var(--color-bg);
    z-index: 1003;
    display: flex;
    align-items: center;
}

/* Centered nav wrapper — used on home page */
.nav-centered {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--container-pad);
    position: relative;
}

/* Standard nav container with logo — used on inner pages */
.nav-container {
    width: 100%;
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark-text);
    line-height: 1.2;
    white-space: pre-line;
}

.logo .logo-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-muted);
    line-height: 1.3;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 32px; /* c1-37 is padding-left: 32px */
}

.nav-links li {
    display: flex;
    align-items: stretch;
}

.nav-links li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    border-top: 2px solid transparent;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 16px;                    /* scaled up from 14px */
    font-weight: 400;                   /* c1-3v */
    letter-spacing: 0.143em;            /* c1-3c */
    text-transform: uppercase;          /* c1-3d */
    color: var(--color-text);           /* c1-2d: rgb(27,27,27) */
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: var(--color-accent-mid);     /* c1-2f: rgb(89,125,116) */
}

.nav-links li a:active {
    color: var(--color-accent-dark);    /* c1-2g: rgb(34,52,47) */
}

.nav-links li a.active {
    color: var(--color-text);           /* c1-2d */
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
    border-top: 2px solid var(--color-text);  /* c1-3f, c1-3g */
}

/* Hamburger (mobile) */
.nav-mobile-brand {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
}

/* === HERO — Two-column split layout matching original exactly ===
   Contained inside section-container
*/
.hero-split {
    display: flex;
    height: 740px; /* Matching the 739.195px height from dev tools */
    margin-top: 64px; /* Matching the 64px top margin */
    margin-bottom: 24px; /* Matching the 24px bottom margin */
    overflow: hidden;
}

/* LEFT panel — light background with centered text */
.hero-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2.5rem;
    background-color: #f6f6f6;    /* matches live site's light panel */
}

.hero-name {
    font-family: var(--font-heading);
    font-size: 52px;                    /* scaled up from 40px */
    font-weight: 500;
    color: var(--color-dark-text);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-name-cn {
    display: block;
    font-size: 40px;                    /* scaled up from 32px */
    font-weight: 400;
    margin-top: 0.25rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Pill button — matches "YOUTUBE COLLECTIONS" button exactly */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 48px;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.143em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.hero-btn:hover {
    color: var(--color-nav-dark);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* RIGHT panel — photo fills the space */
.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* === SECTIONS === */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px var(--container-pad);  /* c1-h / c1-i: 40px */
}

/* === HOME QUOTE SECTION === */
.home-quote-section {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.quote-image-wrapper {
    flex: 0 0 45%;
}

.quote-image {
    width: 100%;
    height: auto;
    display: block;
}

.quote-text-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.home-quote-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-style: italic;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.5;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 32px;                    /* scaled up from 22px */
    font-weight: 500;                   /* c1-6l: weight 500 */
    color: var(--color-dark-text);
    margin-bottom: 40px;                /* c1-72 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.section-heading::after {
    content: "";
    display: block;
    width: 90px;                        /* c1-7b */
    height: 2px;
    background-color: rgb(22, 22, 22);  /* c1-78 */
}

/* === BIOGRAPHY ===
   English: image LEFT, text RIGHT (from live site layout)
   Chinese: text LEFT, image RIGHT
*/
.bio-hero-banner {
    background-color: var(--color-footer-bg); /* rgb(246, 246, 246) */
    padding: 56px 24px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 32px;
}

.bio-hero-name {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--color-dark-text);
    line-height: 1.2;
    margin: 0;
}

.bio-hero-name-cn {
    display: block;
    font-size: 32px;
    margin-top: 8px;
}

.bio-hero-tagline {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.05em;
    margin: 16px 0 0 0;
    text-transform: none;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;      /* 48px gap to match 24px cell paddings */
    align-items: start;
}

.bio-image {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;     /* c1-42 */
    box-shadow: 0 3px 6px 3px rgba(0,0,0,0.24);  /* c1-43 */
}

.bio-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;                    /* scaled up from 22px */
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 16px;   /* c1-5o */
    line-height: 1.3;
}

.bio-text p {
    font-family: var(--font-body);
    font-size: 18px;                    /* scaled up from 16px */
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 16px;
    word-wrap: break-word;  /* c1-26 */
}

.bio-section-bg {
    background-color: var(--color-bg);
}

/* Chinese bio: reverse column order */
.bio-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}


/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 130px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-divider);
}

@media (min-width: 768px) {
    .gallery-item {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .gallery-item {
        height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--font-body);
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.video-section-heading {
    font-family: var(--font-heading);
    font-size: 32px;                    /* scaled up from 22px */
    font-weight: 500;                   /* c1-6l: weight 500 */
    color: var(--color-dark-text);
    margin-bottom: 40px;                /* c1-72 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.video-section-heading::after {
    content: "";
    display: block;
    width: 90px;                        /* c1-7b */
    height: 2px;
    background-color: rgb(22, 22, 22);  /* c1-78 */
}

.video-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.video-item {
    display: flex;
    flex-direction: column;
}

.video-item.full-width {
    width: 100%;
    margin-bottom: 8px;
}

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

.video-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 3px 6px 3px rgba(0,0,0,0.24);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info { padding: 8px 0; }

.video-info h4 {
    font-family: var(--font-heading);
    font-size: 22px;                    /* c1-5h: 22px */
    font-weight: 400;                   /* c1-3k: weight 400 */
    color: var(--color-dark-text);
    margin-bottom: 8px;
    line-height: 1.25;                  /* c1-6v */
}

.video-info p {
    font-family: var(--font-body);
    font-size: 16px;                    /* c1-e: 16px */
    font-weight: 300;
    color: var(--color-muted);
    line-height: 1.5;                   /* c1-4g */
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* === CONTACT === */
.contact-details-wrap {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 1.5rem;
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-dark-text);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-info-links {
    line-height: 1.8 !important;
}

.contact-info-links a {
    color: var(--color-accent-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-links a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}


.contact-form-section h2,
.contact-info-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;                    /* scaled up from 22px */
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-divider);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-divider);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 18px;                    /* scaled up from 16px */
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-mid);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 40px;
    border-radius: 48px;
    border: 1px solid currentColor;
    color: var(--color-accent-mid);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.143em;
    text-transform: uppercase;
    min-height: 56px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    color: var(--color-nav-dark);
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.service-block { margin-bottom: 24px; }

.service-block h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 8px;
}

.service-block p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-list { margin-top: 16px; }

.contact-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-divider);
    font-size: 15px;
    word-break: break-all;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list strong {
    min-width: 110px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    flex-shrink: 0;
}

.contact-list a {
    color: var(--color-accent-mid);     /* c1-6e: rgb(85,120,111) */
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--color-accent-dark);    /* c1-6f: rgb(46,68,63) */
    text-decoration: underline;
}

/* === REVIEW === */
.review-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px var(--container-pad);
}

.testimonial-card {
    background-color: var(--color-footer-bg);
    border-left: 4px solid var(--color-accent-mid);
    padding: 40px;
    border-radius: 0 4px 4px 0;
    position: relative;
    margin-bottom: 24px;
    box-shadow: 0 3px 6px 3px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-accent);
    position: absolute;
    top: -0.25rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
    padding-top: 1.5rem;
}

.testimonial-author {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-muted);
    font-style: normal;
}

/* === FOOTER
   Background: rgb(246, 246, 246) = c1-5s
*/
footer {
    background-color: var(--color-bg);
    border-top: none;
    padding: 32px var(--container-pad);
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-social a:hover { color: var(--color-text); }
.footer-social svg { width: 40px; height: 40px; }

.footer-divider-top {
    width: 100%;
    border: none;
    border-top: 1px solid var(--color-divider);
    margin-bottom: 16px;
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .bio-grid,
    .bio-grid-reverse { grid-template-columns: 1fr; gap: 24px; }
    .bio-grid-reverse .bio-image-wrap { order: -1; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Hide footer completely on mobile */
    footer {
        display: none !important;
    }

    /* Mobile nav — light dropdown matching premium minimalist style */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 8px 0;
        z-index: 10002;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        height: auto;
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links li {
        display: block;
        height: auto;
    }
    .nav-links li a {
        display: block;
        height: auto;
        color: var(--color-text);
        padding: 14px 24px;
        width: 100%;
        font-size: 14px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-top: none;
        border-bottom: 1px solid var(--color-divider);
        box-sizing: border-box;
        transition: background-color 0.2s, color 0.2s;
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links li a:hover {
        background-color: var(--color-alt-bg);
        color: var(--color-accent-mid);
    }
    .nav-links li a.active {
        color: var(--color-accent-mid);
        border-top: none;
        padding-top: 14px;
        margin-top: 0;
        background-color: var(--color-alt-bg);
        font-weight: 500;
    }
    .nav-mobile-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-brand-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }
    .nav-brand-title {
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--color-dark-text);
        line-height: 1.2;
        white-space: nowrap;
    }
    .nav-brand-subtitle {
        font-family: Georgia, serif;
        font-size: 10px;
        font-style: italic;
        font-weight: 300;
        color: var(--color-muted);
        line-height: 1.2;
        margin-top: 2px;
        white-space: nowrap;
    }
    .hamburger { display: flex; }

    /* Hamburger open visual transition */
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 { font-size: 24px; }
    .hero h1 .chinese { font-size: 18px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .bio-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .biography-english-section .bio-image {
        object-position: center 20%;
    }
    .biography-chinese-section .bio-image {
        object-position: center 20%;
    }
    .biography-english-section {
        padding-bottom: 1rem !important;
    }
    .biography-chinese-section {
        padding-top: 1rem !important;
    }

    .video-row-two { grid-template-columns: 1fr; gap: 24px; }
    .video-layout { gap: 24px; }
    .video-item.full-width { margin-bottom: 0; }
    .gallery-full-container { padding-bottom: 1.5rem !important; }
    .video-section-container { padding-top: 0.5rem !important; }

    .section-container { padding: 32px 16px; }

    /* Home Hero - Stack text on top, photo below, clean white background, full portrait details */
    .hero-split {
        flex-direction: column;
        height: auto;
        margin-top: 0;
    }
    .hero-left {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem 1.5rem;
        background-color: transparent;
    }
    .hero-name, .bio-hero-name {
        font-size: 34px !important;
        margin-bottom: 0 !important;
        line-height: 1.2;
    }
    .hero-name-cn, .bio-hero-name-cn {
        font-size: 26px !important;
        margin-top: 6px !important;
    }
    .hero-tagline, .bio-hero-tagline {
        font-size: 15px !important;
        margin-top: 12px !important;
    }
    .hero-right {
        flex: none;
        width: 100%;
        height: auto;
    }
    .hero-photo {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Hide inner page tagline banners on mobile as it is now in the header navbar */
    .tagline-banner-container {
        display: none !important;
    }

    /* Modern Mobile Section Headings */
    .section-heading, .video-section-heading {
        align-items: flex-start;
        text-align: left;
        font-size: 26px;
        font-weight: 600;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }
    .section-heading::after, .video-section-heading::after {
        display: none;
    }

    .contact-details-wrap {
        padding-top: 0;
    }

    .home-quote-section {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .quote-image-wrapper {
        flex: none;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
    .quote-text-wrapper {
        flex: none;
        width: 100%;
        text-align: center;
    }
    .home-quote-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .video-row-two { grid-template-columns: 1fr; }
}
