/* Explain: Organic cards, blobs, forms, and interactive landscape components */
.organic-blob {
    border-radius: var(--radius-organic);
}

.organic-blob-soft {
    border-radius: 58% 42% 44% 56% / 50% 56% 44% 50%;
}

.organic-frame {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-frame);
}

.organic-frame::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border: 1px solid rgba(255, 248, 236, 0.62);
    border-radius: inherit;
    pointer-events: none;
}

.terracotta-label {
    background: rgba(226, 114, 91, 0.94);
    color: #fff8ec;
    box-shadow: 0 16px 35px rgba(95, 54, 43, 0.22);
}

.side-menu-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    transition: color 220ms ease, transform 220ms ease;
}

.side-menu-link::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--sand-color);
    transition: background 220ms ease, transform 220ms ease;
}

.side-menu-link:hover,
.side-menu-link:focus-visible {
    color: var(--olive-color);
    transform: translateX(0.2rem);
}

.side-menu-link:hover::before,
.side-menu-link:focus-visible::before {
    background: var(--terracotta-color);
    transform: scale(1.35);
}

.service-input {
    min-height: 3.25rem;
    border: 1px solid rgba(255, 248, 236, 0.42);
    background: rgba(255, 248, 236, 0.92);
    color: var(--text-color);
    border-radius: 999px;
}

.service-input::placeholder {
    color: rgba(36, 48, 38, 0.52);
}

.connect-form-card {
    border-radius: 2rem;
    isolation: isolate;
}

.connect-form-card::before {
    content: "";
    position: absolute;
    inset: -16% -8% auto auto;
    z-index: 0;
    width: min(24rem, 62%);
    height: min(24rem, 62%);
    border-radius: 999px;
    background: rgba(242, 201, 76, 0.14);
    transform: rotate(-12deg);
}

.connect-form-card label {
    color: var(--cream-color);
}

.connect-form-card .service-input {
    box-shadow: inset 0 0 0 1px rgba(60, 74, 62, 0.05);
}

@media (min-width: 768px) {
    .connect-form-card {
        border-radius: 4.5rem 7rem 5rem 6rem / 5rem 4.5rem 6rem 5.5rem;
    }
}

.service-submit {
    min-height: 3.25rem;
    border-radius: 999px;
    background: var(--terracotta-color);
    color: #fff8ec;
    border: 0;
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 14px 30px rgba(226, 114, 91, 0.28);
}

.service-submit:hover,
.service-submit:focus-visible {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(226, 114, 91, 0.34);
}

.status-note {
    border-radius: 1.25rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}

.status-note.success {
    background: rgba(255, 248, 236, 0.92);
    color: var(--olive-color);
}

.status-note.error {
    background: rgba(226, 114, 91, 0.16);
    color: #fff8ec;
    border: 1px solid rgba(255, 248, 236, 0.32);
}

.floating-request {
    box-shadow: 0 18px 45px rgba(36, 48, 38, 0.28);
}
