/* SBLM — protótipo: variáveis e base */
:root {
    --bg: #0c0e12;
    --bg-elevated: #141820;
    --surface: #1a2029;
    --border: rgba(255, 255, 255, 0.08);
    --text: #e8eaef;
    --text-muted: #9aa3b2;
    --accent: #c9a227;
    --accent-hover: #ddb62e;
    --accent-soft: rgba(201, 162, 39, 0.15);
    --danger: #e85d5d;
    --radius: 12px;
    --radius-sm: 8px;
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
    --header-h: 64px;
    --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201, 162, 39, 0.12), transparent),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(30, 58, 95, 0.2), transparent);
    min-height: 100vh;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--accent);
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    left: 0;
}

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

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h);
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    max-width: 190px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.logo-image {
    display: block;
    width: auto;
    height: 46px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    .logo-image {
        height: 40px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 1px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.25rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent);
}

.site-nav .nav-secondary {
    margin-left: 0.25rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.site-nav .nav-secondary:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        background: var(--bg-elevated);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav a {
        padding: 0.65rem 0;
        border-bottom: 1px solid var(--border);
    }

    .site-nav a:last-child {
        border-bottom: 0;
        margin-top: 0.25rem;
        text-align: center;
    }
}

/* Hero */
.hero {
    padding: clamp(2.75rem, 7vw, 5rem) 1.25rem clamp(4rem, 10vw, 6rem);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    min-height: clamp(520px, 72vh, 720px);
    display: grid;
    align-items: center;
    position: relative;
    isolation: isolate;
    border-radius: clamp(18px, 3vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #06070a;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.hero-inner::before,
.hero-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-inner::before {
    background:
        linear-gradient(90deg, rgba(6, 7, 10, 0.96) 0%, rgba(6, 7, 10, 0.78) 42%, rgba(6, 7, 10, 0.28) 100%),
        linear-gradient(180deg, rgba(6, 7, 10, 0.15), rgba(6, 7, 10, 0.72));
}

.hero-inner::after {
    background: radial-gradient(ellipse 70% 55% at 15% 20%, rgba(201, 162, 39, 0.2), transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.8;
}

.hero-media-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.7rem;
    transform: scale(1.03);
}

.hero-photo {
    min-height: 0;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    opacity: 0.78;
}

.hero-photo:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.hero-photo:nth-child(2) {
    grid-column: 4 / 6;
    grid-row: 1 / 2;
}

.hero-photo:nth-child(3) {
    grid-column: 6 / 7;
    grid-row: 1 / 4;
}

.hero-photo:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.hero-photo:nth-child(5) {
    grid-column: 3 / 6;
    grid-row: 2 / 5;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(2.5px) saturate(1.05) contrast(1.08);
    transform: scale(1.08);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    margin: clamp(1.25rem, 4vw, 3rem);
    padding: clamp(1.35rem, 4vw, 2.6rem);
    border-radius: clamp(16px, 3vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 14, 18, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.hero-lead {
    color: var(--text-muted);
    max-width: 36rem;
    margin: 0 0 1.75rem;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 760px) {
    .hero-inner {
        min-height: 620px;
        align-items: end;
    }

    .hero-inner::before {
        background:
            linear-gradient(180deg, rgba(6, 7, 10, 0.2) 0%, rgba(6, 7, 10, 0.88) 64%, rgba(6, 7, 10, 0.96) 100%),
            linear-gradient(90deg, rgba(6, 7, 10, 0.55), rgba(6, 7, 10, 0.1));
    }

    .hero-media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(5, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .hero-photo:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }

    .hero-photo:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .hero-photo:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
    }

    .hero-photo:nth-child(4) {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
    }

    .hero-photo:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 4 / 6;
    }

    .hero-content {
        margin: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
    background: var(--accent);
    color: #141109;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #141109;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-block {
    width: 100%;
}

button.btn-primary {
    font-family: var(--font-display);
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
    border-top: 1px solid var(--border);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-intro {
    color: var(--text-muted);
    margin: 0 0 2rem;
    max-width: 40rem;
}

/* Cards */
.card-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .releases .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .releases .card--featured {
        grid-column: 1 / -1;
    }
}

.card--featured {
    position: relative;
    border-color: rgba(201, 162, 39, 0.45);
    background: linear-gradient(165deg, rgba(201, 162, 39, 0.14) 0%, var(--surface) 55%);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.22),
        0 20px 56px rgba(0, 0, 0, 0.45);
}

.card--featured .card-title {
    font-size: clamp(1.35rem, 3.2vw, 1.75rem);
    letter-spacing: -0.03em;
}

.card--featured .card-listeners-value {
    font-size: 1.35rem;
    color: var(--accent);
}

.card--featured .card-artist-avatar {
    width: 52px;
    height: 52px;
}

.card-featured-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1510;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.card--featured .card-spotify {
    box-shadow: 0 4px 24px rgba(30, 215, 96, 0.22);
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.card-artist-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 0.5rem;
    text-decoration: none;
    color: inherit;
}

.card-artist-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
    background: var(--surface);
}

.card-artist-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}

a.card-artist-row:hover .card-artist-name {
    color: var(--accent);
}

.card-listeners {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
}

.card-listeners-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.85;
}

.card-listeners-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.card-meta {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.9;
}

.card-text {
    margin: 0;
    flex-grow: 1;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Spotify CTA — cor oficial aproximada do botão “Play on Spotify” */
.card-spotify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 1.15rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: #121212;
    background: #1ed760;
    text-decoration: none;
    border: none;
    transition: background 0.15s, transform 0.15s;
}

.card-spotify:hover {
    background: #1fdf64;
    color: #121212;
}

