/* ===========================
   Variables & Reset
   =========================== */
:root {
    /* Colors - Brown & Green Palette */
    --primary-brown: #6B4423;
    --dark-brown: #3E2723;
    --light-brown: #8D6E63;
    --cream: #EFEBE9;
    --beige: #D7CCC8;
    --sage-green: #8FA67E;
    --light-green: #B8C5A8;
    --mint: #C8D5B9;
    --white: #FFFFFF;
    --off-white: #FAF9F7;
    --text-dark: #2C2416;
    --text-light: #5D4E37;

    /* Typography */
    --font-primary: 'Tajawal', sans-serif;
    --font-secondary: 'Amiri', serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --card-radius: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 68, 35, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 68, 35, 0.12);
    --shadow-lg: 0 8px 32px rgba(107, 68, 35, 0.16);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.15);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Enhanced Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.1);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(143, 166, 126, 0.3);
    transition: var(--transition-base);
}

.logo-icon svg {
    width: 26px;
    height: 26px;
}

.logo-text h1 {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    letter-spacing: 0.5px;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: var(--light-green);
    font-weight: 400;
    display: block;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: var(--transition-base);
    transform: translateX(50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 60%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--sage-green);
    background: rgba(143, 166, 126, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle {
    width: 42px;
    height: 42px;
    border: none;
    background: rgba(143, 166, 126, 0.15);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.search-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--sage-green);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.search-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.search-toggle:hover {
    color: var(--white);
    transform: scale(1.05);
}

.search-toggle svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

.search-toggle:hover svg {
    transform: scale(1.1);
}

/* Search Bar */
.search-bar {
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    border-top: 1px solid rgba(143, 166, 126, 0.2);
}

.search-bar.active {
    max-height: 200px;
    padding: 2rem 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    gap: 1rem;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(143, 166, 126, 0.2);
    transition: var(--transition-base);
}

.search-wrapper:focus-within {
    border-color: var(--sage-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(143, 166, 126, 0.2);
}

.search-icon {
    width: 22px;
    height: 22px;
    color: var(--sage-green);
    flex-shrink: 0;
}

#searchInput {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    outline: none;
    padding: 0.3rem 0;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(143, 166, 126, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.search-close:hover {
    background: var(--sage-green);
    transform: rotate(90deg);
}

.search-close svg {
    width: 18px;
    height: 18px;
}

/* Search Suggestions */
.search-suggestions {
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-bar.active .search-suggestions {
    opacity: 1;
    transform: translateY(0);
}

.search-label {
    color: var(--light-green);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.suggestion-tag {
    background: rgba(143, 166, 126, 0.15);
    color: var(--cream);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(143, 166, 126, 0.3);
    transition: var(--transition-base);
}

.suggestion-tag:hover {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 166, 126, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-base);
}

.hamburger:hover {
    background: rgba(143, 166, 126, 0.15);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: var(--transition-base);
}

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

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

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

/* ===========================
   Magazine Grid Section
   =========================== */
.magazine-section {
    padding: 40px 0 60px;
    background: var(--off-white);
}

.magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

/* Main Featured Post - Large Left */
.magazine-main {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    background: var(--white);
}

.magazine-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 68, 35, 0.2);
}

.magazine-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.magazine-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.magazine-main:hover .magazine-image img {
    transform: scale(1.08);
}

.magazine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.7) 100%);
}

.magazine-content {
    padding: 2.5rem;
}

.magazine-category {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.magazine-title {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--dark-brown);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.magazine-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.magazine-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--light-brown);
    font-weight: 500;
}

.magazine-meta .author {
    color: var(--primary-brown);
    font-weight: 600;
}

.magazine-meta .separator {
    color: var(--beige);
}

/* Right Column Container */
.magazine-column {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Secondary Posts - Right Side */
.magazine-secondary {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.magazine-secondary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.secondary-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.secondary-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.magazine-secondary:hover .secondary-image img {
    transform: scale(1.1);
}

.secondary-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--light-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-content {
    padding: 1.8rem;
}

.secondary-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--dark-brown);
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.secondary-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.secondary-meta {
    font-size: 0.85rem;
    color: var(--light-brown);
    font-weight: 500;
}

/* Tertiary Posts - Bottom Three Columns */
.magazine-tertiary {
    grid-column: span 1;
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.magazine-tertiary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tertiary-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tertiary-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tertiary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-tertiary:hover .tertiary-image img {
    transform: scale(1.08);
}

.tertiary-content {
    padding: 1.5rem;
}

.tertiary-category {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.tertiary-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--dark-brown);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tertiary-meta {
    font-size: 0.8rem;
    color: var(--light-brown);
    font-weight: 500;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(143, 166, 126, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 166, 126, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-secondary:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   Section Styles
   =========================== */
.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--light-green));
    border-radius: 2px;
}

/* ===========================
   Featured Advanced Section
   =========================== */
.featured-advanced-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

.featured-advanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--sage-green) 50%,
        transparent 100%);
}

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

