/* =========================================================
   Stroud Company — site.css
   Brand tokens, components, layout.
   Reset: styles.css  |  Framework: bootstrap.min.css
   ========================================================= */


/* ---------------------------------------------------------
   Tokens
   --------------------------------------------------------- */

:root {
    --sc-bg: #ffffff;
    --sc-page-alt: #f9fafb;
    --sc-surface: #ffffff;
    --sc-ink: #111827;
    --sc-muted: #6b7280;
    --sc-red: #ff315f;
    --sc-purple: #7b2cff;
    --sc-blue: #0f8cff;
    --sc-gradient: linear-gradient(135deg, #ff315f, #7b2cff 40%, #0f8cff);
}


/* ---------------------------------------------------------
   Global
   --------------------------------------------------------- */

body {
    background-color: var(--sc-bg);
    color: var(--sc-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    color: var(--sc-purple);
    text-decoration: none;
}

    a:hover {
        color: var(--sc-blue);
    }


/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

.nav-link {
    color: var(--sc-ink) !important;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--sc-purple) !important;
    }

.navbar-brand img {
    height: 40px;
}

.sc-logo-text {
    font-family: "Georgia", serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sc-ink);
    font-weight: 600;
    line-height: 1.2;
}

.sc-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: var(--sc-red);
}


/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.butn-style1 {
    border: 1px solid var(--sc-red);
    color: var(--sc-red) !important;
    background: transparent;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

    .butn-style1:hover {
        background: var(--sc-gradient);
        border-color: transparent;
        color: #ffffff !important;
    }

    .butn-style1.btn-sm {
        padding: 0.3rem 0.75rem;
        font-size: 0.82rem;
    }

.butn-style2 {
    background: var(--sc-gradient);
    color: #ffffff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    border: none;
    transition: opacity 0.25s ease;
}

    .butn-style2:hover {
        opacity: 0.9;
    }

.butn-white {
    background: #ffffff;
    color: var(--sc-purple) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .butn-white:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
    }

.butn-delete {
    border: 1px solid #dc2626;
    color: #dc2626 !important;
    background: transparent;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    transition: background 0.2s ease, color 0.2s ease;
}

    .butn-delete:hover {
        background: #dc2626;
        color: #ffffff !important;
    }


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
    position: relative;
    background: var(--sc-gradient);
    color: #ffffff;
}

.hero-full {
    width: 100%;
    margin: 0;
    padding: 5.5rem 0 4.5rem;
}

.hero-inner {
    max-width: 1250px;
    margin: 0 auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 12, 0.45);
    z-index: 0;
}

.hero > .hero-inner {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw + 1.3rem, 3.1rem);
    font-weight: 800;
    color: #ffffff;
}

.hero .lead {
    color: #e5e7eb;
    font-size: 1.05rem;
    max-width: 650px;
}


/* ---------------------------------------------------------
   Eyebrows
   --------------------------------------------------------- */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: var(--sc-red);
}

.eyebrow-warm {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #c0392b;
}


/* ---------------------------------------------------------
   Feature Cards
   --------------------------------------------------------- */

.feature-card {
    background-color: var(--sc-surface);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    }

    .feature-card p {
        color: var(--sc-muted);
    }

    /* list items inside feature-card use sc-service-list which owns its own color */
    .feature-card li {
        color: var(--sc-muted);
    }


/* ---------------------------------------------------------
   Ink Panel
   --------------------------------------------------------- */

.ink-panel {
    background-color: var(--sc-surface);
    border-radius: 18px;
    padding: 2.3rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border: 1px solid #e5e7eb;
}


/* ---------------------------------------------------------
   Mini Cards
   --------------------------------------------------------- */

.mini-card {
    background-color: var(--sc-surface);
    border-radius: 12px;
    padding: 1.1rem 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    }

    .mini-card p {
        color: var(--sc-muted);
    }


/* ---------------------------------------------------------
   Process Steps
   --------------------------------------------------------- */

