/*
Theme Name: Cooper Barrington
Theme URI: https://cooperbarrington.smoothbyteit.dev
Description: Bespoke auction house theme for Cooper Barrington LLP — Auctioneers & Valuers, North Wales.
Version: 1.0.0
Author: SmoothByte IT
Author URI: https://smoothbyteit.dev
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cooper-barrington
Tags: auction, antiques, custom-header, custom-menu, featured-images
*/

:root {
    --cb-navy: #1B2A4A;
    --cb-navy-dark: #0F1A30;
    --cb-gold: #C4993B;
    --cb-gold-light: #D4AD5A;
    --cb-gold-dark: #A07C2E;
    --cb-parchment: #FAF7F2;
    --cb-parchment-dark: #F0EBE1;
    --cb-charcoal: #2D2D2D;
    --cb-charcoal-light: #4A4A4A;
    --cb-white: #FFFFFF;
    --cb-border: #E2DDD5;
    --cb-success: #2E7D32;
    --cb-error: #C62828;

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 80px;
    --trust-bar-height: 40px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--cb-charcoal);
    background-color: var(--cb-parchment);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--cb-navy);
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--cb-gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--cb-gold); }

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

ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ===== CONTAINER ===== */
.cb-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cb-container--narrow {
    max-width: var(--container-narrow);
}

/* ===== BUTTONS ===== */
.cb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.cb-btn--primary {
    background-color: var(--cb-gold);
    color: var(--cb-white);
    border-color: var(--cb-gold);
}
.cb-btn--primary:hover {
    background-color: var(--cb-gold-dark);
    border-color: var(--cb-gold-dark);
    color: var(--cb-white);
}

.cb-btn--secondary {
    background-color: transparent;
    color: var(--cb-white);
    border-color: var(--cb-white);
}
.cb-btn--secondary:hover {
    background-color: var(--cb-white);
    color: var(--cb-navy);
}

.cb-btn--outline {
    background-color: transparent;
    color: var(--cb-navy);
    border-color: var(--cb-navy);
}
.cb-btn--outline:hover {
    background-color: var(--cb-navy);
    color: var(--cb-white);
}

.cb-btn--gold-outline {
    background-color: transparent;
    color: var(--cb-gold);
    border-color: var(--cb-gold);
}
.cb-btn--gold-outline:hover {
    background-color: var(--cb-gold);
    color: var(--cb-white);
}

.cb-btn--sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* ===== TRUST BAR ===== */
.cb-trust-bar {
    background-color: var(--cb-navy-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    text-align: center;
}
.cb-trust-bar a {
    color: var(--cb-gold-light);
}
.cb-trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cb-trust-bar__bbc {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== HEADER ===== */
.cb-header {
    background-color: var(--cb-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.cb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1.5rem;
}

.cb-header__logo {
    flex-shrink: 0;
}
.cb-header__logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.cb-header__logo-text {
    font-family: var(--font-heading);
    color: var(--cb-white);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
}
.cb-header__logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cb-gold-light);
    margin-top: 2px;
}

/* Main Nav */
.cb-nav {
    display: none;
}

.cb-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.cb-nav > ul > li {
    position: relative;
    margin: 0;
}

.cb-nav > ul > li > a {
    display: block;
    padding: 0.5rem 0.9rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    white-space: nowrap;
}
.cb-nav > ul > li > a:hover,
.cb-nav > ul > li.current-menu-item > a {
    color: var(--cb-gold-light);
}

/* Dropdowns */
.cb-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cb-white);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 3px solid var(--cb-gold);
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    border-radius: 0 0 4px 4px;
}

.cb-nav > ul > li:hover > .sub-menu {
    display: block;
}

.cb-nav .sub-menu li {
    margin: 0;
}

.cb-nav .sub-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--cb-charcoal);
    font-size: 0.85rem;
    transition: all 0.2s;
}
.cb-nav .sub-menu a:hover {
    background-color: var(--cb-parchment);
    color: var(--cb-gold-dark);
    padding-left: 1.5rem;
}

/* Header CTAs */
.cb-header__ctas {
    display: none;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cb-header__phone {
    color: var(--cb-gold-light);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}
.cb-header__phone:hover { color: var(--cb-gold); }

/* Mobile Toggle */
.cb-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.cb-mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cb-white);
    transition: all 0.3s;
    border-radius: 2px;
}
.cb-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.cb-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.cb-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.cb-mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cb-navy);
    overflow-y: auto;
    padding: 1.5rem;
    z-index: 999;
}
.cb-mobile-nav.active { display: block; }

