:root {
    --primary: #8a181a;
    --primary-light: #a32225;
    --bg-cream: #fcfbfa;
    --bg-sand: #f4f1ea;
    --text-dark: #1c1a17;
    --text-muted: #6e6a62;
    --border-color: #e5e0d8;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.bg-light {
    background: var(--bg-sand);
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 24, 26, 0.15);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar.scrolled {
    background: rgba(252, 251, 250, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Logo chuyển sang màu đỏ khi cuộn trang */
.navbar.scrolled .logo {
    color: var(--primary) !important;
}

/* Các liên kết menu vẫn giữ màu tối */
.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* NAVIGATION - GẠCH CHÂN SIÊU MỎNG & THOÁNG CHÂN CHỮ */
.nav-links a {
    color: #fff;
    margin: 0 20px;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    font-weight: 400;
    opacity: 0.85;
    position: relative;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    opacity: 0.6;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: #fff !important;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 40%;
}

/* Khắc phục màu chữ Navbar trên trang Detail */
.detail-page-body .navbar:not(.scrolled) .nav-links a.active,
.detail-page-body .navbar:not(.scrolled) .nav-links a:hover {
    color: var(--primary) !important;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark) !important;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--text-dark) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #000000;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #000000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    z-index: 1;
    transition: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 26, 23, 0.35), rgba(28, 26, 23, 0.7));
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 950px;
    opacity: 0;
    transition: opacity 2000ms ease-out 500ms;
}

.hero-content.fade-in {
    opacity: 1;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.25;
    margin-bottom: 40px;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 65px;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 1px;
}

.cta-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 400;
}

.cta-scroll:hover {
    opacity: 1;
    color: #fff;
}

.bounce-arrow {
    margin-top: 15px;
    font-size: 1.2rem;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ==========================================================================
   TITLES
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 20px auto 0;
}

.subsection-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* ==========================================================================
   QNA SECTION
   ========================================================================== */
.qna-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.qna-left {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    justify-content: flex-start;
}

.qna-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    cursor: pointer;
}

.qna-item:first-child { padding-top: 0; }

.qna-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qna-item-header h3 {
    font-size: 1.3rem;
    font-family: var(--font-serif);
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.qna-icon {
    font-size: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qna-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.qna-item-body-inner {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qna-item-body-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 15px;
    padding-bottom: 5px;
    padding-right: 30px;
    margin: 0;
}

.qna-item.active .qna-item-header h3 { color: var(--primary); }
.qna-item.active .qna-icon { transform: rotate(45deg); color: var(--primary); }
.qna-item.active .qna-item-body { grid-template-rows: 1fr; }
.qna-item.active .qna-item-body-inner {
    opacity: 1;
    transition: opacity 0.5s ease 0.2s;
}

.qna-right {
    position: sticky;
    top: 120px;
}

.qna-img-frame {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: var(--text-dark);
}

.qna-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out, transform 0.8s ease-out;
}

.qna-img-frame img.fade-out {
    opacity: 0;
    transform: scale(1.03);
}

/* ==========================================================================
   SHOWCASE SECTION (DESKTOP TẠP CHÍ)
   ========================================================================== */
.showcase-mobile-only {
    display: none !important;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.showcase-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sc-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.sc-btn:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.2);
}

.sc-progress-bar {
    width: 150px;
    height: 2px;
    background: var(--border-color);
    position: relative;
    overflow: hidden;
}

.sc-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
}

