:root {
    /* Color Palette - Wine Bar Inspired */
    --burgundy-deep: #3d1616;
    --burgundy-rich: #5c1f1f;
    --burgundy-medium: #7a2828;
    --burgundy-light: #9d4444;
    --oxblood: #4a0e0e;
    --wine-stain: #6b1a1a;

    --gold-accent: #d4af37;
    --gold-light: #f0d98f;
    --gold-dark: #b8941f;

    --cream: #f5f1e8;
    --parchment: #ede4d3;
    --aged-paper: #e5d5bd;

    --charcoal: #2a2424;
    --dark-wood: #1a1414;
    --rich-black: #0f0a0a;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-elegant: 'Cinzel', serif;
    --font-body: 'Crimson Text', serif;

    /* Spacing */
    --container-max: 1400px;
    --container-narrow: 800px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--burgundy-deep) 50%, var(--oxblood) 100%);
    color: var(--cream);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gold-light);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-accent) 50%,
        transparent 100%);
    opacity: 0.3;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-elegant);
}

.logo-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
}

.logo-text {
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--parchment);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

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

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

.nav-decorative {
    color: var(--gold-accent);
    opacity: 0.6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wine-stain {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.wine-stain-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--burgundy-medium) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.wine-stain-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--oxblood) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-label {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.7s;
}

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

.title-highlight {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--parchment);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.hero-divider {
    margin: 2rem 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s forwards;
}

.divider-ornament {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--aged-paper);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--burgundy-medium) 0%, var(--burgundy-rich) 100%);
    color: var(--gold-light);
    text-decoration: none;
    border: 2px solid var(--gold-accent);
    border-radius: 0;
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold-accent));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--burgundy-rich) 0%, var(--oxblood) 100%);
    border: 2px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--aged-paper);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--parchment);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Blog Section */
.blog {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--aged-paper);
    font-style: italic;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(61, 22, 22, 0.6) 0%, rgba(42, 36, 36, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-featured {
    grid-column: 1 / -1;
}

.blog-card-featured .blog-card-content {
    padding: 3rem;
}

.blog-card-featured .blog-title {
    font-size: 2.5rem;
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--burgundy-medium) 0%, var(--oxblood) 100%);
    position: relative;
    overflow: hidden;
}

.blog-card-featured .blog-card-image {
    aspect-ratio: 21 / 9;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 10, 10, 0.8) 100%);
}

.blog-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.9);
    color: var(--rich-black);
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}

.blog-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gold-accent);
}

.blog-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-title {
    color: var(--gold-accent);
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--aged-paper);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    gap: 1rem;
}

.wine-glass-silhouette {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10C50 10 35 25 35 35C35 45 42.5 53 52 53S69 45 69 35C69 25 54 10 54 10H50Z' fill='%23d4af37' opacity='0.1'/%3E%3Cpath d='M30 53H70V75C70 81 65 87 58 87H42C35 87 30 81 30 75V53Z' fill='%23d4af37' opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.blog-card:hover .wine-glass-silhouette {
    opacity: 1;
    transform: translateY(-20px);
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--aged-paper);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--burgundy-medium) 0%, var(--burgundy-rich) 100%);
    border: 1px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--parchment);
    line-height: 1.6;
}

.contact-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    opacity: 0.2;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-elegant);
    margin-bottom: 1rem;
}

.footer-info {
    font-size: 0.95rem;
    color: var(--aged-paper);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

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

.footer-divider {
    color: var(--gold-accent);
    opacity: 0.5;
}

.footer-ornament {
    margin-top: 2rem;
    color: var(--gold-accent);
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Article Page Styles */
.article {
    padding-top: 6rem;
}

.article-header {
    padding: 4rem 0 3rem;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.article-back:hover {
    gap: 1rem;
    color: var(--gold-light);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-accent);
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--gold-accent);
}

.article-date,
.article-read-time {
    color: var(--aged-paper);
    font-size: 0.95rem;
}

.article-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.4rem;
    color: var(--aged-paper);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy-medium) 0%, var(--burgundy-rich) 100%);
    border: 2px solid var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: var(--aged-paper);
    font-style: italic;
}

.article-featured-image {
    margin-bottom: 4rem;
}

.article-image {
    aspect-ratio: 21 / 9;
    width: 100%;
}

.article-content {
    padding-bottom: 4rem;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--parchment);
}

.article-body .lead {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.article-body h2 {
    font-size: 2.5rem;
    margin: 3rem 0 1.5rem;
    color: var(--gold-light);
}

.article-body h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: var(--gold-accent);
}

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

.article-quote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(61, 22, 22, 0.4) 0%, rgba(42, 36, 36, 0.4) 100%);
    border-left: 4px solid var(--gold-accent);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.7;
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 6rem;
    color: var(--gold-accent);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}

.article-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--aged-paper);
    font-style: normal;
}

.article-divider {
    text-align: center;
    margin: 4rem 0;
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.article-footer-info {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(61, 22, 22, 0.3) 0%, rgba(42, 36, 36, 0.3) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.article-footer-info h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-footer-info p {
    margin-bottom: 0;
    color: var(--aged-paper);
}

/* Related Articles */
.related-articles {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(61, 22, 22, 0.2) 0%, rgba(42, 36, 36, 0.2) 100%);
    position: relative;
    z-index: 2;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(61, 22, 22, 0.4) 0%, rgba(42, 36, 36, 0.4) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
}

.related-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.related-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--gold-light);
    line-height: 1.3;
}

.related-excerpt {
    font-size: 0.95rem;
    color: var(--aged-paper);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.related-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-ornament {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 90vh;
        padding: 6rem 0 3rem;
    }

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

    .blog-card-featured {
        grid-column: 1;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-quote {
        padding: 1.5rem;
        font-size: 1.15rem;
    }
}