.cb-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cb-mobile-nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0;
}
.cb-mobile-nav a {
    display: block;
    padding: 0.85rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}
.cb-mobile-nav a:hover { color: var(--cb-gold-light); }

.cb-mobile-nav .sub-menu {
    padding-left: 1rem;
    margin: 0;
    list-style: none;
}
.cb-mobile-nav .sub-menu a {
    font-size: 0.9rem;
    padding: 0.6rem 0;
    color: rgba(255,255,255,0.7);
}

.cb-mobile-nav__ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===== HERO SECTION ===== */
.cb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-dark) 100%);
    color: var(--cb-white);
    padding: 5rem 0 4.5rem;
    overflow: hidden;
}
.cb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" stroke="rgba(196,153,59,0.06)" stroke-width="1" width="60" height="60" rx="2"/></svg>') repeat;
    pointer-events: none;
}
.cb-hero__inner {
    position: relative;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.cb-hero__badge {
    display: inline-block;
    background: rgba(196,153,59,0.15);
    border: 1px solid rgba(196,153,59,0.3);
    color: var(--cb-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.cb-hero h1 {
    color: var(--cb-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}
.cb-hero h1 .cb-gold { color: var(--cb-gold-light); }
.cb-hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cb-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===== SECTION STYLES ===== */
.cb-section {
    padding: 5rem 0;
}
.cb-section--alt {
    background-color: var(--cb-white);
}
.cb-section--navy {
    background-color: var(--cb-navy);
    color: var(--cb-white);
}
.cb-section--navy h2,
.cb-section--navy h3 {
    color: var(--cb-white);
}
.cb-section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.cb-section__header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--cb-charcoal-light);
    font-size: 1.05rem;
}
.cb-section__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cb-gold);
    margin-bottom: 0.75rem;
}
.cb-section--navy .cb-section__label {
    color: var(--cb-gold-light);
}
.cb-section--navy .cb-section__header p {
    color: rgba(255,255,255,0.75);
}

/* ===== COUNTDOWN ===== */
.cb-countdown {
    background: linear-gradient(135deg, var(--cb-navy) 0%, #243553 100%);
    color: var(--cb-white);
    padding: 3.5rem 0;
    text-align: center;
}
.cb-countdown__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cb-gold-light);
    margin-bottom: 0.75rem;
}
.cb-countdown__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--cb-white);
    margin-bottom: 0.5rem;
}
.cb-countdown__date {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}
.cb-countdown__timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.cb-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cb-countdown__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cb-gold-light);
    line-height: 1;
    min-width: 70px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196,153,59,0.2);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
}
.cb-countdown__label-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}
.cb-countdown__viewing {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}
.cb-countdown__ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SERVICES GRID ===== */
.cb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cb-service-card {
    background: var(--cb-white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--cb-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cb-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cb-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.cb-service-card:hover {
    box-shadow: 0 8px 32px rgba(27,42,74,0.1);
    transform: translateY(-4px);
}
.cb-service-card:hover::before { transform: scaleX(1); }

.cb-service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--cb-gold);
}
.cb-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.cb-service-card p {
    font-size: 0.95rem;
    color: var(--cb-charcoal-light);
    margin-bottom: 1.25rem;
}
.cb-service-card__link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cb-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cb-service-card__link:hover { color: var(--cb-gold); }

/* ===== SPECIALISMS ===== */
.cb-specialisms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.cb-specialism-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--cb-navy);
    font-weight: 500;
    transition: all 0.3s;
}
.cb-specialism-tag:hover {
    border-color: var(--cb-gold);
    color: var(--cb-gold-dark);
    background: rgba(196,153,59,0.05);
}

