/* ============================================
   ELITE FINISHES — BLOG / EDITORIAL STYLES
   Inherits the main site's dark luxury system.
   ============================================ */

:root {
    --bg-primary: #0B0B0F;
    --bg-secondary: #121218;
    --bg-elevated: #1A1A22;
    --bg-card: #16161E;
    --bg-card-hover: #1E1E28;

    --accent: #C8A961;
    --accent-light: #D4BC7E;
    --accent-dark: #A88B3D;
    --accent-glow: rgba(200, 169, 97, 0.15);
    --accent-glow-strong: rgba(200, 169, 97, 0.25);

    --text-primary: #F5F3EF;
    --text-secondary: #9B9BA3;
    --text-muted: #6B6B73;
    --text-inverse: #0B0B0F;

    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(200, 169, 97, 0.2);
    --glass: rgba(255, 255, 255, 0.03);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);

    --container: 1200px;
    --measure: 720px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.serif { font-family: 'Playfair Display', Georgia, serif; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
    color: var(--text-inverse);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px var(--accent-glow-strong); }
.btn-ghost {
    border: 1px solid var(--border-accent);
    color: var(--text-primary);
    background: var(--glass);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.ptr-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 48px 11px 20px;
    position: relative;
    background: linear-gradient(90deg, #7f1212, #b01818 55%, #7f1212);
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    text-align: center;
}
.ptr-bar-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ffd9d9; box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
    animation: ptrPulse 2s infinite;
}
@keyframes ptrPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ptr-bar-strong { font-weight: 700; letter-spacing: 0.04em; }
.ptr-bar-cta { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ptr-bar-arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.ptr-bar:hover .ptr-bar-arrow { transform: translateX(4px); }
.ptr-bar-close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 1.3rem; line-height: 1; opacity: 0.75; padding: 4px;
}
.ptr-bar-close:hover { opacity: 1; }
@media (max-width: 640px) { .ptr-bar-mobile-hide { display: none; } }

/* ============================================
   NAV
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 15, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo-img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--text-primary); }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.nav-phone:hover { color: var(--accent); }
.nav-btn { padding: 12px 22px; font-size: 0.7rem; }
@media (max-width: 900px) {
    .nav-links, .nav-phone { display: none; }
}

/* ============================================
   ARTICLE
   ============================================ */
.article-head {
    padding: clamp(40px, 7vw, 80px) 0 clamp(28px, 4vw, 44px);
    text-align: center;
    background:
        radial-gradient(1100px 360px at 50% -10%, var(--accent-glow), transparent 70%),
        var(--bg-primary);
}
.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-hidden] { color: var(--text-muted); }

.article-category { margin-bottom: 18px; }

.article-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 940px;
    margin: 0 auto 22px;
}
.article-title em { font-style: italic; color: var(--accent-light); }
.article-dek {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 34px;
    line-height: 1.7;
}
.article-meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--glass);
}
.article-meta img {
    width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--border-accent);
}
.article-meta .am-name { font-size: 0.86rem; font-weight: 600; color: var(--text-primary); }
.article-meta .am-sub { font-size: 0.76rem; color: var(--text-secondary); }
.article-meta .am-dot { color: var(--text-muted); }

.article-hero-img {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}
.article-hero-img img {
    width: 100%;
    height: clamp(240px, 46vw, 560px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.article-hero-caption {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* Prose */
.prose {
    max-width: var(--measure);
    margin: clamp(40px, 6vw, 68px) auto 0;
    padding: 0 clamp(20px, 4vw, 24px);
    font-size: 1.075rem;
    color: #DCDAD3;
    line-height: 1.85;
}
.prose > p { margin-bottom: 26px; }
.prose > p:first-of-type::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4em;
    float: left;
    line-height: 0.82;
    padding: 6px 12px 0 0;
    color: var(--accent);
}
.prose h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.22;
    margin: 52px 0 18px;
    scroll-margin-top: 100px;
}
.prose h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 36px 0 12px;
}
.prose a {
    color: var(--accent-light);
    border-bottom: 1px solid var(--border-accent);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.prose a:hover { color: var(--accent); border-color: var(--accent); }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose ul { margin: 0 0 26px; padding-left: 4px; list-style: none; }
.prose ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 4px; top: 12px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

/* Callout — the "bargain crew" red flag */
.callout {
    max-width: var(--measure);
    margin: 38px auto;
    padding: 26px 28px 26px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 1.04rem;
    line-height: 1.8;
}
.callout strong { color: var(--accent-light); }

/* Checklist card — "a simple rule we use" */
.checklist {
    max-width: var(--measure);
    margin: 40px auto;
    padding: clamp(26px, 4vw, 38px);
    background:
        radial-gradient(600px 200px at 0% 0%, var(--accent-glow), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
}
.checklist h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.checklist p.sub { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }
.checklist ul { list-style: none; }
.checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.02rem;
}
.checklist li:first-of-type { border-top: none; }
.checklist li .ck {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    display: grid; place-items: center;
    font-size: 0.8rem;
    margin-top: 2px;
}
.checklist .rule {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-accent);
    color: var(--text-primary);
    font-size: 1.02rem;
}
.checklist .rule strong { color: var(--accent-light); }

