/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #2D2D2D; background: #FAF7F2; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== VARIABLES ===== */
:root {
    --cream: #FAF7F2;
    --sand: #E8E0D4;
    --mocha: #8B7355;
    --espresso: #3C2A1A;
    --sage: #8A9A7B;
    --dustyrose: #C4A882;
    --charcoal: #2D2D2D;
    --white: #ffffff;
}

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Playfair Display', serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 1024px; margin: 0 auto; padding: 0 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-footer { display: grid; grid-template-columns: 1fr; gap: 48px; }

@media (min-width: 768px) {
    .container { padding: 0 48px; }
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 64px; }
    .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-footer { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.hidden { display: none; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 50;
    transition: all 0.3s ease;
}
.navbar.transparent { background: transparent; }
.navbar.solid { background: rgba(60, 42, 26, 0.95); backdrop-filter: blur(8px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.navbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .navbar-inner { padding: 16px 48px; } }

.nav-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: white; letter-spacing: 0.025em; }
@media (min-width: 768px) { .nav-logo { font-size: 30px; } }

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
    color: rgba(255,255,255,0.9); font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.15em; font-weight: 500; transition: color 0.3s;
}
.nav-link:hover { color: white; }
.nav-link.active { color: white; border-bottom: 1px solid var(--dustyrose); padding-bottom: 4px; }

.nav-cta {
    background: var(--dustyrose); color: white; padding: 10px 24px;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
    font-weight: 500; transition: background 0.3s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--mocha); }

.mobile-toggle { display: block; background: none; border: none; color: white; cursor: pointer; padding: 4px; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
    display: none; background: rgba(60,42,26,0.95); padding: 16px 24px;
}
.mobile-menu.open { display: block; }
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
    display: block; color: rgba(255,255,255,0.9); font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.15em; padding: 10px 0;
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(60,42,26,0.75) 0%, rgba(60,42,26,0.35) 50%, transparent 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-inner { max-width: 640px; }
.hero-tag { color: var(--dustyrose); font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 16px; font-weight: 500; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 48px; color: white; line-height: 1.1; margin-bottom: 24px; }
@media (min-width: 768px) { .hero-title { font-size: 72px; } }
.hero-text { color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.7; margin-bottom: 32px; font-weight: 300; }
.hero-buttons { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

/* ===== PAGE HEADERS ===== */
.page-header {
    position: relative; padding: 140px 0 80px;
}
@media (min-width: 768px) { .page-header { padding: 180px 0 112px; } }
.page-header-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay { position: absolute; inset: 0; background: rgba(60,42,26,0.7); }
.page-header-content { position: relative; z-index: 10; text-align: center; }
.page-header-tag { color: var(--dustyrose); font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 16px; font-weight: 500; }
.page-header-title { font-family: 'Playfair Display', serif; font-size: 48px; color: white; }
@media (min-width: 768px) { .page-header-title { font-size: 64px; } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 16px 40px; font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.15em; font-weight: 500; transition: all 0.3s; cursor: pointer;
    border: none; text-align: center;
}
.btn-primary { background: var(--dustyrose); color: white; }
.btn-primary:hover { background: var(--mocha); }
.btn-dark { background: var(--espresso); color: white; }
.btn-dark:hover { background: var(--mocha); }
.btn-outline { border: 1px solid rgba(255,255,255,0.4); color: white; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sage { background: var(--sage); color: white; }
.btn-sage:hover { background: rgba(138,154,123,0.8); }
.btn-link {
    color: var(--mocha); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
    font-weight: 500; border-bottom: 2px solid var(--mocha); padding-bottom: 4px;
    transition: all 0.3s; display: inline-block;
}
.btn-link:hover { color: var(--espresso); border-color: var(--espresso); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-sm { padding: 64px 0; }
.bg-white { background: white; }
.bg-cream { background: var(--cream); }
.bg-espresso { background: var(--espresso); }
.bg-charcoal { background: var(--charcoal); }

.section-tag {
    color: var(--mocha); font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.3em; margin-bottom: 16px; font-weight: 500;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: 36px; color: var(--espresso);
}
@media (min-width: 768px) { .section-title { font-size: 48px; } }
.section-title-white { color: white; }

/* ===== CARDS ===== */
.service-card .card-img {
    width: 100%; height: 288px; object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; margin-bottom: 24px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--espresso); margin-bottom: 12px; }
.card-text { color: rgba(45,45,45,0.6); line-height: 1.7; }

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
    .portfolio-grid .portfolio-item-large { grid-column: span 2; grid-row: span 2; }
    .portfolio-grid .portfolio-item-large img { min-height: 400px; }
}
.portfolio-item {
    position: relative; overflow: hidden; cursor: pointer;
}
.portfolio-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
@media (min-width: 768px) { .portfolio-item img { height: 100%; } }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute; inset: 0; background: transparent;
    transition: background 0.3s; display: flex; align-items: flex-end; padding: 16px;
}
.portfolio-item:hover .portfolio-overlay { background: rgba(60,42,26,0.4); }
.portfolio-overlay-text { color: white; opacity: 0; transition: opacity 0.3s; }
.portfolio-item:hover .portfolio-overlay-text { opacity: 1; }
.portfolio-overlay-text h3 { font-family: 'Playfair Display', serif; font-size: 18px; }
.portfolio-overlay-text p { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: 1fr 1fr 1fr; } }

