/* ==========================================================================
   Carley Connection — Design Tokens & Base Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Brand Palette */
    --color-primary-dark: #203f43;
    --color-primary: #57a5b1;
    --color-sky: #CAE6EF;
    --color-accent: #facb58;
    --color-accent-hover: #e6b647;
    --color-bg-light: #fffcfb;
    --color-bg-white: #ffffff;
    --color-bg-cream: #fffcfb;
    --color-text: #1A1A1A;
    --color-text-light: #5A5A5A;
    --color-text-muted: #8A8A8A;
    --color-border: #E0DDD5;
    --color-border-light: #EDEBE4;
    --color-error: #C0392B;
    --color-success: #27AE60;
    --color-live: #C0392B;

    /* Typography */
    --font-heading: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', monospace;

    /* Type Scale — fluid, clamped */
    --text-xs: clamp(0.694rem, 0.05vw + 0.68rem, 0.75rem);
    --text-sm: clamp(0.8rem, 0.1vw + 0.78rem, 0.875rem);
    --text-base: clamp(0.875rem, 0.15vw + 0.85rem, 1rem);
    --text-md: clamp(1rem, 0.2vw + 0.95rem, 1.125rem);
    --text-lg: clamp(1.125rem, 0.3vw + 1.05rem, 1.25rem);
    --text-xl: clamp(1.25rem, 0.5vw + 1.1rem, 1.5rem);
    --text-2xl: clamp(1.5rem, 1vw + 1.2rem, 2rem);
    --text-3xl: clamp(1.875rem, 1.5vw + 1.4rem, 2.5rem);
    --text-4xl: clamp(2.25rem, 2vw + 1.6rem, 3.25rem);
    --text-5xl: clamp(2.75rem, 3vw + 1.8rem, 4.5rem);
    --text-6xl: clamp(3.25rem, 4vw + 2rem, 5.5rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --section-spacing: clamp(4rem, 8vw, 8rem);
    --container-width: 1280px;
    --container-padding: clamp(1.25rem, 4vw, 3rem);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 26, 0.15);
    --shadow-card-hover: 0 12px 40px rgba(26, 26, 26, 0.14);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Z-index scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* ---------- WordPress / WooCommerce Overrides ---------- */
/* Remove WP block theme constraints that cause "frame" look */
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none;
}

body .wp-site-blocks {
    padding: 0;
}

.wp-block-group,
.wp-block-group__inner-container {
    max-width: none;
    padding: 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
h6 { font-size: var(--text-xl); }

p {
    margin-bottom: 1em;
    max-width: 65ch;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

/* ---------- Layout ---------- */
.cc-container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.cc-container--wide {
    max-width: 1440px;
}

.cc-container--narrow {
    max-width: 960px;
}

.cc-section {
    padding-block: var(--section-spacing);
}

.cc-section--no-top {
    padding-top: 0;
}

.cc-section--no-bottom {
    padding-bottom: 0;
}

.cc-section--bg-light {
    background-color: var(--color-bg-light);
}

.cc-section--bg-cream {
    background-color: var(--color-bg-cream);
}

.cc-section--bg-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-light);
}

.cc-section--bg-dark h1,
.cc-section--bg-dark h2,
.cc-section--bg-dark h3,
.cc-section--bg-dark h4,
.cc-section--bg-dark h5,
.cc-section--bg-dark h6 {
    color: var(--color-bg-light);
}

.cc-section--bg-dark a {
    color: var(--color-accent);
}

.cc-section--bg-dark a:hover {
    color: var(--color-accent-hover);
}

/* Section header pattern — used across homepage sections */
.cc-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-3xl);
    gap: var(--space-xl);
}

.cc-section-header__title {
    font-size: var(--text-5xl);
}

.cc-section-header__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-md);
    color: var(--color-text-light);
    font-weight: 400;
    line-height: 1.6;
    max-width: 45ch;
    margin-top: var(--space-lg);
}

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

figure {
    margin: 0;
}

/* ---------- Lists ---------- */
ul, ol {
    list-style: none;
}

/* ---------- Forms base ---------- */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background-color: var(--color-accent);
    color: var(--color-text);
}

/* ---------- Page Entrance Animation ---------- */
@keyframes cc-page-enter {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body {
    animation: cc-page-enter 0.6s ease;
}

/* ---------- Smooth Scroll Progress Bar ---------- */
.cc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent));
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

.admin-bar .cc-scroll-progress {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .cc-scroll-progress {
        top: 46px;
    }
}