/* FAQ */
.faq-section {
    max-width: var(--measure);
    margin: clamp(48px, 7vw, 76px) auto 0;
    padding: 0 clamp(20px, 4vw, 24px);
}
.faq-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
    font-weight: 600;
    margin-bottom: 28px;
    text-align: center;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--border-accent); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.3rem;
    transition: transform 0.35s var(--ease-out);
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA band */
.cta-band {
    max-width: 1080px;
    margin: clamp(56px, 8vw, 88px) auto 0;
    padding: clamp(20px, 5vw, 24px);
}
.cta-band-inner {
    padding: clamp(36px, 6vw, 60px) clamp(28px, 5vw, 56px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
    background:
        radial-gradient(700px 280px at 100% 0%, var(--accent-glow), transparent 65%),
        var(--bg-card);
    text-align: center;
}
.cta-band h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--accent-light); }
.cta-band p { color: var(--text-secondary); max-width: 540px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Author card */
.author-card {
    max-width: var(--measure);
    margin: clamp(48px, 7vw, 72px) auto 0;
    padding: 28px clamp(20px, 4vw, 24px);
    display: flex;
    gap: 20px;
    align-items: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.author-card img {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
    border: 1px solid var(--border-accent);
    flex-shrink: 0;
}
.author-card .ac-role { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.author-card .ac-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 6px; }
.author-card .ac-bio { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.7; }

.back-to-blog {
    max-width: var(--measure);
    margin: 40px auto 0;
    padding: 0 clamp(20px, 4vw, 24px);
}
.back-to-blog a { color: var(--accent-light); font-weight: 600; font-size: 0.92rem; }
.back-to-blog a:hover { color: var(--accent); }

/* ============================================
   BLOG INDEX
   ============================================ */
.blog-hero {
    padding: clamp(56px, 9vw, 110px) 0 clamp(20px, 4vw, 40px);
    text-align: center;
    background:
        radial-gradient(1100px 380px at 50% -10%, var(--accent-glow), transparent 70%),
        var(--bg-primary);
}
.blog-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 16px 0 18px;
}
.blog-hero h1 em { font-style: italic; color: var(--accent-light); }
.blog-hero p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; font-size: 1.08rem; line-height: 1.7; }

.post-grid {
    max-width: var(--container);
    margin: clamp(40px, 6vw, 68px) auto 0;
    padding: 0 clamp(20px, 4vw, 40px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* Featured (first) post spans full width */
.post-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 820px) { .post-card.featured { grid-template-columns: 1fr; } }

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.post-card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.post-card.featured .post-card-media { aspect-ratio: auto; min-height: 280px; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-tag {
    position: absolute; top: 16px; left: 16px;
    padding: 6px 12px;
    background: rgba(11,11,15,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent-light);
}
.post-card-body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; flex: 1; }
.post-card-meta { font-size: 0.76rem; color: var(--text-secondary); margin-bottom: 14px; display: flex; gap: 10px; }
.post-card h2, .post-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.post-card.featured h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.post-card h3 { font-size: 1.3rem; }
.post-card p { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.7; margin-bottom: 22px; }
.post-card .read-more { margin-top: auto; color: var(--accent-light); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 7px; }
.post-card:hover .read-more { color: var(--accent); }
.post-card .read-more span { transition: transform 0.3s var(--ease); }
.post-card:hover .read-more span { transform: translateX(4px); }

.blog-soon {
    max-width: var(--container);
    margin: clamp(40px, 6vw, 60px) auto 0;
    padding: 36px clamp(20px, 4vw, 40px);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: clamp(64px, 9vw, 120px);
    padding: clamp(56px, 7vw, 84px) 0 36px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo-img { height: 50px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.92rem; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text-secondary); font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    margin-top: clamp(40px, 5vw, 56px);
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal { display: flex; align-items: center; gap: 14px; }
.footer-legal a { color: var(--text-secondary); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--accent); }
.footer-legal-divider { width: 1px; height: 12px; background: var(--border); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--border);
    display: grid; place-items: center;
    color: var(--text-secondary); font-size: 0.78rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