.process-step {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--sc-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   CTA Banner
   --------------------------------------------------------- */

.cta-banner {
    background: var(--sc-gradient);
    padding: 3.5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%);
        pointer-events: none;
    }

    .cta-banner .container {
        position: relative;
        z-index: 1;
    }

.cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cta-title {
    font-size: clamp(1.9rem, 2vw + 1rem, 2.4rem);
    font-weight: 800;
    color: #ffffff;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    max-width: 640px;
}


/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

footer {
    background-color: #111827;
    color: #9ca3af;
    position: static !important;
    line-height: normal !important;
}

    footer a {
        color: #e5e7eb;
    }

        footer a:hover {
            color: #ffffff;
        }


/* ---------------------------------------------------------
   Index — Audience card taglines
   --------------------------------------------------------- */

.sc-card-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--sc-muted);
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Index — Service bullet lists
   --------------------------------------------------------- */

.sc-service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .sc-service-list li {
        padding: 4px 0 4px 1.1rem;
        position: relative;
        color: var(--sc-muted);
        line-height: 1.55;
    }

        /* Higher specificity than feature-card li to win the cascade */
        .sc-service-list li::before,
        .feature-card .sc-service-list li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--sc-purple);
            font-weight: 600;
        }


/* ---------------------------------------------------------
   Services Page
   --------------------------------------------------------- */

.sc-services-hero {
    padding: 4rem 0 2.5rem;
    background-color: var(--sc-page-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

    .sc-services-hero h1 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--sc-ink);
        max-width: 600px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .sc-services-hero p {
        font-size: 1.05rem;
        color: var(--sc-muted);
        max-width: 520px;
        line-height: 1.7;
        margin-bottom: 0;
    }

.sc-services-body {
    padding: 2.5rem 0 3rem;
}

.sc-audience-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.sc-tab {
    padding: 7px 18px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    font-size: 0.9rem;
    color: var(--sc-muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

    .sc-tab:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--sc-ink);
    }

    .sc-tab.active {
        background: var(--sc-ink);
        color: #ffffff;
        border-color: var(--sc-ink);
    }

.sc-tab-panel {
    display: none;
}

    .sc-tab-panel.active {
        display: block;
    }

.sc-panel-header {
    max-width: 620px;
    margin-bottom: 2rem;
}

    .sc-panel-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.5rem;
    }

.sc-panel-tagline {
    font-style: italic;
    color: var(--sc-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.sc-panel-header p {
    color: var(--sc-muted);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.sc-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.sc-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
}

    .sc-service-card h3 {
        font-size: 0.975rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.5rem;
    }

    .sc-service-card p {
        font-size: 0.875rem;
        color: var(--sc-muted);
        line-height: 1.65;
        margin-bottom: 0;
    }

.sc-how-section {
    background-color: var(--sc-page-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 0;
}

    .sc-how-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.25rem;
    }

.sc-how-sub {
    color: var(--sc-muted);
    font-size: 0.975rem;
    margin-bottom: 2rem;
}

.sc-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 560px;
}

.sc-step {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.sc-step-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--sc-muted);
    margin-top: 2px;
}

.sc-step-content h3 {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--sc-ink);
    margin-bottom: 0.3rem;
}