/* ---------- Scrollbar (subtle) ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* ---------- Utility Classes ---------- */
/* ---------- Reusable Page Banner (admin-customizable) ---------- */
.cc-page-banner {
    padding: clamp(5rem, 10vw, 10rem) 0;
    position: relative;
    overflow: hidden;
}

.cc-page-banner__content {
    position: relative;
    z-index: 1;
}

/* Dark variant (teal) */
.cc-page-banner--dark {
    background-color: #203f43;
    color: #fffcfb;
}

.cc-page-banner--dark .cc-page-banner__eyebrow {
    color: var(--color-accent);
}

.cc-page-banner--dark .cc-page-banner__title {
    color: #fffcfb;
}

.cc-page-banner--dark .cc-page-banner__desc {
    color: rgba(250, 249, 247, 0.65);
}

/* Cyan banner — the manual's Teal/Blue-Green swatch (shop archive). */
.cc-page-banner--cyan {
    background-color: var(--color-primary, #57A5B1);
    color: #FFFCFB;
}
.cc-page-banner--cyan .cc-page-banner__title {
    color: #FFFCFB;
}
.cc-page-banner--cyan .cc-page-banner__desc {
    color: rgba(255, 252, 251, 0.88);
}
.cc-page-banner--cyan .cc-page-banner__eyebrow {
    color: var(--color-accent, #FACB58);
}

/* Light variant (sage) */
.cc-page-banner--light {
    background-color: var(--color-sky, #CAE6EF);
    color: var(--color-text);
}

.cc-page-banner--light .cc-page-banner__eyebrow {
    color: var(--color-primary, #57a5b1);
}

.cc-page-banner--light .cc-page-banner__title {
    color: #203f43;
}

.cc-page-banner--light .cc-page-banner__desc {
    color: #3f4848;
}

/* Image variant (bg image with overlay) */
.cc-page-banner--image {
    background-size: cover;
    background-position: center;
    color: #fffcfb;
}

.cc-page-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 63, 67, 0.65);
}

.cc-page-banner--image .cc-page-banner__eyebrow {
    color: var(--color-accent);
}

.cc-page-banner--image .cc-page-banner__title {
    color: #fffcfb;
}

.cc-page-banner--image .cc-page-banner__desc {
    color: rgba(250, 249, 247, 0.75);
}

/* Shared banner typography */
.cc-page-banner__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: var(--space-lg);
}

.cc-page-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 80px);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    line-height: 1;
}

.cc-page-banner__desc {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    max-width: 55ch;
    margin-inline: auto;
    line-height: 1.5;
}

/* ---------- Auctions & About Page Styles ---------- */
.cc-auctions-hero,
.cc-about-hero {
    background-color: #203f43;
    padding: clamp(5rem, 10vw, 10rem) 0;
    text-align: center;
    color: #fffcfb;
}

.cc-auctions-hero__eyebrow,
.cc-about-hero__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5em;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-lg);
}

.cc-auctions-hero__title,
.cc-about-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 80px);
    font-weight: 400;
    color: #fffcfb;
    margin-bottom: var(--space-xl);
}

.cc-auctions-hero__desc,
.cc-about-hero__desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(250, 249, 247, 0.65);
    max-width: 60ch;
    margin-inline: auto;
    line-height: 1.7;
}

.cc-auctions-live__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3xl);
}

.cc-auctions-live__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-text);
}

.cc-auctions-live__subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.cc-auctions-live__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.cc-auction-card__lot {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent);
    background: rgba(32, 63, 67, 0.85);
    padding: 4px 10px;
}

.cc-auction-card__price-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
}

.cc-auction-card__bid-btn {
    margin-top: var(--space-md);
}

/* How Auctions Work */
.cc-auctions-how__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-4xl);
}

.cc-auctions-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
}

.cc-auctions-how__step {
    text-align: center;
}

.cc-auctions-how__num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-md);
}

.cc-auctions-how__step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.cc-auctions-how__step p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* About Page */
.cc-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.cc-about-story__chapter {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--color-primary, #57a5b1);
    display: block;
    margin-bottom: var(--space-md);
}

.cc-about-story__heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #203f43;
    margin-bottom: var(--space-2xl);
}

.cc-about-story__content p {
    font-size: 16px;
    color: #3f4848;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.cc-about-story__image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cc-about-story__image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* "Meet Carley" variant — a single stacked column: the wide cinematic photo
   sits full-width on top as a cover band, the bio reads in a centred column
   below. Suits landscape/film-still portraits (2.4:1) without cropping. */
.cc-about-story--meet .cc-about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}
.cc-about-story--meet .cc-about-story__media {
    order: -1;                 /* photo above the text */
    transition-delay: 0ms !important;
}
.cc-about-story--meet .cc-about-story__image-wrap img {
    aspect-ratio: 21 / 9;      /* cinematic band; ~matches the still, minimal crop */
    object-position: center;
}
.cc-about-story--meet .cc-about-story__content {
    max-width: 760px;
    margin: 0 auto;
}

