/* ─── Site Header ─── */

.cba-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cba-cream);
    border-bottom: 1px solid var(--cba-border);
}

.cba-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.cba-logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.cba-logo {
    height: 52px;
    width: auto;
}

.cba-site-nav .cba-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.cba-site-nav .cba-nav-list li a {
    display: block;
    font-family: var(--cba-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cba-text-light);
    padding: 8px 20px;
    border: 1px solid var(--cba-border);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.cba-site-nav .cba-nav-list li a:hover,
.cba-site-nav .cba-nav-list li.current-menu-item a,
.cba-site-nav .cba-nav-list li.current-menu-parent a,
.cba-site-nav .cba-nav-list li.current_page_item a {
    background: var(--cba-taupe);
    color: var(--cba-white);
    border-color: var(--cba-taupe);
}

/* ─── Site Footer ─── */

.cba-site-footer {
    border-top: 1px solid var(--cba-border);
    padding: 32px 24px;
    text-align: center;
    margin-top: 60px;
}

.cba-site-footer p {
    margin: 0;
    font-family: var(--cba-font-body);
    font-size: 13px;
    color: var(--cba-text-light);
    letter-spacing: 0.5px;
}

/* ─── WP Admin Bar offset ─── */

.admin-bar .cba-site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .cba-site-header {
        top: 46px;
    }
}

@media (max-width: 768px) {
    .cba-header-inner {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .cba-logo {
        height: 44px;
    }

    .cba-site-nav .cba-nav-list {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cba-site-nav .cba-nav-list li a {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 1px;
    }
}

/* ─── Layout ─── */

.cba-single,
.cba-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ─── Hero ─── */

.cba-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 40px;
    overflow: hidden;
    max-height: 560px;
}

.cba-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Article Header ─── */

.cba-header {
    text-align: center;
    margin-bottom: 32px;
}

.cba-categories {
    margin-bottom: 12px;
}

.cba-category-tag {
    display: inline-block;
    font-family: var(--cba-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cba-taupe-dark);
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid var(--cba-border);
    border-radius: 20px;
    margin: 0 4px;
}

.cba-category-tag:hover {
    background: var(--cba-beige);
}

.cba-title {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    margin: 8px 0 16px;
}

.cba-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cba-budget-badge,
.cba-mood-badge {
    display: inline-block;
    font-family: var(--cba-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--cba-taupe-dark);
    background: var(--cba-beige);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.cba-mood-badge {
    background: transparent;
    border: 1px solid var(--cba-border);
    color: var(--cba-text-light);
    font-style: italic;
}

/* ─── Curated Note (editorial) ─── */

.cba-curated-note {
    max-width: 640px;
    margin: 0 auto 48px;
    padding: 28px 32px;
    background: var(--cba-cream);
    border: 1px solid var(--cba-border);
    border-radius: 12px;
    text-align: center;
}

.cba-curated-eyebrow {
    display: block;
    font-family: var(--cba-font-heading);
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cba-taupe);
    margin-bottom: 12px;
}

.cba-curated-note p {
    font-family: var(--cba-font-heading);
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: var(--cba-text);
    margin: 0;
}

/* ─── Product Notes ─── */

.cba-product-notes {
    font-size: 13px;
    line-height: 1.6;
    color: var(--cba-text-light);
    font-style: italic;
    margin: 0 0 12px;
}

/* ─── Card meta (budget + mood) ─── */

.cba-card-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cba-card-mood {
    font-size: 11px;
    font-style: italic;
    color: var(--cba-text-light);
    letter-spacing: 0.3px;
}

/* ─── Description ─── */

.cba-description {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 16px;
    color: var(--cba-text-light);
    line-height: 1.8;
}

/* ─── Section Titles ─── */

.cba-section-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
}

/* ─── Product Grid ─── */

.cba-products {
    margin-bottom: 48px;
}

.cba-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.cba-product-card {
    background: var(--cba-white);
    border: 1px solid var(--cba-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cba-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.cba-product-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cba-beige);
}

.cba-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cba-product-info {
    padding: 16px;
}

.cba-product-name {
    font-family: var(--cba-font-body);
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
    line-height: 1.4;
}

.cba-product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.cba-product-price {
    font-weight: 600;
    font-size: 15px;
    color: var(--cba-text);
}

.cba-product-store {
    font-size: 12px;
    color: var(--cba-taupe-dark);
    background: var(--cba-beige);
    padding: 2px 8px;
    border-radius: 10px;
}