.showcase-wrapper {
    position: relative;
    height: 550px;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.showcase-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.showcase-bg-number {
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 16rem;
    font-family: var(--font-serif);
    color: var(--bg-sand);
    line-height: 1;
    z-index: 0;
    opacity: 0.6;
}

.showcase-content {
    position: relative;
    z-index: 5;
}

.showcase-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.3;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

.showcase-visuals {
    position: relative;
    z-index: 1;
}

.sc-img-main, .sc-img-sub, .sc-img-sub-2 {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.sc-img-main img, .sc-img-sub img, .sc-img-sub-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Các Layout Desktop */
.layout-type-1 { flex-direction: row; }
.layout-type-1 .showcase-content { width: 35%; }
.layout-type-1 .showcase-visuals { width: 65%; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center; }
.layout-type-1 .sc-img-main { height: 520px; }
.layout-type-1 .sc-img-sub { height: 400px; }

.layout-type-2 { flex-direction: row-reverse; }
.layout-type-2 .showcase-content { width: 40%; }
.layout-type-2 .showcase-visuals { width: 60%; display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; }
.layout-type-2 .sc-img-main { height: 400px; margin-top: auto; }
.layout-type-2 .sc-img-sub { height: 520px; margin-bottom: auto; }

.layout-type-3 { flex-direction: row; }
.layout-type-3 .showcase-content { width: 40%; padding-right: 40px; }
.layout-type-3 .showcase-visuals { width: 60%; display: block; }
.layout-type-3 .sc-img-main { height: 550px; width: 100%; }

.layout-type-4 { flex-direction: row-reverse; }
.layout-type-4 .showcase-content { width: 35%; }
.layout-type-4 .showcase-visuals { width: 65%; height: 550px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.layout-type-4 .sc-img-main { grid-column: 1; grid-row: 1 / 3; height: 100%; }
.layout-type-4 .sc-img-sub { grid-column: 2; grid-row: 1; height: 100%; }
.layout-type-4 .sc-img-sub-2 { grid-column: 2; grid-row: 2; height: 100%; }

/* Nút Khám Phá Desktop */
.sc-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 45px;
    padding: 12px 28px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}
.sc-btn-more .sc-arrow { font-size: 1rem; transition: transform 0.3s ease; }
.sc-btn-more:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.sc-btn-more:hover .sc-arrow { transform: translateX(6px); }

/* Animation Reveal */
.showcase-slide .sc-btn-more,
.showcase-slide .showcase-content,
.showcase-slide .sc-img-sub,
.showcase-slide .sc-img-sub-2 {
    opacity: 0;
    transform: translateY(30px);
}
.showcase-slide .sc-img-main { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
.showcase-slide .sc-img-main img { transform: scale(1.1); }

.showcase-slide.active .sc-img-main { animation: revealUp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards; }
.showcase-slide.active .sc-img-main img { transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1); transform: scale(1); }
.showcase-slide.active .showcase-content { transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.showcase-slide.active .sc-img-sub { transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.showcase-slide.active .sc-btn-more { transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s, color 0.4s, border-color 0.4s; transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.showcase-slide.active .sc-img-sub-2 { transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

@keyframes revealUp {
    0% { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
    100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

.showcase-block-secondary {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed var(--border-color);
}
.showcase-header-sub {
    justify-content: flex-end;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 10px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
#features { padding-bottom: 0; }
.features-grid-editorial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: transparent;
}
.feature-ed-item {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 25px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.feature-ed-bg-default { position: absolute; inset: 0; z-index: 0; transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.feature-ed-bg-default img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); opacity: 0.35; }
.feature-ed-bg-default .fade-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(244, 241, 234, 0) 0%, rgba(244, 241, 234, 0.75) 60%, rgba(244, 241, 234, 1) 100%); }
.feature-ed-item:hover .feature-ed-bg-default { opacity: 0; }
.feature-ed-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.feature-ed-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease; filter: grayscale(100%) opacity(0); }
.feature-ed-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 26, 23, 0.95) 0%, rgba(28, 26, 23, 0.3) 100%); transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); z-index: 1; }
.feature-ed-item:hover::before { transform: translateY(0); }
.feature-ed-item:hover .feature-ed-bg img { transform: scale(1); filter: grayscale(0%) opacity(1); }
.feature-ed-content { position: relative; z-index: 2; }
.feature-ed-num { font-family: var(--font-serif); font-size: 2.5rem; font-style: italic; color: var(--primary); margin-bottom: 15px; transition: color 0.4s ease; display: inline-block; }
.feature-ed-item h4 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-dark); transition: color 0.4s ease; line-height: 1.4; }
.feature-ed-item p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; transition: color 0.4s ease; line-height: 1.6; }
.feature-ed-item:hover .feature-ed-num, .feature-ed-item:hover h4 { color: #fff; }
.feature-ed-item:hover p { color: #e5e0d8; }

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */
.timeline-immersive-wrapper { position: relative; margin-top: 150px; width: 100vw; margin-left: calc(-50vw + 50%); }
.timeline-sticky-bg { position: sticky; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; z-index: 0; }
.timeline-bg-layer { position: absolute; inset: 0; background-color: var(--text-dark); }
.timeline-bg-item { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 3s ease-out; }
.timeline-bg-item.active { opacity: 1; transform: scale(1); }
.timeline-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28, 26, 23, 0.95) 0%, rgba(28, 26, 23, 0.65) 30%, rgba(28, 26, 23, 0.65) 70%, rgba(28, 26, 23, 0.95) 100%); z-index: 1; }
.timeline-content-layer { position: relative; z-index: 2; margin: -100vh auto 0; padding: 15vh 40px 15vh; max-width: 1280px; }
.text-light { color: #fff !important; text-align: center; margin-bottom: 100px; }
.timeline-vertical { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255, 255, 255, 0.15); transform: translateX(-50%); z-index: 1; }
.timeline-line-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    height: 0;
    z-index: 2;
    transition: none;
}
.timeline-step { display: flex; justify-content: space-between; align-items: center; margin-bottom: 120px; position: relative; opacity: 0.25; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.timeline-step:last-child { margin-bottom: 0px; }
.timeline-step:nth-child(odd) { flex-direction: row-reverse; }
.timeline-step:nth-child(odd) .timeline-content { text-align: right; padding-right: 50px; }
.timeline-step:nth-child(even) .timeline-content { text-align: left; padding-left: 50px; }
.timeline-content { width: 50%; position: relative; }
.timeline-roman { font-family: var(--font-serif); font-size: 3.5rem; font-style: italic; color: rgba(255, 255, 255, 0.2); line-height: 1; margin-bottom: 15px; transition: color 0.6s ease; }
.timeline-content h4 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.timeline-content p { font-size: 0.95rem; color: #d1cbc1; line-height: 1.7; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--text-dark); border: 2px solid rgba(255, 255, 255, 0.3); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; transition: all 0.6s ease; }
.timeline-step.active { color: #e5e0d8; opacity: 1; transform: translateY(0); }
.timeline-step.active .timeline-roman { color: var(--primary); }
.timeline-step.active .timeline-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 15px rgba(138, 24, 26, 0.6); transform: translate(-50%, -50%) scale(1.3); }
.timeline-day-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a19c93;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

/* ==========================================================================
   TIMELINE COMMITMENT (CAM KẾT CUỐI TIMELINE)
   ========================================================================== */
.timeline-commitment-box {
    margin-top: 150px;
    background: rgba(28, 26, 23, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid var(--primary);
    padding: 40px 50px 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.commit-seal {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.commit-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    font-style: italic;
}

.commit-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    width: fit-content;
    max-width: 100%;
}

.commit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #e5e0d8;
    line-height: 1.6;
    font-weight: 300;
}

.commit-bullet {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */
#booking { padding-top: 50px; }
.booking-container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 100px; align-items: start; }
.booking-left h2 { font-size: 2.5rem; margin-bottom: 15px; }
.booking-left p { color: var(--text-muted); font-weight: 300; margin-bottom: 40px; }

/* BỘ ĐIỀU HƯỚNG LỊCH ĐẶT HẸN */
.date-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.current-month-label {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.date-nav-btns {
    display: flex;
    gap: 10px;
}

.date-nav-btn {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 42px;
    height: 42px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.date-nav-btn:hover:not(:disabled) {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.date-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: transparent;
    border-color: var(--border-color);
}

.date-scroll { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-bottom: 35px; }
.date-box { text-align: center; padding: 18px 5px; border: 1px solid var(--border-color); background: transparent; border-radius: 0; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column; gap: 2px; }
.date-box span:first-child { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); transition: inherit; }
.date-box span:last-child { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; color: var(--text-dark); font-weight: 400; opacity: 1; transition: inherit; }
.date-box:hover:not(.active) { border-color: var(--text-dark); }
.date-box.active { border-color: var(--primary); background: #fff; box-shadow: 0 10px 30px rgba(138, 24, 26, 0.08); transform: translateY(-4px); }
.date-box.active span:first-child, .date-box.active span:last-child { color: var(--primary); }
.time-pills { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.pill { padding: 12px 0; border: 1px solid var(--border-color); background: transparent; border-radius: 0; font-size: 0.95rem; font-family: var(--font-sans); letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; text-align: center; color: var(--text-muted); }
.pill.active { border-color: var(--primary); background: transparent; color: var(--primary); font-weight: 600; box-shadow: inset 0 -3px 0 var(--primary); }
.pill:hover:not(.active) { border-color: var(--text-dark); color: var(--text-dark); }
.booking-right { position: relative; background: var(--bg-sand); padding: 50px; border-radius: 2px; border: 1px solid var(--border-color); box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.03); }
.input-group { position: relative; margin-bottom: 35px; padding-top: 22px; }
.booking-form input, .booking-form textarea { width: 100%; padding: 10px 15px; border: none; border-bottom: 1px solid var(--border-color); background: transparent; border-radius: 0; font-family: inherit; font-size: 1rem; color: var(--text-dark); transition: all 0.3s ease; }
.booking-form textarea { height: 100px; resize: none; word-break: break-word; }
.booking-form input:focus, .booking-form textarea:focus { outline: none; background: transparent; border-bottom: 2px solid var(--primary); }
.input-group label { position: absolute; top: 32px; left: 15px; font-size: 1rem; color: var(--text-muted); pointer-events: none; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.booking-form input:focus+label, .booking-form input:not(:placeholder-shown)+label, .booking-form textarea:focus+label, .booking-form textarea:not(:placeholder-shown)+label { top: 0; left: 15px; font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.btn-submit { width: 100%; background: var(--text-dark); color: #fff; padding: 20px 0; border: none; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 4px; transition: all 0.4s ease; margin-top: 15px; }
.btn-submit:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(138, 24, 26, 0.2); }
.booking-success { text-align: center; padding: 40px 0; animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.success-icon { width: 80px; height: 80px; background: var(--primary); color: #fff; font-size: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 30px; }
.booking-success h3 { font-size: 2rem; margin-bottom: 15px; }
.booking-success p { color: var(--text-muted); line-height: 1.7; font-size: 1rem; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   MAGAZINE SECTION
   ========================================================================== */
.magazine-editorial-grid { display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 40px; align-items: stretch; }
.mag-col { display: flex; flex-direction: column; }
.mag-subs { border-left: 1px solid var(--border-color); padding-left: 40px; }
.mag-recents { border-left: 1px solid var(--border-color); padding-left: 40px; }
.mag-article-card { display: flex; flex-direction: column; group: mag-hover; }
.mag-img-wrapper { width: 100%; overflow: hidden; margin-bottom: 20px; background: var(--text-dark); }
.mag-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease; }
.mag-article-card:hover .mag-img-wrapper img { transform: scale(1.05); opacity: 0.9; }
.mag-category { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; margin-bottom: 15px; }
.mag-title-lg { font-family: var(--font-serif); font-size: 2.2rem; line-height: 1.3; color: var(--text-dark); margin-bottom: 15px; transition: color 0.3s ease; }
.mag-title-md { font-family: var(--font-serif); font-size: 1.4rem; line-height: 1.35; color: var(--text-dark); margin-bottom: 10px; transition: color 0.3s ease; }
.mag-article-card:hover .mag-title-lg, .mag-article-card:hover .mag-title-md { color: var(--primary); }
.mag-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.sub-card:first-child { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-color); }
.sub-card .mag-img-wrapper { height: 200px; }
.recents-header { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dark); border-top: 2px solid var(--text-dark); border-bottom: 1px solid var(--text-dark); padding: 12px 0; margin-bottom: 25px; }
.recent-item { display: block; padding: 20px 0; border-bottom: 1px solid var(--border-color); transition: transform 0.3s ease; }
.recent-item:last-child { border-bottom: none; }
.recent-item:hover { transform: translateX(5px); }
.recent-title { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.4; color: var(--text-dark); margin-bottom: 8px; font-weight: 400; transition: color 0.3s ease; }
.recent-item:hover .recent-title { color: var(--primary); }
.recent-date { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.brand-col .logo { margin-bottom: 25px; display: inline-block; }
.footer { background: #12110f; color: #e5e0d8; padding: 100px 0 0; font-size: 0.9rem; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 70px; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 20px; height: 1px; background: var(--primary); }
.footer p { color: #a19c93; font-weight: 300; line-height: 1.7; margin-bottom: 12px; }
.brand-desc { margin-bottom: 30px !important; }
.work-hours p { margin-bottom: 5px; }
.work-hours .note { font-size: 0.8rem; opacity: 0.7; }
.showroom-item { margin-bottom: 25px; }
.showroom-item strong { display: block; color: #fff; font-family: var(--font-sans); font-weight: 400; margin-bottom: 5px; }
.contact-item { border-top: 1px solid #262421; padding-top: 20px; margin-top: 10px; }
.contact-item a { color: #fff; transition: color 0.3s ease; }
.contact-item a:hover { color: var(--primary); }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: #a19c93; font-weight: 300; transition: all 0.3s ease; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }
.subscribe-form { display: flex; border-bottom: 1px solid #3d3a35; margin-bottom: 25px; transition: border-color 0.3s ease; }
.subscribe-form:focus-within { border-bottom-color: var(--primary); }
.subscribe-form input { padding: 15px 0; border: none; background: transparent; color: #fff; outline: none; width: 100%; font-family: inherit; font-size: 0.9rem; }
.subscribe-form .btn-primary { background: transparent; padding: 15px 0 15px 20px; color: #fff; letter-spacing: 2px; box-shadow: none; white-space: nowrap; flex-shrink: 0; }
.subscribe-form .btn-primary:hover { color: var(--primary); transform: none; }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; font-weight: 600; transition: color 0.3s ease; }
.social-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #262421; padding: 25px 0; background: #0a0a09; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; }
.fb-inner p { margin: 0; font-size: 0.8rem; color: #6e6a62; }
.fb-right strong { color: #a19c93; font-weight: 400; }

/* ==========================================================================
   FAB BUTTON
   ========================================================================== */
.fab-container { position: fixed; bottom: 40px; right: 40px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
.fab-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--text-dark); color: #fff; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.fab-btn:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(138, 24, 26, 0.25); }
.fab-icon-chat, .fab-icon-close { position: absolute; width: 26px; height: 26px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.fab-icon-close { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.fab-icon-chat { opacity: 1; transform: rotate(0) scale(1); }
.fab-btn.active .fab-icon-chat { opacity: 0; transform: rotate(90deg) scale(0.5); }
.fab-btn.active .fab-icon-close { opacity: 1; transform: rotate(0) scale(1); }
.fab-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.fab-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-item { padding: 12px 24px; background: var(--bg-cream); color: var(--text-dark); border: 1px solid var(--border-color); border-radius: 2px; font-size: 0.8rem; font-family: var(--font-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.fab-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateX(-5px); }

/* ==========================================================================
   DROPDOWN MENU DỊCH VỤ (EDITORIAL DROPDOWN DESIGN)
   ========================================================================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 2px;
}

.nav-dropdown:hover .dropdown-dot,
.dropdown-toggle:hover .dropdown-dot {
    background-color: var(--primary) !important;
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(138, 24, 26, 0.8);
}

.navbar.scrolled .dropdown-dot {
    background-color: var(--text-dark);
}

.dropdown-mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 620px;
    background: rgba(252, 251, 250, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    padding: 20px;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1010;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-mega-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(8px);
    }
}

.dropdown-links-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px !important;
    margin: 0 !important;
    border-radius: 2px;
    transition: all 0.3s ease !important;
    text-align: left;
}

.dropdown-item .item-num {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--primary);
    opacity: 0.6;
    margin-top: 2px;
}

.dropdown-item .item-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.dropdown-item .item-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-top: 2px;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--bg-sand);
}

.dropdown-item:hover .item-text strong,
.dropdown-item.active .item-text strong {
    color: var(--primary);
}

.dropdown-preview-col {
    position: relative;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 2px;
}

.preview-img-frame {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--bg-cream);
    overflow: hidden;
}

.preview-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    pointer-events: none;
}

.dropdown-item::after {
    display: none !important;
}

/* ==========================================================================
   COLLECTIONS PAGE COMPONENT
   ========================================================================== */
.collection-hero {
    height: 45vh;
    min-height: 400px;
    background-image: url('images/hero03.jpg');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* TAG LIST EDITORIAL */
.tag-filter-wrapper {
    position: sticky;
    top: 85px;
    z-index: 900;
    background: var(--bg-sand);
    padding: 16px 0;
    margin-bottom: 45px;
    border-bottom: 1px solid var(--border-color);
}

.tag-filter-scroll {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 80px !important;
}

.tag-filter-scroll::-webkit-scrollbar {
    display: none;
}

.tag-fade-left,
.tag-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 240px;
    pointer-events: none;
    z-index: 2;
}

.tag-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-sand) 0%, rgba(244, 241, 234, 0) 100%);
}

.tag-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-sand) 0%, rgba(244, 241, 234, 0) 100%);
}

.tag-btn {
    background: transparent;
    border: none;
    padding: 8px 0;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    transition: color 0.3s ease;
}

.tag-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.tag-btn:hover { color: var(--text-dark); }
.tag-btn.active { color: var(--primary); }
.tag-btn.active::after { width: 100%; }

.tag-count {
    font-size: 0.7rem;
    opacity: 0.5;
    margin-left: 4px;
    font-weight: 400;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.cl-card {
    display: flex;
    flex-direction: column;
}

.cl-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.cl-collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--text-dark);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cl-collage-img:nth-child(1) { grid-row: 1 / 3; }
.cl-card:hover .cl-collage-img { transform: scale(1.05); }

.cl-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cl-tag-pill {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(138, 24, 26, 0.06);
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cl-tag-pill:hover {
    background: var(--primary);
    color: #fff;
}

.cl-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.cl-card:hover h3 { color: var(--primary); }

.cl-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-num:hover, .page-num.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE LAYOUT (TABLET 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .qna-wrapper, .booking-container, .magazine-editorial-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid-editorial { grid-template-columns: repeat(2, 1fr); }
    .booking-right { padding: 30px; }
    
    .showcase-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .showcase-wrapper { height: auto; }
    .showcase-slide { flex-direction: column !important; opacity: 1; margin-bottom: 60px; gap: 30px; }
    .showcase-slide:not(.active) { display: none; }
    .layout-type-1 .showcase-content, .layout-type-2 .showcase-content, .layout-type-3 .showcase-content, .layout-type-4 .showcase-content { width: 100%; padding: 0; }
    .layout-type-1 .showcase-visuals, .layout-type-2 .showcase-visuals, .layout-type-3 .showcase-visuals, .layout-type-4 .showcase-visuals { width: 100%; grid-template-columns: 1fr; height: auto; }
    .sc-img-main, .sc-img-sub, .sc-img-sub-2 { height: 350px !important; margin: 0 !important; }
    
    .mag-subs, .mag-recents { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 40px; }
    .mag-subs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .sub-card:first-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

/* ==========================================================================
   RESPONSIVE LAYOUT (MOBILE 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 70px 0; }

    .section-title { font-size: 1.8rem; margin-bottom: 40px; }
    .section-title::after { margin-top: 15px; }
    .subsection-title { font-size: 1.5rem; margin-bottom: 30px; }

    .hero {
        height: 150vw;
        min-height: 550px;
        max-height: 85vh;
    }
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.3; }
    .hero p { font-size: 0.95rem; margin-bottom: 30px; padding: 0 15px; }

    /* Timeline Mobile */
    .timeline-content-layer {
        padding-bottom: 12vh !important;
    }

    .timeline-line, .timeline-line-fill { left: 12px !important; }
    .timeline-dot { left: 12px !important; top: 8px !important; }
    .timeline-step { display: block !important; margin-bottom: 40px !important; position: relative !important; }
    .timeline-step:last-child { margin-bottom: 0px !important; }
    .timeline-content { width: 100% !important; padding-left: 35px !important; padding-right: 15px !important; text-align: left !important; box-sizing: border-box !important; }
    .timeline-step .timeline-content:empty, .timeline-step .timeline-content[style*="height: 0"] { display: none !important; }
    .timeline-roman { font-size: 2rem !important; margin-bottom: 2px !important; }
    
    .timeline-day-tag {
        font-size: 0.68rem !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 4px !important;
        opacity: 0.85;
    }

    .timeline-content h4 {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        color: #ffffff !important;
    }

    .timeline-content p {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
        color: #d1cbc1 !important;
    }

    .timeline-sticky-bg::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(to right, rgba(18, 17, 15, 0.88) 0%, rgba(18, 17, 15, 0.6) 65%, rgba(18, 17, 15, 0.15) 100%);
        z-index: 2; pointer-events: none;
    }

    /* Timeline Commitment Mobile */
    .timeline-commitment-box {
        margin-top: 60px !important;
        padding: 30px 20px 60px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .commit-title {
        font-size: 1.4rem !important;
        margin-bottom: 20px !important;
    }

    .commit-list li {
        font-size: 0.85rem !important;
        gap: 10px !important;
    }

    /* Đặc quyền Mobile */
    .features-grid-editorial { grid-template-columns: repeat(2, 1fr) !important; }
    .feature-ed-item { min-height: 260px !important; padding: 24px 16px !important; }
    .feature-ed-num { font-size: 1.8rem !important; margin-bottom: 8px !important; }
    .feature-ed-item h4 { font-size: 1.05rem !important; line-height: 1.35 !important; margin-bottom: 6px !important; }
    .feature-ed-item p { font-size: 0.8rem !important; line-height: 1.45 !important; }

    /* Navbar Mobile Menu Panel */
    .desktop-only { display: none; }
    .mobile-menu-btn { display: flex; flex-direction: column; gap: 6px; background: transparent; border: none; cursor: pointer; z-index: 1001; }
    .mobile-menu-btn span { width: 30px; height: 2px; background: #fff; transition: var(--transition); }
    .navbar.scrolled .mobile-menu-btn span { background: var(--text-dark); }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-cream);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        display: flex;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a:not(.dropdown-item) {
        color: var(--text-dark) !important;
        font-family: var(--font-sans) !important;
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        margin: 12px 0 !important;
        padding: 4px 0 !important;
        width: 100%;
        text-align: left;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
        margin: 6px 0;
    }

    .dropdown-toggle {
        font-family: var(--font-sans) !important;
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        color: var(--text-dark) !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin: 12px 0 6px !important;
        width: 100%;
    }

    .dropdown-mega-panel {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        display: block !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 14px !important;
        margin-top: 4px;
        opacity: 1 !important;
        visibility: visible !important;
        border-left: 2px solid var(--border-color) !important;
    }

    .dropdown-links-col {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .dropdown-preview-col,
    .dropdown-item .item-num,
    .dropdown-item .item-text span {
        display: none !important;
    }

    .dropdown-item {
        display: block !important;
        padding: 8px 0 !important;
        margin: 0 !important;
        background: transparent !important;
        text-align: left !important;
    }

    .dropdown-item .item-text strong {
        font-family: var(--font-sans) !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        color: var(--text-muted) !important;
        letter-spacing: 0 !important;
    }

    .dropdown-item:hover .item-text strong,
    .dropdown-item.active .item-text strong {
        color: var(--primary) !important;
        font-weight: 500 !important;
    }

    /* Booking Mobile */
    #booking { padding-top: 30px; }
    .booking-left h2 { font-size: 1.8rem; }
    .booking-right { padding: 20px !important; box-sizing: border-box !important; }
    .date-nav-header { margin-bottom: 15px; padding-bottom: 10px; }
    .current-month-label { font-size: 1.1rem; }
    .date-nav-btn { width: 36px; height: 36px; font-size: 0.95rem; }
    .date-scroll { grid-template-columns: repeat(7, 1fr) !important; gap: 5px !important; }
    .date-box { padding: 8px 1px !important; }
    .date-box span:first-child { font-size: 0.6rem !important; }
    .date-box span:last-child { font-size: 1.1rem !important; }
    .time-pills { grid-template-columns: repeat(5, 1fr) !important; gap: 6px !important; }
    .pill { padding: 8px 0 !important; font-size: 0.8rem !important; }

    /* Showcase Mobile */
    .showcase-desktop-only { display: none !important; }
    .showcase-mobile-only { display: block !important; }
    .sc-mb-wrapper { position: relative; min-height: 520px; }
    .sc-mb-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.5s ease, transform 0.5s ease; transform: scale(0.98); display: flex; flex-direction: column; }
    .sc-mb-slide.active { opacity: 1; pointer-events: auto; transform: scale(1); }
    .sc-mb-content { position: relative; z-index: 2; margin-bottom: 8px; }
    .sc-mb-content h3 { font-size: 1.25rem; font-family: var(--font-serif); line-height: 1.3; margin-bottom: 4px; color: var(--text-dark); }
    .sc-mb-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .sc-mb-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid var(--primary); padding: 5px 12px; width: fit-content; }
    .sc-mb-grid { display: grid; gap: 6px; width: 100%; border-radius: 3px; overflow: hidden; margin-top: 6px; }
    .sc-mb-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
    .sc-mb-grid.layout-mb-2 { grid-template-columns: 1.2fr 1fr; height: 290px; }
    .sc-mb-grid.layout-mb-3 { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 120px; }
    .sc-mb-grid.layout-mb-3 .img-hero { grid-column: 1 / -1; }
    .sc-mb-grid.layout-mb-4 { grid-template-columns: repeat(3, 1fr); grid-template-rows: 160px 130px; }
    .sc-mb-grid.layout-mb-4 .img-top-wide { grid-column: 1 / -1; }
    .sc-mb-grid.layout-mb-5 { grid-template-columns: 1fr 1fr; height: 310px; }
    .sc-mb-grid.layout-mb-5 .col-1 { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; height: 100%; }
    .sc-mb-grid.layout-mb-5 .col-2 { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 6px; height: 100%; }

    /* Collections Mobile */
    .collection-hero { height: 35vh; min-height: 300px; }
    .collection-hero h1 { font-size: 2.2rem; }
    .tag-filter-wrapper { top: 65px; padding: 12px 0; }
    .tag-fade-left, .tag-fade-right { width: 60px; }
    .tag-filter-scroll { padding: 5px 40px !important; }
    .tag-btn { flex-shrink: 0; }
    .collection-grid { grid-template-columns: 1fr; gap: 50px; }
    .cl-collage { grid-template-rows: 150px 150px; gap: 6px; }
    .cl-card h3 { font-size: 1.5rem; }

    /* Magazine Mobile */
    .mag-subs { grid-template-columns: 1fr; }
    .mag-title-lg { font-size: 1.5rem; }
    .sub-card:first-child { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-color); }
    .footer-grid { grid-template-columns: 1fr; }
    .fb-inner { flex-direction: column; text-align: center; gap: 15px; }
}

/* ==========================================================================
   LONG-FORM EDITORIAL MAGAZINE MONOGRAPH STYLES
   ========================================================================== */
.about-editorial-page {
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

/* 0. Hero Banner (Đồng bộ phong cách Collections) */
.about-hero-banner {
    height: 45vh;
    min-height: 380px;
    background-image: url('images/hero03.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.editorial-hero-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e5e0d8;
    margin-bottom: 12px;
    opacity: 0.9;
}

.editorial-hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.editorial-hero-desc {
    color: #e5e0d8;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Base Typography Elements */
.ed-figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.ed-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.8s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.ed-figure:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.ed-figure figcaption {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    border-left: 1px solid var(--primary);
    padding-left: 10px;
    line-height: 1.4;
}

.ed-chapter-num {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.ed-headline {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    line-height: 1.25;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.drop-cap::first-letter {
    font-family: var(--font-serif);
    float: left;
    font-size: 4.8rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 14px;
    padding-bottom: 0;
    color: var(--primary);
    font-style: italic;
    font-weight: 700;
}

.ed-dense-text p,
.ed-prose p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: #383531;
    margin-bottom: 22px;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

/* 1. Masthead Header */
.about-editorial-page .ed-masthead {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--border-color);
}

.ed-issue-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    padding: 10px 0;
    margin-bottom: 40px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ed-cover-title {
    font-family: var(--font-serif);
    font-size: 4.6rem;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.ed-cover-sub {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    max-width: 800px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* 2. Chapter I Cover Layout */
.ed-two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.ed-col-portrait .ed-figure {
    height: 680px;
    box-shadow: 15px 15px 0 var(--bg-sand);
}

.ed-sub-figure {
    margin-top: 40px;
    height: 260px;
}

/* 3. Pull Quote & Double Landscape Spread */
.ed-pullquote-center {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
}

.ed-quote-glyph {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--primary);
    line-height: 0.8;
    opacity: 0.25;
    display: block;
}

.ed-pullquote-center blockquote {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark);
    margin: 10px 0 20px;
}

.ed-pullquote-center cite {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.ed-double-landscape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ed-double-landscape-grid .ed-figure {
    height: 380px;
}

.ed-multi-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.ed-multi-columns p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #383531;
    font-weight: 300;
    text-align: justify;
}

/* 4. Asymmetrical Triptych Magazine Grid (05 Dọc + 06 Ngang + 07 Dọc) */
.ed-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.ed-triptych-magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 35px;
    align-items: start;
}

.ed-trip-col .ed-figure {
    height: 480px;
    margin-bottom: 20px;
}

.ed-center-col .ed-figure {
    height: 270px;
    margin: 25px 0;
}

.ed-center-col .text-top p {
    margin-bottom: 0;
}

.ed-dense-text {
    padding-top: 10px;
}

/* 5. Epilogue & Colophon */
.ed-epilogue-container {
    max-width: 1000px;
}

.ed-epilogue-lead {
    text-align: center;
    margin-bottom: 50px;
}

.ed-epilogue-lead h3 {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.ed-dense-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.ed-dense-columns p {
    font-size: 0.88rem;
    line-height: 1.75;
}

.ed-colophon-signature {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================================================
   EDITORIAL RESPONSIVE LAYOUT (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .ed-cover-title {
        font-size: 3.5rem;
    }

    .ed-two-col-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ed-col-portrait .ed-figure {
        height: 500px;
    }

    .ed-triptych-magazine-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ed-trip-col .ed-figure {
        height: 450px;
    }

    .ed-dense-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        height: 35vh;
        min-height: 280px;
    }

    .editorial-hero-title {
        font-size: 2.2rem;
    }

    .editorial-hero-desc {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .about-editorial-page .ed-masthead {
        padding: 40px 0 30px;
    }

    .ed-issue-meta {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        letter-spacing: 1.5px;
    }

    .ed-cover-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .ed-cover-sub {
        font-size: 0.95rem;
    }

    .ed-headline {
        font-size: 1.85rem;
    }

    .ed-col-portrait .ed-figure {
        height: 380px;
    }

    .ed-sub-figure {
        height: 220px;
    }

    .ed-pullquote-center blockquote {
        font-size: 1.35rem;
    }

    .ed-double-landscape-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ed-double-landscape-grid .ed-figure {
        height: 240px;
    }

    .ed-multi-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ed-trip-col .ed-figure {
        height: 360px;
    }

    .ed-center-col .ed-figure {
        height: 220px;
    }

    .ed-colophon-signature {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   DETAIL PAGE / WORK-IN-PROGRESS EDITORIAL MOCKUP
   ========================================================================== */
.detail-page-body .navbar:not(.scrolled) {
    background: rgba(252, 251, 250, 0.98);
    border-bottom: 1px solid var(--border-color);
}
.detail-page-body .navbar:not(.scrolled) .logo {
    color: var(--primary) !important;
}
.detail-page-body .navbar:not(.scrolled) .nav-links a {
    color: var(--text-dark) !important;
}
.detail-page-body .navbar:not(.scrolled) .nav-links a.active,
.detail-page-body .navbar:not(.scrolled) .nav-links a:hover {
    color: var(--primary) !important;
}
.detail-page-body .navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--text-dark);
}

/* 1. Header Masthead */
.wip-masthead {
    padding: 160px 0 60px;
    background: var(--bg-cream);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.wip-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(138, 24, 26, 0.08);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
}

.wip-title {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.wip-subtitle {
    max-width: 680px;
    margin: 0 auto 35px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.wip-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.wip-back-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    transition: all 0.3s ease;
}

.wip-back-btn:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: #fff;
}

/* 2. Placeholder Mockup Cards & Heights */
.wip-placeholder-card {
    background: var(--bg-cream);
    border: 1px dashed rgba(110, 106, 98, 0.35);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.wip-placeholder-card:hover {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.wip-placeholder-card.h-large { height: 600px; }
.wip-placeholder-card.h-wide { height: 420px; }
.wip-placeholder-card.h-portrait { height: 460px; }
.wip-placeholder-card.h-tall { height: 480px; }
.wip-placeholder-card.h-medium { height: 320px; }
.wip-placeholder-card.h-small { height: 220px; }
.wip-placeholder-card.h-square { height: 220px; }
.wip-placeholder-card.h-xs { height: 160px; }

.ph-inner {
    position: absolute;
    inset: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.ph-corner {
    position: absolute;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0.5;
    line-height: 1;
}
.ph-corner.top-left { top: 0; left: 0; }
.ph-corner.top-right { top: 0; right: 0; }
.ph-corner.bottom-left { bottom: 0; left: 0; }
.ph-corner.bottom-right { bottom: 0; right: 0; }

.ph-tag {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ph-reticle {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(138, 24, 26, 0.25);
    border-radius: 50%;
    position: relative;
}
.ph-reticle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.ph-reticle.sm { width: 40px; height: 40px; }

.ph-spec {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.7;
    text-align: center;
}

/* 3. Skeleton Text & Spec Table */
.wip-col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wip-text-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.ph-line {
    height: 10px;
    background: var(--border-color);
    border-radius: 2px;
    opacity: 0.6;
}
.ph-line.w-30 { width: 30%; }
.ph-line.w-70 { width: 70%; }
.ph-line.w-80 { width: 80%; }
.ph-line.w-90 { width: 90%; }
.ph-line.w-100 { width: 100%; }
.ph-line.accent { background: var(--primary); opacity: 0.3; height: 6px; margin-bottom: 6px; }

.wip-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wip-spec-table {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-row {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.spec-dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-color);
    margin: 0 12px;
}

.spec-row span:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* 4. Editorial Reading Paragraphs */
.wip-editorial-prose {
    max-width: 750px;
    margin-bottom: 40px;
}

.wip-editorial-prose.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ed-num-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wip-editorial-prose p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* 5. Grids Architecture (20 Images Multi-spread) */
.wip-grid-editorial {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}

.wip-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wip-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wip-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wip-asym-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wip-stack-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wip-grid-finale {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .wip-grid-editorial,
    .wip-asym-spread,
    .wip-grid-finale {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wip-grid-3col {
        grid-template-columns: 1fr;
    }

    .wip-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .wip-placeholder-card.h-large { height: 420px; }
    .wip-placeholder-card.h-wide { height: 280px; }
}

@media (max-width: 768px) {
    .wip-masthead { padding: 120px 0 40px; }
    .wip-title { font-size: 2.2rem; }
    .wip-actions { flex-direction: column; gap: 12px; }
    .wip-actions a { width: 100%; text-align: center; justify-content: center; }
    .wip-grid-2col, .wip-grid-4col { grid-template-columns: 1fr; }
    .wip-placeholder-card.h-portrait { height: 360px; }
}