.section-title-modern {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

.featured-advanced-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Hero Featured Card - Large with Overlay */
.hero-featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 10px 40px rgba(107, 68, 35, 0.15);
    transition: var(--transition-smooth);
}

.hero-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(107, 68, 35, 0.25);
}

.hero-featured-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.hero-featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-featured-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-featured-card:hover .hero-featured-bg img {
    transform: scale(1.1);
}

.hero-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(62,39,35,0.3) 40%,
        rgba(62,39,35,0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.hero-featured-content {
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark-brown);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-category {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 0 1.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-featured-title {
    font-family: var(--font-secondary);
    font-size: 2.3rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-featured-excerpt {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-featured-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mint);
    font-size: 0.95rem;
    font-weight: 500;
}

.meta-icon {
    font-size: 1.1rem;
}

/* Side Column - Horizontal Cards */
.featured-side-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.horizontal-featured-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid var(--beige);
}

.horizontal-featured-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.15);
    border-color: var(--sage-green);
}

.horizontal-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.horizontal-card-image {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: 180px;
    overflow: hidden;
    height: 263px;
    max-height: unset;
}



.horizontal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.horizontal-featured-card:hover .horizontal-card-image img {
    transform: scale(1.15);
}

.image-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: rgba(143, 166, 126, 0.95);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.horizontal-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.horizontal-category {
    display: inline-block;
    background: var(--light-green);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    width: fit-content;
}

.horizontal-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--dark-brown);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.horizontal-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.horizontal-meta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--light-brown);
    font-weight: 500;
}

/* ===========================
   Latest Premium Masonry Section
   =========================== */
.latest-premium-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.latest-premium-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 166, 126, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.latest-premium-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 68, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Premium Header */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.premium-header-content {
    flex: 1;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.premium-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.premium-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
}

.premium-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--dark-brown);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    text-decoration: none;
}

.premium-view-all:hover {
    background: var(--sage-green);
    transform: translateX(-5px);
}

.premium-view-all .arrow {
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.premium-view-all:hover .arrow {
    transform: translateX(-5px);
}

/* Masonry Grid */
.premium-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.masonry-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Premium Cards */
.premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card.tall-card {
    min-height: 550px;
}

.premium-card.regular-card {
    min-height: 350px;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(107, 68, 35, 0.2);
    z-index: 10;
}

.premium-card-wrapper {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.premium-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.premium-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .premium-image-wrapper img {
    transform: scale(1.15);
}

.premium-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(62,39,35,0.95) 100%);
    z-index: 1;
}

.premium-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(143, 166, 126, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 3;
    transition: var(--transition-base);
}

.premium-card:hover .premium-hover-effect {
    opacity: 1;
}

.hover-icon {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

.trending-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.premium-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.premium-tags {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.premium-tag {
    background: rgba(143, 166, 126, 0.9);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-dot {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.premium-read-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.premium-card-title {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.premium-card.regular-card .premium-card-title {
    font-size: 1.3rem;
}

.premium-card:hover .premium-card-title {
    transform: translateX(-5px);
}

.premium-excerpt {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.premium-author-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-secondary);
}

.author-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.premium-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Old Latest Modern Section (Kept for backwards compatibility) */
.latest-modern-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.latest-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Modern Card Design */
.modern-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(107, 68, 35, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(107, 68, 35, 0.18);
    border-color: var(--sage-green);
}

.modern-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.modern-card-header {
    position: relative;
    overflow: hidden;
}

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

.modern-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .modern-card-image img {
    transform: scale(1.15) rotate(2deg);
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(143, 166, 126, 0) 0%,
        rgba(143, 166, 126, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-base);
}

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

.modern-read-more {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.modern-card:hover .modern-read-more {
    transform: translateY(0);
}

.modern-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    width: 60px;
    height: 70px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.badge-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    font-family: var(--font-secondary);
    line-height: 1;
}

.badge-month {
    font-size: 0.75rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-top: 0.3rem;
}

.modern-card-body {
    padding: 1.8rem;
}

.modern-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modern-category {
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-time {
    font-size: 0.85rem;
    color: var(--light-brown);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.modern-card-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--dark-brown);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.modern-card:hover .modern-card-title {
    color: var(--sage-green);
}

.modern-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modern-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--beige);
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.author-avatar {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
}

.author-name {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.engagement {
    font-size: 0.9rem;
    color: var(--light-brown);
    font-weight: 500;
}

/* Old Latest Section (Kept for backwards compatibility) */
.latest-section {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.post-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-content {
    padding: 1.5rem;
}

.category-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-size: 1.15rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.post-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--light-brown);
}

/* ===========================
   Featured Columns Section
   =========================== */
.featured-columns-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 100%);
}

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

.columns-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.columns-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green), var(--light-green));
    border-radius: 2px;
}