.card-spotify:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.section-intro code {
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 0.88em;
    padding: 0.12em 0.35em;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-mail {
    margin: 1.5rem 0 0;
    color: var(--text-muted);
}

.contact-mail a {
    font-weight: 600;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.form-honeypot {
    display: none;
}

.contact-form input,
.contact-form textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: transparent;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
    border-color: var(--danger);
}

.form-feedback {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    color: var(--accent);
}

.form-feedback.is-error {
    color: var(--danger);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 1.25rem;
    background: var(--bg-elevated);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner p {
    margin: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-meta {
    font-size: 0.85rem;
}

/* Inner page (sublime) */
.page-main {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem 4rem;
}

.page-main h1 {
    margin-bottom: 1rem;
}

.page-main p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.page-main ul {
    color: var(--text-muted);
    padding-left: 1.25rem;
}

.page-main code {
    font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
    font-size: 0.92em;
    padding: 0.15em 0.4em;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Artists embedded on home */
.home-artists-embed {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(30, 215, 96, 0.08), transparent 64%),
        linear-gradient(180deg, rgba(12, 14, 18, 0) 0%, rgba(0, 0, 0, 0.28) 100%);
    color: var(--sp-text);
    font-family: var(--sp-font);
    letter-spacing: -0.01em;
    overflow: hidden;
}

.home-artists-embed::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 45% 40% at 100% 35%, rgba(30, 215, 96, 0.08), transparent 70%);
}

.home-artists-embed .spotify-page {
    position: relative;
    z-index: 1;
}

.home-artists-embed a {
    color: inherit;
}

/* About / Manifesto */
.about-page {
    background:
        radial-gradient(ellipse 85% 55% at 50% -18%, rgba(201, 162, 39, 0.14), transparent 65%),
        radial-gradient(ellipse 70% 45% at 100% 40%, rgba(30, 215, 96, 0.08), transparent 60%),
        var(--bg);
}

.about-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 4rem;
}

.about-hero {
    position: relative;
    min-height: clamp(420px, 58vh, 560px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.46fr);
    gap: clamp(0.85rem, 2vw, 1.35rem);
    align-items: end;
    overflow: hidden;
    padding: clamp(0.85rem, 2.2vw, 1.35rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(18px, 3vw, 32px);
    background:
        linear-gradient(135deg, rgba(20, 24, 32, 0.92), rgba(8, 10, 14, 0.96)),
        #080a0e;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(201, 162, 39, 0.18), transparent 42%),
        radial-gradient(circle at 72% 22%, rgba(30, 215, 96, 0.12), transparent 34%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
    opacity: 0.9;
}

.about-hero-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.16);
    filter: blur(60px);
    pointer-events: none;
}

.about-hero-content,
.about-manifesto-card,
.founder-card,
.about-story-card,
.proof-card,
.service-card,
.about-cta {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(20, 24, 32, 0.66);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
}

.about-hero-content {
    padding: clamp(1rem, 3vw, 1.85rem);
    border-radius: clamp(16px, 2.4vw, 24px);
}

.about-kicker {
    margin: 0 0 0.7rem;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 640px;
    font-size: clamp(1.7rem, 4vw, 3.05rem);
    letter-spacing: -0.045em;
}

.about-lead {
    max-width: 600px;
    margin: 0.85rem 0 1.2rem;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-manifesto-card {
    align-self: end;
    display: flex;
    flex-direction: column;
    justify-content: end;
    max-width: 320px;
    min-height: 185px;
    padding: clamp(0.95rem, 1.8vw, 1.2rem);
    border-radius: clamp(16px, 2.4vw, 22px);
}

.about-manifesto-card span {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-manifesto-card p {
    margin: 0.7rem 0 0;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.12rem, 2.1vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.22;
}

.about-section {
    padding: clamp(3rem, 7vw, 5rem) 0 0;
}

.about-section-heading {
    margin-bottom: 1.3rem;
}

.about-section-heading h2,
.about-cta h2 {
    max-width: 720px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.about-story-grid,
.founder-grid,
.proof-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-story-card,
.founder-card,
.proof-card,
.service-card {
    border-radius: 20px;
    padding: 1.35rem;
}

.about-story-card span,
.proof-card span,
.founder-role {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-story-card h3,
.founder-card h3,
.service-card h3 {
    font-size: 1.2rem;
}

.about-story-card p,
.founder-card p,
.service-card p,
.proof-note,
.about-cta p {
    color: var(--text-muted);
}

.founder-card {
    text-align: left;
}

.founder-photo-placeholder,
.founder-photo {
    width: 104px;
    height: 104px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(201, 162, 39, 0.34), rgba(20, 24, 32, 0.95));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.founder-photo-placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.founder-photo--henri {
    object-position: 50% 42%;
}

.founder-card a {
    font-weight: 700;
}

.proof-card strong {
    display: block;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 4vw, 2.6rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.proof-card--featured {
    border-color: rgba(201, 162, 39, 0.34);
    background: linear-gradient(160deg, rgba(201, 162, 39, 0.14), rgba(20, 24, 32, 0.76));
}

.proof-note {
    max-width: 820px;
    margin: 1.25rem 0 0;
}

.service-card {
    min-height: 180px;
}

.about-cta {
    margin-top: clamp(3rem, 7vw, 5rem);
    padding: clamp(1.5rem, 4vw, 2.8rem);
    border-radius: clamp(18px, 3vw, 28px);
    background:
        radial-gradient(ellipse 65% 80% at 85% 0%, rgba(201, 162, 39, 0.16), transparent 65%),
        rgba(20, 24, 32, 0.74);
}

@media (max-width: 880px) {
    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-manifesto-card {
        max-width: none;
        min-height: 150px;
    }

    .about-story-grid,
    .founder-grid,
    .proof-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
}
