:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #c4a77d;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --background-alt: #f8f7f5;
    --background-dark: #0d0d0d;
    --border-color: #e8e6e3;
    --gold: #c4a77d;
    --gold-light: #d4bc94;
    --gold-dark: #9a8563;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.header-top-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled .header-top {
    display: none;
}

.nav-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    max-width: 100%;
    padding: 1.25rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.nav-left, .nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.subscribe-link {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.25rem !important;
}

.subscribe-link::after {
    display: none;
}

.subscribe-link:hover {
    background: var(--gold);
    color: white;
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomOut 8s ease forwards;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--gold);
}

.hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    letter-spacing: 25px;
    margin-bottom: 1rem;
    line-height: 1;
    animation: fadeInUp 1s ease;
}

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

.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.tagline-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 6px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.9;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: white;
    color: var(--primary-color);
}

.cta-primary svg {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.cta-secondary {
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.hero-slide-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.slide-indicator {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-indicator.active {
    background: var(--gold);
    width: 60px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-hint span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.hero-social {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

/* Trending Bar */
.trending-bar {
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trending-label {
    background: var(--gold);
    padding: 1rem 2rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.trending-marquee {
    flex: 1;
    overflow: hidden;
}

.trending-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trending-item {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.trending-divider {
    color: var(--gold);
    font-size: 0.6rem;
}

/* Quick Categories */
.quick-categories {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: var(--background-alt);
    border-bottom: 1px solid var(--border-color);
}

.quick-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quick-cat-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.quick-cat:hover .quick-cat-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quick-cat span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.story-count {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    background: var(--background-alt);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Featured Section */
.featured-section {
    padding: 5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-card {
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
    cursor: pointer;
}

.featured-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.featured-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5rem 4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
}

.featured-card .card-label {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.featured-card .card-meta {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.featured-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 800px;
}

.featured-card .card-excerpt {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.8;
}

.featured-card .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.featured-card:hover .card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight Strip */
.highlight-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 4rem 3rem;
    background: var(--primary-color);
    color: white;
}

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

.highlight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.highlight-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

/* Stories Section */
.stories-section {
    padding: 5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.latest-section {
    background: var(--background-alt);
    max-width: 100%;
    padding-left: calc((100vw - 1600px) / 2 + 3rem);
    padding-right: calc((100vw - 1600px) / 2 + 3rem);
}

.stories-grid {
    display: grid;
    gap: 2.5rem;
}

.top-stories, .latest-stories {
    grid-template-columns: repeat(3, 1fr);
}

.all-stories {
    grid-template-columns: repeat(4, 1fr);
}

/* Story Card */
.story-card {
    cursor: pointer;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-card .card-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-card:hover .card-image-wrapper {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.story-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .card-image {
    transform: scale(1.08);
}

.story-card .card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.story-card .card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.story-card:hover .card-hover-overlay {
    opacity: 1;
}

.story-card .read-more {
    color: white;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.story-card:hover .read-more:hover {
    background: white;
    color: var(--primary-color);
}

.story-card .card-content {
    padding: 0 0.25rem;
}

.story-card .card-meta {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.story-card .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

.story-card .card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem 0;
}

.story-card .card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Quote Banner */
.quote-banner {
    background: var(--background-alt);
    padding: 6rem 3rem;
    text-align: center;
}

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

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    opacity: 0.5;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* Categories Section */
.categories-section {
    padding: 5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: rgba(196, 167, 125, 0.8);
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

/* Newsletter Banner */
.newsletter-banner {
    position: relative;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    overflow: hidden;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.newsletter-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: none;
    background: white;
    font-size: 0.9rem;
    width: 280px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #333;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-tab {
    background: none;
    border: 1px solid var(--border-color);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Load More */
.load-more-btn {
    display: block;
    margin: 4rem auto 0;
    padding: 1.125rem 3.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Subscribe Section */
.subscribe-section {
    padding: 8rem 3rem;
    background: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subscribe-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(196, 167, 125, 0.2);
    border-radius: 50%;
}

.subscribe-decor-1 {
    top: -200px;
    left: -200px;
}

.subscribe-decor-2 {
    bottom: -200px;
    right: -200px;
}

.subscribe-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.subscribe-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.subscribe-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.subscribe-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.subscribe-input {
    flex: 1;
    padding: 1.25rem 2rem;
    border: none;
    background: white;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.subscribe-btn {
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    border: none;
    color: white;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.subscribe-btn:hover {
    background: var(--gold-light);
}

.subscribe-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: var(--background-alt);
    padding: 0;
}

.footer-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 5rem 3rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 350px;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.75rem;
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Loading */
.loading {
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Main Content Offset */
.main-content {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .top-stories, .latest-stories {
        grid-template-columns: repeat(2, 1fr);
    }
    .all-stories {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .category-card.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    .highlight-strip {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 968px) {
    .header-top {
        display: none;
    }
    .nav-left, .nav-right {
        display: none;
    }
    .nav-container {
        display: flex;
        justify-content: center;
    }
    .hero-brand {
        font-size: 4rem;
        letter-spacing: 12px;
    }
    .hero-tagline {
        font-size: 1.5rem;
    }
    .hero-social {
        display: none;
    }
    .quick-categories {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .featured-card .card-title {
        font-size: 2rem;
    }
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form input {
        width: 200px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .top-stories, .latest-stories, .all-stories {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-card.large {
        grid-column: span 1;
    }
    .highlight-strip {
        padding: 2rem;
    }
    .highlight-divider {
        display: none;
    }
    .quote-text {
        font-size: 1.75rem;
    }
    .subscribe-form {
        flex-direction: column;
        border-radius: 0;
    }
    .subscribe-input, .subscribe-btn {
        border-radius: 0;
    }
    .footer-nav {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