.gallery-item img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-inner { position: relative; overflow: hidden; cursor: pointer; }
.gallery-caption {
    position: absolute; inset: 0; background: transparent; transition: background 0.3s;
    display: flex; align-items: flex-end;
}
.gallery-item:hover .gallery-caption { background: rgba(60,42,26,0.5); }
.gallery-caption-inner { padding: 24px; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-caption-inner { opacity: 1; }
.gallery-caption h3 { font-family: 'Playfair Display', serif; font-size: 20px; }
.gallery-caption p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Filter buttons */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 48px 0; background: white; border-bottom: 1px solid var(--sand); }
.filter-btn {
    padding: 10px 24px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
    font-weight: 500; border: 1px solid var(--sand); background: transparent; color: rgba(45,45,45,0.6);
    cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--espresso); background: var(--espresso); color: white; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 100; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
    position: absolute; top: 24px; right: 24px; color: white; font-size: 40px;
    background: none; border: none; cursor: pointer; transition: color 0.3s; line-height: 1;
}
.lightbox-close:hover { color: var(--dustyrose); }

/* ===== TESTIMONIAL BANNER ===== */
.testimonial-banner { position: relative; padding: 96px 0; }
.testimonial-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-banner-overlay { position: absolute; inset: 0; background: rgba(60,42,26,0.8); }
.quote-icon { width: 48px; height: 48px; color: var(--dustyrose); margin: 0 auto 32px; }
.quote-text {
    font-family: 'Playfair Display', serif; font-size: 22px; color: white;
    line-height: 1.6; margin-bottom: 32px; font-style: italic;
}
@media (min-width: 768px) { .quote-text { font-size: 28px; } }
.quote-author { color: var(--dustyrose); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }

/* ===== TESTIMONIALS PAGE ===== */
.testimonial-card {
    background: white; padding: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) { .testimonial-card { padding: 56px; } }
.testimonial-quote-icon { width: 40px; height: 40px; color: var(--sand); margin-bottom: 24px; }
.testimonial-text {
    font-family: 'Playfair Display', serif; font-size: 20px; color: var(--espresso);
    line-height: 1.6; font-style: italic; margin-bottom: 24px;
}
@media (min-width: 768px) { .testimonial-text { font-size: 24px; } }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
    width: 48px; height: 48px; background: var(--sand); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; color: var(--mocha); font-size: 18px;
}
.testimonial-name { font-weight: 500; color: var(--espresso); }
.testimonial-location { font-size: 14px; color: rgba(45,45,45,0.5); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }

