/* Vespera Growth - Premium Minimalist Styles */

:root {
    --vsp-bg: #FAFAFA;
    --vsp-surface: #FFFFFF;
    --vsp-text-main: #111111;
    --vsp-text-muted: #555555;
    --vsp-accent: #D4AF37; /* Champagne Gold */
    --vsp-border: #EAEAEA;
    --font-stack: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: var(--vsp-bg);
    color: var(--vsp-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.vsp-site-head {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--vsp-border);
    z-index: 100;
    padding: 1.2rem 2rem;
}

.vsp-head-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vsp-brand-text {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.vsp-nav-cluster {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vsp-nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.vsp-nav-item:hover {
    color: var(--vsp-accent);
}

.vsp-btn-outline {
    border: 1px solid var(--vsp-text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

.vsp-btn-outline:hover {
    background: var(--vsp-text-main);
    color: var(--vsp-surface);
}

/* Hero */
.vsp-hero-pane {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(4rem, 10vw, 8rem) 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vsp-headline-xl {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.vsp-subhead {
    font-size: 1.125rem;
    color: var(--vsp-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.vsp-action-btn {
    display: inline-block;
    background: var(--vsp-text-main);
    color: var(--vsp-surface);
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.vsp-action-btn:hover {
    background: var(--vsp-accent);
}

.vsp-hero-visual {
    position: relative;
}

.vsp-abstract-shape-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: var(--vsp-border);
    z-index: -1;
}

.vsp-abstract-shape-2 {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: var(--vsp-accent);
    opacity: 0.2;
    z-index: -1;
}

.vsp-hero-img {
    aspect-ratio: 4/5;
    box-shadow: 20px 20px 0px var(--vsp-border);
}

/* Benefits Strip */
.vsp-benefits-strip {
    background: var(--vsp-text-main);
    color: var(--vsp-surface);
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.vsp-benefit-node {
    flex: 1 1 250px;
    max-width: 300px;
}

.vsp-node-num {
    display: block;
    font-size: 0.8rem;
    color: var(--vsp-accent);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.vsp-node-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.vsp-node-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Matrix */
.vsp-offerings-matrix {
    max-width: 1200px;
    margin: clamp(4rem, 8vw, 6rem) auto;
    padding: 0 2rem;
}

.vsp-matrix-header {
    margin-bottom: 4rem;
}

.vsp-matrix-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vsp-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vsp-service-card {
    background: var(--vsp-surface);
    border: 1px solid var(--vsp-border);
    transition: transform 0.3s ease;
}

.vsp-service-card:hover {
    transform: translateY(-5px);
}

.vsp-card-img {
    height: 200px;
}

.vsp-card-body {
    padding: 2rem;
}

.vsp-card-body h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.vsp-card-body p {
    color: var(--vsp-text-muted);
    font-size: 0.95rem;
}

/* FAQ inside Services */
.vsp-micro-faq {
    background: var(--vsp-surface);
    padding: 3rem;
    border: 1px solid var(--vsp-border);
}

.vsp-micro-faq h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.vsp-accordion {
    border-bottom: 1px solid var(--vsp-border);
}

.vsp-acc-trigger {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--vsp-text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-stack);
}

.vsp-acc-trigger::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--vsp-accent);
}

.vsp-acc-trigger.active::after {
    content: '-';
}

.vsp-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.vsp-acc-panel p {
    padding-bottom: 1.5rem;
    color: var(--vsp-text-muted);
}

/* Deep About */
.vsp-deep-about {
    max-width: 1000px;
    margin: clamp(5rem, 10vw, 8rem) auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.vsp-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vsp-about-text p {
    margin-bottom: 1.5rem;
    color: var(--vsp-text-muted);
    font-size: 1.05rem;
}

.vsp-data-highlight {
    background: var(--vsp-accent);
    color: var(--vsp-surface);
    padding: 0.1rem 0.4rem;
    font-weight: 600;
}

.vsp-inline-link {
    border-bottom: 1px solid var(--vsp-text-main);
    color: var(--vsp-text-main);
}

.vsp-about-image-wrap {
    position: relative;
}

.vsp-about-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--vsp-accent);
    border-left: 2px solid var(--vsp-accent);
}

/* Client Voices */
.vsp-client-voices {
    background: var(--vsp-surface);
    padding: clamp(4rem, 8vw, 6rem) 2rem;
    border-top: 1px solid var(--vsp-border);
    border-bottom: 1px solid var(--vsp-border);
}

.vsp-center-text {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.vsp-voice-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vsp-voice-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vsp-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.vsp-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--vsp-border);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: -1;
}

.vsp-voice-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vsp-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.vsp-voice-author strong {
    display: block;
    font-size: 0.95rem;
}

.vsp-voice-author span {
    font-size: 0.85rem;
    color: var(--vsp-text-muted);
}

/* Contact Portal */
.vsp-contact-portal {
    max-width: 800px;
    margin: clamp(4rem, 8vw, 6rem) auto;
    padding: 0 2rem;
}

.vsp-portal-inner {
    background: var(--vsp-surface);
    padding: 3rem;
    border: 1px solid var(--vsp-border);
    box-shadow: 10px 10px 0px var(--vsp-border);
}

.vsp-portal-info {
    text-align: center;
    margin-bottom: 3rem;
}

.vsp-portal-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vsp-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vsp-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vsp-full-width {
    grid-column: 1 / -1;
}

.vsp-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vsp-text-muted);
}

.vsp-input-group input,
.vsp-input-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--vsp-border);
    background: var(--vsp-bg);
    font-family: var(--font-stack);
    transition: border-color 0.3s ease;
}

.vsp-input-group input:focus,
.vsp-input-group textarea:focus {
    outline: none;
    border-color: var(--vsp-accent);
}

.vsp-submit-btn {
    grid-column: 1 / -1;
    background: var(--vsp-text-main);
    color: var(--vsp-surface);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vsp-submit-btn:hover {
    background: var(--vsp-accent);
}

/* Footer */
.vsp-global-foot {
    background: var(--vsp-text-main);
    color: #A0A0A0;
    padding: 4rem 2rem 2rem;
    font-size: 0.9rem;
}

.vsp-foot-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.vsp-foot-brand .vsp-brand-text {
    color: var(--vsp-surface);
    display: block;
    margin-bottom: 1rem;
}

.vsp-foot-contact h4,
.vsp-foot-legal h4 {
    color: var(--vsp-surface);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.vsp-foot-legal a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.vsp-foot-legal a:hover,
.vsp-foot-contact a:hover {
    color: var(--vsp-accent);
}

.vsp-foot-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.vsp-tiny-noise {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .vsp-hero-pane,
    .vsp-deep-about {
        grid-template-columns: 1fr;
    }
    
    .vsp-hero-visual {
        order: -1;
    }

    .vsp-form-layout {
        grid-template-columns: 1fr;
    }

    .vsp-foot-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vsp-nav-cluster {
        display: none; /* Simplification for mobile */
    }
}