.cba-shop-btn {
    display: block;
    text-align: center;
    font-family: var(--cba-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFCF8;
    background: var(--cba-text);
    padding: 11px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.cba-shop-btn:hover {
    background: var(--cc-petal-blush);
    color: var(--cba-text);
}

/* ─── Disclosure ─── */

.cba-disclosure {
    max-width: 640px;
    margin: 32px auto 48px;
    padding: 16px 20px;
    background: var(--cba-beige);
    border-radius: 8px;
    font-size: 13px;
    color: var(--cba-text-light);
    text-align: center;
    line-height: 1.6;
}

.cba-disclosure p {
    margin: 0;
}

/* ─── Card Grid (Archive + Related) ─── */

.cba-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.cba-card {
    display: block;
    background: var(--cba-white);
    border: 1px solid var(--cba-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cba-text);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cba-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    color: var(--cba-text);
}

.cba-card-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cba-beige);
}

.cba-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cba-card:hover .cba-card-img {
    transform: scale(1.03);
}

.cba-card-body {
    padding: 16px;
}

.cba-card-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cba-taupe-dark);
}

.cba-card-title {
    font-family: var(--cba-font-heading);
    font-size: 18px;
    font-weight: 500;
    margin: 6px 0 8px;
    line-height: 1.3;
}

.cba-card-budget {
    font-size: 13px;
    color: var(--cba-taupe-dark);
}

/* ─── Archive Header ─── */

.cba-archive-header {
    text-align: center;
    padding: 48px 0 40px;
}

.cba-archive-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 8px;
}

.cba-archive-desc {
    font-size: 16px;
    color: var(--cba-text-light);
    margin-bottom: 24px;
}

.cba-category-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cba-cat-link {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--cba-text-light);
    border: 1px solid var(--cba-border);
    transition: all 0.2s ease;
}

.cba-cat-link:hover,
.cba-cat-link.active {
    background: var(--cba-taupe);
    color: var(--cba-white);
    border-color: var(--cba-taupe);
}

/* ─── Pagination ─── */

.cba-pagination {
    text-align: center;
    margin-top: 48px;
}

.cba-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 2px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: var(--cba-text-light);
}

.cba-pagination .page-numbers.current {
    background: var(--cba-taupe);
    color: var(--cba-white);
}

/* ─── Related Posts ─── */

.cba-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--cba-border);
}

/* ─── Empty State ─── */

.cba-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--cba-text-light);
    font-size: 16px;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
    .cba-single,
    .cba-archive {
        padding: 0 16px 40px;
    }

    .cba-hero {
        max-height: 320px;
        margin-bottom: 24px;
    }

    .cba-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cba-product-info {
        padding: 12px;
    }

    .cba-product-name {
        font-size: 13px;
    }

    .cba-product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .cba-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cba-card-body {
        padding: 12px;
    }

    .cba-card-title {
        font-size: 15px;
    }

    .cba-archive-header {
        padding: 32px 0 24px;
    }
}