.sc-step-content p {
    font-size: 0.9rem;
    color: var(--sc-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.sc-cta-section {
    padding: 3rem 0 4rem;
}

.sc-cta-box {
    background: var(--sc-page-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem 2.25rem;
    max-width: 620px;
}

    .sc-cta-box h2 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.6rem;
    }

    .sc-cta-box p {
        font-size: 0.95rem;
        color: var(--sc-muted);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }


/* ---------------------------------------------------------
   Creative Studio
   --------------------------------------------------------- */

.section-creative {
    padding: 4rem 0;
    background-color: #fdf8f6;
    border-top: 1px solid #f0e8e4;
    border-bottom: 1px solid #f0e8e4;
}

.card-gallery {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    max-height: 300px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border: 1px solid #e5e7eb;
}

.gallery-card--back {
    transform: rotate(-4deg) translateX(-20px);
    z-index: 1;
    opacity: 0.85;
}

.gallery-card--front {
    transform: rotate(2deg) translateX(20px);
    z-index: 2;
}

.hf-card {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.hf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.studio-hero-pair {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.studio-hero-img {
    border-radius: 10px;
    max-height: 320px;
    width: auto;
    object-fit: contain;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.studio-hero-img--left {
    transform: rotate(-2deg);
}

.studio-hero-img--right {
    transform: rotate(2deg);
}

.studio-img-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.studio-stat {
    background: var(--sc-page-alt);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
}

.studio-stat__number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--sc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.studio-stat__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sc-muted);
}

.studio-art-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

    .studio-art-card img {
        display: block;
        width: 100%;
    }

.studio-art-caption {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    color: var(--sc-muted);
    background: var(--sc-surface);
    border-top: 1px solid #f0ece8;
    font-style: italic;
}


/* ---------------------------------------------------------
   Admin Area
   --------------------------------------------------------- */

.admin-navbar {
    background-color: var(--sc-ink) !important;
}

.admin-sidebar .nav-link {
    color: #e5e7eb !important;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

    .admin-sidebar .nav-link:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08);
    }

    .admin-sidebar .nav-link.active {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff !important;
    }

.admin-user-btn {
    color: #e5e7eb !important;
    background: transparent !important;
    border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 0.85rem;
}

    .admin-user-btn:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

.admin-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.65rem;
    color: #9ca3af;
    padding: 0 0.75rem;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1199.98px) {
    .hero-full {
        padding: 5rem 0 4rem;
    }

    .hero .lead {
        max-width: 560px;
    }
}

@media (max-width: 991.98px) {
    .hero-full {
        text-align: center;
        padding: 4.5rem 0 3.5rem;
    }

    .hero .lead {
        margin-inline: auto;
    }

    .hero .d-flex.flex-wrap {
        justify-content: center !important;
    }

    .ink-panel {
        padding: 2rem 1.6rem;
    }

    .cta-banner {
        text-align: center;
    }

    .cta-text {
        margin-inline: auto;
        margin-bottom: 1.25rem;
    }

    .section-creative {
        padding: 3rem 0;
    }

    .card-gallery {
        height: 260px;
    }

    .gallery-card {
        max-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 34px;
    }

    .hero-full {
        padding-top: 3.75rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero .lead {
        font-size: 0.96rem;
    }

    .feature-card {
        padding: 1.4rem 1.25rem;
    }

    .ink-panel {
        margin-bottom: 1.5rem;
    }

    .mini-card {
        padding: 1rem 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .sc-logo-text {
        font-size: 0.8rem;
    }

    .hero-full {
        padding-top: 3.5rem;
        padding-bottom: 2.75rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 0.9rem;
    }

    .feature-card {
        border-radius: 12px;
    }

    .cta-banner {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-text {
        font-size: 0.96rem;
    }

    .card-gallery {
        height: 200px;
    }

    .gallery-card {
        max-height: 170px;
    }

    .studio-hero-pair {
        gap: 0.5rem;
    }

    .studio-hero-img {
        max-height: 220px;
    }

    .sc-services-hero h1 {
        font-size: 1.5rem;
    }

    .sc-service-grid {
        grid-template-columns: 1fr;
    }

    .sc-audience-tabs {
        flex-direction: column;
    }

    .sc-tab {
        width: 100%;
        text-align: left;
    }

    .sc-cta-box {
        padding: 1.5rem;
    }
}
.sc-service-list {
    list-style: none !important;
    padding-left: 0 !important;
}

    .sc-service-list li {
        list-style: none !important;
        padding: 4px 0 4px 1.1rem;
        position: relative;
        color: var(--sc-muted);
        line-height: 1.55;
    }

        .sc-service-list li::before,
        .feature-card .sc-service-list li::before {
            content: "\2013" !important;
            position: absolute;
            left: 0;
            color: var(--sc-purple);
            font-weight: 600;
        }

/* ---------------------------------------------------------
   About — Team card icons
   Add this to site.css in the Feature Cards section
   --------------------------------------------------------- */

.sc-team-icon {
    font-size: 1.75rem;
    line-height: 1;
}

/* =========================================================
   Stroud Company — site.css
   Brand tokens, components, layout.
   Reset: styles.css  |  Framework: bootstrap.min.css
   ========================================================= */


/* ---------------------------------------------------------
   Tokens
   --------------------------------------------------------- */

:root {
    --sc-bg: #ffffff;
    --sc-page-alt: #f9fafb;
    --sc-surface: #ffffff;
    --sc-ink: #111827;
    --sc-muted: #6b7280;
    --sc-red: #ff315f;
    --sc-purple: #7b2cff;
    --sc-blue: #0f8cff;
    --sc-gradient: linear-gradient(135deg, #ff315f, #7b2cff 40%, #0f8cff);
}


/* ---------------------------------------------------------
   Global
   --------------------------------------------------------- */

body {
    background-color: var(--sc-bg);
    color: var(--sc-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

a {
    color: var(--sc-purple);
    text-decoration: none;
}

    a:hover {
        color: var(--sc-blue);
    }


/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

.nav-link {
    color: var(--sc-ink) !important;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link:focus {
        color: var(--sc-purple) !important;
    }

.navbar-brand img {
    height: 40px;
}

.sc-logo-text {
    font-family: "Georgia", serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sc-ink);
    font-weight: 600;
    line-height: 1.2;
}

.sc-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: var(--sc-red);
}


/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.butn-style1 {
    border: 1px solid var(--sc-red);
    color: var(--sc-red) !important;
    background: transparent;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

    .butn-style1:hover {
        background: var(--sc-gradient);
        border-color: transparent;
        color: #ffffff !important;
    }

    .butn-style1.btn-sm {
        padding: 0.3rem 0.75rem;
        font-size: 0.82rem;
    }

.butn-style2 {
    background: var(--sc-gradient);
    color: #ffffff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    border: none;
    transition: opacity 0.25s ease;
}

    .butn-style2:hover {
        opacity: 0.9;
    }

.butn-white {
    background: #ffffff;
    color: var(--sc-purple) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: background 0.25s ease, transform 0.25s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .butn-white:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
    }

.butn-delete {
    border: 1px solid #dc2626;
    color: #dc2626 !important;
    background: transparent;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.82rem;
    transition: background 0.2s ease, color 0.2s ease;
}

    .butn-delete:hover {
        background: #dc2626;
        color: #ffffff !important;
    }


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
    position: relative;
    background: var(--sc-gradient);
    color: #ffffff;
}

.hero-full {
    width: 100%;
    margin: 0;
    padding: 5.5rem 0 4.5rem;
}

.hero-inner {
    max-width: 1250px;
    margin: 0 auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 12, 0.45);
    z-index: 0;
}

.hero > .hero-inner {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw + 1.3rem, 3.1rem);
    font-weight: 800;
    color: #ffffff;
}

.hero .lead {
    color: #e5e7eb;
    font-size: 1.05rem;
    max-width: 650px;
}


/* ---------------------------------------------------------
   Eyebrows
   --------------------------------------------------------- */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: var(--sc-red);
}

.eyebrow-warm {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #c0392b;
}


/* ---------------------------------------------------------
   Feature Cards
   --------------------------------------------------------- */

.feature-card {
    background-color: var(--sc-surface);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    }

    .feature-card p {
        color: var(--sc-muted);
    }

    /* list items inside feature-card use sc-service-list which owns its own color */
    .feature-card li {
        color: var(--sc-muted);
    }


/* ---------------------------------------------------------
   Ink Panel
   --------------------------------------------------------- */

.ink-panel {
    background-color: var(--sc-surface);
    border-radius: 18px;
    padding: 2.3rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border: 1px solid #e5e7eb;
}


/* ---------------------------------------------------------
   Mini Cards
   --------------------------------------------------------- */

.mini-card {
    background-color: var(--sc-surface);
    border-radius: 12px;
    padding: 1.1rem 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    }

    .mini-card p {
        color: var(--sc-muted);
    }


/* ---------------------------------------------------------
   Process Steps
   --------------------------------------------------------- */

.process-step {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--sc-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   CTA Banner
   --------------------------------------------------------- */

.cta-banner {
    background: var(--sc-gradient);
    padding: 3.5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%);
        pointer-events: none;
    }

    .cta-banner .container {
        position: relative;
        z-index: 1;
    }

.cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cta-title {
    font-size: clamp(1.9rem, 2vw + 1rem, 2.4rem);
    font-weight: 800;
    color: #ffffff;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    max-width: 640px;
}


/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

footer {
    background-color: #111827;
    color: #9ca3af;
    position: static !important;
    line-height: normal !important;
}

    footer a {
        color: #e5e7eb;
    }

        footer a:hover {
            color: #ffffff;
        }


/* ---------------------------------------------------------
   Index — Audience card taglines
   --------------------------------------------------------- */

.sc-card-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--sc-muted);
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Index — Service bullet lists
   --------------------------------------------------------- */

.sc-service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .sc-service-list li {
        padding: 4px 0 4px 1.1rem;
        position: relative;
        color: var(--sc-muted);
        line-height: 1.55;
    }

        /* Higher specificity than feature-card li to win the cascade */
        .sc-service-list li::before,
        .feature-card .sc-service-list li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--sc-purple);
            font-weight: 600;
        }


