/* ====== Blog Page Specific Styles ====== */

.blog-list-header {
    padding: 140px 0 0.5rem;
    background: transparent;
}

.blog-list-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .blog-list-header {
        padding: 120px 0 0.5rem;
    }
    
    .blog-list-header h1 {
        font-size: 2rem;
    }
}

.tag-toolbar {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag-line {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-chip {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tag-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    border-color: var(--primary-gold);
}

.tag-chip[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.search-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    background: #fff;
    transition: all 0.2s ease;
}

.search-chip:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-chip input {
    border: none;
    outline: none;
    font-size: 0.875rem;
    min-width: 180px;
    background: transparent;
    color: var(--primary-dark);
}

.search-chip input::placeholder {
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .search-chip input {
        min-width: 120px;
    }
}

.blog-list {
    padding: 0 0 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-200);
    min-height: 120px;
    display: flex;
    align-items: center;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.article-card-header {
    padding: var(--space-6);
}

.article-card-content {
    padding: var(--space-6);
    width: 100%;
    text-align: center;
}

.article-card-meta {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-sm);
}

.article-card-category {
    color: #10b981;
    font-weight: 600;
    background: #f0fdf4;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    display: inline-block;
}

.article-card-date {
    color: var(--gray-500);
}

.article-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 0;
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 0;
}

.article-card-body {
    padding: 0 var(--space-6) var(--space-6);
}

.article-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.article-card-footer {
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.read-more {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
}

.no-results h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--primary-dark);
}

.no-results p {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}

.no-results button {
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-6);
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.no-results button:hover {
    background: var(--primary-dark);
}


/* === Article Footer Navigation === */
.article-footer-nav {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: var(--space-8) 0;
    margin-top: var(--space-12);
}

.article-footer-nav .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
}

.back-to-list {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-6);
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.back-to-list:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.article-footer-nav .footer-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.article-footer-nav .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .article-footer-nav .footer-links {
        gap: var(--space-4);
    }
}


/* ====== Article Page Styles ====== */

.article-page {
    padding: 6rem 0 2rem;
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--primary-dark);
    font-weight: 500;
}

.article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
}

.article-date {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-700);
}

.article-content code {
    background: var(--gray-100);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.article-content pre {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.article-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.article-tag:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.article-footer {
    border-top: 2px solid var(--gray-200);
    padding-top: 3rem;
    margin-top: 3rem;
}

.article-cta {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 1rem;
}

.article-cta p {
    color: var(--gray-700);
    margin: 0 0 2rem;
    font-size: 1.125rem;
}

.article-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-cta-buttons .btn-line,
.article-cta-buttons .btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-cta-buttons .btn-line {
    background: linear-gradient(135deg, #00b900 0%, #00a000 100%);
    color: var(--white);
}

.article-cta-buttons .btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.4);
}

.article-cta-buttons .btn-phone {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-gold);
}

.article-cta-buttons .btn-phone:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-page {
        padding: 5rem 0 2rem;
    }

    .article-title {
        font-size: 1.875rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }

    .article-cta {
        padding: 1.5rem;
    }

    .article-cta h3 {
        font-size: 1.5rem;
    }

    .article-cta p {
        font-size: 1rem;
    }

    .article-cta-buttons {
        flex-direction: column;
    }

    .article-cta-buttons .btn-line,
    .article-cta-buttons .btn-phone {
        width: 100%;
        justify-content: center;
    }
}

/* ====== 記事コンテンツの改善 ====== */

/* 記事イントロ */
.article-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.article-intro .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    font-weight: 500;
}

/* ハイライトボックス */
.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 1rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* チェックリストセクション */
.checklist-section {
    margin: 3rem 0;
}

.checklist-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

/* チェックリストボックス */
.checklist-box {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checklist-box h4 {
    color: #495057;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.95rem;
    color: #495057;
}

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

/* プロセスフロー */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* 詳細チェックリスト */
.detailed-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.checklist-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checklist-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.checklist-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item li {
    padding: 0.4rem 0;
    color: #495057;
    font-size: 0.9rem;
}

/* 警告ボックス */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box h4 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
    color: #856404;
}

/* 最終チェックリスト */
.final-checklist {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.final-checklist h4 {
    color: #0c5460;
    margin-top: 0;
    margin-bottom: 1rem;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-item input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-color);
}

.check-item label {
    color: #0c5460;
    font-size: 0.95rem;
    cursor: pointer;
}

/* ティップセクション */
.tips-section {
    margin: 3rem 0;
}

.tips-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tip-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-box {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.tip-box:hover {
    transform: translateY(-2px);
}

.tip-box h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-box li {
    padding: 0.5rem 0;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
}

.tip-box li:last-child {
    border-bottom: none;
}

/* 結論セクション */
.conclusion-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.conclusion-section h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.conclusion-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.cta-box {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.cta-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-box p {
    margin: 0;
    color: #6c757d;
}

.cta-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cta-box a:hover {
    text-decoration: underline;
}

/* シェアボタンのスタイル改善 */
.article-share {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.article-share p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #1664d9;
}

.share-line {
    background: #00B900;
    color: white;
}

.share-line:hover {
    background: #00a000;
}

/* ハッシュタグのスタイル */
.article-hashtags {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.article-hashtags p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
}

/* 内部リンクスタイル */
.related-links {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-gold);
}

.related-links h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin: 0 0 1rem;
    font-weight: 600;
}

.related-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 0.75rem;
}

.related-links a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.related-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.category-links {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-links h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin: 0 0 1.5rem;
    font-weight: 600;
    text-align: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .article-intro {
        padding: 1.5rem;
    }
    
    .article-intro .lead {
        font-size: 1.1rem;
    }
    
    .process-flow {
        gap: 0.8rem;
    }
    
    .flow-step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .detailed-checklist {
        grid-template-columns: 1fr;
    }
    
    .tip-boxes {
        grid-template-columns: 1fr;
    }
    
    .check-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-buttons a {
        width: 100%;
        justify-content: center;
    }
}

/* 記事ヘッダーロゴのスタイル */
.article-header-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-logo {
    max-width: 150px;
    height: auto;
}

.article-header-logo .article-meta {
    display: flex;
    align-items: center;
    margin: 0;
}

.article-header-logo .article-date {
    font-size: 0.9rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .article-header-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .article-logo {
        max-width: 120px;
    }
}

/* ====== Article Date Display ====== */
.article-date-display {
    margin: 0 0 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.article-date-display time {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ====== Header Navigation Styles ====== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        z-index: 1001;
    }
}
