/* ========================================
   LAYOUT — Structural rules only
   Flex/grid directions, gaps, alignment.
   No colors, shadows, or borders.
   ======================================== */

/* --- 3.3 Hero --- */
#hero {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    width: fit-content;
    align-self: flex-start;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-brand:hover {
    transform: translateY(-2px);
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease;
}



.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-image img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 0;
}

/* --- 3.4 Commissions --- */
.card-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.card {
    display: flex;
    flex-direction: column;
}

/* --- 3.5 Portfolio --- */
.gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.gallery-item img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* --- 3.5b Feedbacks --- */
.feedback-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.feedback-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

/* --- 3.6 CTA Section --- */
#order {
    position: relative;
    overflow: visible;
    width: 100%;
}

.cta-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    width: 100%;
    margin-inline: auto;
    max-width: 1200px;
}

/* Glass panel default for mobile/tablet */
.cta-panel {
    background-color: rgba(18, 18, 31, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

.cta-character-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 6;
}

.cta-character-img {
    max-width: 100%;
    height: auto;
    display: block;
}