@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;700;800&family=Inter:wght@400;500;700&display=swap');

/* Base Variables */
:root {
    --el-primary: #eab308;
    --el-primary-dark: #b48e02;
    --el-secondary: #0f172a;
    --el-secondary-light: #1e293b;
    --el-accent: #064e3b;
    --el-surface: #fffce8; /* studio_yellow variant surface tone */
    --el-background: #ffffff;
    --el-text-primary: #333333;
    --el-text-secondary: #555555;
    --el-border: #e0e0e0;
    --el-shadow-light: rgba(0, 0, 0, 0.04);
    --el-shadow-medium: rgba(0, 0, 0, 0.06);
    --el-radius-card: 16px;
    --el-radius-button: 12px;
    --el-radius-image: 8px;
    
    /* Spacing Scale (8pt grid) */
    --el-spacing-xs: 8px;
    --el-spacing-sm: 16px;
    --el-spacing-md: 24px;
    --el-spacing-lg: 32px;
    --el-spacing-xl: 48px;
    --el-spacing-xxl: 64px;
    --el-spacing-xxxl: 96px;
    --el-spacing-xxxxl: 128px;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    color: var(--el-text-primary);
    background-color: var(--el-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--el-primary);
    color: var(--el-secondary);
}

/* Typography Scale */
h1, .el-h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--el-secondary);
}

h1 .el-h1--italic,
.el-h1 .el-h1--italic {
    font-style: italic;
    color: var(--el-primary);
}

h2, .el-h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32px to 48px */
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--el-secondary);
}

h3, .el-h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--el-secondary);
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    line-height: 1.3;
    color: var(--el-secondary);
}

p {
    margin-bottom: var(--el-spacing-sm);
    max-width: 65ch;
}

a {
    color: var(--el-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--el-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.el-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--el-spacing-md);
    padding-right: var(--el-spacing-md);
}

.el-section {
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    position: relative;
}

.el-section-alt {
    background-color: var(--el-surface);
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    position: relative;
}

.el-grid {
    display: grid;
    gap: var(--el-spacing-lg);
}

.el-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-lg);
}

@media (min-width: 768px) {
    .el-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.el-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-lg);
}

@media (min-width: 768px) {
    .el-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .el-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.el-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-lg);
}

@media (min-width: 768px) {
    .el-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .el-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.el-flex {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-sm);
}

.el-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
    flex-shrink: 0;
}

.el-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--el-radius-card);
    background-color: var(--el-surface);
    padding: var(--el-spacing-sm);
    flex-shrink: 0;
}

.el-icon-large {
    width: 48px;
    height: 48px;
    color: var(--el-primary);
}

.el-text-center {
    text-align: center;
}

.el-subheading {
    font-size: 1.25rem;
    color: var(--el-text-secondary);
    margin-bottom: var(--el-spacing-xl);
    line-height: 1.5;
}

/* Header & Navigation */
.el-header {
    background-color: var(--el-background);
    padding: var(--el-spacing-md) 0;
    border-bottom: 1px solid var(--el-border);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.el-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--el-secondary);
    text-decoration: none;
}

.el-nav-list {
    list-style: none;
    display: flex;
    gap: var(--el-spacing-lg);
}

.el-nav-item a {
    font-weight: 500;
    color: var(--el-text-primary);
    font-size: 1rem;
    position: relative;
}

.el-nav-item a:hover {
    color: var(--el-primary);
}

.el-nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--el-primary);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-nav-item a:hover::after {
    width: 100%;
}

.el-mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.75rem;
    background: none;
    border: none;
    color: var(--el-text-primary);
}

@media (max-width: 768px) {
    .el-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--el-background);
        border-top: 1px solid var(--el-border);
        padding: var(--el-spacing-md) 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .el-nav-list.active {
        max-height: 300px; /* Adjust as needed */
    }

    .el-nav-item {
        text-align: center;
        padding: var(--el-spacing-sm) 0;
    }

    .el-mobile-toggle {
        display: block;
    }
}