.blog-card img { width: 100%; height: 256px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .img-wrap { overflow: hidden; margin-bottom: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-category { color: var(--mocha); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.blog-divider { color: rgba(45,45,45,0.3); }
.blog-date { color: rgba(45,45,45,0.4); font-size: 12px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--espresso); margin-bottom: 12px; transition: color 0.3s; }
.blog-card:hover .blog-title { color: var(--mocha); }
.blog-excerpt { color: rgba(45,45,45,0.6); line-height: 1.7; margin-bottom: 16px; }

/* ===== CONTACT ===== */
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.contact-icon {
    width: 48px; height: 48px; min-width: 48px; background: var(--sand);
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--mocha); }
.contact-label { font-weight: 500; color: var(--espresso); margin-bottom: 4px; }
.contact-value { color: rgba(45,45,45,0.6); }
.contact-value a { transition: color 0.3s; }
.contact-value a:hover { color: var(--mocha); }

.contact-form { background: white; padding: 32px; }
@media (min-width: 768px) { .contact-form { padding: 48px; } }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-label {
    display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em;
    color: rgba(45,45,45,0.5); margin-bottom: 8px; font-weight: 500;
}
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--sand); background: var(--cream);
    outline: none; transition: border-color 0.3s; color: var(--charcoal);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--mocha); }
.form-textarea { resize: none; }
.form-submit {
    width: 100%; background: var(--espresso); color: white; border: none; padding: 16px;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500;
    cursor: pointer; transition: background 0.3s;
}
.form-submit:hover { background: var(--mocha); }
.form-success {
    display: none; margin-top: 24px; padding: 16px; text-align: center;
    background: rgba(138,154,123,0.2); color: var(--sage);
}

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; padding: 12px 16px; border: 1px solid var(--sand); background: var(--cream); outline: none; }
.newsletter-input:focus { border-color: var(--mocha); }
.newsletter-btn {
    background: var(--espresso); color: white; padding: 12px 24px; border: none;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500;
    cursor: pointer; transition: background 0.3s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--mocha); }

/* ===== SERVICES PAGE ===== */
.service-detail { margin-bottom: 96px; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail-img { width: 100%; height: 400px; object-fit: cover; }
.service-detail-title { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--espresso); margin-bottom: 16px; }
.service-detail-text { color: rgba(45,45,45,0.7); line-height: 1.7; margin-bottom: 16px; }
.service-list { list-style: none; }
.service-list li { display: flex; align-items: center; gap: 8px; color: rgba(45,45,45,0.6); font-size: 14px; margin-bottom: 8px; }
.service-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dustyrose); flex-shrink: 0; }
.service-dot-sage { background: var(--sage); }

/* Process steps */
.process-step { text-align: center; }
.process-number {
    width: 64px; height: 64px; border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif; font-size: 24px; color: var(--mocha);
}
.process-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--espresso); margin-bottom: 12px; }
.process-text { color: rgba(45,45,45,0.6); font-size: 14px; line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-img { width: 100%; height: 600px; object-fit: cover; }
.about-title { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--espresso); margin-bottom: 24px; }
.about-text { color: rgba(45,45,45,0.7); line-height: 1.7; margin-bottom: 16px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.stat-card { background: white; padding: 24px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--mocha); font-weight: 700; }
.stat-label { font-size: 13px; color: rgba(45,45,45,0.6); margin-top: 4px; }

.recognition-card { border: 1px solid var(--sand); padding: 32px; }
.recognition-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--espresso); margin-bottom: 12px; }
.recognition-text { font-size: 14px; color: rgba(45,45,45,0.6); line-height: 1.6; }

.area-list li { display: flex; align-items: center; gap: 12px; color: rgba(45,45,45,0.7); margin-bottom: 12px; }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dustyrose); flex-shrink: 0; }
.area-img { width: 100%; height: 500px; object-fit: cover; }

/* ===== EXPERIENCE BADGE ===== */
.experience-badge {
    position: absolute; bottom: -24px; left: -24px;
    background: var(--mocha); color: white; padding: 32px;
}
@media (max-width: 767px) { .experience-badge { display: none; } }
.experience-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; }
.experience-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 4px; }

