/* BLOG STYLES — Gold Coast OCD */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #FAF8F5;
    background-color: #0F0F0F;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
}

a { color: #C5A047; text-decoration: none; transition: color 300ms ease; }
a:hover { color: #E8CC72; }

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

/* NAV */
.blog-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0) 100%);
    transition: background 400ms ease;
}

.blog-nav.scrolled {
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(12px);
}

.nav-brand {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A047;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 300ms ease;
}

.nav-links a:hover { color: #C5A047; }

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid #C5A047 !important;
    color: #C5A047 !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    transition: all 400ms ease !important;
}

.nav-cta:hover {
    background-color: #C5A047 !important;
    color: #0F0F0F !important;
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* BLOG LISTING — HERO */
.blog-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.blog-hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 24px;
}

.blog-hero h1 {
    font-size: 72px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.blog-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    padding-bottom: 160px;
}

.blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 600ms cubic-bezier(0.19,1,0.22,1);
}

.blog-card:hover {
    border-color: rgba(197,160,71,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.blog-card-body { padding: 40px; }

.blog-card-date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 16px;
}

.blog-card h2 {
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-card h2 a { color: #fff; }
.blog-card h2 a:hover { color: #C5A047; }

.blog-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-card-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C5A047;
}

.blog-card-link:hover { color: #E8CC72; }

/* ARTICLE PAGE */
.article-hero {
    padding: 180px 0 60px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.article-meta {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 32px;
}

.article-hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 32px;
}

.article-hero .article-intro {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.article-line {
    width: 48px;
    height: 2px;
    background-color: #C5A047;
    margin: 60px auto;
}

/* ARTICLE BODY */
.article-body {
    padding-bottom: 80px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin: 56px 0 24px;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 300;
    color: #C5A047;
    margin: 40px 0 16px;
}

.article-body p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 24px;
}

.article-body blockquote {
    border-left: 2px solid #C5A047;
    padding: 16px 0 16px 32px;
    margin: 32px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.article-body strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* CTA SECTION */
.article-cta {
    margin: 80px 0;
    padding: 64px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197,160,71,0.2);
    border-radius: 12px;
    text-align: center;
}

.article-cta h3 {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
}

.article-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    border: 1px solid #C5A047;
    color: #C5A047;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 400ms ease;
}

.cta-button:hover {
    background-color: #C5A047;
    color: #0F0F0F;
}

/* ARTICLE FOOTER META */
.article-about {
    margin: 80px 0 0;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.article-about p {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* RELATED POSTS */
.related-posts {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.related-posts h2 {
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: all 400ms ease;
}

.related-card:hover {
    border-color: rgba(197,160,71,0.3);
}

.related-card-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 12px;
}

.related-card h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
}

.related-card h3 a { color: #fff; }
.related-card h3 a:hover { color: #C5A047; }

/* FOOTER */
.blog-footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #C5A047;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-email {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-nav { padding: 16px 24px; }
    .nav-links { gap: 20px; }
    .blog-hero h1 { font-size: 42px; }
    .blog-grid { grid-template-columns: 1fr; gap: 32px; }
    .blog-card-body { padding: 28px; }
    .article-hero { padding: 140px 24px 40px; }
    .article-hero h1 { font-size: 32px; }
    .article-body h2 { font-size: 26px; }
    .article-cta { padding: 40px 24px; }
    .article-cta h3 { font-size: 28px; }
    .related-grid { grid-template-columns: 1fr; }
    .container-narrow { padding: 0 24px; }
}

@media (max-width: 480px) {
    .blog-hero h1 { font-size: 32px; }
    .nav-brand { font-size: 11px; letter-spacing: 3px; }
    .nav-links { gap: 12px; }
    .nav-links a { font-size: 11px; }
}