.columns-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

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

.blog-column {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--beige);
}

.blog-column:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.column-header {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--dark-brown);
}

.column-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.column-badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.column-posts {
    /* padding: 1.5rem; */
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

.column-post-item {
    display: flex;
    gap: 1.2rem;
    padding: 1rem;
    background: var(--off-white);
    /* border-radius: 10px; */
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.column-post-item:hover {
    background: var(--cream);
    border-color: var(--sage-green);
    transform: translateX(-5px);
}

.column-post-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.column-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.column-post-item:hover .column-post-image img {
    transform: scale(1.1);
}

.column-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.column-post-content h4 {
    font-size: 1.05rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.column-post-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.column-post-meta {
    font-size: 0.8rem;
    color: var(--light-brown);
}

.column-more {
    display: block;
    text-align: center;
    padding: 1.2rem;
    background: var(--cream);
    color: var(--sage-green);
    font-weight: 600;
    transition: var(--transition-base);
    border-top: 1px solid var(--beige);
}

.column-more:hover {
    background: var(--sage-green);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .columns-wrapper {
        gap: 2rem;
    }

    .column-header {
        padding: 1.5rem 1.8rem;
    }

    .column-header h3 {
        font-size: 1.3rem;
    }

    .column-post-content h4 {
        font-size: 1rem;
    }

    .column-post-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .featured-columns-section {
        padding: 4rem 0;
    }

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

    .columns-subtitle {
        font-size: 1rem;
    }

    .columns-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-column {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .column-header {
        padding: 1.5rem;
    }

    .column-header h3 {
        font-size: 1.4rem;
    }

    .column-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }

    .column-posts {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .column-post-item {
        padding: 0.9rem;
    }

    .column-post-image {
        width: 90px;
        height: 90px;
    }

    .column-post-content h4 {
        font-size: 1.05rem;
    }

    .column-post-content p {
        font-size: 0.85rem;
    }

    .column-post-meta {
        font-size: 0.75rem;
    }

    .column-more {
        margin: 1.2rem 1.5rem 1.5rem;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .featured-columns-section {
        padding: 3rem 0;
    }

    .columns-title {
        font-size: 1.8rem;
    }

    .columns-subtitle {
        font-size: 0.95rem;
    }

    .column-header {
        padding: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .column-header h3 {
        font-size: 1.3rem;
    }

    .column-posts {
        padding: 1.2rem;
        gap: 1rem;
    }

    .column-post-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .column-post-image {
        width: 100%;
        height: 180px;
    }

    .column-post-content h4 {
        font-size: 1.1rem;
    }

    .column-post-content p {
        font-size: 0.9rem;
    }

    .column-more {
        margin: 1rem 1.2rem 1.2rem;
        padding: 0.8rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   Newsletter Section
   =========================== */
.newsletter-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--cream);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ===========================
   Google Ads Placeholders
   =========================== */
.ad-container {
    margin: 40px auto;
    text-align: center;
}

.ad-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    border: 2px dashed var(--light-brown);
    border-radius: 8px;
    color: var(--light-brown);
    font-weight: 600;
    font-size: 0.9rem;
}

.ad-banner .ad-placeholder {
    width: 728px;
    max-width: 100%;
    height: 90px;
}

.ad-square .ad-placeholder {
    width: 300px;
    height: 250px;
}

.ad-in-article .ad-placeholder {
    width: 336px;
    max-width: 100%;
    height: 280px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--sage-green);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    color: var(--beige);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--beige);
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--sage-green);
    padding-right: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: var(--beige);
    transition: var(--transition-base);
}

.social-links a:hover {
    color: var(--sage-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 197, 168, 0.2);
    color: var(--beige);
}

/* ===========================
   Archive Page
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--mint);
}

.filters-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--beige);
}

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

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--primary-brown);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
}

.archive-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

/* Archive Controls */
.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}

.results-count {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--cream);
    padding: 0.4rem;
    border-radius: 10px;
}

.view-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.view-btn svg {
    width: 22px;
    height: 22px;
}

.view-btn:hover {
    background: var(--white);
    color: var(--sage-green);
}

.view-btn.active {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(143, 166, 126, 0.3);
}

/* Archive Layout */
.archive-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.archive-main {
    min-width: 0;
}

/* Archive Grid View */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    transition: var(--transition-base);
}