/* Hero Section */
.el-hero {
    background-color: var(--el-secondary-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--el-spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.el-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.el-hero-text {
    margin-bottom: var(--el-spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.el-hero-text h1,
.el-hero-text .el-subheading {
    color: #595959;
}

.el-hero-subtitle {
    font-size: 1.35rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--el-spacing-lg);
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--el-spacing-sm) var(--el-spacing-lg);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--el-radius-button);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.el-button-primary {
    background-color: var(--el-primary);
    color: var(--el-secondary);
    border: 1px solid var(--el-primary);
}

.el-button-primary:hover {
    background-color: var(--el-primary-dark);
    border-color: var(--el-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.el-button-secondary {
    background-color: var(--el-secondary);
    color: #595959;
    border: 1px solid var(--el-secondary);
}

.el-button-secondary:hover {
    background-color: var(--el-secondary-light);
    border-color: var(--el-secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.el-button-outline {
    background-color: transparent;
    color: var(--el-primary);
    border: 2px solid var(--el-primary);
}

.el-button-outline:hover {
    background-color: var(--el-primary);
    color: var(--el-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.el-link {
    color: var(--el-primary);
    text-decoration: underline;
}

.el-link:hover {
    color: var(--el-primary-dark);
    text-decoration: none;
}

/* Cards */
.el-card {
    background-color: var(--el-background);
    border-radius: var(--el-radius-card);
    box-shadow: 0 4px 20px var(--el-shadow-light), 0 1px 3px var(--el-shadow-medium);
    padding: var(--el-spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--el-shadow-light), 0 2px 5px var(--el-shadow-medium);
}

.el-card-feature {
    text-align: center;
    padding: var(--el-spacing-xl);
}

.el-card-feature .el-icon-large {
    margin-bottom: var(--el-spacing-md);
}

.el-card-service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--el-spacing-sm);
}

.el-card-process {
    text-align: center;
}

.el-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.el-check-item {
    display: flex;
    align-items: center;
    gap: var(--el-spacing-sm);
    margin-bottom: var(--el-spacing-sm);
    font-size: 1rem;
}

.el-check-item .el-icon {
    color: var(--el-primary);
}

/* Editorial Elements */
.el-pullquote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    line-height: 1.3;
    margin: var(--el-spacing-xxl) auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    color: var(--el-secondary);
}

.el-pullquote::before {
    content: '“';
    font-size: 6rem;
    font-weight: 800;
    color: var(--el-primary);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    z-index: -1;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--el-spacing-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .el-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .el-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.el-stat-item {
    padding: var(--el-spacing-lg);
    background-color: var(--el-surface);
    border-radius: var(--el-radius-card);
}

.el-stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem); /* 48px to 72px */
    font-weight: 800;
    color: var(--el-primary);
    line-height: 1;
    margin-bottom: var(--el-spacing-sm);
}

.el-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--el-secondary);
    font-weight: 500;
}

/* Testimonials */
.el-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-lg);
}

@media (min-width: 768px) {
    .el-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .el-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.el-testimonial-card {
    background-color: var(--el-background);
    border-radius: var(--el-radius-card);
    padding: var(--el-spacing-xl);
    box-shadow: 0 4px 20px var(--el-shadow-light), 0 1px 3px var(--el-shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.el-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--el-shadow-light), 0 2px 5px var(--el-shadow-medium);
}

.el-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--el-text-primary);
    margin-bottom: var(--el-spacing-md);
    flex-grow: 1;
}

.el-testimonial-cite {
    font-weight: 700;
    color: var(--el-secondary);
    margin-top: var(--el-spacing-sm);
    font-size: 1rem;
}

.el-testimonial-cite span {
    font-weight: 400;
    color: var(--el-text-secondary);
    display: block;
    font-size: 0.9rem;
}

.el-testimonial-stars {
    color: var(--el-primary);
    margin-bottom: var(--el-spacing-sm);
}

.el-testimonial-stars .el-icon {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

/* FAQ */
.el-faq-item {
    background-color: var(--el-background);
    border-radius: var(--el-radius-card);
    border: 1px solid var(--el-border);
    margin-bottom: var(--el-spacing-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.el-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.el-faq-item.active {
    border-color: var(--el-primary);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.el-faq-q {
    font-weight: 700;
    padding: var(--el-spacing-md) var(--el-spacing-lg);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--el-secondary);
    transition: color 0.3s ease;
}

.el-faq-item.active .el-faq-q {
    color: var(--el-primary);
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.el-faq-item.active .el-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--el-spacing-lg);
    color: var(--el-text-secondary);
    font-size: 1rem;
}

.el-faq-item.active .el-faq-a {
    max-height: 500px; /* Sufficiently large to cover most answers */
    padding-bottom: var(--el-spacing-md);
}

/* CTA Section */
.el-cta {
    background-color: var(--el-secondary);
    color: #595959;
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-xxxl);
    text-align: center;
}

.el-cta-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.el-cta h2 {
    color: #595959;
    margin-bottom: var(--el-spacing-md);
}

.el-cta .el-subheading {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--el-spacing-xl);
}