.cc-about-values__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #fffcfb;
    margin-bottom: var(--space-4xl);
}

.cc-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
}

.cc-about-values__num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-style: italic;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-md);
}

.cc-about-values__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #fffcfb;
    margin-bottom: var(--space-md);
}

.cc-about-values__item p {
    font-size: 14px;
    color: rgba(250, 249, 247, 0.6);
    line-height: 1.6;
}

.cc-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
}

.cc-about-stats__number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    font-style: italic;
    color: #203f43;
    display: block;
    margin-bottom: var(--space-sm);
}

.cc-about-stats__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.cc-about-cta__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.cc-about-cta__desc {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 55ch;
    margin-inline: auto;
}

.cc-about-cta__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.cc-about-cta {
    background-color: var(--color-sky, #CAE6EF);
}

/* Optional editable background photo on the closing CTA (set from
   Pages → About → "Closing — Background Image"). Dark overlay keeps
   the text readable; text flips to light. */
.cc-about-cta--has-bg {
    position: relative;
    background-size: cover;
    background-position: center;
}
.cc-about-cta--has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 51, 54, 0.55) 0%, rgba(26, 51, 54, 0.72) 100%);
}
.cc-about-cta--has-bg .cc-about-cta__inner {
    position: relative;
    z-index: 1;
}
.cc-about-cta--has-bg .cc-about-cta__title,
.cc-about-cta--has-bg .cc-about-cta__desc {
    color: #fffcfb;
}

@media (max-width: 768px) {
    .cc-auctions-live__grid,
    .cc-auctions-how__steps,
    .cc-about-values__grid,
    .cc-about-stats__grid {
        grid-template-columns: 1fr;
    }
    .cc-about-story__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Inquiries / Contact Page ---------- */
.cc-inquiries__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.cc-inquiries__form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
}

.cc-inquiries__field {
    margin-bottom: var(--space-lg);
}

.cc-inquiries__label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.cc-inquiries__input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.cc-inquiries__input:focus {
    border-bottom-color: #203f43;
    outline: none;
}

.cc-inquiries__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231A1A1A' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.cc-inquiries__textarea {
    resize: vertical;
    min-height: 100px;
}

.cc-inquiries__submit {
    margin-top: var(--space-md);
}

.cc-inquiries__msg {
    font-size: 13px;
    margin-top: var(--space-sm);
    min-height: 20px;
}

.cc-inquiries__image {
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.cc-inquiries__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.cc-inquiries__offices-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.cc-inquiries__office {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
}

.cc-inquiries__office:last-child {
    border-bottom: none;
}

.cc-inquiries__office-city {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #203f43;
    display: block;
    margin-bottom: 4px;
}

.cc-inquiries__office-address {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 8px;
}

.cc-inquiries__office-link {
    display: block;
    font-size: 13px;
    color: #203f43;
    text-decoration: none;
    margin-bottom: 2px;
}

.cc-inquiries__office-link:hover {
    color: var(--color-accent);
}

/* ---------- Legal / Info Pages ---------- */
.cc-legal__content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.cc-legal__content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
}

.cc-legal__content h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.cc-legal__content p {
    margin-bottom: var(--space-lg);
}

.cc-legal__content ul, .cc-legal__content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.cc-legal__content li {
    margin-bottom: var(--space-sm);
    list-style-type: disc;
}

@media (max-width: 768px) {
    .cc-inquiries__grid {
        grid-template-columns: 1fr;
    }
}

.cc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cc-text-center { text-align: center; }
.cc-text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: var(--text-xs);
    font-weight: 600;
}

/* Animate-on-scroll base state */
.cc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.cc-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.cc-stagger > .cc-animate:nth-child(1) { transition-delay: 0s; }
.cc-stagger > .cc-animate:nth-child(2) { transition-delay: 0.1s; }
.cc-stagger > .cc-animate:nth-child(3) { transition-delay: 0.2s; }
.cc-stagger > .cc-animate:nth-child(4) { transition-delay: 0.3s; }
.cc-stagger > .cc-animate:nth-child(5) { transition-delay: 0.4s; }
.cc-stagger > .cc-animate:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cc-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: clamp(3rem, 6vw, 5rem);
    }
}