@media (max-width: 480px) {
    .cba-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cba-card-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Homepage ─── */

.cba-home {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.cba-home-hero {
    text-align: center;
    padding: 80px 0 60px;
}

.cba-home-headline {
    font-family: var(--cba-font-heading);
    font-weight: 500;
    font-size: clamp(32px, 5.2vw, 52px);
    color: var(--cba-text);
    margin: 0 auto 16px;
    line-height: 1.2;
    max-width: 760px;
}

.cba-home-subtitle {
    font-family: var(--cba-font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
    color: var(--cba-text-light);
    margin: 0 auto 36px;
    max-width: 640px;
}

.cba-home-cta {
    display: inline-block;
    font-family: var(--cba-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFCF8;
    background: var(--cba-text);
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.cba-home-cta:hover {
    background: var(--cc-petal-blush);
    color: var(--cba-text);
}

.cba-home-categories {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cba-home-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 40px;
    background: var(--cba-beige);
    border-radius: 16px;
    text-decoration: none;
    color: var(--cba-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 140px;
}

.cba-home-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    color: var(--cba-text);
}

.cba-home-cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.cba-home-cat-icon svg {
    width: 100%;
    height: 100%;
}

.cba-home-cat-name {
    font-family: var(--cba-font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cba-home-content {
    max-width: 760px;
    margin: 0 auto 60px;
    padding: 0 8px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cba-text);
}

.cba-home-content > * + * {
    margin-top: 16px;
}

.cba-home-latest {
    margin-top: 60px;
}

.cba-home-latest .cba-section-title {
    margin-bottom: 32px;
}

/* ─── About Page ─── */

.cba-about {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cba-about-content h1 {
    font-family: var(--cba-font-heading);
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 24px;
}

.cba-about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cba-text-light);
    margin-bottom: 16px;
}

.cba-about-content ul {
    margin: 0 0 24px 20px;
    color: var(--cba-text-light);
    line-height: 2;
}

.cba-about-content .cba-home-cta {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .cba-home-hero {
        padding: 48px 0 40px;
    }

    .cba-home-cat-card {
        padding: 24px 28px;
        min-width: 120px;
    }
}

/* ============================================================
   HOMEPAGE — Elevated (magazine blueprint)
   Section classes prefixed cc-*. Reuses .cba-card grid for guides.
   Lives here so it deploys with the theme (front-page.php port).
   ============================================================ */
.cc-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.cc-eyebrow { font-family: var(--cba-font-body); text-transform: uppercase; letter-spacing: 0.28em; font-size: 12px; font-weight: 600; color: var(--cba-taupe); }

.cc-btn { display:inline-block; font-family:var(--cba-font-body); font-size:13px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; padding:14px 30px; border-radius:5px; transition: all .2s ease; cursor:pointer; border:0; }
.cc-btn-solid { background: var(--cba-text); color: #FFFCF8; }
.cc-btn-solid:hover { background: var(--cc-petal-blush); color: var(--cba-text); }

/* Hero */
.cc-hero { position: relative; min-height: min(80vh, 720px); display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; }
.cc-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 42%; z-index:0; }
.cc-hero::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(61,29,29,0.32) 0%, rgba(61,29,29,0.30) 45%, rgba(61,29,29,0.52) 100%); }
.cc-hero-inner { position:relative; z-index:2; padding: 40px 24px; max-width: 720px; }
.cc-hero .cc-eyebrow { color:#F3E9D8; }
.cc-hero h1 { font-family: var(--cba-font-heading); color:#fff; font-weight:500; font-size: clamp(34px, 6vw, 64px); line-height:1.12; margin: 14px 0 18px; text-shadow: 0 2px 26px rgba(0,0,0,0.28); }
.cc-hero p.cc-hero-sub { color:#F1E7D6; font-size: clamp(15px,1.8vw,18px); margin: 0 auto 26px; max-width: 46ch; }
.cc-hero .cc-btn-solid { background: rgba(255,255,255,0.96); color: var(--cba-text); }
.cc-hero .cc-btn-solid:hover { background:#fff; color: var(--cba-taupe-dark); }

/* Mission */
.cc-mission { text-align:center; padding: 60px 24px; }
.cc-mission p { font-family: var(--cba-font-heading); font-style: italic; font-size: clamp(19px, 2.5vw, 26px); line-height:1.5; color: var(--cba-text); max-width: 640px; margin: 0 auto; }

/* Section head */
.cc-shead { text-align:center; margin-bottom: 36px; }
.cc-shead .cc-eyebrow { display:block; margin-bottom: 10px; }
.cc-shead h2 { font-size: clamp(26px, 3.4vw, 38px); margin:0; }

/* Featured guide (split) */
.cc-featured { padding: 24px 0 68px; }
.cc-split { display:grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px,4vw,54px); align-items:center; }
.cc-fimg { aspect-ratio: 16/11; border-radius: 10px; overflow:hidden; background: var(--cba-beige); }
.cc-fimg img { width:100%; height:100%; object-fit:cover; display:block; }
.cc-fbody .cc-eyebrow { display:block; margin-bottom:12px; }
.cc-fbody h3 { font-size: clamp(24px,3vw,34px); margin: 0 0 12px; line-height:1.15; }
.cc-fbody p { color: var(--cba-text-light); margin: 0 0 22px; }

/* Charm list (tall cards) */
.cc-charm { padding: 68px 0; background: var(--cba-beige); }
.cc-charm-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.cc-citem { text-decoration:none; color: var(--cba-text); display:block; }
.cc-cimg { aspect-ratio: 3/4; border-radius: 8px; overflow:hidden; background: var(--cba-cream); border:1px solid var(--cba-border); }
.cc-cimg img { width:100%;height:100%;object-fit:cover; transition: transform .3s ease; display:block; }
.cc-citem:hover .cc-cimg img { transform: scale(1.04); }
.cc-ctag { display:block; margin-top:12px; font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color: var(--cba-taupe-dark); }
.cc-cname { font-family: var(--cba-font-heading); font-size:17px; margin:4px 0 0; }

/* Duo (shop my home + seasonal) */
.cc-duo { padding: 68px 0; }
.cc-duo-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,3vw,38px); }
.cc-pimg { display:block; aspect-ratio: 16/10; border-radius:10px; overflow:hidden; background: var(--cba-beige); }
.cc-pimg img { width:100%;height:100%;object-fit:cover; display:block; }
.cc-panel h3 { font-size: 24px; margin: 18px 0 6px; }
.cc-panel p { color: var(--cba-text-light); margin:0 0 16px; font-size:15px; }

/* Newsletter (contained panel — restraint) */
.cc-news { padding: 20px 24px 76px; }
.cc-news-inner { max-width: 720px; margin:0 auto; text-align:center; background: var(--cba-beige); border:1px solid var(--cba-border); border-radius: 14px; padding: clamp(32px,5vw,52px) 28px; }
.cc-news .cc-eyebrow { display:block; margin-bottom:10px; }
.cc-news h2 { font-size: clamp(23px,3vw,32px); margin: 0 0 10px; }
.cc-news p { color: var(--cba-text-light); max-width: 42ch; margin: 0 auto 22px; }
.cc-news form { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.cc-news input { padding:13px 16px; border:1px solid var(--cba-border); border-radius:6px; font-family:var(--cba-font-body); font-size:14px; width: min(320px, 78vw); background:#fff; }

/* Instagram */
.cc-ig { padding: 8px 0 72px; }
.cc-ig-grid { display:grid; grid-template-columns: repeat(6,1fr); gap:10px; }
.cc-igimg { aspect-ratio:1; border-radius:6px; overflow:hidden; background: var(--cba-beige); display:block; }
.cc-igimg img { width:100%;height:100%;object-fit:cover; transition: transform .3s ease; display:block; }
.cc-igimg:hover img { transform: scale(1.05); }

@media (max-width: 900px){
  .cc-charm-grid { grid-template-columns: repeat(2,1fr); }
  .cc-ig-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 720px){
  .cc-split { grid-template-columns: 1fr; }
  .cc-duo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGO-COLOR PALETTE — bring sage, blush & deep tones beyond cream
   Draws the greens/roses/browns from the Collected Charm badge so
   sections have rhythm instead of one flat beige ground.
   ============================================================ */
:root {
  --cc-sage-soft:  #F7F1E8;   /* alternate section band → Warm Ivory */
  --cc-blush-soft: #FBEBEB;   /* soft band → Petal Blush on warm white */
  --cc-sage-deep:  #3D1D1D;   /* dark band → Deep Cocoa */
  --cc-footer:     #3D1D1D;   /* footer / dark ground → Deep Cocoa */
}
/* Full-bleed section tint utilities */
.cc-bg-sage  { background: var(--cc-sage-soft); }
.cc-bg-blush { background: var(--cc-blush-soft); }
.cc-bg-sand  { background: var(--cba-beige); }

/* Homepage: Charm List band → soft blush (was flat beige) */
.cc-charm { background: transparent; }

/* Homepage newsletter → a deep sage band (a true color moment) */
.cc-news-inner { background: var(--cba-text); border-color: var(--cba-text); color: #F7F1E8; }
.cc-news-inner .cc-eyebrow { color: rgba(247,241,232,0.85); }
.cc-news-inner h2 { color: #FFFCF8; }
.cc-news-inner p  { color: rgba(247,241,232,0.92); }
.cc-news-inner input { border-color: transparent; }
.cc-news-inner .cc-btn-solid { background: var(--cc-petal-blush); color: var(--cba-text); }
.cc-news-inner .cc-btn-solid:hover { background:#fff; color: var(--cba-text); }

/* Deep, grounding footer on every page (replaces the pale one) */
.cba-site-footer { background: var(--cc-footer); border-top: 0; margin-top: 0; padding: 44px 24px; }
.cba-site-footer p { color: #B89A9A; }

/* Soft botanical accent line above section titles for warmth */
.cc-shead .cc-eyebrow::before { content: "\002741"; display:block; color: var(--cba-accent); font-size: 18px; letter-spacing:0; margin-bottom: 6px; }

/* ============================================================
   BRAND v0.9 — restrained texture. Clean Warm White ground with
   Warm Ivory alternate sections; no all-over floral wallpaper.
   (Body background comes from style.css → --cba-cream / Warm White.)
   ============================================================ */

/* ============================================================
   EDITORIAL PAGE RHYTHM — each page opens on its own tone
   (sage / blush / deep-brown), carried from the launch blueprint.
   ============================================================ */
/* Dark "ink" band — deep warm brown ground with beige type */
.cc-bg-ink { background: var(--cc-footer); }
.cc-bg-ink p, .cc-bg-ink li { color: #F0E6DC; }
.cc-bg-ink h1, .cc-bg-ink h2, .cc-bg-ink h3 { color: #FFFCF8; }
.cc-bg-ink .cc-eyebrow { color: var(--cba-accent); }

/* Guides archive: full-width soft-blush header band */
.cba-archive-header {
  width: 100vw; margin-left: calc(-50vw + 50%);
  background: var(--cc-blush-soft);
  padding: 62px 24px 42px; margin-bottom: 44px;
}

/* Footer connect row (social links on the dark footer) */
.cba-footer-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
.cc-footer-connect { display:flex; gap:22px; justify-content:center; flex-wrap:wrap; margin-bottom:16px; }
.cc-footer-connect a { font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:#F0E6DC; text-decoration:none; font-weight:700; }
.cc-footer-connect a:hover { color: var(--cc-petal-blush); }

/* ============================================================
   LIGHT HEADER (Brand v0.9) — warm-white bar, Linen underline,
   Deep Cocoa nav in title case, Rosewood hover. Official wordmark.
   ============================================================ */
.cba-site-header {
  background: color-mix(in srgb, var(--cba-cream) 94%, #ffffff);
  background-image: none;
  border-bottom: 1px solid var(--cba-border);
  box-shadow: none;
}
.cba-site-nav .cba-nav-list li a {
  color: var(--cba-text);
  border: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 4px;
}
.cba-site-nav .cba-nav-list li a:hover,
.cba-site-nav .cba-nav-list li.current-menu-item a,
.cba-site-nav .cba-nav-list li.current-menu-parent a,
.cba-site-nav .cba-nav-list li.current_page_item a {
  background: transparent;
  color: var(--cba-taupe);
  border-color: transparent;
}

/* ============================================================
   BRAND v0.9 ALIGNMENT — footer wordmark, Kelly's Notes,
   per-guide accent theming (guide §8/§9, tokens.css).
   ============================================================ */
.cc-footer-wordmark { display:block; height:34px; width:auto; margin:0 auto 10px; opacity:.95; }
.cc-footer-phrase { font-family: var(--cba-font-heading); font-size:14px; letter-spacing:.12em; text-transform:uppercase; color:#E7D8CB; margin:0 0 18px; }

/* Kelly's Notes — Warm Ivory card, Dusty Rose left rule (guide §8) */
.cba-curated-note {
  max-width: 680px; margin: 0 auto 48px; text-align: left;
  border: 1px solid var(--cba-border);
  border-left: 0.35rem solid var(--cba-accent);
  border-radius: 12px;
  background: var(--cba-beige);
  padding: 26px 30px;
}
.cba-curated-eyebrow { color: var(--cba-taupe); letter-spacing: 0.13em; font-style: normal; font-family: var(--cba-font-body); font-weight: 700; }
.cba-curated-note p { text-align: left; font-style: normal; font-family: var(--cba-font-body); font-size: 16px; line-height: 1.7; color: var(--cba-text); }

/* Per-guide concept accents — set at the guide wrapper level only (guide §9) */
.cc-guide { --cc-guide-accent: var(--cba-accent); --cc-guide-accent-soft: var(--cc-petal-blush); --cc-guide-ink: var(--cba-text); }
.cc-guide--coastal        { --cc-guide-accent:#94B5C7; --cc-guide-accent-soft:#E8F0F3; --cc-guide-ink:#294F63; }
.cc-guide--cottage-floral { --cc-guide-accent:#B89A83; --cc-guide-accent-soft:#F5E9E2; --cc-guide-ink:#5F443B; }
.cc-guide--holiday        { --cc-guide-accent:#A2875C; --cc-guide-accent-soft:#F2EBDD; --cc-guide-ink:#405342; }
.cc-guide .cba-curated-note { border-left-color: var(--cc-guide-accent); }
.cc-guide .cba-category-tag { color: var(--cc-guide-ink); }
