/* ============ tokens ============ */
:root {
    --csc-max: 1160px;
    --csc-ink: #1f1f23;
    --csc-muted: #6b6b76;
    --csc-bg: white;
    --csc-brand: #09b884; /* warm construction yellow */
    --csc-dot: #ededf0;
    --csc-border: #ececf0;
    --csc-card: #ffffff;
    --csc-shadow: 0 12px 26px rgba(18, 18, 18, 0.08);
    --csc-radius: 18px;
    --csc-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
}

.csc-wrap {
    font-family: var(--csc-font);
    color: var(--csc-ink);
    background: var(--csc-bg);
}

/* ============ HERO ============ */
.csc-hero {
    max-width: var(--csc-max);
    margin: 28px auto 22px;
    padding: 0 16px;
}

.csc-hero-top {
    display: grid;
    /* grid-template-columns: 1.4fr 1fr 1fr; */
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.csc-hero-kicker {
    margin: 0;
    font-size: 14px;
    color: var(--csc-muted);
}
.csc-hero-heading h1 {
    margin: 0;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.5px;
}
.csc-hero-line {
    display: block;
    font-size: 64px;
}
.csc-accent {
    color: var(--csc-brand);
}

.csc-hero-sub {
    margin: 8px 0 0;
    color: var(--csc-muted);
    font-size: 14px;
}

.csc-hero-cta {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
}
.csc-btn {
    display: inline-block;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease,
        background 0.12s ease;
}
.csc-btn-primary {
    background: var(--csc-brand);
    color: #1d1a10;
    box-shadow: 0 8px 18px rgba(241, 180, 38, 0.28);
}
.csc-btn-ghost {
    background: #fff;
    border: 1px solid var(--csc-border);
    color: #1f1f23;
}
.csc-btn:hover {
    transform: translateY(-1px);
}

.csc-hero-scene {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--csc-shadow);
}

/* gold overlay + clipped bottom shape */
.csc-hero-scene img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05);
    /* gold duotone */
    mix-blend-mode: multiply;
    background: linear-gradient(
        0deg,
        rgba(241, 180, 38, 0.55),
        rgba(241, 180, 38, 0.55)
    );
    /* fancy bottom notch using clip-path */
    clip-path: path(
        "M0,0 H1000 V360 C940,360,920,404,860,404 H662 C638,404,622,418,600,430 C560,452,440,452,400,430 C378,418,362,404,338,404 H140 C80,404,60,360,0,360 Z"
    );
}

/* rating + avatars bar */
.csc-hero-meta {
    position: absolute;
    left: 18px;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--csc-border);
    backdrop-filter: blur(6px);
    padding: 8px 10px;
    border-radius: 12px;
}
.csc-rating {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
}
.csc-rating-title {
    color: #444;
}
.csc-star {
    color: #f4b400;
    font-size: 18px;
}
.csc-avatars {
    display: flex;
}
.csc-avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

/* ============ ABOUT ============ */
.csc-about {
    max-width: var(--csc-max);
    margin: 26px auto 70px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.csc-chip {
    display: inline-block;
    border: 1px solid var(--csc-border);
    background: #fff;
    color: #565a66;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.csc-about-title {
    font-size: 32px;
    margin: 0 0 8px;
}
.csc-about-text {
    color: var(--csc-muted);
    line-height: 1.8;
    font-size: 14px;
}
.csc-signoff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}
.csc-person {
    display: flex;
    gap: 10px;
    align-items: center;
}
.csc-person img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.csc-person-name {
    font-weight: 700;
}
.csc-person-role {
    color: var(--csc-muted);
    font-size: 12px;
}
.csc-sign {
    opacity: 0.9;
}

.csc-about-gallery {
    display: grid;
    gap: 14px;
}
.csc-photo {
    margin: 0;
    background: #ddd;
    border-radius: var(--csc-radius);
    overflow: hidden;
    box-shadow: var(--csc-shadow);
}
.csc-photo img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.csc-about-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.csc-ribbon-circle {
    position: relative;
    border: 1px dashed var(--csc-border);
    border-radius: 12px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.csc-logo {
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #b8b8bf;
}
.csc-ribbon {
    position: absolute;
    inset: auto -24px -24px auto;
    transform: rotate(-90deg);
    font-size: 12px;
    color: #b8b8bf;
    letter-spacing: 0.25em;
}

.csc-card {
    background: var(--csc-card);
    border: 1px solid var(--csc-border);
    border-radius: 14px;
    box-shadow: var(--csc-shadow);
    padding: 16px 16px 14px;
}
.csc-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}
.csc-card p {
    margin: 0;
    color: var(--csc-muted);
    line-height: 1.8;
    font-size: 14px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .csc-hero-line {
        font-size: 52px;
    }
    .csc-about {
        grid-template-columns: 1fr 1fr;
    }
    .csc-about-side {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    .csc-ribbon-circle {
        flex: 1;
    }
    .csc-card {
        flex: 1;
    }
}
@media (max-width: 720px) {
    .csc-hero-top {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .csc-hero-cta {
        justify-self: start;
    }
    .csc-hero-scene img {
        height: 360px;
    }
    .csc-hero-line {
        font-size: 42px;
    }
    .csc-about {
        grid-template-columns: 1fr;
    }
    .csc-about-side {
        flex-direction: column;
    }
}
