/* ============================================
   Alex Farahan - Luxury Blog CSS
   Modern, sophisticated design for artisan rug business
   ============================================ */

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-gold: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #faf9f7;
    --bg-cream: #f5f3ef;
    --white: #ffffff;
    --border-color: #e5e5e5;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

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

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

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    background-image: url('https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?w=1600');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(139, 115, 85, 0.6));
}

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

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.intro-section {
    padding: 8rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    filter: grayscale(20%);
    position: relative;
    z-index: 1;
}

.image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--secondary-color);
    z-index: 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ============================================
   BUSINESSES SECTION
   ============================================ */

.businesses-section {
    padding: 8rem 0;
    background: var(--bg-cream);
}

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

.business-card {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.business-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.business-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.business-card p {
    margin-bottom: 2rem;
}

.business-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.business-features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-intro {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-cream);
    border-top: 3px solid var(--secondary-color);
    transition: var(--transition);
}

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

.expertise-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.expertise-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   FEATURED POSTS
   ============================================ */

.featured-posts {
    padding: 8rem 0;
    background: var(--white);
}

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

.post-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.post-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.post-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-content {
    padding: 2rem;
}

.post-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-content h3 a {
    color: var(--primary-color);
}

.post-content h3 a:hover {
    color: var(--secondary-color);
}

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

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ============================================
   MEDIA MENTIONS SECTION
   ============================================ */

.media-mentions {
    padding: 8rem 0;
    background: var(--bg-light);
}

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

.mention-card {
    background: var(--white);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mention-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.mention-logo {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mention-logo i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.mention-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mention-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.mention-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */

.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.about-image-section img {
    width: 100%;
    margin-bottom: 2rem;
}

.quote-box {
    background: var(--bg-cream);
    padding: 2rem;
    position: relative;
}

.quote-box i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-box p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.quote-box span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.about-text-section h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline-section {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    padding-top: 0.5rem;
}

.timeline-year {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.method-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.business-hours {
    background: var(--bg-cream);
    padding: 2rem;
    margin-bottom: 2rem;
}

.business-hours h3 {
    margin-bottom: 1.5rem;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-note i {
    color: var(--secondary-color);
}

.social-section h3 {
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Contact Form */
.form-container {
    background: var(--bg-cream);
    padding: 3rem;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--bg-cream);
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 0.9rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-section {
    padding: 6rem 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.post-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.post-card-large:hover {
    box-shadow: var(--shadow-lg);
}

.post-card-large:nth-child(even) {
    direction: rtl;
}

.post-card-large:nth-child(even) .post-content {
    direction: ltr;
}

.post-card-large .post-image {
    height: 100%;
    min-height: 350px;
}

.post-card-large .post-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card-large h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-card-large p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Newsletter Box */
.newsletter-box {
    background: var(--bg-cream);
    padding: 4rem;
    text-align: center;
}

.newsletter-content h3 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-sans);
}

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

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-page {
    margin-top: 80px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

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

.article-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.article-image {
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

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

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-content .first-letter::first-letter {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    float: left;
    line-height: 0.9;
    margin: 0.1em 0.1em 0 0;
    color: var(--secondary-color);
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.article-content blockquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--bg-cream);
    border-left: 4px solid var(--secondary-color);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

.article-content blockquote footer {
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--secondary-color);
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
}

.article-footer a {
    color: var(--secondary-color);
    font-weight: 500;
}

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

.article-share {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-cream);
    text-align: center;
}

.article-share h4 {
    margin-bottom: 1rem;
}

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

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.article-navigation {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.nav-prev,
.nav-next {
    flex: 1;
    padding: 2rem;
    background: var(--bg-cream);
    transition: var(--transition);
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.nav-prev span,
.nav-next span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-lighter);
}

.nav-prev:hover span,
.nav-next:hover span {
    color: rgba(255, 255, 255, 0.8);
}

.nav-prev strong,
.nav-next strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .intro-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .businesses-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .mentions-grid {
        grid-template-columns: 1fr;
    }
    
    .post-card-large {
        grid-template-columns: 1fr;
    }
    
    .post-card-large:nth-child(even) {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}