/* ── Design tokens ────────────────────────────────────────────────────────── */

body.page-home {
    --cc-bg: #faf9f7;
    --cc-dark: #111110;
    --cc-muted: #65625e;
    --cc-border: #e5e2dc;
    --cc-accent: #1a5c3a;
    --cc-teal: #b8d8d6;
    --cc-pad: max(70px, calc((100vw - 1500px) / 2));

    max-width: 100%;
    background: var(--cc-bg);
}

@media (max-width: 900px) {
    body.page-home {
        --cc-pad: 20px;
    }
}

/* ── Header / footer: restore horizontal containment ─────────────────────── */

body.page-home > header,
body.page-home > #menu,
body.page-home > footer {
    box-sizing: border-box;
    padding-left: var(--cc-pad);
    padding-right: var(--cc-pad);
}

body.page-home > footer {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--cc-border);
}

/* ── Rise animation ───────────────────────────────────────────────────────── */

@keyframes cc-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.cc-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    padding: 64px var(--cc-pad) 80px;
}

@media (max-width: 900px) {
    .cc-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

.cc-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-accent);
    margin-bottom: 22px;
    animation: cc-rise 0.55s ease both;
}

.cc-hero-h1 {
    font-family: AlternateGothicNo2, sans-serif;
    font-size: clamp(72px, 9vw, 110px);
    font-weight: normal;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--cc-dark);
    margin-bottom: 28px;
    animation: cc-rise 0.55s 0.07s ease both;
}

.cc-hero-sub {
    font-size: 17px;
    color: var(--cc-muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 36px;
    animation: cc-rise 0.55s 0.14s ease both;
}

.cc-hero-actions {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    width: max-content;
    gap: 20px;
    animation: cc-rise 0.55s 0.2s ease both;
}

.cc-hero-actions a {
    width: 100%;
}

@media (max-width: 480px) {
    .cc-hero-actions {
        grid-auto-flow: unset;
        grid-template-columns: 1fr;
        width: auto;
    }
}

.cc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cc-dark);
    color: white;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
}

.cc-btn-primary:hover {
    background: #2a2a28;
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--cc-dark);
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
}

.cc-link:hover {
    background: #f0eee9;
}

.cc-hero-img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(0, 0, 0, 0.10);
    animation: cc-rise 0.7s 0.1s ease both;
}

.cc-hero-img .lightbox__photo,
.cc-showcase-img .lightbox__photo {
    width: 100%;
    height: 100%;
    display: block;
}

.cc-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */

.cc-divider {
    border: none;
    border-top: 1px solid var(--cc-border);
    margin: 0 var(--cc-pad);
}

/* ── Showcase (process section) ───────────────────────────────────────────── */

.cc-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 96px var(--cc-pad);
}

@media (max-width: 900px) {
    .cc-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.cc-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-muted);
    margin-bottom: 14px;
}

.cc-showcase-h2 {
    font-family: AlternateGothicNo2, sans-serif;
    font-size: clamp(44px, 5.5vw, 70px);
    font-weight: normal;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--cc-dark);
    margin-bottom: 32px;
}

.cc-showcase-img {
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 48px rgba(0, 0, 0, 0.10);
}

.cc-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Accordion within showcase ────────────────────────────────────────────── */

.cc-showcase-text .accordion__item {
    border-bottom-color: var(--cc-border);
}

.cc-showcase-text .accordion__item:first-child {
    border-top-color: var(--cc-border);
}

.cc-showcase-text .accordion__header {
    padding: 16px 0;
}

.cc-showcase-text .accordion__header h1 {
    font-size: 26px;
    color: var(--cc-dark);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.cc-showcase-text .accordion__item p {
    font-size: 15px;
    color: var(--cc-muted);
    line-height: 1.7;
    padding-bottom: 18px;
    margin: 0;
}

/* ── CTA section ─────────────────────────────────────────────────────────── */

.cc-cta-wrap {
    background: var(--cc-teal);
    padding: 110px var(--cc-pad);
    text-align: center;
}

.cc-cta-h2 {
    font-family: AlternateGothicNo2, sans-serif;
    font-size: clamp(64px, 10vw, 108px);
    font-weight: normal;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--cc-dark);
    margin-bottom: 22px;
}

.cc-cta-sub {
    font-size: 17px;
    color: var(--cc-dark);
    opacity: 0.75;
    margin-bottom: 44px;
}

.cc-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cc-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--cc-dark);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
}

.cc-btn-light:hover {
    background: #f0ede8;
}
