/* ==========================================================================
   CONTENT PAGE - shared styles for the crawlable equipment, buying-guide and
   facility-setup pages introduced by the keyword sheet.
   See SEO/keyword-map.md for the keyword -> page mapping.
   ========================================================================== */

:root {
    --cp-cream: #F7F3EE;
    --cp-ivory: #FAF8F5;
    --cp-white: #FFFEFB;
    --cp-gold: #B8986A;
    --cp-gold-light: #D4B896;
    --cp-gold-dark: #8A6E45;
    --cp-charcoal: #1A1714;
    --cp-dark: #2C2724;
    --cp-mid: #6B6158;
    --cp-light: #A09589;
    --cp-border: #E4DDD5;
}

.content-page {
    background: var(--cp-ivory);
    color: var(--cp-charcoal);
    font-family: 'DM Sans', 'Jost', sans-serif;
    padding-top: 80px; /* clears the fixed navbar */
    overflow-x: hidden;
}

.cp-wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* -- BREADCRUMB -- */
.cp-breadcrumb {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--cp-light); padding: 28px 0 0;
}
.cp-breadcrumb a { color: var(--cp-gold-dark); text-decoration: none; }
.cp-breadcrumb a:hover { text-decoration: underline; }
.cp-breadcrumb span { margin: 0 8px; }

/* -- HERO -- */
.cp-hero { padding: 48px 0 64px; border-bottom: 1px solid var(--cp-border); }
.cp-eyebrow {
    font-family: 'Tenor Sans', 'Jost', sans-serif; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--cp-gold);
    display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
}
.cp-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--cp-gold); }
.cp-hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(36px, 4.6vw, 62px); line-height: 1.06;
    color: var(--cp-charcoal); margin: 0 0 18px; max-width: 900px;
}
.cp-hero h1 em { font-style: italic; color: var(--cp-gold); }
.cp-lede {
    font-size: 16px; line-height: 1.85; color: var(--cp-mid);
    max-width: 760px; margin: 0 0 14px;
}
.cp-lede strong { color: var(--cp-dark); font-weight: 500; }

/* -- ACTIONS -- */
.cp-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cp-btn {
    display: inline-block; padding: 15px 32px; font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
    border: 1px solid var(--cp-gold); transition: all .3s ease; cursor: pointer;
    font-family: 'Jost', sans-serif;
}
.cp-btn-primary { background: var(--cp-charcoal); color: var(--cp-cream); border-color: var(--cp-charcoal); }
.cp-btn-primary:hover { background: var(--cp-gold-dark); border-color: var(--cp-gold-dark); }
.cp-btn-ghost { background: transparent; color: var(--cp-gold-dark); }
.cp-btn-ghost:hover { background: var(--cp-gold); color: var(--cp-white); }

/* -- SECTIONS -- */
.cp-section { padding: 76px 0; border-bottom: 1px solid var(--cp-border); }
.cp-section-tag {
    font-family: 'Tenor Sans', 'Jost', sans-serif; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--cp-gold); margin-bottom: 18px;
}
.cp-section h2 {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: clamp(28px, 3.2vw, 44px); line-height: 1.15;
    color: var(--cp-charcoal); margin: 0 0 26px;
}
.cp-section h2 em { font-style: italic; color: var(--cp-gold); }
.cp-section h3 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: 24px; color: var(--cp-dark); margin: 38px 0 12px;
}
.cp-section p { font-size: 15px; line-height: 1.9; color: var(--cp-mid); max-width: 820px; margin: 0 0 18px; }
.cp-section a { color: var(--cp-gold-dark); }

.cp-list { list-style: none; padding: 0; margin: 0 0 24px; max-width: 820px; }
.cp-list li {
    position: relative; padding: 0 0 0 26px; margin-bottom: 12px;
    font-size: 15px; line-height: 1.8; color: var(--cp-mid);
}
.cp-list li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 12px; height: 1px; background: var(--cp-gold);
}
.cp-list li strong { color: var(--cp-dark); font-weight: 500; }