/* Form Styling */
.el-contact-form {
    display: grid;
    gap: var(--el-spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--el-spacing-xl);
    background-color: var(--el-background);
    border-radius: var(--el-radius-card);
    box-shadow: 0 4px 20px var(--el-shadow-light), 0 1px 3px rgba(0,0,0,0.08);
}

.el-form-group {
    margin-bottom: var(--el-spacing-sm);
}

.el-form-label {
    display: block;
    margin-bottom: var(--el-spacing-xs);
    font-weight: 500;
    color: var(--el-secondary);
    font-size: 0.95rem;
}

.el-form-input,
.el-form-textarea {
    width: 100%;
    padding: var(--el-spacing-sm) var(--el-spacing-md);
    border: 1px solid var(--el-border);
    border-radius: var(--el-radius-button);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--el-text-primary);
    background-color: #fcfcfc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.el-form-input:focus,
.el-form-textarea:focus {
    outline: none;
    border-color: var(--el-primary);
    box-shadow: 0 0 0 3px rgba(var(--el-primary-rgb), 0.2);
}

.el-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.el-form-error {
    color: #a40e0e;
    font-size: 0.9rem;
    margin-top: var(--el-spacing-xs);
    display: block;
}

.el-form-success {
    color: #157a3a;
    font-size: 1rem;
    margin-top: var(--el-spacing-sm);
    text-align: center;
    font-weight: 600;
}

/* Footer */
.el-footer {
    background-color: var(--el-secondary-light);
    color: #595959;
    padding-top: var(--el-spacing-xxxl);
    padding-bottom: var(--el-spacing-md);
    font-size: 0.95rem;
}

.el-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--el-spacing-xl);
    margin-bottom: var(--el-spacing-xl);
}

