/* ========================================
   三峽豪華遊輪 - 奢華高端樣式
   ======================================== */

/* CSS Variables */
:root {
    --color-gold: #C9A962;
    --color-gold-light: #D4B978;
    --color-gold-dark: #A68B4B;
    --color-black: #1A1A1A;
    --color-black-light: #2A2A2A;
    --color-white: #FFFFFF;
    --color-gray: #888888;
    --color-gray-light: #F5F5F5;

    --font-serif: 'Playfair Display', 'Noto Serif TC', Georgia, serif;
    --font-sans: 'Noto Sans TC', 'Microsoft YaHei', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 98, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 48px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    opacity: 0.7;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 12px auto 0;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* Hero Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-black);
}

.service-desc {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--color-white);
}

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

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-text {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 8px;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   Rooms Section
   ======================================== */
.rooms {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-black-light) 100%);
}

.rooms .section-header .section-tag,
.rooms .section-header .section-title,
.rooms .section-header .section-desc {
    color: var(--color-white);
}

.rooms .section-header .section-tag {
    color: var(--color-gold);
}

.rooms .section-header .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.room-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.room-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content {
    padding: 32px;
}

.room-title {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.room-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
}

.price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: var(--color-gray-light);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 48px;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

.author-info {
    font-size: 14px;
    color: var(--color-gray);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-black);
}

.testimonial-btn:hover {
    background: var(--color-gold);
}

.testimonial-btn:hover svg {
    color: var(--color-white);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 120px 0;
    background: var(--color-white);
}

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

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    color: var(--color-gray);
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
}

.contact-form-wrapper {
    padding: 0;
}

.contact-form {
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-black);
    background: var(--color-gray-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-black);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-gold);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }

    .about-image-frame img {
        height: 400px;
    }

    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.98);
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content .section-tag,
    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-frame img {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }

    .contact-desc {
        text-align: center;
    }

    .contact-items {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 70px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .about,
    .rooms,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .about-stats {
        flex-direction: column;
        gap: 32px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .room-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }
}

/* Animation for elements coming into view */
@media (prefers-reduced-motion: no-preference) {
    .slide-up {
        transition-delay: calc(var(--index, 0) * 0.1s);
    }
}

/* ========================================
   Article Page Styles (文章頁面樣式)
   ======================================== */

.article-main {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
}

.article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.article h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--color-gold);
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: center;
}

.article-meta {
    text-align: center;
    color: var(--color-gray);
    font-size: 14px;
    padding: 16px 0 32px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    margin-bottom: 40px;
}

.article-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-gold);
    margin: 48px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-gold-light);
    margin: 32px 0 16px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.article-content a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.article-content a:hover {
    color: var(--color-gold-light);
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-image {
    margin: 32px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-gold);
}

.article-image figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-gray);
    font-style: italic;
}

.related-articles {
    margin-top: 64px;
    padding: 40px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gold);
}

.related-articles h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 24px;
    text-align: center;
}

.related-articles ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.related-articles li {
    margin: 0;
}

.related-articles a {
    display: block;
    padding: 16px 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.related-articles a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

/* Article Footer */
.article .footer {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 98, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .article h1 {
        font-size: 32px;
    }

    .article-meta {
        font-size: 13px;
    }

    .article-content {
        padding: 32px 24px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-content p {
        font-size: 15px;
    }
}

/* ========================================
   All Articles Section
   ======================================== */
.all-articles {
    padding: 100px 0;
    background: var(--color-gray-light);
}

.all-articles .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.08);
}

.article-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-num {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.15;
    font-family: var(--font-serif);
}

.article-title {
    font-size: 15px;
    color: var(--color-black);
    line-height: 1.4;
}