/* Archive List View */
.archive-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.archive-grid.list-view .archive-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.archive-grid.list-view .archive-image {
    aspect-ratio: unset;
    height: 100%;
}

.archive-grid.list-view .archive-content h3 {
    font-size: 1.6rem;
}

.archive-grid.list-view .archive-content p {
    display: block;
}

.archive-grid.list-view .ad-card {
    grid-template-columns: 1fr;
    min-height: 150px;
}

.archive-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    opacity: 1;
}

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

.archive-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.archive-card:hover .archive-image img {
    transform: scale(1.1);
}

.archive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.archive-content {
    padding: 2rem;
}

.archive-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.archive-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.archive-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--light-brown);
}

.read-more {
    color: var(--sage-green);
    font-weight: 600;
    transition: var(--transition-base);
}

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

.ad-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ===========================
   Archive Sidebar
   =========================== */
.archive-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-md);
}

.widget-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sage-green);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-brown);
}

.widget-content {
    color: var(--text-light);
    line-height: 1.7;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.popular-post:hover {
    background: var(--cream);
    transform: translateX(-5px);
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-post:hover .popular-post-image img {
    transform: scale(1.1);
}

.popular-post-content h4 {
    font-size: 1rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.popular-post-date {
    font-size: 0.85rem;
    color: var(--light-brown);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 8px;
    border-right: 3px solid transparent;
    transition: var(--transition-base);
}

.category-item:hover {
    background: var(--cream);
    border-right-color: var(--sage-green);
    transform: translateX(-5px);
}

.category-name {
    color: var(--text-dark);
    font-weight: 500;
}

.category-count {
    background: var(--sage-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--cream);
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid var(--beige);
    transition: var(--transition-base);
}

.tag:hover {
    background: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 166, 126, 0.3);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
    background: var(--white);
}

.newsletter-widget .widget-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.sidebar-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.sidebar-newsletter-form button {
    padding: 0.9rem;
    background: var(--white);
    color: var(--sage-green);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.sidebar-newsletter-form button:hover {
    background: var(--dark-brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Ad Widget */
.ad-widget {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.ad-widget:hover {
    box-shadow: none;
}

/* ===========================
   Single Post Page
   =========================== */
.post-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(62,39,35,0.8) 100%);
}

.post-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.post-category {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.post-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--mint);
    flex-wrap: wrap;
}

.post-meta .separator {
    color: var(--sage-green);
}

.post-content-wrapper {
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.post-layout {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

/* Sidebar */
.post-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.toc {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--card-radius);
    margin-bottom: 2rem;
}

.toc h3 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.toc ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toc a {
    color: var(--text-light);
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.toc a:hover {
    color: var(--sage-green);
    padding-right: 5px;
}

.sidebar-ad {
    background: var(--beige);
    padding: 1rem;
    border-radius: var(--card-radius);
}

/* Post Content */
.post-main {
    max-width: 750px;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.post-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.post-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--dark-brown);
    margin: 3rem 0 1.5rem;
    padding-top: 1rem;
}

.post-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin: 2.5rem 0 1rem;
}

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

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
    list-style: disc;
    color: var(--text-light);
}

.post-image {
    margin: 3rem 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-image img {
    width: 100%;
}

figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    background: var(--cream);
}

blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 3rem;
    background: var(--cream);
    border-right: 4px solid var(--sage-green);
    border-radius: var(--card-radius);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--primary-brown);
    font-style: italic;
    line-height: 1.8;
}

.post-conclusion {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--sage-green) 100%);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    margin: 3rem 0;
}

.post-conclusion h3 {
    color: var(--white);
    margin: 0 0 1rem 0;
}

.post-conclusion p {
    color: var(--cream);
    margin: 0;
}