@media (min-width: 768px) {
    .el-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .el-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.el-footer-col h4 {
    color: #595959;
    margin-bottom: var(--el-spacing-md);
}

.el-footer-col p,
.el-footer-col address {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.el-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.el-footer-list li {
    margin-bottom: var(--el-spacing-xs);
}

.el-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-footer-link:hover {
    color: var(--el-primary);
}

.el-footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--el-spacing-md);
    margin-top: var(--el-spacing-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.el-animate {
    opacity: 0;
    transform: translateY(20px);
}

.el-animate.is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .el-section {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    .el-section-alt {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    h1, .el-h1 {
        font-size: clamp(2.25rem, 6vw, 4rem);
    }

    h2, .el-h2 {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1.0625rem; /* 17px */
    }

    .el-container {
        padding-left: var(--el-spacing-sm);
        padding-right: var(--el-spacing-sm);
    }

    .el-section {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    .el-section-alt {
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xxl);
    }

    .el-hero {
        min-height: auto;
        padding-top: var(--el-spacing-xxl);
        padding-bottom: var(--el-spacing-xl);
    }

    h1, .el-h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    h2, .el-h2 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    h3, .el-h3 {
        font-size: 1.5rem;
    }

    .el-hero-subtitle {
        font-size: 1.125rem;
    }

    .el-cta h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .el-pullquote {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .el-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .el-section {
        padding-top: var(--el-spacing-xl);
        padding-bottom: var(--el-spacing-xl);
    }

    .el-section-alt {
        padding-top: var(--el-spacing-xl);
        padding-bottom: var(--el-spacing-xl);
    }

    .el-hero-text {
        margin-bottom: var(--el-spacing-lg);
    }

    h1, .el-h1 {
        font-size: clamp(1.75rem, 8vw, 3rem);
    }

    .el-button {
        padding: var(--el-spacing-sm) var(--el-spacing-md);
        font-size: 0.95rem;
    }

    .el-stats {
        grid-template-columns: 1fr;
    }

    .el-contact-form {
        padding: var(--el-spacing-lg);
    }
}

/* Decor Slots */
[data-decor-slot="annotation_arrow"] {
    position: absolute;
    width: 80px; /* Example size */
    height: 80px;
    color: var(--el-primary);
    /* Needs specific positioning per use case */
}

[data-decor-slot="off_grid_sticker"] {
    position: absolute;
    width: 100px; /* Example size */
    height: 100px;
    color: var(--el-primary);
    /* Needs specific positioning per use case */
}

[data-decor-slot="section_divider"] {
    display: block;
    width: 100%;
    height: 2px; /* Visual height of the line */
    background: linear-gradient(to right, var(--el-primary) 0%, transparent 100%);
    margin: var(--el-spacing-xxxl) 0;
    /* Adjust for specific decorative effect */
}

[data-decor-slot="blob_backdrop"] {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    color: var(--el-primary);
    /* Needs specific positioning per use case */
}

.el-h1-highlight [data-decor-slot="headline_scribble"],
.el-h2-highlight [data-decor-slot="headline_scribble"] {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px; /* Height of the scribble effect */
    color: var(--el-primary);
}

[data-decor-slot="corner_accent"] {
    position: absolute;
    width: 50px;
    height: 50px;
    color: var(--el-primary);
    opacity: 0.3;
}

[data-decor-slot="hand_rating"] {
    display: inline-block;
    width: 100px;
    height: 20px;
    color: var(--el-primary);
}


/* === Quality polish === */
.el-card, [class*="el-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.el-card:hover, [class*="el-card"]:hover { border-color: #be185d; transform: none; box-shadow: none; }

button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.el-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.el-faq-item.active .el-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.el-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.el-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.el-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.el-section { padding: 96px 0; background: #fdf2f8; }
.el-section-alt { padding: 96px 0; background: color-mix(in srgb, #be185d 4%, #fdf2f8); }
.el-grid { display: grid; gap: 32px; }
.el-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.el-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.el-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.el-text-center { text-align: center; }
/* Header / Nav */
.el-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #500724 8%, transparent); }
.el-header > .el-container, .el-header .el-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.el-brand, .el-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Space Grotesk; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #be185d; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.el-brand-mark { display: inline-flex; color: #be185d; flex-shrink: 0; }
.el-brand-mark svg { display: block; width: 24px; height: 24px; }
.el-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.el-nav-list, .el-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.el-nav-link { color: #500724; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.el-nav-link + .el-nav-link { margin-left: 0; }
.el-nav-link:hover { color: #be185d; }
.el-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.el-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #be185d 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #be185d 7%, #fdf2f8) 0%, #fdf2f8 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.el-hero [class*="ghost"], .el-hero [class*="bg-text"], .el-hero [class*="watermark"], .el-hero [class*="hero-bg"], .el-hero [aria-hidden="true"][class*="text"], .el-hero [data-decorative="true"] { display: none !important; }
.el-hero .el-hero-image, .el-hero .el-dashboard-mockup { position: relative !important; }
.el-hero .el-hero-image { max-width: 100%; }
.el-hero .el-hero-image > * { max-width: 100%; }
.el-hero .el-stats { position: static !important; }
.el-hero > .el-container { max-width: 1200px; }
.el-hero h1, .el-hero .el-h1 { font-family: Space Grotesk; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #500724; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.el-hero p, .el-hero .el-hero-sub, .el-hero .el-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #f9a8d4; max-width: 48ch; margin: 0; }
.el-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.el-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.el-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.el-hero-image { position: relative; }
.el-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #be185d 12%, transparent); z-index: 0; }
.el-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.el-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #f9a8d4; max-width: 60ch; }
.el-h1 { font-family: Space Grotesk; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #500724; margin: 0; }
.el-h2 { font-family: Space Grotesk; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #500724; margin: 0 0 24px; }
.el-h3 { font-family: Space Grotesk; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #500724; margin: 0 0 12px; }
.el-subheading { font-size: 1.125rem; line-height: 1.7; color: #f9a8d4; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.el-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.el-button-primary { background: #be185d; color: #fff; border-color: #be185d; }
.el-button-primary:hover { background: #9d174d; border-color: #9d174d; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #be185d 50%, transparent); }
.el-button-secondary { background: #9d174d; color: #fff; border-color: #9d174d; }
.el-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.el-button-outline { background: transparent; color: #be185d; border-color: #be185d; }
.el-button-outline:hover { background: #be185d; color: #fff; }
.el-link { color: #be185d; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.el-link:hover { gap: 10px; }
/* Cards */
.el-card { background: #fff; border: 1px solid color-mix(in srgb, #500724 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.el-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.el-card-feature, .el-card-service, .el-card-process { text-align: left; }
/* Icons */
.el-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #be185d 10%, transparent); color: #be185d; }
.el-icon-wrapper svg, .el-icon-wrapper .el-icon { width: 28px; height: 28px; stroke: #be185d; }
.el-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.el-icon-large { width: 48px; height: 48px; stroke: #be185d; }
/* Check list */
.el-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.el-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.el-check-item .el-icon { color: #be185d; margin-top: 4px; }
/* Editorial */
.el-pullquote { font-family: Space Grotesk; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #500724; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.el-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #be185d; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.el-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.el-stat-item { text-align: center; }
.el-stat-number { display: block; font-family: Space Grotesk; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #be185d; line-height: 1; letter-spacing: -0.03em; }
.el-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #f9a8d4; }
/* Testimonials */
.el-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.el-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #500724 6%, transparent); }
.el-testimonial-quote { font-style: italic; line-height: 1.7; color: #500724; margin-bottom: 16px; }
.el-testimonial-cite { font-weight: 600; color: #be185d; font-size: 0.95rem; }
.el-testimonial-stars { color: #14b8a6; margin-bottom: 12px; }
/* FAQ */
.el-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.el-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #500724 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.el-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.el-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #500724; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.el-faq-q::after { content: '+'; font-size: 1.5rem; color: #be185d; transition: transform 0.3s ease; flex-shrink: 0; }
.el-faq-item.active .el-faq-q::after { transform: rotate(45deg); }
/* CTA */
.el-cta { padding: 96px 0; background: linear-gradient(135deg, #be185d 0%, #9d174d 100%); color: #fff; text-align: center; }
.el-cta .el-h2, .el-cta h2 { color: #fff; }
.el-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.el-cta .el-button-primary { background: #fff; color: #be185d; border-color: #fff; }
.el-cta .el-button-primary:hover { background: #fdf2f8; color: #be185d; }
/* Form */
.el-form, .el-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #500724 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #be185d 40%, transparent); text-align: left; color: #500724; }
.el-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .el-form-row { grid-template-columns: 1fr; } }
.el-form-group { display: flex; flex-direction: column; gap: 8px; }
.el-form-label, .el-form label { font-weight: 600; font-size: 0.9rem; color: #500724; letter-spacing: 0.01em; }
.el-form-input, .el-form-textarea, .el-form input:not([type="submit"]), .el-form textarea, .el-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #500724 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #be185d 2%, #fff); color: #500724; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.el-form-input:hover, .el-form-textarea:hover { border-color: color-mix(in srgb, #be185d 35%, transparent); }
.el-form-input:focus, .el-form-textarea:focus, .el-form input:focus, .el-form textarea:focus { outline: none; border-color: #be185d; box-shadow: 0 0 0 4px color-mix(in srgb, #be185d 18%, transparent); }
.el-form-textarea, .el-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.el-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.el-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.el-form-error[hidden], .el-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.el-form-error.is-visible, .el-form-success.is-visible { display: block; }
.el-cta .el-form, .el-cta .el-contact-form { color: #500724; }
.el-cta .el-form button[type="submit"], .el-cta .el-contact-form button[type="submit"] { background: #be185d; color: #fff; border-color: #be185d; }
/* Footer */
.el-footer { background: #500724; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.el-footer .el-h3, .el-footer h3, .el-footer h4 { color: #fff; font-family: Space Grotesk; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.el-footer .el-logo { color: #fff; }
.el-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.el-footer-col { display: flex; flex-direction: column; gap: 12px; }
.el-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.el-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.el-footer-link:hover { color: #fff; }
.el-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.el-social-links { display: flex; gap: 16px; }
.el-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.el-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .el-hero { padding: 80px 0 64px; }
  .el-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .el-section, .el-section-alt { padding: 64px 0; }
  .el-cta { padding: 64px 0; }
  .el-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .el-nav-list { display: none; }
  .el-mobile-toggle { display: inline-flex; }
  .el-nav.active .el-nav-list, .el-header.active .el-nav-list, .el-nav-list.active, .el-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .el-card { padding: 24px; }
  .el-form, .el-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: creator_studio === */
.el-hero { padding: 144px 0 96px; }
.el-h1 em, .el-h1 i { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-style: italic; }
.el-card { overflow: hidden; border-radius: 8px; box-shadow: none; border: 1px solid rgba(0,0,0,0.06); }
.el-card img { transition: transform 0.6s ease; }
.el-card:hover img { transform: scale(1.06); }
.el-button-primary { background: #111; color: #fff; border-radius: 6px; }