/* ---------------------------------------------------------
   Services Page
   --------------------------------------------------------- */

.sc-services-hero {
    padding: 4rem 0 2.5rem;
    background-color: var(--sc-page-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

    .sc-services-hero h1 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--sc-ink);
        max-width: 600px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .sc-services-hero p {
        font-size: 1.05rem;
        color: var(--sc-muted);
        max-width: 520px;
        line-height: 1.7;
        margin-bottom: 0;
    }

.sc-services-body {
    padding: 2.5rem 0 3rem;
}

.sc-audience-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.sc-tab {
    padding: 7px 18px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    font-size: 0.9rem;
    color: var(--sc-muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

    .sc-tab:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--sc-ink);
    }

    .sc-tab.active {
        background: var(--sc-ink);
        color: #ffffff;
        border-color: var(--sc-ink);
    }

.sc-tab-panel {
    display: none;
}

    .sc-tab-panel.active {
        display: block;
    }

.sc-panel-header {
    max-width: 620px;
    margin-bottom: 2rem;
}

    .sc-panel-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.5rem;
    }

.sc-panel-tagline {
    font-style: italic;
    color: var(--sc-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.sc-panel-header p {
    color: var(--sc-muted);
    font-size: 0.975rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.sc-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.sc-service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 1.25rem 1.35rem;
}

    .sc-service-card h3 {
        font-size: 0.975rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.5rem;
    }

    .sc-service-card p {
        font-size: 0.875rem;
        color: var(--sc-muted);
        line-height: 1.65;
        margin-bottom: 0;
    }

.sc-how-section {
    background-color: var(--sc-page-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 0;
}

    .sc-how-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.25rem;
    }

.sc-how-sub {
    color: var(--sc-muted);
    font-size: 0.975rem;
    margin-bottom: 2rem;
}

.sc-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 560px;
}

.sc-step {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.sc-step-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--sc-muted);
    margin-top: 2px;
}