.post-tags {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--beige);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.tag-label {
    font-weight: 600;
    color: var(--dark-brown);
}

.tag {
    background: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-brown);
    transition: var(--transition-base);
}

.tag:hover {
    background: var(--sage-green);
    color: var(--white);
}

.post-share {
    padding: 2rem 0;
    border-top: 1px solid var(--beige);
}

.post-share h4 {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

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

.share-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition-base);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

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

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    margin: 3rem 0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--sage-green);
}

.author-info h3 {
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
}

.author-info p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
}

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

.related-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin: 1rem 0 0.8rem;
    line-height: 1.5;
}

.related-content .date {
    font-size: 0.85rem;
    color: var(--light-brown);
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

    .post-sidebar {
        order: 2;
    }

    .sidebar-sticky {
        position: static;
    }

    .toc {
        display: none;
    }

    /* Archive Layout */
    .archive-layout {
        grid-template-columns: 1fr;
    }

    .archive-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 2rem;
    }

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

    /* Navigation */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
        width: 100%;
        text-align: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 30px rgba(107, 68, 35, 0.3);
        padding: 2rem;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(143, 166, 126, 0.2);
    }

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

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .search-toggle {
        width: 40px;
        height: 40px;
    }

    .search-toggle svg {
        width: 18px;
        height: 18px;
    }

    .search-bar.active {
        max-height: 250px;
        padding: 1.5rem 0;
    }

    .search-wrapper {
        padding: 0.7rem 1.2rem;
    }

    #searchInput {
        font-size: 1rem;
    }

    .suggestion-tags {
        gap: 0.6rem;
    }

    .suggestion-tag {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }

    /* Magazine Grid - Responsive */
    .magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .magazine-main {
        grid-column: 1;
        grid-row: auto;
    }

    .magazine-image {
        height: 350px;
    }

    .magazine-title {
        font-size: 1.8rem;
    }

    .magazine-content {
        padding: 2rem;
    }

    .magazine-column {
        grid-column: 1;
        grid-row: auto;
    }

    .secondary-image {
        height: 200px;
    }

    .tertiary-image {
        height: 200px;
    }

    /* Featured Advanced Section - Responsive */
    .section-title-modern {
        font-size: 2.5rem;
    }

    .featured-advanced-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-featured-card {
        height: 500px;
    }

    .hero-featured-overlay {
        padding: 2rem;
    }

    .hero-featured-title {
        font-size: 2rem;
    }

    .hero-featured-excerpt {
        font-size: 1rem;
        max-width: 100%;
    }

    .horizontal-card-link {
        flex-direction: column;
    }

    .horizontal-card-image {
        width: 100%;
        height: 250px;
    }

    .horizontal-card-content {
        padding: 1.8rem;
    }

    /* Premium Masonry - Responsive */
    .premium-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

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

    .premium-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .premium-card.tall-card {
        min-height: 450px;
    }

    .premium-card.regular-card {
        min-height: 320px;
    }

    .premium-content-overlay {
        padding: 1.5rem;
    }

    .premium-card-title {
        font-size: 1.4rem;
    }

    .premium-card.regular-card .premium-card-title {
        font-size: 1.2rem;
    }

    /* Archive Responsive */
    .archive-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .results-count {
        text-align: center;
    }

    .view-toggle {
        justify-content: center;
    }

    .archive-grid.list-view .archive-card {
        grid-template-columns: 1fr;
    }

    .archive-grid.list-view .archive-image {
        aspect-ratio: 16/10;
        height: auto;
    }

    /* Coffee Highlights Responsive */
    .highlights-title {
        font-size: 2.2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    /* Latest Modern Grid - Responsive */
    .latest-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .modern-card-image {
        height: 220px;
    }

    .modern-card-title {
        font-size: 1.15rem;
    }

    .modern-card-excerpt {
        font-size: 0.9rem;
    }

    /* Grids */
    .posts-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* Spacing */
    :root {
        --section-padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

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

    /* About & Contact Pages - Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-vision-grid,
    .team-grid,
    .offer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .what-we-offer,
    .about-cta,
    .faq-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

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

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

    .hero-featured-card {
        height: 450px;
    }

    .hero-featured-overlay {
        padding: 1.5rem;
    }

    .hero-featured-title {
        font-size: 1.6rem;
    }

    .hero-featured-excerpt {
        font-size: 0.95rem;
    }

    .hero-featured-meta {
        gap: 1rem;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .horizontal-title {
        font-size: 1rem;
    }

    .horizontal-excerpt {
        font-size: 0.85rem;
    }

    .modern-card-body {
        padding: 1.5rem;
    }

    .modern-card-title {
        font-size: 1.1rem;
    }

    .modern-card-excerpt {
        font-size: 0.85rem;
    }

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

    .premium-subtitle {
        font-size: 1rem;
    }

    .premium-masonry-grid {
        grid-template-columns: 1fr;
    }

    .premium-card.tall-card {
        min-height: 400px;
    }

    .premium-card.regular-card {
        min-height: 300px;
    }

    .premium-card-title {
        font-size: 1.3rem;
    }

    .premium-card.regular-card .premium-card-title {
        font-size: 1.1rem;
    }

    .premium-excerpt {
        font-size: 0.9rem;
    }

    .magazine-title {
        font-size: 1.5rem;
    }

    .magazine-image {
        height: 280px;
    }

    .magazine-content {
        padding: 1.5rem;
    }

    .magazine-excerpt {
        font-size: 1rem;
    }

    .secondary-content h3 {
        font-size: 1.1rem;
    }

    .tertiary-content h4 {
        font-size: 1rem;
    }

    .card-content,
    .archive-content {
        padding: 1.5rem;
    }

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

    .post-content .lead {
        font-size: 1.1rem;
    }

    .filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===========================
   About & Contact Pages Styles
   =========================== */
.about-content-section,
.contact-content-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro,
.contact-intro {
    margin-bottom: 5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-text h2,
.contact-intro h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.about-intro-text .lead {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    margin-top: 3rem;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.mission-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.what-we-offer {
    background: var(--off-white);
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.what-we-offer h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
}

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

.offer-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--card-radius);
    transition: var(--transition-base);
}

.offer-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-item h4 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
}

.offer-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--card-radius);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    color: var(--white);
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(143, 166, 126, 0.3);
}