/* ===== MILITARY ===== */
.military-bar { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
@media (min-width: 768px) { .military-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.military-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--espresso); margin-bottom: 8px; }
.military-text { color: rgba(45,45,45,0.6); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 96px 0; background: var(--espresso); text-align: center; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 36px; color: white; margin-bottom: 24px; }
@media (min-width: 768px) { .cta-title { font-size: 44px; } }
.cta-text { color: rgba(255,255,255,0.6); font-size: 18px; margin-bottom: 32px; }
.cta-tag { color: var(--dustyrose); font-size: 13px; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 16px; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 0; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 24px; color: white; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.6; }
.footer-heading { color: white; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; font-weight: 500; font-family: 'Inter', sans-serif; }
.footer-links { font-size: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { transition: color 0.3s; }
.footer-links a:hover { color: var(--dustyrose); }
.footer-contact { font-size: 14px; }
.footer-contact li { margin-bottom: 8px; }

.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: rgba(255,255,255,0.7);
}
.social-link:hover { border-color: var(--dustyrose); color: var(--dustyrose); }
.social-link svg { width: 18px; height: 18px; }
.social-link-sm { font-size: 11px; font-weight: 700; }

.social-link-light {
    border-color: var(--sand); color: rgba(45,45,45,0.4);
}
.social-link-light:hover { border-color: var(--mocha); color: var(--mocha); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; margin-top: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 14px;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITY ===== */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.pt-8 { padding-top: 32px; }
.border-t-sand { border-top: 1px solid var(--sand); }
.text-white { color: white; }
.text-espresso { color: var(--espresso); }
.text-mocha { color: var(--mocha); }
.text-muted { color: rgba(45,45,45,0.6); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.font-medium { font-weight: 500; }
.leading-relaxed { line-height: 1.7; }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 768px) {
    .md-order-1 { order: 1; }
    .md-order-2 { order: 2; }
}

/* ===== BLOG ARTICLE PAGE ===== */
.article-header { position: relative; padding: 160px 0 60px; }
@media (min-width: 768px) { .article-header { padding: 200px 0 80px; } }
.article-header-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(60,42,26,0.85) 0%, rgba(60,42,26,0.4) 100%); }
.article-header-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.article-category { display: inline-block; background: var(--dustyrose); color: white; padding: 6px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; margin-bottom: 16px; }
.article-title { font-family: 'Playfair Display', serif; font-size: 36px; color: white; line-height: 1.2; margin-bottom: 16px; }
@media (min-width: 768px) { .article-title { font-size: 48px; } }
.article-meta { color: rgba(255,255,255,0.7); font-size: 14px; }
.article-meta span { margin-right: 16px; }

.article-body { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
@media (min-width: 768px) { .article-body { padding: 80px 24px; } }
.article-body p { color: rgba(45,45,45,0.75); line-height: 1.9; margin-bottom: 24px; font-size: 17px; }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--espresso); margin: 48px 0 20px; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--espresso); margin: 36px 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; color: rgba(45,45,45,0.75); line-height: 1.9; font-size: 17px; }
.article-body li { margin-bottom: 8px; list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
    border-left: 4px solid var(--dustyrose); padding: 20px 24px; margin: 32px 0;
    background: white; font-style: italic; color: var(--espresso);
    font-family: 'Playfair Display', serif; font-size: 20px; line-height: 1.6;
}
.article-body img { width: 100%; height: auto; margin: 32px 0; }
.article-body .lead { font-size: 20px; color: var(--espresso); line-height: 1.7; font-weight: 300; }

.article-nav { max-width: 800px; margin: 0 auto; padding: 0 24px 64px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.article-nav a { color: var(--mocha); font-size: 14px; font-weight: 500; transition: color 0.3s; }
.article-nav a:hover { color: var(--espresso); }

.related-posts { background: white; padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.related-card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 16px; }
.related-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--espresso); margin-bottom: 8px; }
.related-card p { font-size: 14px; color: rgba(45,45,45,0.5); }