.sc-step-content h3 {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--sc-ink);
    margin-bottom: 0.3rem;
}

.sc-step-content p {
    font-size: 0.9rem;
    color: var(--sc-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.sc-cta-section {
    padding: 3rem 0 4rem;
}

.sc-cta-box {
    background: var(--sc-page-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2rem 2.25rem;
    max-width: 620px;
}

    .sc-cta-box h2 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--sc-ink);
        margin-bottom: 0.6rem;
    }

    .sc-cta-box p {
        font-size: 0.95rem;
        color: var(--sc-muted);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }


/* ---------------------------------------------------------
   Creative Studio
   --------------------------------------------------------- */

.section-creative {
    padding: 4rem 0;
    background-color: #fdf8f6;
    border-top: 1px solid #f0e8e4;
    border-bottom: 1px solid #f0e8e4;
}

.card-gallery {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    max-height: 300px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border: 1px solid #e5e7eb;
}

.gallery-card--back {
    transform: rotate(-4deg) translateX(-20px);
    z-index: 1;
    opacity: 0.85;
}

.gallery-card--front {
    transform: rotate(2deg) translateX(20px);
    z-index: 2;
}

.hf-card {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.hf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.studio-hero-pair {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
}

.studio-hero-img {
    border-radius: 10px;
    max-height: 320px;
    width: auto;
    object-fit: contain;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.studio-hero-img--left {
    transform: rotate(-2deg);
}

.studio-hero-img--right {
    transform: rotate(2deg);
}

.studio-img-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.studio-stat {
    background: var(--sc-page-alt);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    text-align: center;
}

.studio-stat__number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--sc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.studio-stat__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sc-muted);
}

.studio-art-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

    .studio-art-card img {
        display: block;
        width: 100%;
    }

.studio-art-caption {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    color: var(--sc-muted);
    background: var(--sc-surface);
    border-top: 1px solid #f0ece8;
    font-style: italic;
}


/* ---------------------------------------------------------
   Admin Area
   --------------------------------------------------------- */

.admin-navbar {
    background-color: var(--sc-ink) !important;
}

.admin-sidebar .nav-link {
    color: #e5e7eb !important;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

    .admin-sidebar .nav-link:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08);
    }

    .admin-sidebar .nav-link.active {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff !important;
    }