/* ===== TV SECTION ===== */
.cb-tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.cb-tv-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
}
.cb-tv-card__badge {
    display: inline-block;
    background: rgba(196,153,59,0.15);
    color: var(--cb-gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.cb-tv-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.cb-tv-card__episode {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}
.cb-tv-card__people {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ===== COVERAGE MAP ===== */
.cb-coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.cb-coverage-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(196,153,59,0.08);
    border: 1px solid var(--cb-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--cb-charcoal);
    font-weight: 500;
}

/* ===== EMAIL SIGNUP ===== */
.cb-signup {
    background: var(--cb-navy);
    color: var(--cb-white);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cb-signup h2 { color: var(--cb-white); margin-bottom: 1rem; }
.cb-signup p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cb-signup__form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}
.cb-signup__form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--cb-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.cb-signup__form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.cb-footer {
    background-color: var(--cb-navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}
.cb-footer a {
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}
.cb-footer a:hover { color: var(--cb-gold-light); }

.cb-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.cb-footer__about h3 {
    color: var(--cb-white);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}
.cb-footer__about-sub {
    color: var(--cb-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.cb-footer__about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.cb-footer__col h4 {
    color: var(--cb-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.cb-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cb-footer__col li {
    margin-bottom: 0.6rem;
}
.cb-footer__col li a {
    font-size: 0.9rem;
}

.cb-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
.cb-footer__contact-icon {
    color: var(--cb-gold-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.cb-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.cb-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.cb-footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}
.cb-footer__legal a:hover { color: var(--cb-gold-light); }

/* ===== PAGE CONTENT ===== */
.cb-page-hero {
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-dark) 100%);
    color: var(--cb-white);
    padding: 4rem 0 3.5rem;
    text-align: center;
}
.cb-page-hero h1 { color: var(--cb-white); margin-bottom: 0.75rem; }
.cb-page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

.cb-content {
    padding: 4rem 0;
}
.cb-content h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cb-border);
}
.cb-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* FAQ / AEO Sections */
.cb-faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cb-border);
}
.cb-faq-item:last-child { border-bottom: none; }
.cb-faq-item h2 {
    font-size: 1.4rem;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.cb-faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Fee Tables */
.cb-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}
.cb-fee-table th,
.cb-fee-table td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--cb-border);
}
.cb-fee-table th {
    background: var(--cb-navy);
    color: var(--cb-white);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cb-fee-table tr:nth-child(even) td {
    background: var(--cb-parchment);
}

/* Steps */
.cb-steps {
    counter-reset: step;
    margin: 2rem 0;
}
.cb-step {
    counter-increment: step;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--cb-white);
    border-radius: 8px;
    border: 1px solid var(--cb-border);
}
.cb-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--cb-navy);
    color: var(--cb-gold-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
}
.cb-step__content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}
.cb-step__content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--cb-charcoal-light);
}

/* CTA Block */
.cb-cta-block {
    background: linear-gradient(135deg, var(--cb-navy) 0%, #243553 100%);
    color: var(--cb-white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}
.cb-cta-block h2 { color: var(--cb-white); margin-bottom: 1rem; }
.cb-cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .cb-hero { padding: 6rem 0 5.5rem; }
}

@media (min-width: 1024px) {
    .cb-nav { display: block; }
    .cb-header__ctas { display: flex; }
    .cb-mobile-toggle { display: none; }

    .cb-signup__form { flex-direction: row; }
}

@media (max-width: 1023px) {
    .cb-header__inner {
        height: 64px;
    }
    :root { --header-height: 64px; }
}

@media (max-width: 767px) {
    .cb-hero { padding: 3.5rem 0 3rem; }
    .cb-section { padding: 3.5rem 0; }

    .cb-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cb-countdown__timer { gap: 0.75rem; }
    .cb-countdown__number {
        min-width: 55px;
        font-size: 1.6rem;
    }

    .cb-signup { padding: 2.5rem 1.5rem; }
    .cb-signup__form { flex-direction: column; }
}

/* ===== SERVICE PAGE LAYOUT ===== */
.cb-service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.cb-service-layout__content { min-width: 0; }
.cb-service-layout__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}
.cb-sidebar-cta {
    background: var(--cb-white);
    border: 1px solid var(--cb-border);
    border-radius: 8px;
    padding: 1.5rem;
}
.cb-sidebar-cta h3 {
    font-family: var(--cb-font-heading);
    color: var(--cb-navy);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.cb-sidebar-cta p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.cb-sidebar-cta__phone {
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-bottom: 0.25rem !important;
}
.cb-sidebar-cta__phone a {
    color: var(--cb-navy);
    text-decoration: none;
}
.cb-sidebar-cta__phone a:hover { color: var(--cb-gold); }
.cb-sidebar-cta--alt {
    background: var(--cb-parchment);
    border-color: var(--cb-gold-light);
}

@media (max-width: 960px) {
    .cb-service-layout {
        grid-template-columns: 1fr;
    }
    .cb-service-layout__sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cb-sidebar-cta { flex: 1; min-width: 250px; }
}

/* AuctionForge overrides are in assets/css/auctionforge-overrides.css */