.team-member h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--sage-green), var(--light-green));
    padding: 5rem 3rem;
    border-radius: 20px;
    color: var(--white);
}

.about-cta h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(143, 166, 126, 0.1);
}

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

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

.contact-info-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--card-radius);
    border-right: 4px solid var(--sage-green);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--light-brown);
    font-style: italic;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: var(--primary-brown);
    transition: var(--transition-base);
    font-weight: 500;
}

.social-link:hover {
    color: var(--sage-green);
    padding-right: 10px;
}

.text-link {
    color: var(--sage-green);
    font-weight: 600;
    transition: var(--transition-base);
}

.text-link:hover {
    color: var(--primary-brown);
}

.faq-section {
    margin-top: 6rem;
    background: var(--off-white);
    padding: 5rem 3rem;
    border-radius: 20px;
}

.faq-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    border-right: 3px solid var(--sage-green);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   Legal Pages Styles (Privacy, Terms, Disclaimer)
   =========================== */
.legal-content-section {
    padding: 4rem 0;
    background: var(--cream);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--card-radius);
    box-shadow: 0 5px 15px rgba(107, 68, 35, 0.05);
}

.last-updated {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.last-updated i {
    margin-left: 0.5rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--beige);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    padding-right: 1rem;
    border-right: 4px solid var(--sage-green);
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-right: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-section ul li::before {
    content: "●";
    position: absolute;
    right: 0;
    color: var(--sage-green);
    font-size: 1.2rem;
}

.legal-section a {
    color: var(--primary-brown);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--sage-green);
}

.legal-section strong {
    color: var(--dark-brown);
    font-weight: 600;
}

.consent-section {
    background: linear-gradient(135deg, rgba(143, 166, 126, 0.08) 0%, rgba(184, 197, 168, 0.08) 100%);
    padding: 2rem;
    border-radius: var(--card-radius);
    border: 2px solid var(--sage-green);
}

.consent-section h2 {
    border: none;
    padding-right: 0;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--beige);
    color: var(--text-light);
}

.legal-footer p {
    margin: 0.5rem 0;
}

.legal-footer strong {
    color: var(--primary-brown);
    font-size: 1.1rem;
}

/* Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .legal-section h2 {
        font-size: 1.6rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-section p {
        font-size: 0.95rem;
    }

    .last-updated {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .header,
    .magazine-section,
    .newsletter-section,
    .footer,
    .ad-container,
    .post-share,
    .related-posts {
        display: none;
    }

    body {
        background: white;
    }

    .post-content {
        max-width: 100%;
    }
}