.admin-user-btn {
    color: #e5e7eb !important;
    background: transparent !important;
    border: 0.5px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 0.85rem;
}

    .admin-user-btn:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

.admin-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.65rem;
    color: #9ca3af;
    padding: 0 0.75rem;
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1199.98px) {
    .hero-full {
        padding: 5rem 0 4rem;
    }

    .hero .lead {
        max-width: 560px;
    }
}

@media (max-width: 991.98px) {
    .hero-full {
        text-align: center;
        padding: 4.5rem 0 3.5rem;
    }

    .hero .lead {
        margin-inline: auto;
    }

    .hero .d-flex.flex-wrap {
        justify-content: center !important;
    }

    .ink-panel {
        padding: 2rem 1.6rem;
    }

    .cta-banner {
        text-align: center;
    }

    .cta-text {
        margin-inline: auto;
        margin-bottom: 1.25rem;
    }

    .section-creative {
        padding: 3rem 0;
    }

    .card-gallery {
        height: 260px;
    }

    .gallery-card {
        max-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 34px;
    }

    .hero-full {
        padding-top: 3.75rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero .lead {
        font-size: 0.96rem;
    }

    .feature-card {
        padding: 1.4rem 1.25rem;
    }

    .ink-panel {
        margin-bottom: 1.5rem;
    }

    .mini-card {
        padding: 1rem 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .sc-logo-text {
        font-size: 0.8rem;
    }

    .hero-full {
        padding-top: 3.5rem;
        padding-bottom: 2.75rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .lead {
        font-size: 0.9rem;
    }

    .feature-card {
        border-radius: 12px;
    }

    .cta-banner {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-text {
        font-size: 0.96rem;
    }

    .card-gallery {
        height: 200px;
    }

    .gallery-card {
        max-height: 170px;
    }

    .studio-hero-pair {
        gap: 0.5rem;
    }

    .studio-hero-img {
        max-height: 220px;
    }

    .sc-services-hero h1 {
        font-size: 1.5rem;
    }

    .sc-service-grid {
        grid-template-columns: 1fr;
    }

    .sc-audience-tabs {
        flex-direction: column;
    }

    .sc-tab {
        width: 100%;
        text-align: left;
    }

    .sc-cta-box {
        padding: 1.5rem;
    }
}

/* ---------------------------------------------------------
   About — Founder doodle & team icons
   --------------------------------------------------------- */

.sc-founder-doodle {
    max-width: 260px;
    width: 100%;
}

.sc-team-icon {
    font-size: 1.75rem;
    line-height: 1;
}