/* -- MODEL / FEATURE CARDS -- */
.cp-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px; background: var(--cp-border); border: 1px solid var(--cp-border);
}
.cp-card { background: var(--cp-white); padding: 40px 34px; }
.cp-card-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: .2em; color: var(--cp-gold); margin-bottom: 18px; }
.cp-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--cp-charcoal); margin: 0 0 12px; }
.cp-card p { font-size: 14px; line-height: 1.8; color: var(--cp-mid); margin: 0 0 16px; max-width: none; }
.cp-card-link { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cp-gold-dark); text-decoration: none; border-bottom: 1px solid var(--cp-gold); padding-bottom: 3px; }
.cp-card-link:hover { color: var(--cp-charcoal); border-color: var(--cp-charcoal); }

/* -- SPEC / COMPARISON TABLE -- */
.cp-table-scroll { overflow-x: auto; margin: 0 0 26px; }
.cp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 620px; background: var(--cp-white); }
.cp-table caption { text-align: left; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--cp-light); padding-bottom: 12px; }
.cp-table th, .cp-table td { padding: 15px 18px; border-bottom: 1px solid var(--cp-border); text-align: left; vertical-align: top; }
.cp-table th { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cp-gold-dark); background: var(--cp-cream); font-weight: 500; }
.cp-table td { color: var(--cp-mid); line-height: 1.7; }
.cp-table td:first-child { color: var(--cp-dark); font-weight: 500; }

/* -- FAQ -- */
.cp-faq { max-width: 860px; }
.cp-faq-item { border-bottom: 1px solid var(--cp-border); padding: 26px 0; }
.cp-faq-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400; color: var(--cp-charcoal); margin: 0 0 10px; }
.cp-faq-item p { margin: 0; }

/* -- CTA -- */
.cp-cta { background: var(--cp-charcoal); color: var(--cp-cream); padding: 84px 0; }
.cp-cta h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(30px, 3.6vw, 48px); margin: 0 0 20px; color: var(--cp-cream); }
.cp-cta h2 em { font-style: italic; color: var(--cp-gold-light); }
.cp-cta p { color: rgba(247, 243, 238, .72); font-size: 15px; line-height: 1.9; max-width: 700px; margin: 0 0 32px; }
.cp-cta .cp-btn-primary { background: var(--cp-gold); border-color: var(--cp-gold); color: var(--cp-charcoal); }
.cp-cta .cp-btn-primary:hover { background: var(--cp-gold-light); border-color: var(--cp-gold-light); }
.cp-cta .cp-btn-ghost { color: var(--cp-gold-light); border-color: var(--cp-gold-light); }
.cp-cta .cp-btn-ghost:hover { background: var(--cp-gold-light); color: var(--cp-charcoal); }

/* -- CRAWLABLE SITE DIRECTORY (static, rendered on every page) -- */
.seo-directory { background: var(--cp-cream); border-top: 1px solid var(--cp-border); padding: 66px 0 74px; }
.seo-directory h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 32px; color: var(--cp-charcoal); margin: 0 0 34px; }
.seo-directory-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 40px; }
.seo-directory h3 { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cp-gold-dark); margin: 0 0 16px; font-weight: 500; }
.seo-directory ul { list-style: none; margin: 0; padding: 0; }
.seo-directory li { margin-bottom: 10px; }
.seo-directory a { font-size: 14px; color: var(--cp-mid); text-decoration: none; line-height: 1.6; }
.seo-directory a:hover { color: var(--cp-gold-dark); text-decoration: underline; }

@media (max-width: 768px) {
    .cp-wrap { padding: 0 22px; }
    .cp-section { padding: 54px 0; }
    .cp-card { padding: 30px 24px; }
    .cp-cta { padding: 60px 0; }
    .cp-actions .cp-btn { width: 100%; text-align: center; }
}
